[
  {
    "path": ".github/ISSUE_TEMPLATE/BUG_REPORT.yml",
    "content": "name: Bug Report\ndescription: File a bug report\nlabels: [bug]\nbody:\n  - type: dropdown\n    id: version\n    attributes:\n      label: Version\n      description: What version of sqlc are you running? If you don't know, run `sqlc version`.\n      multiple: false\n      options:\n        - 1.30.0\n        - 1.29.0\n        - 1.28.0\n        - 1.27.0\n        - 1.26.0\n        - 1.25.0\n        - Other\n    validations:\n      required: true\n  - type: textarea\n    id: what-happened\n    attributes:\n      label: What happened?\n      description: Also tell us, what did you expect to happen?\n      placeholder: Tell us what you see!\n      value: \"A bug happened!\"\n    validations:\n      required: true\n  - type: textarea\n    id: logs\n    attributes:\n      label: Relevant log output\n      description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.\n      render: shell\n  - type: textarea\n    id: schema\n    attributes:\n      label: Database schema\n      description: Please include definitions for the relevant database tables. This will be automatically formatted as SQL, so no need for backticks.\n      render: sql\n  - type: textarea\n    id: queries\n    attributes:\n      label: SQL queries\n      description: Please include the SQL queries causing issues. This will be automatically formatted as SQL, so no need for backticks.\n      render: sql\n  - type: textarea\n    id: config\n    attributes:\n      label: Configuration\n      description: Please include the sqlc.(yaml|yml) or sqlc.json file you using in your project. This will be automatically formatted, so no need for backticks.\n      render: yaml\n  - type: input\n    id: playground\n    attributes:\n      label: Playground URL\n      description: \"Link to a reproduction of the issue on the sqlc playground\"\n      placeholder: \"https://play.sqlc.dev/\"\n  - type: dropdown\n    id: os\n    attributes:\n      label: What operating system are you using?\n      multiple: true\n      options:\n        - Linux\n        - Windows\n        - macOS\n  - type: dropdown\n    id: engines\n    attributes:\n      label: What database engines are you using?\n      multiple: true\n      options:\n        - MySQL\n        - PostgreSQL\n        - SQLite\n  - type: dropdown\n    id: languages\n    attributes:\n      label: What type of code are you generating?\n      multiple: true\n      options:\n        - Go\n        - Python\n        - Kotlin\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml",
    "content": "name: Feature Request\ndescription: Request a new feature or a change to an existing feature\nlabels: [enhancement]\nbody:\n  - type: textarea\n    id: feature\n    attributes:\n      label: What do you want to change?\n      placeholder: Tell us what you want\n      value: \"Free unicorns!\"\n    validations:\n      required: true\n  - type: dropdown\n    id: engines\n    attributes:\n      label: What database engines need to be changed?\n      multiple: true\n      options:\n        - PostgreSQL\n        - MySQL\n        - SQLite\n  - type: dropdown\n    id: languages\n    attributes:\n      label: What programming language backends need to be changed?\n      multiple: true\n      options:\n        - Go\n        - Python\n        - Kotlin\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n  - package-ecosystem: \"gomod\"\n    directory: \"/\"\n    schedule:\n      interval: \"daily\"\n    groups:\n      production-dependencies:\n        dependency-type: \"production\"\n      development-dependencies:\n        dependency-type: \"development\"\n  - package-ecosystem: \"docker\"\n    directory: \"/\"\n    schedule:\n      interval: \"daily\"\n  - package-ecosystem: \"github-actions\"\n    directory: \"/\"\n    schedule:\n      interval: \"daily\"\n  - package-ecosystem: \"pip\"\n    directory: \"/docs\"\n    schedule:\n      interval: \"daily\"\n    ignore:\n      # sphinx-rtd-theme does not support the latest versions of docutils and\n      # sphinx\n      - dependency-name: \"docutils\"\n      - dependency-name: \"sphinx\"\n    groups:\n      production-dependencies:\n        dependency-type: \"production\"\n      development-dependencies:\n        dependency-type: \"development\"\n\n"
  },
  {
    "path": ".github/workflows/buf.yml",
    "content": "name: buf\non: pull_request\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - uses: bufbuild/buf-setup-action@v1\n      - uses: bufbuild/buf-lint-action@v1\n"
  },
  {
    "path": ".github/workflows/build.yml",
    "content": "name: build\non:\n  workflow_dispatch:\njobs:\n  build:\n    strategy:\n      matrix:\n        os: [ubuntu-24.04, macos-14, windows-2022]\n    name: build ${{ matrix.os }}\n    runs-on: ${{ matrix.os }}\n    steps:\n    - uses: actions/checkout@v6\n    - uses: actions/setup-go@v6\n      with:\n        go-version: '1.26.0'\n    - name: install ./...\n      run: go build ./...\n      env:\n        CGO_ENABLED: \"0\"\n"
  },
  {
    "path": ".github/workflows/ci-kotlin.yml",
    "content": "name: kotlin\non:\n  push:\n    branches:\n      - main\n  pull_request:\njobs:\n  build:\n    if: false\n    name: test\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - uses: actions/setup-go@v6\n        with:\n          go-version: '1.26.0'\n      - name: install ./...\n        run: go install ./...\n      - uses: actions/checkout@v6\n        with:\n          repository: sqlc-dev/sqlc-gen-kotlin\n          path: kotlin\n      - run: make test\n        working-directory: kotlin\n      - run: sqlc diff\n        working-directory: kotlin/examples\n\n"
  },
  {
    "path": ".github/workflows/ci-python.yml",
    "content": "name: python\non:\n  push:\n    branches:\n      - main\n  pull_request:\njobs:\n  build:\n    if: false\n    name: test\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - uses: actions/setup-go@v6\n        with:\n          go-version: '1.26.0'\n      - name: install ./...\n        run: go install ./...\n      - uses: actions/checkout@v6\n        with:\n          repository: sqlc-dev/sqlc-gen-python\n          path: python\n      - run: make test\n        working-directory: python\n      - run: sqlc diff\n        working-directory: python/examples\n"
  },
  {
    "path": ".github/workflows/ci-typescript.yml",
    "content": "name: typescript\non:\n  push:\n    branches:\n      - main\n  pull_request:\njobs:\n  build:\n    if: false\n    name: test\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v6\n      - uses: actions/setup-go@v6\n        with:\n          go-version: '1.26.0'\n      - name: install ./...\n        run: go install ./...\n      - uses: actions/checkout@v6\n        with:\n          repository: sqlc-dev/sqlc-gen-typescript\n          path: typescript\n          # v0.1.3\n          ref: daaf539092421adc15f6c3164279a3470716b560\n      - run: sqlc diff\n        working-directory: typescript/examples\n"
  },
  {
    "path": ".github/workflows/ci.yml",
    "content": "name: go\non:\n  push:\n    branches:\n      - main\n  pull_request:\njobs:\n  build:\n    strategy:\n      matrix:\n        goos: [darwin, linux, windows]\n        goarch: [amd64, arm64]\n    name: build ${{ matrix.goos }}/${{ matrix.goarch }}\n    runs-on: ubuntu-24.04\n    steps:\n    - uses: actions/checkout@v6\n    - uses: actions/setup-go@v6\n      with:\n        go-version: '1.26.0'\n    - run: go build ./...\n      env:\n        CGO_ENABLED: \"0\"\n        GOOS: ${{ matrix.goos }}\n        GOARCH: ${{ matrix.goarch }}\n  test:\n    runs-on: ubuntu-24.04\n    steps:\n    - uses: actions/checkout@v6\n    - uses: actions/setup-go@v6\n      with:\n        go-version: '1.26.0'\n\n    - name: install gotestsum\n      run: go install gotest.tools/gotestsum@latest\n\n    - name: install sqlc-gen-test\n      run: go install github.com/sqlc-dev/sqlc-gen-test@v0.1.0\n\n    - name: install test-json-process-plugin\n      run: go install ./scripts/test-json-process-plugin/\n\n    - name: install ./...\n      run: go install ./...\n      env:\n        CGO_ENABLED: \"0\"\n\n    - name: build internal/endtoend\n      run: go build ./...\n      working-directory: internal/endtoend/testdata\n      env:\n        CGO_ENABLED: \"0\"\n\n    - name: install databases\n      run: go run ./cmd/sqlc-test-setup install\n\n    - name: start databases\n      run: go run ./cmd/sqlc-test-setup start\n\n    - name: test ./...\n      run: gotestsum --junitfile junit.xml -- --tags=examples -timeout 20m -failfast ./...\n      env:\n        CI_SQLC_PROJECT_ID: ${{ secrets.CI_SQLC_PROJECT_ID }}\n        CI_SQLC_AUTH_TOKEN: ${{ secrets.CI_SQLC_AUTH_TOKEN }}\n        SQLC_AUTH_TOKEN: ${{ secrets.CI_SQLC_AUTH_TOKEN }}\n        POSTGRESQL_SERVER_URI: \"postgres://postgres:postgres@127.0.0.1:5432/postgres?sslmode=disable\"\n        MYSQL_SERVER_URI: \"root:mysecretpassword@tcp(127.0.0.1:3306)/mysql?multiStatements=true&parseTime=true\"\n        CGO_ENABLED: \"0\"\n\n  vuln_check:\n    runs-on: ubuntu-24.04\n    timeout-minutes: 5\n\n    steps:\n    - uses: golang/govulncheck-action@v1\n"
  },
  {
    "path": ".github/workflows/gen.yml",
    "content": "name: sqlc-pg-gen\non:\n  workflow_dispatch:\njobs:\n  gen:\n    name: sqlc-pg-gen\n    runs-on: ubuntu-22.04\n    services:\n      postgres:\n        image: postgres:15.0-alpine\n        env:\n          POSTGRES_USER: postgres\n          POSTGRES_PASSWORD: postgres\n          POSTGRES_DB: postgres\n        ports:\n        - 5432:5432\n        # needed because the postgres container does not provide a healthcheck\n        options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5\n    steps:\n    - uses: actions/checkout@v6\n    - uses: actions/setup-go@v6\n      with:\n        go-version-file: go.mod\n        check-latest: true\n    - run: go build -o sqlc-pg-gen ./internal/tools/sqlc-pg-gen\n    - run: mkdir -p gen/contrib\n    - run: ./sqlc-pg-gen gen\n      env:\n        PG_USER: postgres\n        PG_HOST: localhost\n        PG_DATABASE: postgres\n        PG_PASSWORD: postgres\n        PG_PORT: ${{ job.services.postgres.ports['5432'] }}\n    - name: Save results\n      uses: actions/upload-artifact@v6\n      with:\n        name: sqlc-pg-gen-results\n        path: gen\n\n"
  },
  {
    "path": ".gitignore",
    "content": "/.idea/\n__pycache__\n.DS_Store\n.*.swp\n\n# Devenv\n.envrc\n.direnv\n.devenv*\ndevenv.local.nix\n\n"
  },
  {
    "path": ".readthedocs.yaml",
    "content": "# .readthedocs.yaml\n# Read the Docs configuration file\n# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details\n\n# Required\nversion: 2\n\n# Set the version of Python and other tools you might need\nbuild:\n  os: ubuntu-22.04\n  tools:\n    python: \"3.11\"\n\n# Build documentation in the docs/ directory with Sphinx\nsphinx:\n  configuration: docs/conf.py\n\n# We recommend specifying your dependencies to enable reproducible builds:\n# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html\npython:\n  install:\n  - requirements: docs/requirements.txt\n"
  },
  {
    "path": ".vscode/settings.json",
    "content": "{\n    \"files.insertFinalNewline\": true\n}\n"
  },
  {
    "path": "CLAUDE.md",
    "content": "# Claude Code Development Guide for sqlc\n\nThis document provides essential information for working with the sqlc codebase, including testing, development workflow, and code structure.\n\n## Quick Start\n\n### Prerequisites\n\n- **Go 1.26.0+** - Required for building and testing\n- **Docker & Docker Compose** - Required for integration tests with databases (local development)\n- **Git** - For version control\n\n## Database Setup with sqlc-test-setup\n\nThe `sqlc-test-setup` tool (`cmd/sqlc-test-setup/`) automates installing and starting PostgreSQL and MySQL for tests. Both commands are idempotent and safe to re-run.\n\n### Install databases\n\n```bash\ngo run ./cmd/sqlc-test-setup install\n```\n\nThis will:\n- Configure the apt proxy (if `http_proxy` is set, e.g. in Claude Code remote environments)\n- Install PostgreSQL via apt\n- Download and install MySQL 9 from Oracle's deb bundle\n- Resolve all dependencies automatically\n- Skip anything already installed\n\n### Start databases\n\n```bash\ngo run ./cmd/sqlc-test-setup start\n```\n\nThis will:\n- Start PostgreSQL and configure password auth (`postgres`/`postgres`)\n- Start MySQL via `mysqld_safe` and set root password (`mysecretpassword`)\n- Verify both connections\n- Skip steps that are already done (running services, existing config)\n\nConnection URIs after start:\n- PostgreSQL: `postgres://postgres:postgres@127.0.0.1:5432/postgres?sslmode=disable`\n- MySQL: `root:mysecretpassword@tcp(127.0.0.1:3306)/mysql`\n\n### Run tests\n\n```bash\n# Full test suite (requires databases running)\ngo test --tags=examples -timeout 20m ./...\n```\n\n## Running Tests\n\n### Basic Unit Tests (No Database Required)\n\n```bash\ngo test ./...\n```\n\n### Full Test Suite with Docker (Local Development)\n\n```bash\ndocker compose up -d\ngo test --tags=examples -timeout 20m ./...\n```\n\n### Full Test Suite without Docker (Remote / CI)\n\n```bash\ngo run ./cmd/sqlc-test-setup install\ngo run ./cmd/sqlc-test-setup start\ngo test --tags=examples -timeout 20m ./...\n```\n\n### Running Specific Tests\n\n```bash\n# Test a specific package\ngo test ./internal/config\n\n# Run with verbose output\ngo test -v ./internal/config\n\n# Run a specific test function\ngo test -v ./internal/config -run TestConfig\n\n# Run with race detector (recommended for concurrency changes)\ngo test -race ./internal/config\n```\n\n## Test Types\n\n### 1. Unit Tests\n\n- **Location:** Throughout the codebase as `*_test.go` files\n- **Run without:** Database or external dependencies\n- **Examples:**\n  - `/internal/config/config_test.go` - Configuration parsing\n  - `/internal/compiler/selector_test.go` - Compiler logic\n  - `/internal/metadata/metadata_test.go` - Query metadata parsing\n\n### 2. End-to-End Tests\n\n- **Location:** `/internal/endtoend/`\n- **Requirements:** `--tags=examples` flag and running databases\n- **Tests:**\n  - `TestExamples` - Main end-to-end tests\n  - `TestReplay` - Replay tests\n  - `TestFormat` - Code formatting tests\n  - `TestJsonSchema` - JSON schema validation\n  - `TestExamplesVet` - Static analysis tests\n\n### 3. Example Tests\n\n- **Location:** `/examples/` directory\n- **Requirements:** Tagged with \"examples\", requires live databases\n- **Databases:** PostgreSQL, MySQL, SQLite examples\n\n## Database Services\n\nThe `docker-compose.yml` provides test databases:\n\n- **PostgreSQL 16** - Port 5432\n  - User: `postgres`\n  - Password: `mysecretpassword`\n  - Database: `postgres`\n\n- **MySQL 9** - Port 3306\n  - User: `root`\n  - Password: `mysecretpassword`\n  - Database: `dinotest`\n\n## Makefile Targets\n\n```bash\nmake test              # Basic unit tests only\nmake test-examples     # Tests with examples tag\nmake build-endtoend    # Build end-to-end test data\nmake test-ci           # Full CI suite (examples + endtoend + vet)\nmake vet               # Run go vet\nmake start             # Start database containers\n```\n\n## CI/CD Configuration\n\n### GitHub Actions Workflow\n\n- **File:** `.github/workflows/ci.yml`\n- **Go Version:** 1.26.0\n- **Database Setup:** Uses `sqlc-test-setup` (not Docker) to install and start PostgreSQL and MySQL directly on the runner\n- **Test Command:** `gotestsum --junitfile junit.xml -- --tags=examples -timeout 20m ./...`\n- **Additional Checks:** `govulncheck` for vulnerability scanning\n\n## Development Workflow\n\n### Building Development Versions\n\n```bash\n# Build main sqlc binary for development\ngo build -o ~/go/bin/sqlc-dev ./cmd/sqlc\n\n# Build JSON plugin (required for some tests)\ngo build -o ~/go/bin/sqlc-gen-json ./cmd/sqlc-gen-json\n```\n\n### Environment Variables for Tests\n\nYou can override database connections via environment variables:\n\n```bash\nPOSTGRESQL_SERVER_URI=\"postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable\"\nMYSQL_SERVER_URI=\"root:mysecretpassword@tcp(127.0.0.1:3306)/mysql?multiStatements=true&parseTime=true\"\n```\n\n## Code Structure\n\n### Key Directories\n\n- `/cmd/` - Main binaries (sqlc, sqlc-gen-json, sqlc-test-setup)\n- `/internal/cmd/` - Command implementations (vet, generate, etc.)\n- `/internal/engine/` - Database engine implementations\n  - `/postgresql/` - PostgreSQL parser and converter\n  - `/dolphin/` - MySQL parser (uses TiDB parser)\n  - `/sqlite/` - SQLite parser\n- `/internal/compiler/` - Query compilation logic\n- `/internal/codegen/` - Code generation for different languages\n- `/internal/config/` - Configuration file parsing\n- `/internal/endtoend/` - End-to-end tests\n- `/internal/sqltest/` - Test database setup (Docker, native, local detection)\n- `/examples/` - Example projects for testing\n\n### Important Files\n\n- `/Makefile` - Build and test targets\n- `/docker-compose.yml` - Database services for testing\n- `/.github/workflows/ci.yml` - CI configuration\n\n## Common Issues & Solutions\n\n### Network Connectivity Issues\n\nIf you see errors about `storage.googleapis.com`, the Go proxy may be unreachable. Use `GOPROXY=direct go mod download` to fetch modules directly from source.\n\n### Test Timeouts\n\nEnd-to-end tests can take a while. Use longer timeouts:\n```bash\ngo test -timeout 20m --tags=examples ./...\n```\n\n### Race Conditions\n\nAlways run tests with the race detector when working on concurrent code:\n```bash\ngo test -race ./...\n```\n\n### Database Connection Failures\n\nIf using Docker:\n```bash\ndocker compose ps\ndocker compose up -d\n```\n\nIf using sqlc-test-setup:\n```bash\ngo run ./cmd/sqlc-test-setup start\n```\n\n## Tips for Contributors\n\n1. **Run tests before committing:** `go test --tags=examples -timeout 20m ./...`\n2. **Check for race conditions:** Use `-race` flag when testing concurrent code\n3. **Use specific package tests:** Faster iteration during development\n4. **Read existing tests:** Good examples in `/internal/engine/postgresql/*_test.go`\n\n## Git Workflow\n\n### Branch Naming\n\n- Feature branches should start with `claude/` for Claude Code work\n- Branch names should be descriptive and end with the session ID\n\n### Committing Changes\n\n```bash\ngit add <files>\ngit commit -m \"Brief description of changes\"\ngit push -u origin <branch-name>\n```\n\n### Rebasing\n\n```bash\ngit checkout main\ngit pull origin main\ngit checkout <feature-branch>\ngit rebase main\ngit push --force-with-lease origin <feature-branch>\n```\n\n## Resources\n\n- **Main Documentation:** `/docs/`\n- **Development Guide:** `/docs/guides/development.md`\n- **CI Configuration:** `/.github/workflows/ci.yml`\n- **Docker Compose:** `/docker-compose.yml`\n"
  },
  {
    "path": "Dockerfile",
    "content": "# STEP 1: Build sqlc\nFROM golang:1.26.0 AS builder\n\nCOPY . /workspace\nWORKDIR /workspace\n\nARG github_ref\nARG github_sha\nARG version\nENV GITHUB_REF=$github_ref\nENV GITHUB_SHA=$github_sha\nENV VERSION=$version\nRUN go run scripts/release.go -docker\n\n# STEP 2: Build a tiny image\nFROM gcr.io/distroless/base-debian12\n\nCOPY --from=builder /workspace/sqlc /workspace/sqlc\nENTRYPOINT [\"/workspace/sqlc\"]\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2024 Riza, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "Makefile",
    "content": ".PHONY: build build-endtoend test test-ci test-examples test-endtoend start psql mysqlsh proto\n\nbuild:\n\tgo build ./...\n\ninstall:\n\tgo install ./...\n\ntest:\n\tgo test ./...\n\ntest-managed:\n\tMYSQL_SERVER_URI=\"invalid\" POSTGRESQL_SERVER_URI=\"postgres://postgres:mysecretpassword@localhost:5432/postgres\" go test -v ./...\n\nvet:\n\tgo vet ./...\n\ntest-examples:\n\tgo test --tags=examples ./...\n\nbuild-endtoend:\n\tcd ./internal/endtoend/testdata && go build ./...\n\ntest-ci: test-examples build-endtoend vet\n\nsqlc-dev:\n\tgo build -o ~/bin/sqlc-dev ./cmd/sqlc/\n\nsqlc-pg-gen:\n\tgo build -o ~/bin/sqlc-pg-gen ./internal/tools/sqlc-pg-gen\n\nsqlc-gen-json:\n\tgo build -o ~/bin/sqlc-gen-json ./cmd/sqlc-gen-json\n\ntest-json-process-plugin:\n\tgo build -o ~/bin/test-json-process-plugin ./scripts/test-json-process-plugin/\n\nstart:\n\tdocker compose up -d\n\nfmt:\n\tgo fmt ./...\n\npsql:\n\tPGPASSWORD=mysecretpassword psql --host=127.0.0.1 --port=5432 --username=postgres dinotest\n\nmysqlsh:\n\tmysqlsh --sql --user root --password mysecretpassword --database dinotest 127.0.0.1:3306\n\nproto:\n\tbuf generate\n\nremote-proto:\n\tprotoc \\\n\t\t--go_out=. --go_opt=\"Minternal/remote/gen.proto=github.com/sqlc-dev/sqlc/internal/remote\" --go_opt=module=github.com/sqlc-dev/sqlc \\\n        --go-grpc_out=. --go-grpc_opt=\"Minternal/remote/gen.proto=github.com/sqlc-dev/sqlc/internal/remote\" --go-grpc_opt=module=github.com/sqlc-dev/sqlc \\\n        internal/remote/gen.proto\n"
  },
  {
    "path": "README.md",
    "content": "# sqlc: A SQL Compiler\n\n![go](https://github.com/sqlc-dev/sqlc/workflows/go/badge.svg)\n[![Go Report Card](https://goreportcard.com/badge/github.com/sqlc-dev/sqlc)](https://goreportcard.com/report/github.com/sqlc-dev/sqlc)\n\nsqlc generates **type-safe code** from SQL. Here's how it works:\n\n1. You write queries in SQL.\n1. You run sqlc to generate code with type-safe interfaces to those queries.\n1. You write application code that calls the generated code.\n\nCheck out [an interactive example](https://play.sqlc.dev/) to see it in action, and the [introductory blog post](https://conroy.org/introducing-sqlc) for the motivation behind sqlc.\n\n## Overview\n\n- [Documentation](https://docs.sqlc.dev)\n- [Installation](https://docs.sqlc.dev/en/latest/overview/install.html)\n- [Playground](https://play.sqlc.dev)\n- [Website](https://sqlc.dev)\n- [Downloads](https://downloads.sqlc.dev/)\n- [Community](https://discord.gg/EcXzGe5SEs)\n\n## Supported languages\n\n- [sqlc-gen-go](https://github.com/sqlc-dev/sqlc-gen-go)\n- [sqlc-gen-kotlin](https://github.com/sqlc-dev/sqlc-gen-kotlin)\n- [sqlc-gen-python](https://github.com/sqlc-dev/sqlc-gen-python)\n- [sqlc-gen-typescript](https://github.com/sqlc-dev/sqlc-gen-typescript)\n\nAdditional languages can be added via [plugins](https://docs.sqlc.dev/en/latest/reference/language-support.html#community-language-support).\n\n## Sponsors\n\nDevelopment is possible thanks to our sponsors. If you would like to support sqlc,\nplease consider [sponsoring on GitHub](https://github.com/sponsors/kyleconroy).\n\n<p align=\"center\">\n  <a href=\"https://riza.io?utm_source=sqlc+readme\"><img width=400 src=\"https://sqlc.dev/sponsors/riza-readme.png\" alt=\"Riza.io\"></a>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://coder.com?utm_source=sqlc+readme\"><img width=200 src=\"https://sqlc.dev/sponsors/coder-readme.png\" alt=\"Coder.com\" /></a>\n  <a href=\"https://mint.fun?utm_source=sqlc+readme\"><img width=200 src=\"https://sqlc.dev/sponsors/mint-readme.png\" alt=\"Mint.fun\" /></a>\n  <a href=\"https://mux.com?utm_source=sqlc+readme\"><img width=200 src=\"https://sqlc.dev/sponsors/mux-readme.png\" alt=\"Mux.com\" /></a>\n</p>\n\n<p align=\"center\">\n  <a href=\"https://github.com/Cyberax\">Cyberax</a> - \n  <a href=\"https://github.com/NaNuNaNu\">NaNuNaNu</a> - \n  <a href=\"https://github.com/Stumble\">Stumble</a> - \n  <a href=\"https://github.com/WestfalNamur\">WestfalNamur</a> - \n  <a href=\"https://github.com/alecthomas\">alecthomas</a> - \n  <a href=\"https://github.com/cameronnewman\">cameronnewman</a> - \n  <a href=\"https://github.com/danielbprice\">danielbprice</a> - \n  <a href=\"https://github.com/davherrmann\">davherrmann</a> - \n  <a href=\"https://github.com/dvob\">dvob</a> - \n  <a href=\"https://github.com/gilcrest\">gilcrest</a> - \n  <a href=\"https://github.com/gzuidhof\">gzuidhof</a> - \n  <a href=\"https://github.com/jeffreylo\">jeffreylo</a> - \n  <a href=\"https://github.com/mmcloughlin\">mmcloughlin</a> - \n  <a href=\"https://github.com/ryohei1216\">ryohei1216</a> - \n  <a href=\"https://github.com/sgielen\">sgielen</a>\n</p>\n"
  },
  {
    "path": "buf.gen.yaml",
    "content": "version: v1\nmanaged:\n  enabled: true\n  go_package_prefix:\n    default: \"github.com/sqlc-dev/sqlc/internal\"\nplugins:\n  - plugin: buf.build/protocolbuffers/go:v1.30.0\n    out: internal\n    opt: paths=source_relative\n  - plugin: buf.build/grpc/go:v1.3.0\n    out: internal\n    opt: paths=source_relative\n"
  },
  {
    "path": "buf.work.yaml",
    "content": "version: v1\ndirectories:\n  - protos"
  },
  {
    "path": "cliff.toml",
    "content": "# configuration file for git-cliff (0.1.0)\n\n[changelog]\n# changelog header\nheader = \"\"\"\n# Changelog\nAll notable changes to this project will be documented in this file.\\n\n\"\"\"\n# template for the changelog body\n# https://tera.netlify.app/docs/#introduction\nbody = \"\"\"\n{% if version %}\\\n    ## [{{ version | trim_start_matches(pat=\"v\") }}](https://github.com/sqlc-dev/sqlc/releases/tag/{{ version }})\n{% else %}\\\n    ## [unreleased]\n{% endif %}\\\n\nReleased {{ timestamp | date(format=\"%Y-%m-%d\") }}\n\n{% for group, commits in commits | group_by(attribute=\"group\") %}\n    ### {{ group | upper_first }}\n    {% for commit in commits %}\n        - {%if commit.scope %}({{commit.scope}}) {% endif %}{{ commit.message | upper_first }}\\\n    {% endfor %}\n{% endfor %}\\n\n\"\"\"\n# remove the leading and trailing whitespaces from the template\ntrim = true\n# changelog footer\nfooter = \"\"\"\n<!-- generated by git-cliff -->\n\"\"\"\n\n[git]\n# allow only conventional commits\n# https://www.conventionalcommits.org\nconventional_commits = true\n# regex for parsing and grouping commits\ncommit_parsers = [\n    { message = \"^feat\", group = \"Features\"},\n    { message = \"^fix\", group = \"Bug Fixes\"},\n    { message = \"^doc\", group = \"Documentation\"},\n    { message = \"^perf\", group = \"Performance\"},\n    { message = \"^refactor\", group = \"Refactor\"},\n    { message = \"^style\", group = \"Styling\"},\n    { message = \"^test\", group = \"Testing\"},\n    { message = \"^chore\\\\(release\\\\): prepare for\", skip = true},\n    { message = \"^chore\", group = \"Miscellaneous Tasks\"},\n    { body = \".*security\", group = \"Security\"},\n]\n# filter out the commits that are not matched by commit parsers\nfilter_commits = false\n# glob pattern for matching git tags\ntag_pattern = \"v[0-9]*\"\n# regex for skipping tags\nskip_tags = \"v*beta\"\n"
  },
  {
    "path": "cmd/sqlc/main.go",
    "content": "package main\n\nimport (\n\t\"os\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/cmd\"\n)\n\nfunc main() {\n\tos.Exit(cmd.Do(os.Args[1:], os.Stdin, os.Stdout, os.Stderr))\n}\n"
  },
  {
    "path": "cmd/sqlc-gen-json/main.go",
    "content": "package main\n\nimport (\n\t\"bufio\"\n\t\"context\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/json\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n\t\"google.golang.org/protobuf/proto\"\n)\n\nfunc main() {\n\tif err := run(); err != nil {\n\t\tfmt.Fprintf(os.Stderr, \"error generating JSON: %s\", err)\n\t\tos.Exit(2)\n\t}\n}\n\nfunc run() error {\n\tvar req plugin.GenerateRequest\n\treqBlob, err := io.ReadAll(os.Stdin)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif err := proto.Unmarshal(reqBlob, &req); err != nil {\n\t\treturn err\n\t}\n\tresp, err := json.Generate(context.Background(), &req)\n\tif err != nil {\n\t\treturn err\n\t}\n\trespBlob, err := proto.Marshal(resp)\n\tif err != nil {\n\t\treturn err\n\t}\n\tw := bufio.NewWriter(os.Stdout)\n\tif _, err := w.Write(respBlob); err != nil {\n\t\treturn err\n\t}\n\tif err := w.Flush(); err != nil {\n\t\treturn err\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "cmd/sqlc-test-setup/main.go",
    "content": "package main\n\nimport (\n\t\"crypto/sha256\"\n\t\"encoding/hex\"\n\t\"fmt\"\n\t\"io\"\n\t\"log\"\n\t\"net/http\"\n\t\"os\"\n\t\"os/exec\"\n\t\"path/filepath\"\n\t\"runtime\"\n\t\"strings\"\n\t\"time\"\n)\n\nconst (\n\t// pgVersion is the PostgreSQL version to install.\n\tpgVersion = \"18.2.0\"\n)\n\n// pgBinary contains the download information for a PostgreSQL binary release.\ntype pgBinary struct {\n\tURL    string\n\tSHA256 string\n}\n\n// pgBinaries maps \"<GOOS>/<GOARCH>\" to the corresponding binary download info.\nvar pgBinaries = map[string]pgBinary{\n\t\"linux/amd64\": {\n\t\tURL:    \"https://github.com/theseus-rs/postgresql-binaries/releases/download/\" + pgVersion + \"/postgresql-\" + pgVersion + \"-x86_64-unknown-linux-gnu.tar.gz\",\n\t\tSHA256: \"cc2674e1641aa2a62b478971a22c131a768eb783f313e6a3385888f58a604074\",\n\t},\n\t\"linux/arm64\": {\n\t\tURL:    \"https://github.com/theseus-rs/postgresql-binaries/releases/download/\" + pgVersion + \"/postgresql-\" + pgVersion + \"-aarch64-unknown-linux-gnu.tar.gz\",\n\t\tSHA256: \"8b415a11c7a5484e5fbf7a57fca71554d2d1d7acd34faf066606d2fee1261854\",\n\t},\n}\n\nfunc main() {\n\tlog.SetFlags(log.Ltime)\n\tlog.SetPrefix(\"[sqlc-test-setup] \")\n\n\tif len(os.Args) < 2 {\n\t\tfmt.Fprintln(os.Stderr, \"usage: sqlc-test-setup <install|start>\")\n\t\tos.Exit(1)\n\t}\n\n\tswitch os.Args[1] {\n\tcase \"install\":\n\t\tif err := runInstall(); err != nil {\n\t\t\tlog.Fatalf(\"install failed: %s\", err)\n\t\t}\n\tcase \"start\":\n\t\tif err := runStart(); err != nil {\n\t\t\tlog.Fatalf(\"start failed: %s\", err)\n\t\t}\n\tdefault:\n\t\tfmt.Fprintf(os.Stderr, \"unknown command: %s\\nusage: sqlc-test-setup <install|start>\\n\", os.Args[1])\n\t\tos.Exit(1)\n\t}\n}\n\n// run executes a command with verbose logging, streaming output to stderr.\nfunc run(name string, args ...string) error {\n\tlog.Printf(\"exec: %s %s\", name, strings.Join(args, \" \"))\n\tcmd := exec.Command(name, args...)\n\tcmd.Stdout = os.Stderr\n\tcmd.Stderr = os.Stderr\n\tcmd.Stdin = os.Stdin\n\treturn cmd.Run()\n}\n\n// runOutput executes a command and returns its combined output.\nfunc runOutput(name string, args ...string) (string, error) {\n\tlog.Printf(\"exec: %s %s\", name, strings.Join(args, \" \"))\n\tcmd := exec.Command(name, args...)\n\tout, err := cmd.CombinedOutput()\n\treturn string(out), err\n}\n\n// commandExists checks if a binary is available in PATH.\nfunc commandExists(name string) bool {\n\t_, err := exec.LookPath(name)\n\treturn err == nil\n}\n\n// isMySQLVersionOK checks if the mysqld --version output indicates MySQL 9+.\n// Example version string: \"/usr/sbin/mysqld  Ver 8.0.44-0ubuntu0.24.04.2 ...\"\nfunc isMySQLVersionOK(versionOutput string) bool {\n\t// Look for \"Ver X.Y.Z\" pattern\n\tfields := strings.Fields(versionOutput)\n\tfor i, f := range fields {\n\t\tif strings.EqualFold(f, \"Ver\") && i+1 < len(fields) {\n\t\t\tver := strings.Split(fields[i+1], \".\")\n\t\t\tif len(ver) > 0 {\n\t\t\t\tmajor := strings.TrimLeft(ver[0], \"0\")\n\t\t\t\tif major == \"\" {\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t\treturn major[0] >= '9'\n\t\t\t}\n\t\t}\n\t}\n\treturn false\n}\n\n// pgBaseDir returns the sqlc-specific directory where PostgreSQL is installed,\n// using the user's cache directory (~/.cache/sqlc/postgresql on Linux).\nfunc pgBaseDir() string {\n\tcacheDir, err := os.UserCacheDir()\n\tif err != nil {\n\t\tcacheDir = filepath.Join(os.Getenv(\"HOME\"), \".cache\")\n\t}\n\treturn filepath.Join(cacheDir, \"sqlc\", \"postgresql\")\n}\n\n// pgBinDir returns the path to the PostgreSQL bin directory.\nfunc pgBinDir() string {\n\treturn filepath.Join(pgBaseDir(), \"bin\")\n}\n\n// pgDataDir returns the path to the PostgreSQL data directory.\nfunc pgDataDir() string {\n\treturn filepath.Join(pgBaseDir(), \"data\")\n}\n\n// pgBin returns the full path to a PostgreSQL binary.\nfunc pgBin(name string) string {\n\treturn filepath.Join(pgBinDir(), name)\n}\n\n// ---- install ----\n\nfunc runInstall() error {\n\tlog.Println(\"=== Installing PostgreSQL and MySQL for test setup ===\")\n\n\tif err := installAptProxy(); err != nil {\n\t\treturn fmt.Errorf(\"configuring apt proxy: %w\", err)\n\t}\n\n\tif err := installPostgreSQL(); err != nil {\n\t\treturn fmt.Errorf(\"installing postgresql: %w\", err)\n\t}\n\n\tif err := installMySQL(); err != nil {\n\t\treturn fmt.Errorf(\"installing mysql: %w\", err)\n\t}\n\n\tlog.Println(\"=== Install complete ===\")\n\treturn nil\n}\n\nfunc installAptProxy() error {\n\tproxy := os.Getenv(\"http_proxy\")\n\tif proxy == \"\" {\n\t\tlog.Println(\"http_proxy is not set, skipping apt proxy configuration\")\n\t\treturn nil\n\t}\n\n\tconst confPath = \"/etc/apt/apt.conf.d/99proxy\"\n\tif _, err := os.Stat(confPath); err == nil {\n\t\tlog.Printf(\"apt proxy config already exists at %s, skipping\", confPath)\n\t\treturn nil\n\t}\n\n\tlog.Printf(\"configuring apt proxy to use %s\", proxy)\n\tproxyConf := fmt.Sprintf(\"Acquire::http::Proxy \\\"%s\\\";\", proxy)\n\tcmd := fmt.Sprintf(\"echo '%s' | sudo tee /etc/apt/apt.conf.d/99proxy\", proxyConf)\n\treturn run(\"bash\", \"-c\", cmd)\n}\n\nfunc installPostgreSQL() error {\n\tlog.Println(\"--- Installing PostgreSQL ---\")\n\n\t// Install runtime dependencies needed by PostgreSQL extensions (e.g.\n\t// uuid-ossp requires libossp-uuid16).\n\tif err := installPgDeps(); err != nil {\n\t\treturn fmt.Errorf(\"installing postgresql dependencies: %w\", err)\n\t}\n\n\t// Check if already installed in our directory\n\tif _, err := os.Stat(pgBin(\"postgres\")); err == nil {\n\t\tout, err := runOutput(pgBin(\"postgres\"), \"--version\")\n\t\tif err == nil {\n\t\t\tlog.Printf(\"postgresql is already installed: %s\", strings.TrimSpace(out))\n\t\t\tlog.Println(\"skipping postgresql installation\")\n\t\t\treturn nil\n\t\t}\n\t}\n\n\tplatform := runtime.GOOS + \"/\" + runtime.GOARCH\n\tbin, ok := pgBinaries[platform]\n\tif !ok {\n\t\treturn fmt.Errorf(\"unsupported platform: %s (supported: %s)\", platform, supportedPlatforms())\n\t}\n\n\t// Download to a temp file\n\ttarball := filepath.Join(os.TempDir(), fmt.Sprintf(\"postgresql-%s.tar.gz\", pgVersion))\n\n\tif _, err := os.Stat(tarball); err != nil {\n\t\tlog.Printf(\"downloading PostgreSQL %s from %s\", pgVersion, bin.URL)\n\t\tif err := downloadFile(tarball, bin.URL); err != nil {\n\t\t\tos.Remove(tarball)\n\t\t\treturn fmt.Errorf(\"downloading postgresql: %w\", err)\n\t\t}\n\t} else {\n\t\tlog.Printf(\"postgresql tarball already downloaded at %s\", tarball)\n\t}\n\n\t// Verify SHA256 checksum\n\tlog.Printf(\"verifying SHA256 checksum\")\n\tactualHash, err := sha256File(tarball)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"computing sha256: %w\", err)\n\t}\n\tif actualHash != bin.SHA256 {\n\t\tos.Remove(tarball)\n\t\treturn fmt.Errorf(\"SHA256 mismatch: expected %s, got %s\", bin.SHA256, actualHash)\n\t}\n\tlog.Printf(\"SHA256 checksum verified: %s\", actualHash)\n\n\tbaseDir := pgBaseDir()\n\n\t// Create the base directory in the user cache\n\tif err := os.MkdirAll(baseDir, 0o755); err != nil {\n\t\treturn fmt.Errorf(\"creating %s: %w\", baseDir, err)\n\t}\n\n\t// Extract the tarball - it contains a top-level directory like\n\t// postgresql-18.2.0-x86_64-unknown-linux-gnu/ with bin/, lib/, share/ inside.\n\t// We strip that top-level directory and extract directly into the base dir.\n\tlog.Printf(\"extracting postgresql to %s\", baseDir)\n\tif err := run(\"tar\", \"-xzf\", tarball, \"-C\", baseDir, \"--strip-components=1\"); err != nil {\n\t\treturn fmt.Errorf(\"extracting postgresql: %w\", err)\n\t}\n\n\t// Verify the binary works\n\tout, err := runOutput(pgBin(\"postgres\"), \"--version\")\n\tif err != nil {\n\t\treturn fmt.Errorf(\"postgres --version failed after install: %w\", err)\n\t}\n\tlog.Printf(\"postgresql installed successfully: %s\", strings.TrimSpace(out))\n\treturn nil\n}\n\n// installPgDeps installs shared libraries required by PostgreSQL extensions at\n// runtime (e.g. libossp-uuid16 for uuid-ossp).\nfunc installPgDeps() error {\n\tlog.Println(\"installing postgresql runtime dependencies\")\n\tif err := run(\"sudo\", \"apt-get\", \"install\", \"-y\", \"--no-install-recommends\", \"libossp-uuid16\"); err != nil {\n\t\treturn fmt.Errorf(\"apt-get install libossp-uuid16: %w\", err)\n\t}\n\treturn nil\n}\n\n// supportedPlatforms returns a comma-separated list of supported platforms.\nfunc supportedPlatforms() string {\n\tplatforms := make([]string, 0, len(pgBinaries))\n\tfor p := range pgBinaries {\n\t\tplatforms = append(platforms, p)\n\t}\n\treturn strings.Join(platforms, \", \")\n}\n\n// downloadFile downloads a URL to a local file path.\nfunc downloadFile(filepath string, url string) error {\n\tresp, err := http.Get(url)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer resp.Body.Close()\n\n\tif resp.StatusCode != http.StatusOK {\n\t\treturn fmt.Errorf(\"HTTP %d: %s\", resp.StatusCode, resp.Status)\n\t}\n\n\tout, err := os.Create(filepath)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer out.Close()\n\n\t_, err = io.Copy(out, resp.Body)\n\treturn err\n}\n\n// sha256File computes the SHA256 hash of a file and returns the hex string.\nfunc sha256File(path string) (string, error) {\n\tf, err := os.Open(path)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tdefer f.Close()\n\n\th := sha256.New()\n\tif _, err := io.Copy(h, f); err != nil {\n\t\treturn \"\", err\n\t}\n\treturn hex.EncodeToString(h.Sum(nil)), nil\n}\n\nfunc installMySQL() error {\n\tlog.Println(\"--- Installing MySQL 9 ---\")\n\n\tif commandExists(\"mysqld\") {\n\t\tout, err := runOutput(\"mysqld\", \"--version\")\n\t\tif err == nil {\n\t\t\tversion := strings.TrimSpace(out)\n\t\t\tlog.Printf(\"mysql is already installed: %s\", version)\n\t\t\tif isMySQLVersionOK(version) {\n\t\t\t\tlog.Println(\"mysql version is 9+, skipping installation\")\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\tlog.Println(\"mysql version is too old, upgrading to MySQL 9\")\n\t\t\t// Stop existing MySQL before upgrading\n\t\t\t_ = exec.Command(\"sudo\", \"service\", \"mysql\", \"stop\").Run()\n\t\t\t_ = exec.Command(\"sudo\", \"pkill\", \"-f\", \"mysqld\").Run()\n\t\t\ttime.Sleep(2 * time.Second)\n\t\t\t// Remove old MySQL packages to avoid conflicts\n\t\t\tlog.Println(\"removing old mysql packages\")\n\t\t\t_ = run(\"sudo\", \"apt-get\", \"remove\", \"-y\", \"mysql-server\", \"mysql-client\", \"mysql-common\",\n\t\t\t\t\"mysql-server-core-*\", \"mysql-client-core-*\")\n\t\t\t// Clear old data directory so MySQL 9 can initialize fresh\n\t\t\tlog.Println(\"clearing old mysql data directory\")\n\t\t\t_ = run(\"sudo\", \"rm\", \"-rf\", \"/var/lib/mysql\")\n\t\t\t_ = run(\"sudo\", \"mkdir\", \"-p\", \"/var/lib/mysql\")\n\t\t\t_ = run(\"sudo\", \"chown\", \"mysql:mysql\", \"/var/lib/mysql\")\n\t\t}\n\t}\n\n\tbundleURL := \"https://dev.mysql.com/get/Downloads/MySQL-9.1/mysql-server_9.1.0-1ubuntu24.04_amd64.deb-bundle.tar\"\n\tbundleTar := \"/tmp/mysql-server-bundle.tar\"\n\textractDir := \"/tmp/mysql9\"\n\n\tif _, err := os.Stat(bundleTar); err != nil {\n\t\tlog.Printf(\"downloading MySQL 9 bundle from %s\", bundleURL)\n\t\tif err := run(\"curl\", \"-L\", \"-o\", bundleTar, bundleURL); err != nil {\n\t\t\treturn fmt.Errorf(\"downloading mysql bundle: %w\", err)\n\t\t}\n\t} else {\n\t\tlog.Printf(\"mysql bundle already downloaded at %s, skipping download\", bundleTar)\n\t}\n\n\tlog.Printf(\"extracting bundle to %s\", extractDir)\n\tif err := os.MkdirAll(extractDir, 0o755); err != nil {\n\t\treturn fmt.Errorf(\"creating extract dir: %w\", err)\n\t}\n\tif err := run(\"tar\", \"-xf\", bundleTar, \"-C\", extractDir); err != nil {\n\t\treturn fmt.Errorf(\"extracting mysql bundle: %w\", err)\n\t}\n\n\t// Install packages in dependency order using dpkg.\n\t// Some packages may fail due to missing dependencies, which is expected.\n\t// We fix them all at the end with apt-get install -f.\n\tpackages := []string{\n\t\t\"mysql-common_*.deb\",\n\t\t\"mysql-community-client-plugins_*.deb\",\n\t\t\"mysql-community-client-core_*.deb\",\n\t\t\"mysql-community-client_*.deb\",\n\t\t\"mysql-client_*.deb\",\n\t\t\"mysql-community-server-core_*.deb\",\n\t\t\"mysql-community-server_*.deb\",\n\t\t\"mysql-server_*.deb\",\n\t}\n\n\tfor _, pkg := range packages {\n\t\tlog.Printf(\"installing %s (dependency errors will be fixed afterwards)\", pkg)\n\t\tcmd := fmt.Sprintf(\"sudo dpkg -i %s/%s\", extractDir, pkg)\n\t\tif err := run(\"bash\", \"-c\", cmd); err != nil {\n\t\t\tlog.Printf(\"dpkg reported errors for %s (will fix with apt-get install -f)\", pkg)\n\t\t}\n\t}\n\n\tlog.Println(\"fixing missing dependencies with apt-get install -f\")\n\tif err := run(\"sudo\", \"apt-get\", \"install\", \"-f\", \"-y\"); err != nil {\n\t\treturn fmt.Errorf(\"apt-get install -f: %w\", err)\n\t}\n\n\tlog.Println(\"mysql 9 installed successfully\")\n\treturn nil\n}\n\n// ---- start ----\n\nfunc runStart() error {\n\tlog.Println(\"=== Starting PostgreSQL and MySQL ===\")\n\n\tif err := startPostgreSQL(); err != nil {\n\t\treturn fmt.Errorf(\"starting postgresql: %w\", err)\n\t}\n\n\tif err := startMySQL(); err != nil {\n\t\treturn fmt.Errorf(\"starting mysql: %w\", err)\n\t}\n\n\tlog.Println(\"=== Both databases are running and configured ===\")\n\tlog.Println(\"PostgreSQL: postgres://postgres:postgres@127.0.0.1:5432/postgres?sslmode=disable\")\n\tlog.Println(\"MySQL:      root:mysecretpassword@tcp(127.0.0.1:3306)/mysql\")\n\treturn nil\n}\n\nfunc startPostgreSQL() error {\n\tlog.Println(\"--- Starting PostgreSQL ---\")\n\n\tdataDir := pgDataDir()\n\tlogFile := filepath.Join(pgBaseDir(), \"postgresql.log\")\n\n\t// Check if already running\n\tif pgIsReady() {\n\t\tlog.Println(\"postgresql is already running and accepting connections\")\n\t\treturn nil\n\t}\n\n\t// Initialize data directory if needed\n\tif _, err := os.Stat(filepath.Join(dataDir, \"PG_VERSION\")); os.IsNotExist(err) {\n\t\tlog.Println(\"initializing postgresql data directory\")\n\t\tif err := os.MkdirAll(dataDir, 0o700); err != nil {\n\t\t\treturn fmt.Errorf(\"creating data directory: %w\", err)\n\t\t}\n\t\tif err := run(pgBin(\"initdb\"),\n\t\t\t\"-D\", dataDir,\n\t\t\t\"--username=postgres\",\n\t\t\t\"--auth=trust\",\n\t\t); err != nil {\n\t\t\treturn fmt.Errorf(\"initdb: %w\", err)\n\t\t}\n\n\t\t// Configure pg_hba.conf for md5 password authentication on TCP\n\t\thbaPath := filepath.Join(dataDir, \"pg_hba.conf\")\n\t\tif err := configurePgHBA(hbaPath); err != nil {\n\t\t\treturn fmt.Errorf(\"configuring pg_hba.conf: %w\", err)\n\t\t}\n\n\t\t// Configure postgresql.conf to listen on localhost\n\t\tconfPath := filepath.Join(dataDir, \"postgresql.conf\")\n\t\tif err := appendToFile(confPath,\n\t\t\t\"\\n# sqlc-test-setup configuration\\n\"+\n\t\t\t\t\"listen_addresses = '127.0.0.1'\\n\"+\n\t\t\t\t\"port = 5432\\n\",\n\t\t); err != nil {\n\t\t\treturn fmt.Errorf(\"configuring postgresql.conf: %w\", err)\n\t\t}\n\t} else {\n\t\tlog.Println(\"postgresql data directory already initialized\")\n\t}\n\n\t// Start PostgreSQL using pg_ctl\n\tlog.Println(\"starting postgresql\")\n\tif err := run(pgBin(\"pg_ctl\"),\n\t\t\"-D\", dataDir,\n\t\t\"-l\", logFile,\n\t\t\"-o\", fmt.Sprintf(\"-k %s\", dataDir),\n\t\t\"start\",\n\t); err != nil {\n\t\treturn fmt.Errorf(\"pg_ctl start: %w\", err)\n\t}\n\n\t// Wait for PostgreSQL to be ready\n\tlog.Println(\"waiting for postgresql to accept connections\")\n\tif err := waitForPostgreSQL(30 * time.Second); err != nil {\n\t\treturn fmt.Errorf(\"postgresql did not start in time: %w\", err)\n\t}\n\n\t// Set the postgres user password\n\tlog.Println(\"setting password for postgres user\")\n\tif err := run(pgBin(\"psql\"),\n\t\t\"-h\", \"127.0.0.1\",\n\t\t\"-U\", \"postgres\",\n\t\t\"-c\", \"ALTER USER postgres PASSWORD 'postgres';\",\n\t); err != nil {\n\t\treturn fmt.Errorf(\"setting postgres password: %w\", err)\n\t}\n\n\t// Update pg_hba.conf to require md5 auth now that password is set\n\thbaPath := filepath.Join(dataDir, \"pg_hba.conf\")\n\tif err := configurePgHBAWithMD5(hbaPath); err != nil {\n\t\treturn fmt.Errorf(\"updating pg_hba.conf for md5: %w\", err)\n\t}\n\n\t// Reload configuration\n\tlog.Println(\"reloading postgresql configuration\")\n\tif err := run(pgBin(\"pg_ctl\"), \"-D\", dataDir, \"reload\"); err != nil {\n\t\treturn fmt.Errorf(\"pg_ctl reload: %w\", err)\n\t}\n\n\t// Verify connection with password\n\tlog.Println(\"verifying postgresql connection\")\n\tcmd := exec.Command(pgBin(\"psql\"),\n\t\t\"-h\", \"127.0.0.1\",\n\t\t\"-U\", \"postgres\",\n\t\t\"-c\", \"SELECT 1;\",\n\t)\n\tcmd.Env = append(os.Environ(), \"PGPASSWORD=postgres\")\n\tcmd.Stdout = os.Stderr\n\tcmd.Stderr = os.Stderr\n\tif err := cmd.Run(); err != nil {\n\t\treturn fmt.Errorf(\"postgresql connection test failed: %w\", err)\n\t}\n\n\tlog.Println(\"postgresql is running and configured\")\n\treturn nil\n}\n\n// configurePgHBA writes a pg_hba.conf that allows trust auth initially (for\n// setting the password), then we switch to md5.\nfunc configurePgHBA(hbaPath string) error {\n\tcontent := `# pg_hba.conf - generated by sqlc-test-setup\n# TYPE  DATABASE        USER            ADDRESS                 METHOD\nlocal   all             all                                     trust\nhost    all             all             127.0.0.1/32            trust\nhost    all             all             ::1/128                 trust\n`\n\treturn os.WriteFile(hbaPath, []byte(content), 0o600)\n}\n\n// configurePgHBAWithMD5 rewrites pg_hba.conf to use md5 for TCP connections.\nfunc configurePgHBAWithMD5(hbaPath string) error {\n\tcontent := `# pg_hba.conf - generated by sqlc-test-setup\n# TYPE  DATABASE        USER            ADDRESS                 METHOD\nlocal   all             all                                     trust\nhost    all             all             127.0.0.1/32            md5\nhost    all             all             ::1/128                 md5\n`\n\treturn os.WriteFile(hbaPath, []byte(content), 0o600)\n}\n\n// appendToFile appends text to a file.\nfunc appendToFile(path, text string) error {\n\tf, err := os.OpenFile(path, os.O_APPEND|os.O_WRONLY, 0o644)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer f.Close()\n\t_, err = f.WriteString(text)\n\treturn err\n}\n\n// pgIsReady checks if PostgreSQL is running and accepting connections.\nfunc pgIsReady() bool {\n\tcmd := exec.Command(pgBin(\"pg_isready\"), \"-h\", \"127.0.0.1\", \"-p\", \"5432\")\n\treturn cmd.Run() == nil\n}\n\n// waitForPostgreSQL polls until PostgreSQL accepts connections or times out.\nfunc waitForPostgreSQL(timeout time.Duration) error {\n\tdeadline := time.Now().Add(timeout)\n\tfor time.Now().Before(deadline) {\n\t\tif pgIsReady() {\n\t\t\treturn nil\n\t\t}\n\t\ttime.Sleep(500 * time.Millisecond)\n\t}\n\treturn fmt.Errorf(\"timed out after %s waiting for postgresql\", timeout)\n}\n\nfunc startMySQL() error {\n\tlog.Println(\"--- Starting MySQL ---\")\n\n\t// Check if MySQL is already running and accessible with the expected password\n\tif mysqlReady() {\n\t\tlog.Println(\"mysql is already running and accepting connections\")\n\t\treturn verifyMySQL()\n\t}\n\n\t// Stop any existing MySQL service that might be running (e.g. pre-installed\n\t// on GitHub Actions runners) to avoid port conflicts.\n\tlog.Println(\"stopping any existing mysql service\")\n\t_ = exec.Command(\"sudo\", \"service\", \"mysql\", \"stop\").Run()\n\t_ = exec.Command(\"sudo\", \"mysqladmin\", \"shutdown\").Run()\n\t// Give MySQL time to fully shut down\n\ttime.Sleep(2 * time.Second)\n\n\tif err := ensureMySQLDirs(); err != nil {\n\t\treturn err\n\t}\n\n\t// Check if data directory already exists and has been initialized\n\tneedsPasswordReset := false\n\tif mysqlInitialized() {\n\t\tlog.Println(\"mysql data directory already initialized, skipping initialization\")\n\t\t// Existing data dir may have an unknown root password (e.g. pre-installed\n\t\t// MySQL on GitHub Actions). We'll need to use --skip-grant-tables to reset it.\n\t\tneedsPasswordReset = true\n\t} else {\n\t\tlog.Println(\"initializing mysql data directory\")\n\t\tif err := run(\"sudo\", \"mysqld\", \"--initialize-insecure\", \"--user=mysql\"); err != nil {\n\t\t\treturn fmt.Errorf(\"mysqld --initialize-insecure: %w\", err)\n\t\t}\n\t}\n\n\tif needsPasswordReset {\n\t\t// Start with --skip-grant-tables to reset the unknown root password.\n\t\tif err := startMySQLDaemon(\"--skip-grant-tables\"); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tlog.Println(\"resetting root password via --skip-grant-tables\")\n\t\tresetSQL := \"FLUSH PRIVILEGES; ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'mysecretpassword';\"\n\t\tif err := run(\"mysql\", \"-u\", \"root\", \"-e\", resetSQL); err != nil {\n\t\t\treturn fmt.Errorf(\"resetting mysql root password: %w\", err)\n\t\t}\n\n\t\t// Restart without --skip-grant-tables\n\t\tlog.Println(\"restarting mysql normally\")\n\t\tif err := run(\"sudo\", \"mysqladmin\", \"-u\", \"root\", \"-pmysecretpassword\", \"shutdown\"); err != nil {\n\t\t\t// If mysqladmin fails, try killing the process directly\n\t\t\t_ = run(\"sudo\", \"pkill\", \"-f\", \"mysqld\")\n\t\t}\n\t\ttime.Sleep(2 * time.Second)\n\n\t\tif err := startMySQLDaemon(); err != nil {\n\t\t\treturn err\n\t\t}\n\t} else {\n\t\t// Fresh initialization — start normally and set password\n\t\tif err := startMySQLDaemon(); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tlog.Println(\"setting mysql root password\")\n\t\talterSQL := \"ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'mysecretpassword'; FLUSH PRIVILEGES;\"\n\t\tif err := run(\"mysql\", \"-u\", \"root\", \"-e\", alterSQL); err != nil {\n\t\t\treturn fmt.Errorf(\"setting mysql root password: %w\", err)\n\t\t}\n\t}\n\n\treturn verifyMySQL()\n}\n\n// ensureMySQLDirs creates the directories MySQL needs at runtime.\nfunc ensureMySQLDirs() error {\n\tif err := run(\"sudo\", \"mkdir\", \"-p\", \"/var/run/mysqld\"); err != nil {\n\t\treturn fmt.Errorf(\"creating /var/run/mysqld: %w\", err)\n\t}\n\tif err := run(\"sudo\", \"chown\", \"mysql:mysql\", \"/var/run/mysqld\"); err != nil {\n\t\treturn fmt.Errorf(\"chowning /var/run/mysqld: %w\", err)\n\t}\n\treturn nil\n}\n\n// startMySQLDaemon starts mysqld_safe in the background and waits for it to\n// accept connections. Extra args (e.g. \"--skip-grant-tables\") are appended.\nfunc startMySQLDaemon(extraArgs ...string) error {\n\targs := append([]string{\"mysqld_safe\", \"--user=mysql\"}, extraArgs...)\n\tlog.Printf(\"starting mysql via mysqld_safe %v\", extraArgs)\n\tcmd := exec.Command(\"sudo\", args...)\n\tcmd.Stdout = os.Stderr\n\tcmd.Stderr = os.Stderr\n\tif err := cmd.Start(); err != nil {\n\t\treturn fmt.Errorf(\"starting mysqld_safe: %w\", err)\n\t}\n\n\tlog.Println(\"waiting for mysql to accept connections\")\n\tif err := waitForMySQL(30 * time.Second); err != nil {\n\t\treturn fmt.Errorf(\"mysql did not start in time: %w\", err)\n\t}\n\tlog.Println(\"mysql is accepting connections\")\n\treturn nil\n}\n\n// mysqlReady checks if MySQL is running and accepting connections with the expected password.\nfunc mysqlReady() bool {\n\terr := exec.Command(\"mysqladmin\", \"-h\", \"127.0.0.1\", \"-u\", \"root\", \"-pmysecretpassword\", \"ping\").Run()\n\treturn err == nil\n}\n\n// waitForMySQL polls until MySQL accepts connections or the timeout expires.\nfunc waitForMySQL(timeout time.Duration) error {\n\tdeadline := time.Now().Add(timeout)\n\tfor time.Now().Before(deadline) {\n\t\t// Try connecting without password (fresh) or with password (already configured)\n\t\tif exec.Command(\"mysqladmin\", \"-u\", \"root\", \"ping\").Run() == nil {\n\t\t\treturn nil\n\t\t}\n\t\tif exec.Command(\"mysqladmin\", \"-h\", \"127.0.0.1\", \"-u\", \"root\", \"-pmysecretpassword\", \"ping\").Run() == nil {\n\t\t\treturn nil\n\t\t}\n\t\ttime.Sleep(500 * time.Millisecond)\n\t}\n\treturn fmt.Errorf(\"timed out after %s waiting for mysql\", timeout)\n}\n\nfunc verifyMySQL() error {\n\tlog.Println(\"verifying mysql connection\")\n\tif err := run(\"mysql\", \"-h\", \"127.0.0.1\", \"-u\", \"root\", \"-pmysecretpassword\", \"-e\", \"SELECT VERSION();\"); err != nil {\n\t\treturn fmt.Errorf(\"mysql connection test failed: %w\", err)\n\t}\n\tlog.Println(\"mysql is running and configured\")\n\treturn nil\n}\n\n// mysqlInitialized checks if the MySQL data directory has been initialized.\n// We use sudo ls because /var/lib/mysql is typically only readable by the\n// mysql user, so filepath.Glob from a non-root process would silently fail.\nfunc mysqlInitialized() bool {\n\tout, err := exec.Command(\"sudo\", \"ls\", \"/var/lib/mysql\").CombinedOutput()\n\tif err != nil {\n\t\treturn false\n\t}\n\t// If the directory has any contents, consider it initialized.\n\t// mysqld --initialize-insecure requires an empty directory.\n\treturn strings.TrimSpace(string(out)) != \"\"\n}\n"
  },
  {
    "path": "devenv.nix",
    "content": "{ pkgs, ... }:\n\n{\n  # https://devenv.sh/packages/\n  packages = [ \n    pkgs.buf\n    pkgs.go_1_24\n    pkgs.git\n    pkgs.git-cliff\n    pkgs.govulncheck\n    pkgs.gopls\n    pkgs.golint\n    pkgs.mysql-shell\n    pkgs.postgresql_15\n    pkgs.python311\n  ];\n}\n"
  },
  {
    "path": "devenv.yaml",
    "content": "inputs:\n  nixpkgs:\n    url: github:NixOS/nixpkgs/nixpkgs-unstable\n"
  },
  {
    "path": "docker-compose.yml",
    "content": "version: \"3.8\"\nservices:\n  mysql:\n    image: \"mysql:9\"\n    ports:\n      - \"3306:3306\"\n    restart: always\n    environment:\n      MYSQL_DATABASE: dinotest\n      MYSQL_ROOT_PASSWORD: mysecretpassword\n      MYSQL_ROOT_HOST: '%'\n\n  postgresql:\n    image: \"postgres:16\"\n    ports:\n      - \"5432:5432\"\n    restart: always\n    environment:\n      POSTGRES_DB: postgres\n      POSTGRES_PASSWORD: mysecretpassword\n      POSTGRES_USER: postgres\n"
  },
  {
    "path": "docs/.gitignore",
    "content": "_venv\n_build\n"
  },
  {
    "path": "docs/Makefile",
    "content": "# Minimal makefile for Sphinx documentation\n#\n\n# You can set these variables from the command line, and also\n# from the environment for the first two.\nSPHINXOPTS    ?=\nVENVDIR       = _venv\nBINDIR        = $(VENVDIR)/bin\nSPHINXBUILD   = $(BINDIR)/sphinx-build\nSOURCEDIR     = .\nBUILDDIR      = _build\n\n# Put it first so that \"make\" without argument is like \"make help\".\nhelp: $(SPHINXBUILD)\n\t@$(SPHINXBUILD) -M help \"$(SOURCEDIR)\" \"$(BUILDDIR)\" $(SPHINXOPTS) $(O)\n\n$(SPHINXBUILD): $(VENVDIR)\n\t$(VENVDIR)/bin/pip install -r requirements.txt\n\n$(VENVDIR):\n\tpython3 -m venv $(VENVDIR)\n\n.PHONY: help Makefile\n\n# Catch-all target: route all unknown targets to Sphinx using the new\n# \"make mode\" option.  $(O) is meant as a shortcut for $(SPHINXOPTS).\n%: Makefile\n\t@$(SPHINXBUILD) -M $@ \"$(SOURCEDIR)\" \"$(BUILDDIR)\" $(SPHINXOPTS) $(O)\n"
  },
  {
    "path": "docs/_static/customize.css",
    "content": ".wy-side-nav-search img {\n  padding: 5px 60px !important;\n}\n\n#banner {\n  text-align: center;\n  background: #2980b9;\n  border: 1px solid rgb(52, 49, 49);\n  color: #F0F0F4;\n  padding: 10px;\n  margin-bottom: 1.618em;\n}\n\n#banner > div > a {\n  color: #F0F0F4;\n  text-decoration: underline;\n}\n\n#sponsorship > img {\n  width: 100%;\n  max-width: 200px;\n}\n"
  },
  {
    "path": "docs/_templates/breadcrumbs.html",
    "content": "{% extends \"!breadcrumbs.html\" %}\n\n{% block breadcrumbs %}\n{% if show_banner %}\n{% endif %}\n{{ super() }}\n{% endblock %}\n"
  },
  {
    "path": "docs/_templates/layout.html",
    "content": "{% extends \"!layout.html\" %}\n\n{% block extrahead %}\n<script defer data-domain=\"docs.sqlc.dev\" data-api=\"https://proxy.sqlc.dev/api/event\" src=\"https://proxy.sqlc.dev/js/script.js\"></script>\n{{ super() }}\n{% endblock %}\n\n{% block menu %}\n{{ super() }}\n<p class=\"caption\" role=\"heading\"><span class=\"caption-text\">Sponsored By</span></p>\n<div>\n<a id=\"sponsorship\" href=\"https://riza.io?utm_source=sqlc+docs\">\n<img src=\"https://sqlc.dev/sponsors/riza-readme.png\" alt=\"Riza logo\" />\n</a>\n</div>\n{% endblock %}\n"
  },
  {
    "path": "docs/conf.py",
    "content": "# Configuration file for the Sphinx documentation builder.\n#\n# This file only contains a selection of the most common options. For a full\n# list see the documentation:\n# https://www.sphinx-doc.org/en/master/usage/configuration.html\n\n# -- Path setup --------------------------------------------------------------\n\n# If extensions (or modules to document with autodoc) are in another directory,\n# add these directories to sys.path here. If the directory is relative to the\n# documentation root, use os.path.abspath to make it absolute, like shown here.\n#\nimport os\n# import sys\n# sys.path.insert(0, os.path.abspath('.'))\nimport sphinx_rtd_theme\n\n# -- Project information -----------------------------------------------------\n\nproject = 'sqlc'\ncopyright = '2024, Riza, Inc.'\nauthor = 'Riza, Inc.'\n\n# The full version, including alpha/beta/rc tags\nrelease = '1.30.0'\n\n\n# -- General configuration ---------------------------------------------------\n\n# Add any Sphinx extension module names here, as strings. They can be\n# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom\n# ones.\nextensions = [\n    'myst_parser',\n    'sphinx_rtd_theme',\n    'sphinx_favicon',\n    'sphinxext.rediraffe',\n]\n\n# Add any paths that contain templates here, relative to this directory.\ntemplates_path = ['_templates']\n\n# List of patterns, relative to source directory, that match files and\n# directories to ignore when looking for source files.\n# This pattern also affects html_static_path and html_extra_path.\nexclude_patterns = ['_build', '_venv', 'Thumbs.db', '.DS_Store']\n\n# -- Options for HTML output -------------------------------------------------\n\n# The theme to use for HTML and HTML Help pages.  See the documentation for\n# a list of builtin themes.\n#\nhtml_theme = 'sphinx_rtd_theme'\n\n# Add any paths that contain custom static files (such as style sheets) here,\n# relative to this directory. They are copied after the builtin static files,\n# so a file named \"default.css\" will overwrite the builtin \"default.css\".\nhtml_static_path = ['_static']\n\nhtml_logo = \"_static/logo.png\"\nhtml_theme_options = {\n    'logo_only': True,\n}\n\nhtml_context = {\n    'show_banner': 'SHOW_LAUNCH_BANNER' in os.environ,\n}\n\ndef setup(app):\n    app.add_css_file('customize.css')\n\nfavicons = [\n    \"favicon.png\",\n]\n\nmyst_enable_extensions = [\n    \"attrs_inline\",\n    \"colon_fence\",\n]\n\nrediraffe_redirects = {\n    \"howto/upload.md\": \"howto/push.md\",\n}\n"
  },
  {
    "path": "docs/guides/development.md",
    "content": "# Developing sqlc\n\n## Building\n\nFor local development, install `sqlc` under an alias. We suggest `sqlc-dev`.\n\n```\ngo build -o ~/go/bin/sqlc-dev ./cmd/sqlc\n```\n\nInstall `sqlc-gen-json` to avoid test failure.\n\n```\ngo build -o ~/go/bin/sqlc-gen-json ./cmd/sqlc-gen-json\n```\n\n## Running Tests\n\n```\ngo test ./...\n```\n\nTo run the tests in the examples folder, use the `examples` tag.\n\n```\ngo test --tags=examples ./...\n```\n\nThese tests require locally-running database instances. Run these databases\nusing [Docker Compose](https://docs.docker.com/compose/).\n\n```\ndocker compose up -d\n```\n\nThe tests use the following environment variables to connect to the\ndatabase\n\n### For PostgreSQL\n\n```\nVariable     Default Value\n-------------------------\nPG_HOST      127.0.0.1\nPG_PORT      5432\nPG_USER      postgres\nPG_PASSWORD  mysecretpassword\nPG_DATABASE  dinotest\n```\n\n### For MySQL\n\n```\nVariable     Default Value\n-------------------------\nMYSQL_HOST      127.0.0.1\nMYSQL_PORT      3306\nMYSQL_USER      root\nMYSQL_ROOT_PASSWORD  mysecretpassword\nMYSQL_DATABASE  dinotest\n```\n"
  },
  {
    "path": "docs/guides/migrating-off-hosted-managed-databases.md",
    "content": "# Migrating off hosted managed databases\n \nStarting in sqlc 1.27.0, [managed databases](../docs/managed-databases.md) will require a database server URI in the configuration file.\n\nThis guide walks you through migrating to a locally running database server.\n\n## Run a database server locally\n\nThere are many options for running a database server locally, but this guide\nwill use [Docker Compose](https://docs.docker.com/compose/), as it can support\nboth MySQL and PostgreSQL.\n\nIf you're using macOS and PostgreSQL, [Postgres.app](https://postgresapp.com/) is also a good option.\n\nFor MySQL, create a `docker-compose.yml` file with the following contents:\n\n```yaml\nversion: \"3.8\"\nservices:\n  mysql:\n    image: \"mysql/mysql-server:8.0\"\n    ports:\n      - \"3306:3306\"\n    restart: always\n    environment:\n      MYSQL_DATABASE: dinotest\n      MYSQL_ROOT_PASSWORD: mysecretpassword\n      MYSQL_ROOT_HOST: '%'\n```\n\nFor PostgreSQL, create a `docker-compose.yml` file with the following contents:\n\n```yaml\nversion: \"3.8\"\nservices:\n  postgresql:\n    image: \"postgres:16\"\n    ports:\n      - \"5432:5432\"\n    restart: always\n    environment:\n      POSTGRES_DB: postgres\n      POSTGRES_PASSWORD: mysecretpassword\n      POSTGRES_USER: postgres\n```\n\n```sh\ndocker compose up -d\n```\n\n## Upgrade sqlc\n\nYou must be running sqlc v1.30.0 or greater to have access to the `servers`\nconfiguration.\n\n## Add servers to configuration\n\n```diff\nversion: '2'\ncloud:\n  project: '<PROJECT_ID>'\n+ servers:\n+ - name: mysql\n+   uri: mysql://localhost:3306\n+ - name: postgres\n+   uri: postgres://localhost:5432/postgres?sslmode=disable\n```\n\n## Re-generate the code\n\nRun `sqlc generate`. A database with the `sqlc_managed_` prefix will be automatically created and used for query analysis. \n"
  },
  {
    "path": "docs/guides/migrating-to-sqlc-gen-kotlin.md",
    "content": "# Migrating to sqlc-gen-kotlin\n \nStarting in sqlc 1.16.0, built-in Kotlin support has been deprecated. It will\nbe fully removed in 1.17.0 in favor of sqlc-gen-kotlin.\n\nThis guide will walk you through migrating to the [sqlc-gen-kotlin](https://github.com/sqlc-dev/sqlc-gen-kotlin) plugin,\nwhich involves three steps.\n\n1. Add the sqlc-gen-kotlin plugin\n2. Migrate each package\n3. Re-generate the code\n\n## Add the sqlc-gen-kotlin plugin\n\nIn your configuration file, add a `plugins` array if you don't have one\nalready. Add the following configuration for the plugin:\n\n```json\n{\n  \"version\": \"2\",\n  \"plugins\": [\n    {\n      \"name\": \"kt\",\n      \"wasm\": {\n        \"url\": \"https://downloads.sqlc.dev/plugin/sqlc-gen-kotlin_1.0.0.wasm\",\n        \"sha256\": \"7620dc5d462de41fdc90e2011232c842117b416c98fd5c163d27c5738431a45c\"\n      }\n    }\n  ]\n}\n```\n\n```yaml\nversion: \"2\"\nplugins:\n- name: \"kt\"\n  wasm:\n    url: \"https://downloads.sqlc.dev/plugin/sqlc-gen-kotlin_1.0.0.wasm\"\n    sha256: \"7620dc5d462de41fdc90e2011232c842117b416c98fd5c163d27c5738431a45c\"\n```\n\n## Migrate each package\n\nYour package configuration should currently looks something like this for JSON.\n\n```json\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"gen\": {\n        \"kotlin\": {\n          \"out\": \"src/main/kotlin/com/example/foo\",\n          \"package\": \"com.example.foo\"\n        }\n      }\n    }\n  ]\n```\n\nOr this if you're using YAML.\n\n```yaml\n  sql:\n  - schema: \"schema.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    gen:\n      kotlin:\n        out: \"src/main/kotlin/com/example/foo\"\n        package: \"com.example.foo\"\n```\n\nTo use the plugin, you'll need to replace the `gen` mapping with the `codegen`\ncollection. Add the `plugin` field, setting it to `kt`. All fields other than\n`out` need to be moved into the `options` mapping.\n\nAfter you're done, it should look like this for JSON.\n\n```json\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"codegen\": [\n        {\n          \"out\": \"src/main/kotlin/com/example/foo\",\n          \"plugin\": \"kt\",\n          \"options\": {\n            \"package\": \"com.example.foo\"\n          }\n        }\n      ]\n    }\n  ]\n```\n\nOr this for YAML.\n\n```yaml\n  sql:\n  - schema: \"schema.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    codegen:\n    - plugin: \"kt\"\n      out: \"src/main/kotlin/com/example/foo\"\n      options:\n        package: \"com.example.foo\"\n```\n\n## Re-generate the code\n\nRun `sqlc generate`. The plugin will produce the same output, so you shouldn't\nsee any changes. The first time `sqlc generate` is run, the plugin must be\ndownloaded and compiled, resulting in a slightly longer runtime. Subsequent\n`generate` calls will be fast.\n"
  },
  {
    "path": "docs/guides/migrating-to-sqlc-gen-python.md",
    "content": "# Migrating to sqlc-gen-python\n \nStarting in sqlc 1.16.0, built-in Python support has been deprecated. It will\nbe fully removed in 1.17.0 in favor of sqlc-gen-python.\n\nThis guide will walk you through migrating to the [sqlc-gen-python](https://github.com/sqlc-dev/sqlc-gen-python) plugin,\nwhich involves three steps.\n\n1. Add the sqlc-gen-python plugin\n2. Migrate each package\n3. Re-generate the code\n\n## Add the sqlc-gen-python plugin\n\nIn your configuration file, add a `plugins` array if you don't have one\nalready. Add the following configuration for the plugin:\n\n```json\n{\n  \"version\": \"2\",\n  \"plugins\": [\n    {\n      \"name\": \"py\",\n      \"wasm\": {\n        \"url\": \"https://downloads.sqlc.dev/plugin/sqlc-gen-python_1.0.0.wasm\",\n        \"sha256\": \"aca83e1f59f8ffdc604774c2f6f9eb321a2b23e07dc83fc12289d25305fa065b\"\n      }\n    }\n  ]\n}\n```\n\n```yaml\nversion: \"2\"\nplugins:\n  - name: \"py\"\n    wasm:\n      url: \"https://downloads.sqlc.dev/plugin/sqlc-gen-python_1.0.0.wasm\"\n      sha256: \"aca83e1f59f8ffdc604774c2f6f9eb321a2b23e07dc83fc12289d25305fa065b\"\n```\n\n## Migrate each package\n\nYour package configuration should currently looks something like this for JSON.\n\n```json\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"gen\": {\n        \"python\": {\n          \"out\": \"src\",\n          \"package\": \"foo\",\n          \"emit_sync_querier\": true,\n          \"emit_async_querier\": true,\n          \"query_parameter_limit\": 5\n        }\n      }\n    }\n  ]\n```\n\nOr this if you're using YAML.\n\n```yaml\n  sql:\n  - schema: \"schema.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    gen:\n      python:\n        out: \"src\"\n        package: \"foo\"\n        emit_sync_querier: true\n        emit_async_querier: true\n        query_parameter_limit: 5\n```\n\nTo use the plugin, you'll need to replace the `gen` mapping with the `codegen`\ncollection. Add the `plugin` field, setting it to `py`. All fields other than\n`out` need to be moved into the `options` mapping.\n\nAfter you're done, it should look like this for JSON.\n\n```json\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"codegen\": [\n        {\n          \"out\": \"src\",\n          \"plugin\": \"py\",\n          \"options\": {\n            \"package\": \"authors\",\n            \"emit_sync_querier\": true,\n            \"emit_async_querier\": true,\n            \"query_parameter_limit\": 5\n          }\n        }\n      ]\n    }\n  ]\n```\n\nOr this for YAML.\n\n```yaml\n  sql:\n  - schema: \"schema.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    codegen:\n    - plugin: \"py\"\n      out: \"src\"\n      options:\n        package: \"foo\"\n        emit_sync_querier: true\n        emit_async_querier: true\n        query_parameter_limit: 5\n```\n\n## Re-generate the code\n\nRun `sqlc generate`. The plugin will produce the same output, so you shouldn't\nsee any changes. The first time `sqlc generate` is run, the plugin must be\ndownloaded and compiled, resulting in a slightly longer runtime. Subsequent\n`generate` calls will be fast.\n"
  },
  {
    "path": "docs/guides/plugins.md",
    "content": "# Using plugins\n\nTo use plugins, you must be using [Version 2](../reference/config.md#version-2) of\nthe configuration file. The top-level `plugins` array defines the available\nplugins.\n\n## WASM plugins\n\n> WASM plugins are fully sandboxed; they do not have access to the network,\n> filesystem, or environment variables.\n\nIn the `codegen` section, the `out` field dictates what directory will contain\nthe new files. The `plugin` key must reference a plugin defined in the\ntop-level `plugins` map. Any `options` are serialized to a string as JSON and\npassed on to the plugin itself.\n\n\n```yaml\nversion: '2'\nplugins:\n- name: greeter\n  wasm:\n    url: https://github.com/sqlc-dev/sqlc-gen-greeter/releases/download/v0.1.0/sqlc-gen-greeter.wasm\n    sha256: afc486dac2068d741d7a4110146559d12a013fd0286f42a2fc7dcd802424ad07\nsql:\n- schema: schema.sql\n  queries: query.sql\n  engine: postgresql\n  codegen:\n  - out: gen\n    plugin: greeter\n    options:\n      lang: en-US\n```\n\nFor a complete working example see the following files:\n- [sqlc-gen-greeter](https://github.com/sqlc-dev/sqlc-gen-greeter)\n  - A WASM plugin (written in Rust) that outputs a friendly message\n- [wasm_plugin_sqlc_gen_greeter](https://github.com/sqlc-dev/sqlc/tree/main/internal/endtoend/testdata/wasm_plugin_sqlc_gen_greeter)\n  - An example project showing how to use a WASM plugin\n\n## Process plugins\n\n> Process-based plugins offer minimal security. Only use plugins that you\n> trust. Better yet, only use plugins that you've written yourself.\n\nIn the `codegen` section, the `out` field dictates what directory will contain\nthe new files. The `plugin` key must reference a plugin defined in the\ntop-level `plugins` map. Any `options` are serialized to a string as JSON and\npassed on to the plugin itself.\n\n```yaml\nversion: '2'\nplugins:\n- name: jsonb\n  process:\n    cmd: sqlc-gen-json\nsql:\n- schema: schema.sql\n  queries: query.sql\n  engine: postgresql\n  codegen:\n  - out: gen\n    plugin: jsonb\n    options:\n      indent: \"  \"\n      filename: codegen.json\n```\n\nFor a complete working example see the following files:\n- [sqlc-gen-json](https://github.com/sqlc-dev/sqlc/tree/main/cmd/sqlc-gen-json)\n  - A process-based plugin that serializes the CodeGenRequest to JSON\n- [process_plugin_sqlc_gen_json](https://github.com/sqlc-dev/sqlc/tree/main/internal/endtoend/testdata/process_plugin_sqlc_gen_json)\n  - An example project showing how to use a process-based plugin\n- [process_plugin_sqlc_gen_json](https://github.com/sqlc-dev/sqlc/tree/main/internal/endtoend/testdata/process_plugin_format_json/)\n  - An example project showing how to use a process-based plugin using json\n\n## Environment variables\n\nBy default, plugins do not inherit access to environment variables. Instead,\nyou can configure access on a per-variable basis. For example, if your plugin\nneeds the `PATH` environment variable, add `PATH` to the `env` list in the\n`plugins` collection.\n\n```yaml\nversion: '2'\nsql:\n- schema: schema.sql\n  queries: query.sql\n  engine: postgresql\n  codegen:\n  - out: gen\n    plugin: test\nplugins:\n- name: test\n  env:\n  - PATH\n  wasm:\n    url: https://github.com/sqlc-dev/sqlc-gen-test/releases/download/v0.1.0/sqlc-gen-test.wasm\n    sha256: 138220eae508d4b65a5a8cea555edd155eb2290daf576b7a8b96949acfeb3790\n```\n\nA variable named `SQLC_VERSION` is always included in the plugin's\nenvironment, set to the version of the `sqlc` executable invoking it.\n"
  },
  {
    "path": "docs/guides/privacy.md",
    "content": "# Privacy and data collection\n\nThese days, it feels like every piece of software is tracking you. From your\nbrowser, to your phone, to your terminal, programs collect as much data about\nyou as possible and send it off to the cloud for analysis.\n\nWe believe the best way to keep data safe is to never collect it in the first\nplace.\n\n## Our Privacy Pledge\n\nThe `sqlc` command line tool does not collect any information. It\ndoes not send crash reports to a third-party. It does not gather anonymous\naggregate user behaviour analytics.\n\nNo analytics. \nNo finger-printing.\nNo tracking.\n\nNot now and not in the future.\n\n### Distribution Channels\n\nWe distribute sqlc using popular package managers such as\n[Homebrew](https://brew.sh/) and [Snapcraft](https://snapcraft.io/). These\npackage managers and their associated command-line tools do collect usage\nmetrics.\n\nWe use these services to make it easy to for users to install sqlc. There will\nalways be an option to download sqlc from a stable URL.\n\n## Hosted Services\n\nWe provide a few hosted services in addition to the sqlc command line tool.\n\n### sqlc.dev\n\n* Hosted on [GitHub Pages](https://pages.github.com/)\n* Analytics with [Plausible](https://plausible.io/privacy-focused-web-analytics)\n\n### docs.sqlc.dev\n\n* Hosted on [Read the Docs](https://readthedocs.org/)\n* Analytics with [Plausible](https://plausible.io/privacy-focused-web-analytics)\n\n### play.sqlc.dev\n\n* Hosted on [Heroku](https://heroku.com)\n* Playground data stored in [Google Cloud Storage](https://cloud.google.com/storage)\n  * Automatically deleted after 30 days\n\n### app.sqlc.dev / api.sqlc.dev\n\n* Hosted on [Heroku](https://heroku.com)\n* Error tracking and tracing with [Sentry](https://sentry.io)\n"
  },
  {
    "path": "docs/guides/using-go-and-pgx.rst",
    "content": "================\nUsing Go and pgx\n================\n\n.. note::\n   :code:`pgx/v5` is supported starting from v1.18.0.\n\n\npgx is a pure Go driver and toolkit for PostgreSQL. It's become the default\nPostgreSQL package for many Gophers since lib/pq was put into maintenance mode.\n\n^^^^^^^^^^^^^^^\nGetting started\n^^^^^^^^^^^^^^^\n\nTo start generating code that uses pgx, set the :code:`sql_package` field in\nyour :code:`sqlc.yaml` configuration file. Valid options are :code:`pgx/v4` or\n:code:`pgx/v5`\n\n.. code-block:: yaml\n\n    version: \"2\"\n    sql:\n      - engine: \"postgresql\"\n        queries: \"query.sql\"\n        schema: \"query.sql\"\n        gen:\n          go:\n            package: \"db\"\n            sql_package: \"pgx/v5\"\n            out: \"db\"\n\nIf you don't have an existing sqlc project on hand, create a directory with the\nconfiguration file above and the following :code:`query.sql` file.\n\n.. code-block:: sql\n\n    CREATE TABLE authors (\n      id   BIGSERIAL PRIMARY KEY,\n      name text      NOT NULL,\n      bio  text\n    );\n\n    -- name: GetAuthor :one\n    SELECT * FROM authors\n    WHERE id = $1 LIMIT 1;\n    \n    -- name: ListAuthors :many\n    SELECT * FROM authors\n    ORDER BY name;\n    \n    -- name: CreateAuthor :one\n    INSERT INTO authors (\n      name, bio\n    ) VALUES (\n      $1, $2\n    )\n    RETURNING *;\n    \n    -- name: DeleteAuthor :exec\n    DELETE FROM authors\n    WHERE id = $1;\n\n\nGenerating the code will now give you pgx-compatible database access methods.\n\n.. code-block:: bash\n\n   sqlc generate\n\n^^^^^^^^^^^^^^^^^^^^^^^^^^\nGenerated code walkthrough\n^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nThe generated code is very similar to the code generated when using\n:code:`lib/pq`. However, instead of using :code:`database/sql`, the code uses\npgx types directly.\n\n.. code-block:: go\n\n    package main\n    \n    import (\n    \t\"context\"\n    \t\"fmt\"\n    \t\"os\"\n    \n    \t\"github.com/jackc/pgx/v5\"\n        \n    \t\"example.com/sqlc-tutorial/db\"\n    )\n    \n    func main() {\n    \t// urlExample := \"postgres://username:password@localhost:5432/database_name\"\n    \tconn, err := pgx.Connect(context.Background(), os.Getenv(\"DATABASE_URL\"))\n    \tif err != nil {\n    \t\tfmt.Fprintf(os.Stderr, \"Unable to connect to database: %v\\n\", err)\n    \t\tos.Exit(1)\n    \t}\n    \tdefer conn.Close(context.Background())\n\n    \tq := db.New(conn)\n    \n    \tauthor, err := q.GetAuthor(context.Background(), 1)\n    \tif err != nil {\n    \t\tfmt.Fprintf(os.Stderr, \"GetAuthor failed: %v\\n\", err)\n    \t\tos.Exit(1)\n    \t}\n    \n    \tfmt.Println(author.Name)\n    }\n\n.. note::\n   For production applications, consider using pgxpool for connection pooling:\n\n   .. code-block:: go\n\n       import (\n           \"github.com/jackc/pgx/v5/pgxpool\"\n           \"example.com/sqlc-tutorial/db\"\n       )\n\n       func main() {\n           pool, err := pgxpool.New(context.Background(), os.Getenv(\"DATABASE_URL\"))\n           if err != nil {\n               fmt.Fprintf(os.Stderr, \"Unable to create connection pool: %v\\n\", err)\n               os.Exit(1)\n           }\n           defer pool.Close()\n\n           q := db.New(pool)\n           // Use q the same way as with single connections\n       }\n"
  },
  {
    "path": "docs/howto/ci-cd.md",
    "content": "# Using sqlc in CI/CD\n\nIf your project has more than a single developer, we suggest running `sqlc` as\npart of your CI/CD pipeline. The four subcommands you'll want to run are `diff`,\n`vet`, `verify` and `push`\n\n`sqlc diff` ensures that your generated code is up to date. New developers to a\nproject may forget to run `sqlc generate` after adding a query or updating a\nschema. They also might edit generated code. `sqlc diff` will catch both errors\nby comparing the expected output from `sqlc generate` to what's on disk.\n\n```diff\n% sqlc diff\n--- a/postgresql/query.sql.go\n+++ b/postgresql/query.sql.go\n@@ -55,7 +55,7 @@\n\n const listAuthors = `-- name: ListAuthors :many\n SELECT id, name, bio FROM authors\n-ORDER BY name\n+ORDER BY bio\n `\n```\n\n`sqlc vet` runs a set of lint rules against your SQL queries. These rules are\nhelpful in catching anti-patterns before they make it into production. Please\nsee the [vet](vet.md) documentation for a complete guide to adding lint rules\nfor your project.\n\n`sqlc verify` ensures that schema changes do not break production. Existing\nqueries are checked against new schema changes for correctness. Please see the\n[verify](verify.md) documentation for a complete guide.\n\n\n`sqlc push` pushes your database schema, queries and configuration to sqlc\nCloud. These archives are used by `verify` to catch breaking changes to your\ndatabase schema.  Learn more about uploading projects [here](push.md)\n\n## General setup\n\nInstall `sqlc` using the [suggested instructions](../overview/install).\n\nCreate three steps in your pipeline for `sqlc diff`, `sqlc vet`, and `sqlc\nverify`. Run `sqlc push` after merge on your `main` branch.\n\n## GitHub Actions\n\nWe provide the [setup-sqlc](https://github.com/marketplace/actions/setup-sqlc)\nGitHub Action to install `sqlc`. The action uses the built-in\n[tool-cache](https://github.com/actions/toolkit/blob/main/packages/tool-cache/README.md)\nto speed up the installation process.\n\n### diff\n\nThe following GitHub Workflow configuration runs `sqlc diff` on every push.\n\n```yaml\nname: sqlc\non: [push]\njobs:\n  diff:\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v3\n    - uses: sqlc-dev/setup-sqlc@v3\n      with:\n        sqlc-version: '1.30.0'\n    - run: sqlc diff\n```\n\n### vet\n\nThe following GitHub Workflow configuration runs [sqlc vet](vet.md) on every push.\nYou can use `sqlc vet` without a database connection, but you'll need one if your\n`sqlc` configuration references the built-in `sqlc/db-prepare` lint rule.\n\n```yaml\nname: sqlc\non: [push]\njobs:\n  vet:\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v3\n    - uses: sqlc-dev/setup-sqlc@v3\n      with:\n        sqlc-version: '1.30.0'\n    # Start a PostgreSQL server\n    - uses: sqlc-dev/action-setup-postgres@master\n      with:\n        postgres-version: \"16\"\n      id: postgres\n    - run: sqlc vet\n      env:\n        POSTGRESQL_SERVER_URI: ${{ steps.postgres.outputs.connection-uri }}?sslmode=disable\n\n```\n\n### push\n\n```{note}\nPushing a project is powered by [sqlc Cloud](https://dashboard.sqlc.dev). Sign up for [free](https://dashboard.sqlc.dev) today.\n```\n\nThe following GitHub Workflow configuration runs [sqlc push](push.md) on\nevery push to `main`. Create an auth token via the\n[dashboard](https://dashboard.sqlc.dev).\n\n```yaml\nname: sqlc\non: [push]\njobs:\n  push:\n    runs-on: ubuntu-latest\n    if: ${{ github.ref == 'refs/heads/main' }}\n    steps:\n    - uses: actions/checkout@v3\n    - uses: sqlc-dev/setup-sqlc@v3\n      with:\n        sqlc-version: '1.30.0'\n    - run: sqlc push\n      env:\n        SQLC_AUTH_TOKEN: ${{ secrets.SQLC_AUTH_TOKEN }}\n```\n\n### verify\n\n```{note}\nVerify database migrations is powered by [sqlc Cloud](https://dashboard.sqlc.dev). Sign up for [free](https://dashboard.sqlc.dev) today.\n```\n\n```yaml\nname: sqlc\non: [push]\njobs:\n  verify:\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v3\n    - uses: sqlc-dev/setup-sqlc@v3\n      with:\n        sqlc-version: '1.30.0'\n    - uses: sqlc-dev/action-setup-postgres@master\n      with:\n        postgres-version: \"16\"\n      id: postgres\n    - run: sqlc verify\n      env:\n        POSTGRESQL_SERVER_URI: ${{ steps.postgres.outputs.connection-uri }}?sslmode=disable\n        SQLC_AUTH_TOKEN: ${{ secrets.SQLC_AUTH_TOKEN }}\n  push:\n    runs-on: ubuntu-latest\n    if: ${{ github.ref == 'refs/heads/main' }}\n    steps:\n    - uses: sqlc-dev/setup-sqlc@v3\n      with:\n        sqlc-version: '1.30.0'\n    - run: sqlc push\n      env:\n        SQLC_AUTH_TOKEN: ${{ secrets.SQLC_AUTH_TOKEN }}\n``````\n"
  },
  {
    "path": "docs/howto/ddl.md",
    "content": "# Modifying the database schema\n\nsqlc parses `CREATE TABLE` and `ALTER TABLE` statements in order to generate\nthe necessary code.\n\n```sql\nCREATE TABLE authors (\n  id          SERIAL PRIMARY KEY,\n  birth_year  int    NOT NULL\n);\n\nALTER TABLE authors ADD COLUMN bio text NOT NULL;\nALTER TABLE authors DROP COLUMN birth_year;\nALTER TABLE authors RENAME TO writers;\n```\n\n```go\npackage db\n\ntype Writer struct {\n\tID  int\n\tBio string\n}\n```\n\n## Handling SQL migrations\n\nsqlc does not perform database migrations for you. However, sqlc is able to\ndifferentiate between up and down migrations. sqlc ignores down migrations when\nparsing SQL files.\n\nsqlc supports parsing migrations from the following tools:\n\n- [atlas](https://github.com/ariga/atlas)\n- [dbmate](https://github.com/amacneil/dbmate)\n- [golang-migrate](https://github.com/golang-migrate/migrate)\n- [goose](https://github.com/pressly/goose)\n- [sql-migrate](https://github.com/rubenv/sql-migrate)\n- [tern](https://github.com/jackc/tern)\n\nTo enable migration parsing, specify the migration directory instead of a schema file:\n\n```yaml\nversion: \"2\"\nsql:\n  - engine: \"postgresql\"\n    queries: \"query.sql\"\n    schema: \"db/migrations\"\n    gen:\n      go:\n        package: \"tutorial\"\n        out: \"tutorial\"\n```\n\n### atlas\n\n```sql\n-- Create \"post\" table\nCREATE TABLE \"public\".\"post\" (\"id\" integer NOT NULL, \"title\" text NULL, \"body\" text NULL, PRIMARY KEY (\"id\"));\n```\n\n```go\npackage db\n\ntype Post struct {\n\tID    int\n\tTitle sql.NullString\n\tBody  sql.NullString\n}\n```\n\n### dbmate\n\n```sql\n-- migrate:up\nCREATE TABLE foo (bar INT NOT NULL);\n\n-- migrate:down\nDROP TABLE foo;\n```\n\n```go\npackage db\n\ntype Foo struct {\n\tBar int32\n}\n```\n\n### golang-migrate\n\n**Warning:**\n[golang-migrate interprets](https://github.com/golang-migrate/migrate/blob/master/MIGRATIONS.md#migration-filename-format)\nmigration filenames numerically. However, sqlc parses migration files in\nlexicographic order. If you choose to have sqlc enumerate your migration files,\nmake sure their numeric ordering matches their lexicographic ordering to avoid\nunexpected behavior. This can be done by prepending enough zeroes to the\nmigration filenames.\n\nThis doesn't work as intended.\n\n```\n1_initial.up.sql\n...\n9_foo.up.sql\n# this migration file will be parsed BEFORE 9_foo\n10_bar.up.sql\n```\n\nThis worked as intended.\n\n```\n001_initial.up.sql\n...\n009_foo.up.sql\n010_bar.up.sql\n```\n\nIn `20060102.up.sql`:\n\n```sql\nCREATE TABLE post (\n    id    int NOT NULL,\n    title text,\n    body  text,\n    PRIMARY KEY(id)\n);\n```\n\nIn `20060102.down.sql`:\n\n```sql\nDROP TABLE post;\n```\n\n```go\npackage db\n\ntype Post struct {\n\tID    int\n\tTitle sql.NullString\n\tBody  sql.NullString\n}\n```\n\n### goose\n\n**Warning:**\nsqlc parses migration files in lexicographic order. **If you are using numeric filenames for migrations in Goose and you choose to have sqlc enumerate your migration files**,\nmake sure their numeric ordering matches their lexicographic ordering to avoid\nunexpected behavior. This can be done by prepending enough zeroes to the\nmigration filenames.\n\nThis doesn't work as intended.\n\n```\n1_initial.sql\n...\n9_foo.sql\n# this migration file will be parsed BEFORE 9_foo\n10_bar.sql\n```\n\nThis worked as intended.\n\n```\n001_initial.sql\n...\n009_foo.sql\n010_bar.sql\n```\n\n```sql\n-- +goose Up\nCREATE TABLE post (\n    id    int NOT NULL,\n    title text,\n    body  text,\n    PRIMARY KEY(id)\n);\n\n-- +goose Down\nDROP TABLE post;\n```\n\n```go\npackage db\n\ntype Post struct {\n\tID    int\n\tTitle sql.NullString\n\tBody  sql.NullString\n}\n```\n\n### sql-migrate\n\n```sql\n-- +migrate Up\n-- SQL in section 'Up' is executed when this migration is applied\nCREATE TABLE people (id int);\n\n\n-- +migrate Down\n-- SQL section 'Down' is executed when this migration is rolled back\nDROP TABLE people;\n```\n\n```go\npackage db\n\ntype People struct {\n\tID int32\n}\n```\n\n### tern\n\n```sql\nCREATE TABLE comment (id int NOT NULL, text text NOT NULL);\n---- create above / drop below ----\nDROP TABLE comment;\n```\n\n```go\npackage db\n\ntype Comment struct {\n\tID   int32\n\tText string\n}\n```\n"
  },
  {
    "path": "docs/howto/delete.md",
    "content": "# Deleting rows\n\n```sql\nCREATE TABLE authors (\n  id         SERIAL PRIMARY KEY,\n  bio        text   NOT NULL\n);\n```\n\nThe parameter syntax varies by database engine:\n\n**PostgreSQL:**\n```sql\n-- name: DeleteAuthor :exec\nDELETE FROM authors WHERE id = $1;\n```\n\n**MySQL and SQLite:**\n```sql\n-- name: DeleteAuthor :exec\nDELETE FROM authors WHERE id = ?;\n```\n\n```go\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nconst deleteAuthor = `-- name: DeleteAuthor :exec\nDELETE FROM authors WHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, id int) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthor, id)\n\treturn err\n}\n```\n"
  },
  {
    "path": "docs/howto/embedding.md",
    "content": "#### Embedding structs\n\nEmbedding allows you to reuse existing model structs in more queries, resulting\nin less manual serialization work. First, imagine we have the following schema\nwith students and test scores.\n\n```sql\nCREATE TABLE students (\n  id   bigserial PRIMARY KEY,\n  name text NOT NULL,\n  age  integer NOT NULL\n);\n\nCREATE TABLE test_scores (\n  student_id bigint NOT NULL,\n  score      integer NOT NULL,\n  grade      text NOT NULL\n);\n```\n\nWe want to select the student record and the scores they got on a test.\nHere's how we'd usually do that:\n\n```sql\n-- name: ScoreAndTests :many\nSELECT students.*, test_scores.*\nFROM students\nJOIN test_scores ON test_scores.student_id = students.id\nWHERE students.id = $1;\n```\n\nWhen using Go, sqlc will produce a struct like this:\n\n```go\ntype ScoreAndTestsRow struct {\n\tID        int64\n\tName      string\n\tAge       int32\n\tStudentID int64\n\tScore     int32\n\tGrade     string\n}\n```\n\nWith embedding, the struct will contain a model for both tables instead of a\nflattened list of columns.\n\n```sql\n-- name: ScoreAndTests :many\nSELECT sqlc.embed(students), sqlc.embed(test_scores)\nFROM students\nJOIN test_scores ON test_scores.student_id = students.id\nWHERE students.id = $1;\n```\n\n```\ntype ScoreAndTestsRow struct {\n\tStudent   Student\n\tTestScore TestScore\n}\n```"
  },
  {
    "path": "docs/howto/generate.md",
    "content": "# `generate` - Generating code\n\n`sqlc generate` parses SQL, analyzes the results, and outputs code. Your schema and queries are stored in separate SQL files. The paths to these files live in a `sqlc.yaml` configuration file.\n\n```yaml\nversion: \"2\"\nsql:\n  - engine: \"postgresql\"\n    queries: \"query.sql\"\n    schema: \"schema.sql\"\n    gen:\n      go:\n        package: \"tutorial\"\n        out: \"tutorial\"\n        sql_package: \"pgx/v5\"\n```\n\nWe've written extensive docs on [retrieving](select.md), [inserting](insert.md),\n[updating](update.md), and [deleting](delete.md) rows. \n\nBy default, sqlc runs its analysis using a built-in query analysis engine. While fast, this engine can't handle some complex queries and type-inference.\n\nYou can configure sqlc to use a database connection for enhanced analysis using metadata from that database.\n\nThe database-backed analyzer currently supports PostgreSQL, with [MySQL](https://github.com/sqlc-dev/sqlc/issues/2902) and [SQLite](https://github.com/sqlc-dev/sqlc/issues/2903)\nsupport planned in the future.\n\n## Enhanced analysis with managed databases\n\nWith [managed databases](managed-databases.md) configured, `generate` will automatically create a hosted ephemeral database with your\nschema and use that database to improve its query analysis. And sqlc will cache its analysis locally\non a per-query basis to speed up future `generate` runs. This saves you the trouble of running and maintaining a database with\nan up-to-date schema. Here's a minimal working configuration:\n\n```yaml\nversion: \"2\"\nservers:\n- engine: postgresql\n  uri: \"postgres://locahost:5432/postgres?sslmode=disable\"\nsql:\n  - engine: \"postgresql\"\n    queries: \"query.sql\"\n    schema: \"schema.sql\"\n    database:\n      managed: true\n    gen:\n      go:\n        out: \"db\"\n        sql_package: \"pgx/v5\"\n```\n\n## Enhanced analysis using your own database\n\nYou can opt-in to database-backed analysis using your own database, by providing a `uri` in your sqlc\n[database](../reference/config.md#database) configuration.\n\nThe `uri` string can contain references to environment variables using the `${...}`\nsyntax. In the following example, the connection string will have the value of\nthe `PG_PASSWORD` environment variable set as its password.\n\n```yaml\nversion: \"2\"\nsql:\n  - engine: \"postgresql\"\n    queries: \"query.sql\"\n    schema: \"schema.sql\"\n    database:\n      uri: \"postgres://postgres:${PG_PASSWORD}@localhost:5432/postgres\"\n    gen:\n      go:\n        out: \"db\"\n        sql_package: \"pgx/v5\"\n```\n\nDatabases configured with a `uri` must have an up-to-date schema for query analysis to work correctly, and `sqlc` does not apply schema migrations your database. Use your migration tool of choice to create the necessary\ntables and objects before running `sqlc generate`.\n"
  },
  {
    "path": "docs/howto/insert.md",
    "content": "# Inserting rows\n\n```sql\nCREATE TABLE authors (\n  id         SERIAL PRIMARY KEY,\n  bio        text   NOT NULL\n);\n```\n\nThe parameter syntax varies by database engine:\n\n**PostgreSQL:**\n```sql\n-- name: CreateAuthor :exec\nINSERT INTO authors (bio) VALUES ($1);\n```\n\n**MySQL and SQLite:**\n```sql\n-- name: CreateAuthor :exec\nINSERT INTO authors (bio) VALUES (?);\n```\n\n```go\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nconst createAuthor = `-- name: CreateAuthor :exec\nINSERT INTO authors (bio) VALUES ($1)\n`\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, bio string) error {\n\t_, err := q.db.ExecContext(ctx, createAuthor, bio)\n\treturn err\n}\n```\n\n## Returning columns from inserted rows\n\nsqlc has full support for the `RETURNING` statement.\n\n```sql\n-- Example queries for sqlc\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n```\n\n**PostgreSQL:**\n```sql\n-- name: CreateAuthor :one\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: CreateAuthorAndReturnId :one\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING id;\n```\n\n**SQLite (with RETURNING support):**\n```sql\n-- name: CreateAuthor :one\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  ?, ?\n)\nRETURNING *;\n\n-- name: CreateAuthorAndReturnId :one\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  ?, ?\n)\nRETURNING id;\n```\n\nNote: MySQL does not support the `RETURNING` clause. Use `:execresult` instead to get the last insert ID.\n\n```go\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING id, name, bio\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, createAuthor, arg.Name, arg.Bio)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst createAuthorAndReturnId = `-- name: CreateAuthorAndReturnId :one\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING id\n`\n\ntype CreateAuthorAndReturnIdParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) CreateAuthorAndReturnId(ctx context.Context, arg CreateAuthorAndReturnIdParams) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, createAuthorAndReturnId, arg.Name, arg.Bio)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n```\n\n## Using CopyFrom\n\n### PostgreSQL\n\nPostgreSQL supports the [COPY protocol](https://www.postgresql.org/docs/current/sql-copy.html) that can insert rows a lot faster than sequential inserts. You can use this easily with sqlc:\n\n```sql\nCREATE TABLE authors (\n  id         SERIAL PRIMARY KEY,\n  name       text   NOT NULL,\n  bio        text   NOT NULL\n);\n\n-- name: CreateAuthors :copyfrom\nINSERT INTO authors (name, bio) VALUES ($1, $2);\n```\n\n```go\ntype CreateAuthorsParams struct {\n\tName string\n\tBio  string\n}\n\nfunc (q *Queries) CreateAuthors(ctx context.Context, arg []CreateAuthorsParams) (int64, error) {\n\t...\n}\n```\n\nThe `:copyfrom` command requires either `pgx/v4` or `pgx/v5`.\n\n```yaml\nversion: \"2\"\nsql:\n  - engine: \"postgresql\"\n    queries: \"query.sql\"\n    schema: \"query.sql\"\n    gen:\n      go:\n        package: \"db\"\n        sql_package: \"pgx/v5\"\n        out: \"db\"\n```\n\n### MySQL\n\nMySQL supports a similar feature using [LOAD DATA](https://dev.mysql.com/doc/refman/8.0/en/load-data.html).\n\nErrors and duplicate keys are treated as warnings and insertion will\ncontinue, even without an error for some cases. Use this in a transaction\nand use SHOW WARNINGS to check for any problems and roll back if necessary.\n\nCheck the [error handling](https://dev.mysql.com/doc/refman/8.0/en/load-data.html#load-data-error-handling) documentation for more information.\n\n```sql\nCREATE TABLE foo (a text, b integer, c DATETIME, d DATE);\n\n-- name: InsertValues :copyfrom\nINSERT INTO foo (a, b, c, d) VALUES (?, ?, ?, ?);\n```\n\n```go\nfunc (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesParams) (int64, error) {\n\t...\n}\n```\n\nThe `:copyfrom` command requires setting the `sql_package` and `sql_driver` options.\n\n```yaml\nversion: \"2\"\nsql:\n  - engine: \"mysql\"\n    queries: \"query.sql\"\n    schema: \"query.sql\"\n    gen:\n      go:\n        package: \"db\"\n        sql_package: \"database/sql\"\n        sql_driver: \"github.com/go-sql-driver/mysql\"\n        out: \"db\"\n```"
  },
  {
    "path": "docs/howto/managed-databases.md",
    "content": "# Managed databases\n\n*Added in v1.22.0*\n\n`sqlc` can automatically create read-only databases to power query analysis,\nlinting and verification. These databases are immediately useful for powering\nsqlc's database-connected query analyzer, an opt-in feature that improves upon\nsqlc's built-in query analysis engine. PostgreSQL support is available today,\nwith MySQL on the way.\n\nOnce configured, `sqlc` will also use managed databases when linting queries\nwith [`sqlc vet`](vet.md) in cases where your lint rules require a connection\nto a running database.\n\nManaged databases are under active development, and we're interested in\nsupporting other use-cases.\n\n## Configuring managed databases\n\nTo configure `sqlc` to use managed databases, remove the `uri` key from your\n`database` configuration and replace it with the `managed` key set to `true`.\nAccess to a running database server is required. Add a connection string to the `servers` mapping.\n\n```yaml\nversion: '2'\nservers:\n- engine: postgresql\n  uri: \"postgres://localhost:5432/postgres?sslmode=disable\"\nsql:\n- schema: schema.sql\n  queries: query.sql\n  engine: postgresql\n  database:\n    managed: true\n```\n\nAn environment variable can also be used via the `${}` syntax.\n\n```yaml\nversion: '2'\nservers:\n- engine: postgresql\n  uri: ${DATABASE_URI}\nsql:\n- schema: schema.sql\n  queries: query.sql\n  engine: postgresql\n  database:\n    managed: true\n```\n\n## Improving codegen\n\nWithout a database connection, sqlc does its best to parse, analyze and compile your queries just using\nthe schema you pass it and what it knows about the various database engines it supports. In many cases\nthis works just fine, but for more advanced queries sqlc might not have enough information to produce good code.\n\nWith managed databases configured, `sqlc generate` will automatically create a hosted ephemeral database with your\nschema and use that database to improve its query analysis. And sqlc will cache its analysis locally\non a per-query basis to speed up future codegen runs. Here's a minimal working configuration:\n\n```yaml\nversion: '2'\nservers:\n- engine: postgresql\n  uri: \"postgres://localhost:5432/postgres?sslmode=disable\"\nsql:\n- schema: schema.sql\n  queries: query.sql\n  engine: postgresql\n  database:\n    managed: true\n  gen:\n    go:\n      out: \"db\"\n```\n\n## Linting queries\n\nWith managed databases configured, `sqlc vet` will automatically create a hosted ephemeral database with your\nschema and use that database when running lint rules that require a\ndatabase connection, e.g. any [rule relying on `EXPLAIN ...` output](vet.md#rules-using-explain-output).\n\nIf you don't yet have any vet rules, the [built-in sqlc/db-prepare rule](vet.md#sqlc-db-prepare)\nis a good place to start. It prepares each of your queries against the database\nto ensure the query is valid. Here's a minimal working configuration:\n\n```yaml\nversion: '2'\nservers:\n- engine: postgresql\n  uri: \"postgres://localhost:5432/postgres?sslmode=disable\"\nsql:\n- schema: schema.sql\n  queries: query.sql\n  engine: postgresql\n  database:\n    managed: true\n  rules:\n  - sqlc/db-prepare\n```\n"
  },
  {
    "path": "docs/howto/named_parameters.md",
    "content": "# Naming parameters\n\nsqlc tries to generate good names for positional parameters, but sometimes it\nlacks enough context. The following SQL generates parameters with less than\nideal names:\n\n```sql\n-- name: UpsertAuthorName :one\nUPDATE author\nSET\n  name = CASE WHEN $1::bool\n    THEN $2::text\n    ELSE name\n    END\nRETURNING *;\n```\n\n```go\ntype UpdateAuthorNameParams struct {\n\tColumn1   bool   `json:\"\"`\n\tColumn2_2 string `json:\"_2\"`\n}\n```\n\nIn these cases, named parameters give you the control over field names on the\nParams struct.\n\n```sql\n-- name: UpsertAuthorName :one\nUPDATE author\nSET\n  name = CASE WHEN sqlc.arg(set_name)::bool\n    THEN sqlc.arg(name)::text\n    ELSE name\n    END\nRETURNING *;\n```\n\n```go\ntype UpdateAuthorNameParams struct {\n\tSetName bool   `json:\"set_name\"`\n\tName    string `json:\"name\"`\n}\n```\n\nIf the `sqlc.arg()` syntax is too verbose for your taste, you can use the `@`\noperator as a shortcut.\n\n```{note}\nThe `@` operator as a shortcut for `sqlc.arg()` is not supported in MySQL.\n```\n\n```sql\n-- name: UpsertAuthorName :one\nUPDATE author\nSET\n  name = CASE WHEN @set_name::bool\n    THEN @name::text\n    ELSE name\n    END\nRETURNING *;\n```\n\n## Nullable parameters\n\nsqlc infers the nullability of any specified parameters, and often does exactly\nwhat you want. If you want finer control over the nullability of your\nparameters, you may use `sqlc.narg()` (**n**ullable arg) to override the default\nbehavior. Using `sqlc.narg` tells sqlc to ignore whatever nullability it has\ninferred and generate a nullable parameter instead. There is no nullable\nequivalent of the `@` syntax.\n\nHere is an example that uses a single query to allow updating an author's\nname, bio or both.\n\n```sql\n-- name: UpdateAuthor :one\nUPDATE author\nSET\n name = coalesce(sqlc.narg('name'), name),\n bio = coalesce(sqlc.narg('bio'), bio)\nWHERE id = sqlc.arg('id')\nRETURNING *;\n```\n\nThe following code is generated:\n\n```go\ntype UpdateAuthorParams struct {\n\tName sql.NullString\n\tBio  sql.NullString\n\tID   int64\n}\n```\n"
  },
  {
    "path": "docs/howto/overrides.md",
    "content": "# Overriding types\n\n:::{note}\nType overrides and field renaming are only fully-supported for Go.\n:::\n\nIn many cases it's useful to tell `sqlc` explicitly what Go type you want it to\nuse for a query input or output. For instance, by default when you use\n`pgx/v5`, `sqlc` will map a PostgreSQL UUID type to `UUID` from `github.com/jackc/pgx/pgtype`.\nBut you may want `sqlc` to use `UUID` from `github.com/google/uuid` instead.\n\nTo tell `sqlc` to use a different Go type, add an entry to the `overrides` list in your\nconfiguration.\n\n`sqlc` offers two kinds of Go type overrides:\n* `db_type` overrides, which override the Go type for a specific database type.\n* `column` overrides, which override the Go type for a column or columns by name.\n\nHere's an example including one of each kind:\n\n```yaml\nversion: \"2\"\nsql:\n- schema: \"postgresql/schema.sql\"\n  queries: \"postgresql/query.sql\"\n  engine: \"postgresql\"\n  gen:\n    go: \n      package: \"authors\"\n      out: \"db\"\n      sql_package: \"pgx/v5\"\n      overrides:\n        - db_type: \"uuid\"\n          nullable: true\n          go_type:\n            import: \"github.com/google/uuid\"\n            type: \"UUID\"\n        - column: \"users.birthday\"\n          go_type: \"time.Time\"\n```\n\n:::{tip}\n  A single `db_type` override configuration applies to either nullable or non-nullable\n  columns, but not both. If you want the same Go type to override regardless of\n  nullability, you'll need to configure two overrides: one with `nullable: true` and one without.\n:::\n\n## The `overrides` list\n\nEach element in the `overrides` list has the following keys:\n\n- `db_type`:\n  - A database type to override. Find the full list of supported types in [postgresql_type.go](https://github.com/sqlc-dev/sqlc/blob/main/internal/codegen/golang/postgresql_type.go#L12) or [mysql_type.go](https://github.com/sqlc-dev/sqlc/blob/main/internal/codegen/golang/mysql_type.go#L12). Note that for Postgres you must use pg_catalog-prefixed names where available. `db_type` and `column` are mutually exclusive.\n- `column`:\n  - A column name to override. The value should be of the form `table.column` but you can also specify `schema.table.column` or `catalog.schema.table.column`. `column` and `db_type` are mutually exclusive.\n- `go_type`:\n  - The fully-qualified name of a Go type to use in generated code. This is usually a string but can also be [a map](#the-go-type-map) for more complex configurations.\n- `go_struct_tag`:\n  - A reflect-style struct tag to use in generated code, e.g. `a:\"b\" x:\"y,z\"`.\n    If you want `json` or `db` tags for all fields, configure `emit_json_tags` or `emit_db_tags` instead.\n- `unsigned`:\n  - If `true`, sqlc will apply this override when a numeric column is unsigned.\n    Note that this only applies to `db_type` overrides and has no effect on `column` overrides.\n    Defaults to `false`.\n- `nullable`:\n  - If `true`, sqlc will apply this override when a column is nullable.\n    Otherwise `sqlc` will apply this override when a column is non-nullable.\n    Note that this only applies to `db_type` overrides and has no effect on `column` overrides.\n    Defaults to `false`.\n\n:::{tip}\n  A single `db_type` override configuration applies to either nullable or non-nullable\n  columns, but not both. If you want the same Go type to override regardless of nullability, you'll\n  need to configure two overrides: one with `nullable: true` and one without.\n:::\n\n:::{note}\nWhen generating code, `column` override configurations take precedence over `db_type` configurations.\n:::\n\n### The `go_type` map\n\nSome overrides may require more detailed configuration. If necessary, `go_type`\ncan be a map with the following keys:\n\n- `import`:\n  - The import path for the package where the type is defined.\n- `package`:\n  - The package name where the type is defined. This should only be necessary when your import path doesn't end with the desired package name.\n- `type`:\n  - The type name itself, without any package prefix.\n- `pointer`:\n  - If `true`, generated code will use a pointer to the type rather than the type itself.\n- `slice`:\n  - If `true`, generated code will use a slice of the type rather than the type itself.\n\nAn example:\n\n```yaml\nversion: \"2\"\nsql:\n- schema: \"postgresql/schema.sql\"\n  queries: \"postgresql/query.sql\"\n  engine: \"postgresql\"\n  gen:\n    go:\n      package: \"authors\"\n      out: \"db\"\n      sql_package: \"pgx/v5\"\n      overrides:\n        - db_type: \"uuid\"\n          go_type:\n            import: \"a/b/v2\"\n            package: \"b\"\n            type: \"MyType\"\n            pointer: true\n```\n\n## Global overrides\n\nTo override types in all packages that `sqlc` generates, add an override\nconfiguration to the top-level `overrides` section of your `sqlc` config:\n\n```yaml\nversion: \"2\"\noverrides:\n  go:\n    overrides:\n      - db_type: \"pg_catalog.timestamptz\"\n        nullable: true\n        engine: \"postgresql\"\n        go_type:\n          import: \"gopkg.in/guregu/null.v4\"\n          package: \"null\"\n          type: \"Time\"\nsql:\n- schema: \"service1/schema.sql\"\n  queries: \"service1/query.sql\"\n  engine: \"postgresql\"\n  gen:\n    go: \n      package: \"service1\"\n      out: \"service1\"\n- schema: \"service2/schema.sql\"\n  queries: \"service2/query.sql\"\n  engine: \"postgresql\"\n  gen:\n    go:\n      package: \"service2\"\n      out: \"service2\"\n```\n\nUsing this configuration, whenever there is a nullable `timestamp with time zone`\ncolumn in a Postgres table, `sqlc` will generate Go code using `null.Time`.\n\nNote that the mapping for global type overrides has a field called `engine` that\nis absent in per-package type overrides. This field is only used when there are\nmultiple `sql` sections using different engines. If you're only generating code\nfor a single database engine you can omit it.\n\n#### Version 1 configuration\n\nIf you are using the older version 1 of the `sqlc` configuration format, override\nconfigurations themselves are unchanged but are nested differently.\n\nPer-package configurations are nested under the `overrides` key within an item\nin the `packages` list:\n\n```yaml\nversion: \"1\"\npackages:\n  - name: \"db\"\n    path: \"internal/db\"\n    queries: \"./sql/query/\"\n    schema: \"./sql/schema/\"\n    engine: \"postgresql\"\n    overrides: [...]\n```\n\nAnd global configurations are nested under the top-level `overrides` key:\n\n```yaml\nversion: \"1\"\npackages: [...]\noverrides:\n  - db_type: \"uuid\"\n    go_type: \"github.com/gofrs/uuid.UUID\"\n```\n"
  },
  {
    "path": "docs/howto/prepared_query.md",
    "content": "# Preparing queries\n\nIf you're using `pgx/v5` you get its\n[implicit support](https://github.com/jackc/pgx/wiki/Automatic-Prepared-Statement-Caching)\nfor prepared statements. No additional `sqlc` configuration is required.\n\nFor other drivers, `sqlc` can give you the option to explicitly use prepared\nqueries. These prepared queries also work with transactions.\n\nYou'll need to set `emit_prepared_queries` to `true` in your `sqlc` configuration\nto generate code similar to the example below.\n\n```sql\nCREATE TABLE records (\n  id SERIAL PRIMARY KEY\n);\n\n-- name: GetRecord :one\nSELECT * FROM records\nWHERE id = $1;\n```\n\n```go\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"fmt\"\n)\n\ntype Record struct {\n\tID int32\n}\n\ntype DBTX interface {\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\nfunc Prepare(ctx context.Context, db DBTX) (*Queries, error) {\n\tq := Queries{db: db}\n\tvar err error\n\tif q.getRecordStmt, err = db.PrepareContext(ctx, getRecord); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query GetRecord: %w\", err)\n\t}\n\treturn &q, nil\n}\n\nfunc (q *Queries) queryRow(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) *sql.Row {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).QueryRowContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.QueryRowContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.QueryRowContext(ctx, query, args...)\n\t}\n}\n\ntype Queries struct {\n\tdb            DBTX\n\ttx            *sql.Tx\n\tgetRecordStmt *sql.Stmt\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb:            tx,\n\t\ttx:            tx,\n\t\tgetRecordStmt: q.getRecordStmt,\n\t}\n}\n\nconst getRecord = `-- name: GetRecord :one\nSELECT id FROM records\nWHERE id = $1\n`\n\nfunc (q *Queries) GetRecord(ctx context.Context, id int32) (int32, error) {\n\trow := q.queryRow(ctx, q.getRecordStmt, getRecord, id)\n\terr := row.Scan(&id)\n\treturn id, err\n}\n```\n"
  },
  {
    "path": "docs/howto/push.md",
    "content": "# `push` - Uploading projects\n\n```{note}\n`push` is powered by [sqlc Cloud](https://dashboard.sqlc.dev). Sign up for [free](https://dashboard.sqlc.dev) today.\n```\n\n*Added in v1.24.0*\n\nWe've renamed the `upload` sub-command to `push`. We've also changed the data sent along in a push request. Upload used to include the configuration file, migrations, queries, and all generated code. Push drops the generated code in favor of including the [plugin.GenerateRequest](https://buf.build/sqlc/sqlc/docs/main:plugin#plugin.GenerateRequest), which is the protocol buffer message we pass to codegen plugins.\n\n## Add configuration\n\nAfter creating a project, add the project ID to your sqlc configuration file.\n\n```yaml\nversion: \"2\"\ncloud:\n  project: \"<PROJECT_ID>\"\n```\n\nYou'll also need to create an auth token and make it available via the\n`SQLC_AUTH_TOKEN` environment variable.\n\n```shell\nexport SQLC_AUTH_TOKEN=sqlc_xxxxxxxx\n```\n\n## Dry run\n\nYou can see what's included when uploading your project by using using the\n`--dry-run` flag:\n\n```shell\n$ sqlc push --dry-run\n2023/11/21 10:39:51 INFO config file=sqlc.yaml bytes=912\n2023/11/21 10:39:51 INFO codegen_request queryset=app file=codegen_request.pb\n2023/11/21 10:39:51 INFO schema queryset=app file=migrations/00001_initial.sql bytes=3033\n2023/11/21 10:39:51 INFO query queryset=app file=queries/app.sql bytes=1150\n```\n\nThe output is the files `sqlc` would have sent without the `--dry-run` flag.\n\n## Push\n\nOnce you're ready to push, remove the `--dry-run` flag.\n\n```shell\n$ sqlc push\n```\n\n### Tags\n\nYou can provide tags to associate with a push, primarily as a convenient reference when using `sqlc verify` with the `against` argument.\n\nTags only refer to a single push, so if you pass an existing tag to `push` it will overwrite the previous reference.\n\n```shell\n$ sqlc push --tag main\n```\n\n### Annotations \n\nAnnotations are added to each push request. By default, we include these environment variables (if they are present).\n\n```\nGITHUB_REPOSITORY\nGITHUB_REF\nGITHUB_REF_NAME\nGITHUB_REF_TYPE\nGITHUB_SHA\n```\n"
  },
  {
    "path": "docs/howto/query_count.md",
    "content": "# Counting rows\n\n```sql\nCREATE TABLE authors (\n  id       SERIAL PRIMARY KEY,\n  hometown text   NOT NULL\n);\n\n-- name: CountAuthors :one\nSELECT count(*) FROM authors;\n\n-- name: CountAuthorsByTown :many\nSELECT hometown, count(*) FROM authors\nGROUP BY 1\nORDER BY 1;\n```\n\n```go\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nconst countAuthors = `-- name: CountAuthors :one\nSELECT count(*) FROM authors\n`\n\nfunc (q *Queries) CountAuthors(ctx context.Context) (int, error) {\n\trow := q.db.QueryRowContext(ctx, countAuthors)\n\tvar i int\n\terr := row.Scan(&i)\n\treturn i, err\n}\n\nconst countAuthorsByTown = `-- name: CountAuthorsByTown :many\nSELECT hometown, count(*) FROM authors\nGROUP BY 1\nORDER BY 1\n`\n\ntype CountAuthorsByTownRow struct {\n\tHometown string\n\tCount    int\n}\n\nfunc (q *Queries) CountAuthorsByTown(ctx context.Context) ([]CountAuthorsByTownRow, error) {\n\trows, err := q.db.QueryContext(ctx, countAuthorsByTown)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\titems := []CountAuthorsByTownRow{}\n\tfor rows.Next() {\n\t\tvar i CountAuthorsByTownRow\n\t\tif err := rows.Scan(&i.Hometown, &i.Count); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n```\n"
  },
  {
    "path": "docs/howto/rename.md",
    "content": "# Renaming fields\n\nStruct field names are generated from column names using a simple algorithm:\nsplit the column name on underscores and capitalize the first letter of each\npart.\n\n```\naccount     -> Account\nspotify_url -> SpotifyUrl\napp_id      -> AppID\n```\n\nIf you're not happy with a field's generated name, use the `rename` mapping\nto pick a new name. The keys are column names and the values are the struct\nfield name to use.\n\n```yaml\nversion: \"2\"\nsql:\n- schema: \"postgresql/schema.sql\"\n  queries: \"postgresql/query.sql\"\n  engine: \"postgresql\"\n  gen:\n    go: \n      package: \"authors\"\n      out: \"postgresql\"\n      rename:\n        spotify_url: \"SpotifyURL\"\n```\n\n## Tables\n\nThe output structs associated with tables can also be renamed. By default, \nthe struct name will be the singular version of the table name. For example, \nthe `authors` table will generate an `Author` struct and the `book_publishers`\ntable will generate a `BookPublisher` struct.\n\n```sql\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n\nCREATE TABLE book_publishers (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL\n);\n```\n\n```go\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype Publisher struct {\n\tID   int64\n\tName string\n}\n```\n\nTo rename these structs, you must use the generated struct name. In this \nexample, that would be `author` and `book_publisher`. Use the `rename` map to \nchange the name of these struct to `Writer` and `BookPublisher` (note the \ncamel-casing and the underscore for multi-worded tables).\n\n```yaml\nversion: '1'\npackages:\n- path: db\n  engine: postgresql\n  schema: query.sql\n  queries: query.sql\nrename:\n  author: Writer\n  book_publisher: Publisher\n```\n\n```yaml\nversion: \"2\"\nsql:\n  - engine: postgresql\n    queries: query.sql\n    schema: query.sql\noverrides:\n  go:\n    rename:\n      author: Writer\n      book_publisher: Publisher\n```\n\n```go\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Writer struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype Publisher struct {\n\tID   int64\n\tName string\n}\n```\n\n## Limitations\n\nRename mappings apply to an entire package. Therefore, a column named `foo` and\na table name `foo` can't map to different rename values.\n"
  },
  {
    "path": "docs/howto/select.md",
    "content": "# Retrieving rows\n\nTo generate a database access method, annotate a query with a specific comment.\n\n```sql\nCREATE TABLE authors (\n  id         SERIAL PRIMARY KEY,\n  bio        text   NOT NULL,\n  birth_year int    NOT NULL\n);\n```\n\nThe parameter syntax varies by database engine:\n\n**PostgreSQL:**\n```sql\n-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY id;\n```\n\n**MySQL and SQLite:**\n```sql\n-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = ?;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY id;\n```\n\nA few new pieces of code are generated beyond the `Author` struct. An interface\nfor the underlying database is generated. The `*sql.DB` and `*sql.Tx` types\nsatisfy this interface.\n\nThe database access methods are added to a `Queries` struct, which is created\nusing the `New` method.\n\nNote that the `*` in our query has been replaced with explicit column names.\nThis change ensures that the query will never return unexpected data.\n\nOur query was annotated with `:one`, meaning that it should only return a\nsingle row. We scan the data from that one into a `Author` struct.\n\nSince the get query has a single parameter, the `GetAuthor` method takes a single\n`int` as an argument.\n\nSince the list query has no parameters, the `ListAuthors` method accepts no\narguments.\n\n\n```go\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID        int\n\tBio       string\n\tBirthYear int\n}\n\ntype DBTX interface {\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, bio, birth_year FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Bio, &i.BirthYear)\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, bio, birth_year FROM authors\nORDER BY id\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Bio, &i.BirthYear); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n```\n\n## Selecting columns\n\n```sql\nCREATE TABLE authors (\n  id         SERIAL PRIMARY KEY,\n  bio        text   NOT NULL,\n  birth_year int    NOT NULL\n);\n\n-- name: GetBioForAuthor :one\nSELECT bio FROM authors\nWHERE id = $1;\n\n-- name: GetInfoForAuthor :one\nSELECT bio, birth_year FROM authors\nWHERE id = $1;\n```\n\nWhen selecting a single column, only that value is returned. The `GetBioForAuthor`\nmethod takes a single `int` as an argument and returns a `string` and an\n`error`.\n\nWhen selecting multiple columns, a row record (method-specific struct) is\nreturned. In this case, `GetInfoForAuthor` returns a struct with two fields:\n`Bio` and `BirthYear`.\n\nIf a query result has no row records, a zero value and an `ErrNoRows` error are\nreturned instead of a zero value and `nil`. For instance, when the `GetBioForAuthor`\nresult has no rows, it will return `\"\"` and `ErrNoRows`.\n\n```go\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nconst getBioForAuthor = `-- name: GetBioForAuthor :one\nSELECT bio FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) GetBioForAuthor(ctx context.Context, id int) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getBioForAuthor, id)\n\tvar i string\n\terr := row.Scan(&i)\n\treturn i, err\n}\n\nconst getInfoForAuthor = `-- name: GetInfoForAuthor :one\nSELECT bio, birth_year FROM authors\nWHERE id = $1\n`\n\ntype GetInfoForAuthorRow struct {\n\tBio       string\n\tBirthYear int\n}\n\nfunc (q *Queries) GetInfoForAuthor(ctx context.Context, id int) (GetInfoForAuthorRow, error) {\n\trow := q.db.QueryRowContext(ctx, getInfoForAuthor, id)\n\tvar i GetInfoForAuthorRow\n\terr := row.Scan(&i.Bio, &i.BirthYear)\n\treturn i, err\n}\n```\n\n## Passing a slice as a parameter to a query\n\n### PostgreSQL\n\nIn PostgreSQL,\n[ANY](https://www.postgresql.org/docs/current/functions-comparisons.html#id-1.5.8.28.16)\nallows you to check if a value exists in an array expression. Queries using ANY\nwith a single parameter will generate method signatures with slices as\narguments. Use the postgres data types, eg: int, varchar, etc.\n\n```sql\nCREATE TABLE authors (\n  id         SERIAL PRIMARY KEY,\n  bio        text   NOT NULL,\n  birth_year int    NOT NULL\n);\n\n-- name: ListAuthorsByIDs :many\nSELECT * FROM authors\nWHERE id = ANY($1::int[]);\n```\n\nThe above SQL will generate the following code:\n\n```go\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\n\t\"github.com/lib/pq\"\n)\n\ntype Author struct {\n\tID        int\n\tBio       string\n\tBirthYear int\n}\n\ntype DBTX interface {\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nconst listAuthors = `-- name: ListAuthorsByIDs :many\nSELECT id, bio, birth_year FROM authors\nWHERE id = ANY($1::int[])\n`\n\nfunc (q *Queries) ListAuthorsByIDs(ctx context.Context, ids []int) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors, pq.Array(ids))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Bio, &i.BirthYear); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n```\n\n### MySQL and SQLite\n\nMySQL and SQLite differ from PostgreSQL in that placeholders must be generated based on\nthe number of elements in the slice you pass in. Though trivial it is still\nsomething of a nuisance. The passed in slice must not be nil or empty or an\nerror will be returned (ie not a panic). The placeholder insertion location is\nmarked by the meta-function `sqlc.slice()` (which is similar to `sqlc.arg()`\nthat you see documented under [Naming parameters](named_parameters.md)).\n\nTo rephrase, the `sqlc.slice('param')` behaves identically to `sqlc.arg()` it\nterms of how it maps the explicit argument to the function signature, eg:\n\n  * `sqlc.slice('ids')` maps to `ids []GoType` in the function signature\n  * `sqlc.slice(cust_ids)` maps to `custIds []GoType` in the function signature\n    (like `sqlc.arg()`, the parameter does not have to be quoted)\n\nThis feature is not compatible with `emit_prepared_queries` statement found in the\n[Configuration file](../reference/config.md).\n\n```sql\nCREATE TABLE authors (\n  id         SERIAL PRIMARY KEY,\n  bio        text   NOT NULL,\n  birth_year int    NOT NULL\n);\n\n-- name: ListAuthorsByIDs :many\nSELECT * FROM authors\nWHERE id IN (sqlc.slice('ids'));\n```\n\nThe above SQL will generate the following code:\n\n```go\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"fmt\"\n\t\"strings\"\n)\n\ntype Author struct {\n\tID        int\n\tBio       string\n\tBirthYear int\n}\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n\nconst listAuthorsByIDs = `-- name: ListAuthorsByIDs :many\nSELECT id, bio, birth_year FROM authors\nWHERE id IN (/*SLICE:ids*/?)\n`\n\nfunc (q *Queries) ListAuthorsByIDs(ctx context.Context, ids []int64) ([]Author, error) {\n\tsql := listAuthorsByIDs\n\tvar queryParams []interface{}\n\tif len(ids) == 0 {\n\t\treturn nil, fmt.Errorf(\"slice ids must have at least one element\")\n\t}\n\tfor _, v := range ids {\n\t\tqueryParams = append(queryParams, v)\n\t}\n\tsql = strings.Replace(sql, \"/*SLICE:ids*/?\", strings.Repeat(\",?\", len(ids))[1:], 1)\n\trows, err := q.db.QueryContext(ctx, sql, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Bio, &i.BirthYear); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n```\n"
  },
  {
    "path": "docs/howto/structs.md",
    "content": "# Configuring generated structs\n\n## Naming scheme\n\nStructs generated from tables will attempt to use the singular form of a table\nname if the table name is pluralized.\n\n```sql\nCREATE TABLE authors (\n  id   SERIAL PRIMARY KEY,\n  name text   NOT NULL\n);\n```\n\n```go\npackage db\n\n// Struct names use the singular form of table names\ntype Author struct {\n\tID   int\n\tName string\n}\n```\n\n## JSON tags\n\n```sql\nCREATE TABLE authors (\n  id         SERIAL    PRIMARY KEY,\n  created_at timestamp NOT NULL\n);\n```\n\nsqlc can generate structs with JSON tags by adding the `emit_json_tags` key to the configuration file as it shows on [configuration reference](../reference/config.md).\nThe JSON name for a field matches\nthe column name in the database.\n\n```go\npackage db\n\nimport (\n\t\"time\"\n)\n\ntype Author struct {\n\tID        int       `json:\"id\"`\n\tCreatedAt time.Time `json:\"created_at\"`\n}\n```\n\n## More control\n\nSee the guide to [Overriding types](./overrides.md) for fine-grained control over struct field types and tags.\n"
  },
  {
    "path": "docs/howto/transactions.md",
    "content": "# Using transactions\nIn the code generated by sqlc, the `WithTx` method allows a `Queries` instance to be associated with a transaction.\n\nFor example, with the following SQL structure:\n\n`schema.sql`:\n```sql\nCREATE TABLE records (\n  id SERIAL PRIMARY KEY,\n  counter INT NOT NULL\n);\n```\n\n`query.sql`\n```sql\n-- name: GetRecord :one\nSELECT * FROM records\nWHERE id = $1;\n\n-- name: UpdateRecord :exec\nUPDATE records SET counter = $2\nWHERE id = $1;\n```\n\nAnd the generated code from sqlc in `db.go`:\n```go\npackage tutorial\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n\n```\n\nYou'd use it like this:\n\n```go\n// Using `github/lib/pq` as the driver.\nfunc bumpCounter(ctx context.Context, db *sql.DB, queries *tutorial.Queries, id int32) error {\n\ttx, err := db.Begin()\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer tx.Rollback()\n\tqtx := queries.WithTx(tx)\n\tr, err := qtx.GetRecord(ctx, id)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif err := qtx.UpdateRecord(ctx, tutorial.UpdateRecordParams{\n\t\tID:      r.ID,\n\t\tCounter: r.Counter + 1,\n\t}); err != nil {\n\t\treturn err\n\t}\n\treturn tx.Commit()\n}\n\n// Using `github.com/jackc/pgx/v5` as the driver.\nfunc bumpCounter(ctx context.Context, db *pgx.Conn, queries *tutorial.Queries, id int32) error {\n\ttx, err := db.Begin(ctx)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer tx.Rollback(ctx)\n\tqtx := queries.WithTx(tx)\n\tr, err := qtx.GetRecord(ctx, id)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif err := qtx.UpdateRecord(ctx, tutorial.UpdateRecordParams{\n\t\tID:      r.ID,\n\t\tCounter: r.Counter + 1,\n\t}); err != nil {\n\t\treturn err\n\t}\n\treturn tx.Commit(ctx)\n}\n```"
  },
  {
    "path": "docs/howto/update.md",
    "content": "# Updating rows\n\n```sql\nCREATE TABLE authors (\n  id         SERIAL PRIMARY KEY,\n  bio        text   NOT NULL\n);\n```\n\n## Single parameter\n\nIf your query has a single parameter, your Go method will also have a single\nparameter.\n\nThe parameter syntax varies by database engine:\n\n**PostgreSQL:**\n```sql\n-- name: UpdateAuthorBios :exec\nUPDATE authors SET bio = $1;\n```\n\n**MySQL and SQLite:**\n```sql\n-- name: UpdateAuthorBios :exec\nUPDATE authors SET bio = ?;\n```\n\n```go\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nconst updateAuthorBios = `-- name: UpdateAuthorBios :exec\nUPDATE authors SET bio = $1\n`\n\nfunc (q *Queries) UpdateAuthorBios(ctx context.Context, bio string) error {\n\t_, err := q.db.ExecContext(ctx, updateAuthorBios, bio)\n\treturn err\n}\n```\n\n## Multiple parameters\n\nIf your query has more than one parameter, your Go method will accept a\n`Params` struct.\n\n**PostgreSQL:**\n```sql\n-- name: UpdateAuthor :exec\nUPDATE authors SET bio = $2\nWHERE id = $1;\n```\n\n**MySQL and SQLite:**\n```sql\n-- name: UpdateAuthor :exec\nUPDATE authors SET bio = ?\nWHERE id = ?;\n```\n\nNote: For MySQL and SQLite, parameters are bound in the order they appear in the query, regardless of the order in the function signature.\n\n```go\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nconst updateAuthor = `-- name: UpdateAuthor :exec\nUPDATE authors SET bio = $2\nWHERE id = $1\n`\n\ntype UpdateAuthorParams struct {\n\tID  int32\n\tBio string\n}\n\nfunc (q *Queries) UpdateAuthor(ctx context.Context, arg UpdateAuthorParams) error {\n\t_, err := q.db.ExecContext(ctx, updateAuthor, arg.ID, arg.Bio)\n\treturn err\n}\n```\n\n"
  },
  {
    "path": "docs/howto/verify.md",
    "content": "# `verify` - Verifying schema changes\n\n*Added in v1.24.0*\n\nSchema updates and poorly-written queries often bring down production databases. That’s bad.\n\nOut of the box, `sqlc generate` catches some of these issues. Running `sqlc vet` with the `sqlc/db-prepare` rule catches more subtle problems. But there is a large class of issues that sqlc can’t prevent by looking at current schema and queries alone.\n\nFor instance, when a schema change is proposed, existing queries and code running in production might fail when the schema change is applied. Enter `sqlc verify`, which analyzes existing queries against new schema changes and errors if there are any issues.\n\nLet's look at an example. Assume you have these two tables in production.\n\n```sql\nCREATE TABLE users (\n  id UUID PRIMARY KEY\n);\n\nCREATE TABLE user_actions (\n  id UUID PRIMARY KEY,\n  user_id UUID NOT NULL,\n  action TEXT,\n  created_at TIMESTAMP\n);\n```\n\nYour application contains the following query to join user actions against the users table.\n\n```sql\n-- name: GetUserActions :many\nSELECT * FROM users u\nJOIN user_actions ua ON u.id = ua.user_id\nORDER BY created_at;\n```\n\nSo far, so good. Then assume you propose this schema change:\n\n```sql\nALTER TABLE users ADD COLUMN created_at TIMESTAMP;\n```\n\nRunning `sqlc generate` fails with this change, returning a `column reference \"created_at\" is ambiguous` error. You update your query to fix the issue.\n\n```sql\n-- name: GetUserActions :many\nSELECT * FROM users u\nJOIN user_actions ua ON u.id = ua.user_id\nORDER BY u.created_at;\n```\n\nWhile that change fixes the issue, there's a production outage waiting to happen. When the schema change is applied, the existing `GetUserActions` query will begin to fail. The correct way to fix this is to deploy the updated query before applying the schema migration.\n\nIt ensures migrations are safe to deploy by sending your current schema and queries to sqlc cloud. There, we run the queries for your latest push against your new schema changes. This check catches backwards incompatible schema changes for existing queries.\n\nHere `sqlc verify` alerts you to the fact that ORDER BY \"created_at\" is ambiguous.\n\n```sh\n$ sqlc verify\nFAIL: app query.sql\n\n=== Failed\n=== FAIL: app query.sql GetUserActions\n    ERROR: column reference \"created_at\" is ambiguous (SQLSTATE 42702)\n```\n\nBy the way, this scenario isn't made up! It happened to us a few weeks ago. We've been happily testing early versions of `verify` for the last two weeks and haven't had any issues since.\n\nThis type of verification is only the start. If your application is deployed on-prem by your customers, `verify` could tell you if it's safe for your customers to rollback to an older version of your app, even after schema migrations have been run.\n\nUsing `verify` requires that you push your queries and schema when you tag a release of your application. We run it on every push to main, as we continuously deploy those commits.\n\n## Authentication\n\n`sqlc` expects to find a valid auth token in the value of the `SQLC_AUTH_TOKEN`\nenvironment variable. You can create an auth token via the [dashboard](https://dashboard.sqlc.dev).\n\n```shell\nexport SQLC_AUTH_TOKEN=sqlc_xxxxxxxx\n```\n\n## Expected workflow\n\nUsing `sqlc verify` requires pushing your queries and schema to sqlc Cloud. When\nyou release a new version of your application, you should push your schema and\nqueries as well. For example, we run `sqlc push` after any change has been\nmerged into our `main` branch on Github, as we deploy every commit to\nproduction.\n\n```shell\n$ sqlc push --tag main\n```\n\nLocally or in pull requests, run `sqlc verify` to check that existing queries\ncontinue to work with your current database schema.\n\n```shell\n$ sqlc verify --against main\n```\n\n## Picking a tag\n\nWithout an `against` argument, `verify` will run its analysis of the provided schema using your most-recently pushed queries. We suggest using the `against` argument to explicitly select a set of queries for comparison.\n\n```shell\n$ sqlc verify --against [tag]\n```\n"
  },
  {
    "path": "docs/howto/vet.md",
    "content": "# `vet` - Linting queries\n\n*Added in v1.19.0*\n\n`sqlc vet` runs queries through a set of lint rules.\n\nRules are defined in the `sqlc` [configuration](../reference/config) file. They\nconsist of a name, message, and a [Common Expression Language\n(CEL)](https://github.com/google/cel-spec) expression. Expressions are evaluated\nusing [cel-go](https://github.com/google/cel-go).  If an expression evaluates to\n`true`, `sqlc vet` will report an error using the given message.\n\n## Defining lint rules\n\nEach lint rule's CEL expression has access to information from your sqlc\nconfiguration and queries via variables defined in the following proto messages.\n\n```proto\nmessage Config\n{\n  string version = 1;\n  string engine = 2 ;\n  repeated string schema = 3;\n  repeated string queries = 4;\n}\n\nmessage Query\n{\n  // SQL body\n  string sql = 1;\n  // Name of the query\n  string name = 2; \n  // One of \"many\", \"one\", \"exec\", etc.\n  string cmd = 3;\n  // Query parameters, if any\n  repeated Parameter params = 4;\n}\n\nmessage Parameter\n{\n  int32 number = 1;\n}\n```\n\nIn addition to this basic information, when you have a PostgreSQL or MySQL\n[database connection configured](../reference/config.md#database)\neach CEL expression has access to the output from running `EXPLAIN ...` on your query\nvia the `postgresql.explain` and `mysql.explain` variables.\nThis output is quite complex and depends on the structure of your query but sqlc attempts\nto parse and provide as much information as it can. See\n[Rules using `EXPLAIN ...` output](#rules-using-explain-output) for more information.\n\nHere are a few example rules just using the basic configuration and query information available\nto the CEL expression environment. While these examples are simplistic, they give you a flavor\nof the types of rules you can write.\n\n```yaml\nversion: 2\nsql:\n  - schema: \"query.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    gen:\n      go:\n        package: \"authors\"\n        out: \"db\"\n    rules:\n      - no-pg\n      - no-delete\n      - only-one-param\n      - no-exec\nrules:\n  - name: no-pg\n    message: \"invalid engine: postgresql\"\n    rule: |\n      config.engine == \"postgresql\"\n  - name: no-delete\n    message: \"don't use delete statements\"\n    rule: |\n      query.sql.contains(\"DELETE\")\n  - name: only-one-param\n    message: \"too many parameters\"\n    rule: |\n      query.params.size() > 1\n  - name: no-exec\n    message: \"don't use exec\"\n    rule: |\n      query.cmd == \"exec\"\n```\n\n### Rules using `EXPLAIN ...` output\n\n*Added in v1.20.0*\n\nThe CEL expression environment has two variables containing `EXPLAIN ...` output,\n`postgresql.explain` and `mysql.explain`. `sqlc` only populates the variable associated with\nyour configured database engine, and only when you have a\n[database connection configured](../reference/config.md#database).\n\nFor the `postgresql` engine, `sqlc` runs\n\n```sql\nEXPLAIN (ANALYZE false, VERBOSE, COSTS, SETTINGS, BUFFERS, FORMAT JSON) ...\n```\n\nwhere `\"...\"` is your query string, and parses the output into a [`PostgreSQLExplain`](https://buf.build/sqlc/sqlc/docs/v1.20.0:vet#vet.PostgreSQLExplain) proto message.\n\nFor the `mysql` engine, `sqlc` runs\n\n```sql\nEXPLAIN FORMAT=JSON ...\n```\n\nwhere `\"...\"` is your query string, and parses the output into a [`MySQLExplain`](https://buf.build/sqlc/sqlc/docs/v1.20.0:vet#vet.MySQLExplain) proto message.\n\nThese proto message definitions are too long to include here, but you can find them in the `protos`\ndirectory within the `sqlc` source tree.\n\nThe output from `EXPLAIN ...` depends on the structure of your query so it's a bit difficult\nto offer generic examples. Refer to the\n[PostgreSQL documentation](https://www.postgresql.org/docs/current/using-explain.html) and\n[MySQL documentation](https://dev.mysql.com/doc/refman/en/explain-output.html) for more\ninformation.\n\n```yaml\n...\nrules:\n- name: postgresql-query-too-costly\n  message: \"Query cost estimate is too high\"\n  rule: \"postgresql.explain.plan.total_cost > 1.0\"\n- name: postgresql-no-seq-scan\n  message: \"Query plan results in a sequential scan\"\n  rule: \"postgresql.explain.plan.node_type == 'Seq Scan'\"\n- name: mysql-query-too-costly\n  message: \"Query cost estimate is too high\"\n  rule: \"has(mysql.explain.query_block.cost_info) && double(mysql.explain.query_block.cost_info.query_cost) > 2.0\"\n- name: mysql-must-use-primary-key\n  message: \"Query plan doesn't use primary key\"\n  rule: \"has(mysql.explain.query_block.table.key) && mysql.explain.query_block.table.key != 'PRIMARY'\"\n```\n\nWhen building rules that depend on `EXPLAIN ...` output, it may be helpful to see the actual JSON\nreturned from the database. `sqlc` will print it When you set the environment variable\n`SQLCDEBUG=dumpexplain=1`. Use this environment variable together with a dummy rule to see\n`EXPLAIN ...` output for all of your queries.\n\n```yaml\nversion: 2\nsql:\n  - schema: \"query.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    database:\n      uri: \"postgresql://postgres:postgres@localhost:5432/postgres\"\n    gen:\n      go:\n        package: \"db\"\n        out: \"db\"\n    rules:\n      - debug\nrules:\n- name: debug\n  rule: \"!has(postgresql.explain)\" # A dummy rule to trigger explain\n```\n\nPlease note that databases configured with a `uri` must have an up-to-date\nschema for `vet` to work correctly, and `sqlc` does not apply schema migrations\nto your database. Use your migration tool of choice to create the necessary\ntables and objects before running `sqlc vet` with rules that depend on\n`EXPLAIN ...` output.\n\nAlternatively, configure [managed databases](managed-databases.md) to have\n`sqlc` create hosted ephemeral databases with the correct schema automatically.\n\n## Built-in rules\n\n### sqlc/db-prepare\n\nWhen a [database](../reference/config.md#database) connection is configured, you can\nrun the built-in `sqlc/db-prepare` rule. This rule will attempt to prepare\neach of your queries against the connected database and report any failures.\n\n```yaml\nversion: 2\nsql:\n  - schema: \"schema.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    gen:\n      go:\n        package: \"authors\"\n        out: \"db\"\n    database:\n      uri: \"postgresql://postgres:password@localhost:5432/postgres\"\n    rules:\n      - sqlc/db-prepare\n```\n\nPlease note that databases configured with a `uri` must have an up-to-date\nschema for `vet` to work correctly, and `sqlc` does not apply schema migrations\nto your database. Use your migration tool of choice to create the necessary\ntables and objects before running `sqlc vet` with the `sqlc/db-prepare` rule.\n\nAlternatively, configure [managed databases](managed-databases.md) to have\n`sqlc` create hosted ephemeral databases with the correct schema automatically.\n\n```yaml\nversion: 2\ncloud:\n  project: \"<PROJECT_ID>\"\nsql:\n  - schema: \"schema.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    gen:\n      go:\n        package: \"authors\"\n        out: \"db\"\n    database:\n      managed: true\n    rules:\n      - sqlc/db-prepare\n```\n\nTo see this in action, check out the [authors\nexample](https://github.com/sqlc-dev/sqlc/blob/main/examples/authors/sqlc.yaml).\n\n## Running lint rules\n\nWhen you add the name of a defined rule to the rules list\nfor a [sql package](../reference/config.md#sql),\n`sqlc vet` will evaluate that rule against every query in the package.\n\nIn the example below, two rules are defined but only one is enabled.\n\n```yaml\nversion: 2\nsql:\n  - schema: \"query.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    gen:\n      go:\n        package: \"authors\"\n        out: \"db\"\n    rules:\n      - no-delete\nrules:\n  - name: no-pg\n    message: \"invalid engine: postgresql\"\n    rule: |\n      config.engine == \"postgresql\"\n  - name: no-delete\n    message: \"don't use delete statements\"\n    rule: |\n      query.sql.contains(\"DELETE\")\n```\n\n### Opting-out of lint rules\n\nFor any query, you can tell `sqlc vet` not to evaluate lint rules using the\n`@sqlc-vet-disable` query annotation. The annotation accepts a list of rules to ignore.\n\n```sql\n/* name: GetAuthor :one */\n/* @sqlc-vet-disable sqlc/db-prepare no-pg */\nSELECT * FROM authors\nWHERE id = ? LIMIT 1;\n```\nThe rules can also be split across lines.\n```sql\n/* name: GetAuthor :one */\n/* @sqlc-vet-disable sqlc/db-prepare */\n/* @sqlc-vet-disable no-pg */\nSELECT * FROM authors\nWHERE id = ? LIMIT 1;\n```\n\nTo skip all rules for a query, you can provide the `@sqlc-vet-disable` annotation without any parameters. \n\n```sql\n/* name: GetAuthor :one */\n/* @sqlc-vet-disable */\nSELECT * FROM authors\nWHERE id = ? LIMIT 1;\n```\n"
  },
  {
    "path": "docs/index.rst",
    "content": ".. sqlc documentation master file, created by\n   sphinx-quickstart on Mon Feb  1 23:18:36 2021.\n   You can adapt this file completely to your liking, but it should at least\n   contain the root `toctree` directive.\n\nsqlc Documentation\n==================\n\n  And lo, the Great One looked down upon the people and proclaimed:\n    \"SQL is actually pretty great\"\n\nsqlc generates **fully type-safe idiomatic Go code** from SQL. Here's how it\nworks:\n\n1. You write SQL queries\n2. You run sqlc to generate Go code that presents type-safe interfaces to those\n   queries\n3. You write application code that calls the methods sqlc generated\n\nSeriously, it's that easy. You don't have to write any boilerplate SQL querying\ncode ever again.\n\n.. toctree::\n   :maxdepth: 2\n   :caption: Overview\n   :hidden:\n\n   overview/install.md\n\n.. toctree::\n   :maxdepth: 2\n   :caption: Tutorials\n   :hidden:\n\n   tutorials/getting-started-mysql.md\n   tutorials/getting-started-postgresql.md\n   tutorials/getting-started-sqlite.md\n\n.. toctree::\n   :maxdepth: 2\n   :caption: Commands\n   :hidden:\n\n   howto/generate.md\n   howto/push.md\n   howto/verify.md\n   howto/vet.md\n\n.. toctree::\n   :maxdepth: 2\n   :caption: How-to Guides\n   :hidden:\n\n   howto/select.md\n   howto/query_count.md\n   howto/insert.md\n   howto/update.md\n   howto/delete.md\n\n   howto/prepared_query.md\n   howto/transactions.md\n   howto/named_parameters.md\n\n   howto/ddl.md\n   howto/structs.md\n   howto/embedding.md\n   howto/overrides.md\n   howto/rename.md\n\n.. toctree::\n   :maxdepth: 3\n   :caption: sqlc Cloud\n   :hidden:\n\n   howto/managed-databases.md\n\n.. toctree::\n   :maxdepth: 3\n   :caption: Reference\n   :hidden:\n\n   reference/changelog.md\n   reference/cli.md\n   reference/config.md\n   reference/datatypes.md\n   reference/environment-variables.md\n   reference/language-support.rst\n   reference/macros.md\n   reference/query-annotations.md\n\n.. toctree::\n   :maxdepth: 2\n   :caption: Conceptual Guides\n   :hidden:\n\n   howto/ci-cd.md\n   guides/using-go-and-pgx.rst\n   guides/plugins.md\n   guides/development.md\n   guides/privacy.md\n"
  },
  {
    "path": "docs/overview/install.md",
    "content": "# Installing sqlc\n\nsqlc is distributed as a single binary with zero dependencies.\n\n## macOS\n\n```\nbrew install sqlc\n```\n\n## Ubuntu\n\n```\nsudo snap install sqlc\n```\n\n## go install\n\nInstalling recent versions of sqlc requires Go 1.21+.\n\n```\ngo install github.com/sqlc-dev/sqlc/cmd/sqlc@latest\n```\n\n## Docker\n\n```\ndocker pull sqlc/sqlc\n```\n\nRun `sqlc` using `docker run`:\n\n```\ndocker run --rm -v $(pwd):/src -w /src sqlc/sqlc generate\n```\n\nRun `sqlc` using `docker run` in the Command Prompt on Windows (`cmd`):\n\n```\ndocker run --rm -v \"%cd%:/src\" -w /src sqlc/sqlc generate\n```\n\n## Downloads\n\nGet pre-built binaries for *v1.30.0*:\n\n- [Linux](https://downloads.sqlc.dev/sqlc_1.30.0_linux_amd64.tar.gz)\n- [macOS](https://downloads.sqlc.dev/sqlc_1.30.0_darwin_amd64.zip)\n- [Windows](https://downloads.sqlc.dev/sqlc_1.30.0_windows_amd64.zip)\n\nSee [downloads.sqlc.dev](https://downloads.sqlc.dev/) for older versions.\n"
  },
  {
    "path": "docs/reference/changelog.md",
    "content": "# Changelog\nAll notable changes to this project will be documented in this file.\n\n(v1-30-0)=\n## [1.30.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.30.0)\nReleased 2025-09-01\n\n### Bug Fixes\n\n- (compiler/mysql) Prevent panic in convertSetOprSelectList() (#4042)\n- Range subselect alias pointer dereference (#3711)\n- (codegen/golang) Don't omit enums used as arrays (#4058)\n- (codegen/golang) Handle `go_struct_tag` for `db_type` overrides  (#4055)\n- (engine/dolphin) Remove references to deprecated `pcast.ChangeStmt` (#4057)\n- Normalize identifier usage for table names (#4045)\n- (engine/sqlite) Fix parsing of INSERT DEFAULT VALUES syntax (#4010)\n\n### Documentation\n\n- Fix parameter syntax inconsistency for MySQL and SQLite (#4036)\n- Use correct configuration to generate the given output for JSON type override (#4049)\n- Clean up and add to docs regarding type overrides (#4060)\n- Try a different admonition format (#4061)\n- Use the correct admonition format (#4062)\n- Add multi-worded table example for renaming (#4067)\n\n### Features\n\n- (docs) Add link to Gleam/parrot (#4038)\n- (engine/dolphin) Implement MATCH_AGAINST conversion in SQL AST (#1192, #3091) (#4070)\n- (engine/sqlite) Coerce jsonb columns to json before returning to Go code (#3968)\n\n### Testing\n\n- (endtoend) Skip process_plugin_sqlc_gen_json (#4075)\n- (endtoend) Use Docker to start database servers (#4076)\n\n### Build\n\n- (deps) Bump the production-dependencies group across 1 directory with 2 updates (#3941)\n- (deps) Bump packaging (#3940)\n- (deps) Bump golang from 1.24.2 to 1.24.4 (#3983)\n- (deps) Bump golang from 1.24.4 to 1.24.5 (#4014)\n- (deps) Bump urllib3 from 2.4.0 to 2.5.0 in /docs (#3994)\n- (deps) Bump the production-dependencies group across 1 directory with 5 updates (#3989)\n- (deps) Bump the production-dependencies group across 1 directory with 4 updates (#4027)\n- (deps) Bump modernc.org/sqlite (#4032)\n- (deps) Bump the production-dependencies group across 1 directory with 4 updates (#4018)\n- (deps) Bump certifi in /docs in the production-dependencies group (#4041)\n- (deps) Bump google.golang.org/protobuf (#4043)\n- (deps) Bump actions/checkout from 4 to 5 (#4059)\n- (deps) Bump the production-dependencies group across 1 directory with 2 updates (#4071)\n- (deps) Bump requests in /docs in the production-dependencies group (#4068)\n- Upgrade to Go 1.25 (#4074)\n- (deps) Bump golang from 1.24.5 to 1.25.0 (#4063)\n- (deps) Bump github.com/google/cel-go (#4080)\n\n(v1-29-0)=\n## [1.29.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.29.0)\nReleased 2025-04-14\n\n### Bug Fixes\n\n- (docs) Correct spelling and grammar (#3645)\n- (dbmanager) Use correct SQL to drop databases (#3640)\n- (compiler) Don't crash on WHERE x IN (... UNION ...) (#3652)\n- (golang) Escape q field name (#3647)\n- Postgresql alter materialized view is not registered to statements (#3728)\n- Do not close wazero module on error (#3758) (#3759)\n- (pgx) Do not wrap nil error (#3913)\n- (migrations) Normalize case for migration statement for all cases (#3919)\n\n### Documentation\n\n- Add missing documentation about copyfrom (#3583)\n- Add sqlc-gen-from-template (#3601)\n- Add changelog for 1.28.0 (#3797)\n- Add PHP DBAL plugin (#3813)\n- Fix PostGIS function name (#3829)\n- Add Zig plugin (#3824)\n- Add link to tandemdude/sqlc-gen-java (#3819)\n\n### Features\n\n- (docs) How-to use transactions with pgx (#3557)\n- (quickdb) Remove unused func (#3576)\n- (vet) Allow selective disabling of rules per query (#3620)\n- (dolphin) Upgrade to latest TiDB parser (#3733)\n- (mysql) Add a test for VECTOR column type (#3734)\n- (cli) Bump version from 1.27.0 to 1.28.0 (#3798)\n- (codegen/golang) Add an option to wrap query errors that includes query name (#3876)\n\n### Miscellaneous Tasks\n\n- Remove the triage label (#3527)\n- Upgrade to Go 1.22.8 to silence vulncheck (#3646)\n- Update sqlc-gen-java supported engines (#3843)\n\n### Build\n\n- (deps) Bump myst-parser (#3530)\n- (deps) Bump golang from 1.22.5 to 1.22.6 (#3532)\n- (deps) Bump modernc.org/sqlite (#3537)\n- (deps) Bump the production-dependencies group across 1 directory with 4 updates (#3566)\n- (deps) Bump the production-dependencies group across 1 directory with 2 updates (#3565)\n- (deps) Bump golang from 1.22.6 to 1.23.0 (#3546)\n- (deps) Bump golang from 1.23.0 to 1.23.1 (#3586)\n- (deps) Bump the production-dependencies group across 1 directory with 5 updates (#3644)\n- (deps) Bump the production-dependencies group across 1 directory with 5 updates (#3642)\n- (deps) Bump sphinx-rtd-theme (#3648)\n- (deps) Bump pyparsing (#3653)\n- (deps) Bump markupsafe (#3666)\n- (deps) Bump the production-dependencies group across 1 directory with 2 updates (#3707)\n- (deps) Bump golang from 1.23.2 to 1.23.3 (#3691)\n- (deps) Bump the production-dependencies group across 1 directory with 5 updates (#3721)\n- (deps) Bump the production-dependencies group across 1 directory with 2 updates (#3731)\n- (deps) Bump certifi in /docs in the production-dependencies group (#3748)\n- (deps) Bump golang.org/x/crypto from 0.27.0 to 0.31.0 (#3740)\n- (deps) Bump golang from 1.23.3 to 1.23.4 (#3735)\n- (deps) Bump the production-dependencies group across 1 directory with 2 updates (#3749)\n- (deps) Bump the production-dependencies group with 2 updates (#3753)\n- (deps) Bump the production-dependencies group across 1 directory with 3 updates (#3764)\n- (deps) Bump the production-dependencies group (#3761)\n- (deps) Bump jinja2 from 3.1.4 to 3.1.5 in /docs (#3762)\n- (deps) Bump google.golang.org/protobuf (#3776)\n- (deps) Bump the production-dependencies group across 1 directory with 2 updates (#3777)\n- (deps) Bump google.golang.org/grpc (#3784)\n- (deps) Bump golang from 1.23.4 to 1.23.5 (#3791)\n- (deps) Bump the production-dependencies group with 2 updates (#3789)\n- Upgrade to Go 1.23.5 (#3795)\n- (deps) Bump golang.org/x/net from 0.30.0 to 0.33.0 (#3796)\n- (deps) Bump golang from 1.23.5 to 1.23.6 (#3822)\n- Use govulncheck action (#3831)\n- (deps) Bump the production-dependencies group across 1 directory with 3 updates (#3817)\n- (deps) Bump the production-dependencies group across 1 directory with 5 updates (#3826)\n- (deps) Bump golang from 1.23.6 to 1.24.0 (#3842)\n- (deps) Bump myst-parser (#3841)\n- (deps) Bump modernc.org/sqlite (#3846)\n- (deps) Bump golang from 1.24.0 to 1.24.1 (#3870)\n- (deps) Bump jinja2 in /docs in the production-dependencies group (#3872)\n- Upgrade to wazero@v1.9.0 (#3887)\n- Upgrade to Go 1.24.1 (#3892)\n- Upgrade to latest version of MySQL parser (#3893)\n- (deps) Bump pyparsing (#3890)\n- (deps) Bump golang.org/x/net from 0.33.0 to 0.37.0 (#3894)\n- (deps) Bump the production-dependencies group across 1 directory with 8 updates (#3896)\n- (deps) Bump github.com/jackc/pgx/v5 (#3898)\n- (deps) Bump the production-dependencies group (#3899)\n- (deps) Bump modernc.org/sqlite (#3905)\n- (deps) Bump the production-dependencies group across 1 directory with 2 updates (#3914)\n- (deps) Bump urllib3 in /docs in the production-dependencies group (#3926)\n- (deps) Bump golang from 1.24.1 to 1.24.2 (#3915)\n- (deps) Bump the production-dependencies group across 1 directory with 3 updates (#3923)\n- (deps) Upgrade github.com/wasilibs/go-pgquery (#3927)\n\n(v1-28-0)=\n## [1.28.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.28.0)\nReleased 2025-01-20\n\n### Features\n\n- (mysql) Add a test for VECTOR column type (#3734)\n- (quickdb) Remove unused func (#3576)\n- (vet) Allow selective disabling of rules per query (#3620)\n- (dolphin) Upgrade to latest TiDB parser (#3733)\n\n### Bug Fixes\n\n- (dbmanager) Use correct SQL to drop databases (#3640)\n- (compiler) Don't crash on WHERE x IN (... UNION ...) (#3652)\n- (golang) Escape q field name (#3647)\n- Postgresql alter materialized view is not registered to statements (#3728)\n- Do not close wazero module on error (#3758) (#3759)\n\n### Documentation\n\n- How-to use transactions with pgx (#3557)\n- Add missing documentation about copyfrom (#3583)\n- Add sqlc-gen-from-template (#3601)\n- Correct spelling and grammar (#3645)\n\n### Miscellaneous Tasks\n\n- Remove the triage label (#3527)\n- Upgrade to Go 1.22.8 to silence vulncheck (#3646)\n\n### Build\n\n- (deps) Bump myst-parser (#3530)\n- (deps) Bump golang from 1.22.5 to 1.22.6 (#3532)\n- (deps) Bump modernc.org/sqlite (#3537)\n- (deps) Bump the production-dependencies group across 1 directory with 4 updates (#3566)\n- (deps) Bump the production-dependencies group across 1 directory with 2 updates (#3565)\n- (deps) Bump golang from 1.22.6 to 1.23.0 (#3546)\n- (deps) Bump golang from 1.23.0 to 1.23.1 (#3586)\n- (deps) Bump the production-dependencies group across 1 directory with 5 updates (#3644)\n- (deps) Bump the production-dependencies group across 1 directory with 5 updates (#3642)\n- (deps) Bump sphinx-rtd-theme (#3648)\n- (deps) Bump pyparsing (#3653)\n- (deps) Bump markupsafe (#3666)\n- (deps) Bump the production-dependencies group across 1 directory with 2 updates (#3707)\n- (deps) Bump golang from 1.23.2 to 1.23.3 (#3691)\n- (deps) Bump the production-dependencies group across 1 directory with 5 updates (#3721)\n- (deps) Bump the production-dependencies group across 1 directory with 2 updates (#3731)\n- (deps) Bump certifi in /docs in the production-dependencies group (#3748)\n- (deps) Bump golang.org/x/crypto from 0.27.0 to 0.31.0 (#3740)\n- (deps) Bump golang from 1.23.3 to 1.23.4 (#3735)\n- (deps) Bump the production-dependencies group across 1 directory with 2 updates (#3749)\n- (deps) Bump the production-dependencies group with 2 updates (#3753)\n- (deps) Bump the production-dependencies group across 1 directory with 3 updates (#3764)\n- (deps) Bump the production-dependencies group (#3761)\n- (deps) Bump jinja2 from 3.1.4 to 3.1.5 in /docs (#3762)\n- (deps) Bump google.golang.org/protobuf (#3776)\n- (deps) Bump the production-dependencies group across 1 directory with 2 updates (#3777)\n- (deps) Bump google.golang.org/grpc (#3784)\n- (deps) Bump golang from 1.23.4 to 1.23.5 (#3791)\n- (deps) Bump the production-dependencies group with 2 updates (#3789)\n- Upgrade to Go 1.23.5 (#3795)\n\n(v1-27-0)=\n## [1.27.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.27.0)\nReleased 2024-08-05\n\n### Bug Fixes\n\n- (dbmanager) Add leading slash to db uri path rewrite (#3493)\n- (verify) Include database engine in request (#3522)\n\n### Features\n\n- (golang) Add initialisms configuration (#3308)\n- (compiler) Support subqueries in the FROM clause (second coming) (#3310)\n- Managed databases with any accessible server  (#3421)\n- (vet) Use new dbmanager client (#3423)\n- (verify) Update verify to work with managed databases (#3425)\n\n### Documentation\n\n- Fix typo in config (#3358)\n- Resolve a typo in configuration keys (#3349)\n- Add sponsorship information to README (#3413)\n- Update the language-support to include C# (#3408)\n- Add migration guide for hosted managed databases (#3417)\n- Fix readme links (#3424)\n- Update the managed db and verify documentation (#3426)\n- Add sponsor image (#3428)\n- Add Ruby as supported language (#3487)\n- Update migrating-to-sqlc-gen-kotlin.md (#3454)\n- Fix typo in comment (#3316)\n- Fix deprecated build tag format (#3361)\n\n### Testing\n\n- (endtoend) Re-use databases when possible (#3315)\n- Enabled MySQL database (#3318)\n- Remove internal/sqltest/hosted package (#3521)\n\n(v1-26-0)=\n## [1.26.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.26.0)\nReleased 2024-03-28\n\n### Release notes\n\nThis release is mainly a bug fix release. It also includes an [important security fix](https://github.com/sqlc-dev/sqlc/issues/3194) for users using output plugins.\n\n### Changes\n\n#### Bug Fixes\n\n- (docker) Use distroless base image instead of scratch (#3111)\n- (generate) Ensure files are created inside output directory (#3195)\n- (mysql) BREAKING: Use `int16` for MySQL `SMALLINT` and `YEAR` (#3106)\n- (mysql) BREAKING: Use `int8` for MySQL TINYINT (#3298)\n- (mysql) Variables not resolving in ORDER BY statements (#3115)\n- (opts) Validate SQL package and driver options (#3241)\n- (postgres/batch) Ignore query_parameter_limit for batches\n- (scripts) Remove deprecated test output regeneration script (#3105)\n- (sqlite) Correctly skip unknown statements (#3239)\n\n#### Documentation\n\n- (postgres) Add instructions for PostGIS/GEOS (#3182)\n- Improve details on TEXT (#3247)\n\n#### Features\n\n- (generate) Avoid generating empty Go imports (#3135)\n- (mysql) Add NEXTVAL() to the MySQL catalog (#3147)\n- (mysql) Support json.RawMessage for LOAD DATA INFILE (#3099)\n\n#### Build\n\n- (deps) Bump github.com/jackc/pgx/v5 to 5.5.5 (#3259)\n- (deps) Bump modernc.org/sqlite to 1.29.5 (#3200)\n- (deps) Bump github.com/go-sql-driver/mysql to 1.8.0 (#3257)\n- (deps) Bump github.com/tetratelabs/wazero to 1.7.0 (#3096)\n- (deps) Bump github.com/pganalyze/pg_query_go to v5 (#3096)\n\n\n(v1-25-0)=\n## [1.25.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.25.0)\nReleased 2024-01-03\n\n### Release notes\n\n#### Add tags to push and verify\n\nYou can add tags when [pushing](../howto/push.md) schema and queries to [sqlc Cloud](https://dashboard.sqlc.dev). Tags operate like git tags, meaning you can overwrite previously-pushed tag values. We suggest tagging pushes to associate them with something relevant from your environment, e.g. a git tag or branch name.\n\n```\n$ sqlc push --tag v1.0.0\n```\n\nOnce you've created a tag, you can refer to it when [verifying](../howto/verify.md) changes, allowing you\nto compare the existing schema against a known set of previous queries.\n\n```\n$ sqlc verify --against v1.0.0\n```\n\n#### C-ya, `cgo`\n\nOver the last month, we've switched out a few different modules to remove our reliance on [cgo](https://go.dev/blog/cgo). Previously, we needed cgo for three separate functions:\n\n- Parsing PostgreSQL queries with [pganalyze/pg_query_go](https://github.com/pganalyze/pg_query_go)\n- Running SQLite databases with [mattn/go-sqlite3](https://github.com/mattn/go-sqlite3)\n- Executing WASM / WASI code with [bytecodealliance/wasmtime-go](https://github.com/bytecodealliance/wasmtime-go)\n\nWith the help of the community, we found cgo-free alternatives for each module:\n\n- Parsing PostgreSQL queries, now using [wasilibs/go-pgquery](https://github.com/wasilibs/go-pgquery)\n- Running SQLite databases, now using [modernc.org/sqlite](https://gitlab.com/cznic/sqlite)\n- Executing WASM / WASI code, now using [tetratelabs/wazero](https://github.com/tetratelabs/wazero)\n\nFor the first time, Windows users can enjoy full PostgreSQL support without using [WSL](https://learn.microsoft.com/en-us/windows/wsl/about). It's a Christmas miracle!\n\nIf you run into any issues with the updated dependencies, please [open an issue](https://github.com/sqlc-dev/sqlc/issues).\n\n### Changes \n\n#### Bug Fixes\n\n- (codegen) Wrong yaml annotation in go codegen options for output_querier_file_name (#3006)\n- (codegen) Use derived ArrayDims instead of deprecated attndims (#3032)\n- (codegen) Take the maximum array dimensions (#3034)\n- (compiler) Skip analysis of queries without a `name` annotation (#3072)\n- (codegen/golang) Don't import `\"strings\"` for `sqlc.slice()` with pgx (#3073)\n\n### Documentation\n\n- Add name to query set configuration (#3011)\n- Add a sidebar link for `push`, add Go plugin link (#3023)\n- Update banner for sqlc-gen-typescript (#3036)\n- Add strict_order_by in doc (#3044)\n- Re-order the migration tools list (#3064)\n\n### Features\n\n- (analyzer) Return zero values when encountering unexpected ast nodes (#3069)\n- (codegen/go) add omit_sqlc_version to Go code generation (#3019)\n- (codgen/go) Add `emit_sql_as_comment` option to Go code plugin (#2735)\n- (plugins) Use wazero instead of wasmtime (#3042)\n- (push) Add tag support (#3074)\n- (sqlite) Support emit_pointers_for_null_types (#3026)\n\n### Testing\n\n- (endtoend) Enable for more build targets (#3041)\n- (endtoend) Run MySQL and PostgreSQL locally on the runner (#3095)\n- (typescript) Test against sqlc-gen-typescript (#3046)\n- Add tests for omit_sqlc_version (#3020)\n- Split schema and query for test (#3094)\n\n### Build\n\n- (deps) Bump idna from 3.4 to 3.6 in /docs (#3010)\n- (deps) Bump sphinx-rtd-theme from 1.3.0 to 2.0.0 in /docs (#3016)\n- (deps) Bump golang from 1.21.4 to 1.21.5 (#3043)\n- (deps) Bump actions/setup-go from 4 to 5 (#3047)\n- (deps) Bump github.com/jackc/pgx/v5 from 5.5.0 to 5.5.1 (#3050)\n- (deps) Upgrade to latest version of github.com/wasilibs/go-pgquery (#3052)\n- (deps) Bump google.golang.org/grpc from 1.59.0 to 1.60.0 (#3053)\n- (deps) Bump babel from 2.13.1 to 2.14.0 in /docs (#3055)\n- (deps) Bump actions/upload-artifact from 3 to 4 (#3061)\n- (deps) Bump modernc.org/sqlite from 1.27.0 to 1.28.0 (#3062)\n- (deps) Bump golang.org/x/crypto from 0.14.0 to 0.17.0 (#3068)\n- (deps) Bump google.golang.org/grpc from 1.60.0 to 1.60.1 (#3070)\n- (deps) Bump google.golang.org/protobuf from 1.31.0 to 1.32.0 (#3079)\n- (deps) Bump github.com/tetratelabs/wazero from 1.5.0 to 1.6.0 (#3096)\n- (sqlite) Update to antlr 4.13.1 (#3086)\n- (sqlite) Disable modernc for WASM (#3048)\n- (sqlite) Switch from mattn/go-sqlite3 to modernc.org/sqlite (#3040)\n\n(v1-24-0)=\n## [1.24.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.24.0)\nReleased 2023-11-22\n\n### Release notes\n\n#### Verifying database schema changes\n\nSchema updates and poorly-written queries often bring down production databases. That’s bad.\n\nOut of the box, `sqlc generate` catches some of these issues. Running `sqlc vet` with the `sqlc/db-prepare` rule catches more subtle problems. But there is a large class of issues that sqlc can’t prevent by looking at current schema and queries alone.\n\nFor instance, when a schema change is proposed, existing queries and code running in production might fail when the schema change is applied. Enter `sqlc verify`, which analyzes existing queries against new schema changes and errors if there are any issues.\n\nLet's look at an example. Assume you have these two tables in production.\n\n```sql\nCREATE TABLE users (\n  id UUID PRIMARY KEY\n);\n\nCREATE TABLE user_actions (\n  id UUID PRIMARY KEY,\n  user_id UUID NOT NULL,\n  action TEXT,\n  created_at TIMESTAMP\n);\n```\n\nYour application contains the following query to join user actions against the users table.\n\n```sql\n-- name: GetUserActions :many\nSELECT * FROM users u\nJOIN user_actions ua ON u.id = ua.user_id\nORDER BY created_at;\n```\n\nSo far, so good. Then assume you propose this schema change:\n\n```sql\nALTER TABLE users ADD COLUMN created_at TIMESTAMP;\n```\n\nRunning `sqlc generate` fails with this change, returning a `column reference \"created_at\" is ambiguous` error. You update your query to fix the issue.\n\n```sql\n-- name: GetUserActions :many\nSELECT * FROM users u\nJOIN user_actions ua ON u.id = ua.user_id\nORDER BY u.created_at;\n```\n\nWhile that change fixes the issue, there's a production outage waiting to happen. When the schema change is applied, the existing `GetUserActions` query will begin to fail. The correct way to fix this is to deploy the updated query before applying the schema migration.\n\nIt ensures migrations are safe to deploy by sending your current schema and queries to sqlc cloud. There, we run the queries for your latest push against your new schema changes. This check catches backwards incompatible schema changes for existing queries.\n\nHere `sqlc verify` alerts you to the fact that ORDER BY \"created_at\" is ambiguous.\n\n```sh\n$ sqlc verify\nFAIL: app query.sql\n\n=== Failed\n=== FAIL: app query.sql GetUserActions\n    ERROR: column reference \"created_at\" is ambiguous (SQLSTATE 42702)\n```\n\nBy the way, this scenario isn't made up! It happened to us a few weeks ago. We've been happily testing early versions of `verify` for the last two weeks and haven't had any issues since.\n\nThis type of verification is only the start. If your application is deployed on-prem by your customers, `verify` could tell you if it's safe for your customers to rollback to an older version of your app, even after schema migrations have been run.\n\n#### Rename `upload` command to `push`\n\nWe've renamed the `upload` sub-command to `push`. We changed the data sent along in a push request. Upload used to include the configuration file, migrations, queries, and all generated code. Push drops the generated code in favor of including the [plugin.GenerateRequest](https://buf.build/sqlc/sqlc/docs/main:plugin#plugin.GenerateRequest), which is the protocol buffer message we pass to codegen plugins.\n\nWe also add annotations to each push. By default, we include these environment variables if they are present:\n\n```\nGITHUB_REPOSITORY\nGITHUB_REF\nGITHUB_REF_NAME\nGITHUB_REF_TYPE\nGITHUB_SHA\n```\n\nLike upload, `push` should be run when you tag a release of your application. We run it on every push to main, as we continuously deploy those commits.\n\n#### MySQL support in `createdb`\n\nThe `createdb` command, added in the last release, now supports MySQL. If you have a cloud project configured, you can use `sqlc createdb` to spin up a new ephemeral database with your schema and print its connection string to standard output. This is useful for integrating with other tools. Read more in the [managed databases](../howto/managed-databases.md#with-other-tools) documentation.\n\n#### Plugin interface refactor\n\nThis release includes a refactored plugin interface to better support future functionality. Plugins now support different methods via a gRPC service interface, allowing plugins to support different functionality in a backwards-compatible way.\n\nBy using gRPC interfaces, we can even (theoretically) support [remote plugins](https://github.com/sqlc-dev/sqlc/pull/2938), but that's something for another day.\n\n### Changes\n\n#### Bug Fixes\n\n- (engine/sqlite) Support CASE expr (#2926)\n- (engine/sqlite) Support -> and ->> operators (#2927)\n- (vet) Add a nil pointer check to prevent db/prepare panic (#2934)\n- (compiler) Prevent panic when compiler is nil (#2942)\n- (codegen/golang) Move more Go-specific config validation into the plugin (#2951)\n- (compiler) No panic on full-qualified column names (#2956)\n- (docs) Better discussion of type override nuances (#2972)\n- (codegen) Never generate return structs for :exec (#2976)\n- (generate) Update help text for generate to be more generic (#2981)\n- (generate) Return an error instead of generating duplicate Go names (#2962)\n- (codegen/golang) Pull opts into its own package (#2920)\n- (config) Make some struct and field names less confusing (#2922)\n\n#### Features\n\n- (codegen) Remove Go specific overrides from codegen proto (#2929)\n- (plugin) Use gRPC interface for codegen plugin communication (#2930)\n- (plugin) Calculate SHA256 if it does not exist (#2935)\n- (sqlc-gen-go) Add script to mirror code to sqlc-gen-go (#2952)\n- (createdb) Add support for MySQL (#2980)\n- (verify) Add new command to verify queries and migrations (#2986)\n\n#### Testing\n\n- (ci) New workflow for sqlc-gen-python (#2936)\n- (ci) Rely on go.mod to determine which Go version to use (#2971)\n- (tests) Add glob pattern tests to sqlpath.Glob (#2995)\n- (examples) Use hosted MySQL databases for tests (#2982)\n- (docs) Clean up a little, update LICENSE and README (#2941)\n\n#### Build\n\n- (deps) Bump babel from 2.13.0 to 2.13.1 in /docs (#2911)\n- (deps) Bump github.com/spf13/cobra from 1.7.0 to 1.8.0 (#2944)\n- (deps) Bump github.com/mattn/go-sqlite3 from 1.14.17 to 1.14.18 (#2945)\n- (deps) Bump golang.org/x/sync from 0.4.0 to 0.5.0 (#2946)\n- (deps) Bump github.com/jackc/pgx/v5 from 5.4.3 to 5.5.0 (#2947)\n- (deps) Change github.com/pingcap/tidb/parser to github.com/pingcap/tidb/pkg/parser\n- (deps) Bump github.com/google/cel-go from 0.18.1 to 0.18.2 (#2969)\n- (deps) Bump urllib3 from 2.0.7 to 2.1.0 in /docs (#2975)\n- (buf) Change root of Buf module (#2987)\n- (deps) Bump certifi from 2023.7.22 to 2023.11.17 in /docs (#2993)\n- (ci) Bump Go version from 1.21.3 to 1.21.4 in workflows and Dockerfile (#2961)\n\n(v1-23-0)=\n## [1.23.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.23.0)\nReleased 2023-10-24\n\n### Release notes\n\n#### Database-backed query analysis\n\nWith a [database connection](config.md#database) configured, `sqlc generate`\nwill gather metadata from that database to support its query analysis.\nTurning this on resolves a [large number of\nissues](https://github.com/sqlc-dev/sqlc/issues?q=is%3Aissue+label%3Aanalyzer)\nin the backlog related to type inference and more complex queries. The easiest\nway to try it out is with [managed databases](../howto/managed-databases.md).\n\nThe database-backed analyzer currently supports PostgreSQL, with [MySQL](https://github.com/sqlc-dev/sqlc/issues/2902) and [SQLite](https://github.com/sqlc-dev/sqlc/issues/2903)\nsupport planned in the future.\n\n#### New `createdb` command\n\nWhen you have a cloud project configured, you can use the new `sqlc createdb`\ncommand to spin up a new ephemeral database with your schema and print its\nconnection string to standard output. This is useful for integrating with other\ntools. Read more in the [managed\ndatabases](../howto/managed-databases.md#with-other-tools) documentation.\n\n#### Support for pgvector\n\nIf you're using [pgvector](https://github.com/pgvector/pgvector), say goodbye to custom overrides! sqlc now generates code using [pgvector-go](https://github.com/pgvector/pgvector-go#pgx) as long as you're using `pgx`. The pgvector extension is also available in [managed databases](../howto/managed-databases.md).\n\n#### Go build tags\n\nWith the new `emit_build_tags` configuration parameter you can set build tags\nfor sqlc to add at the top of generated source files.\n\n### Changes\n\n#### Bug Fixes\n\n- (codegen) Correct column names in :copyfrom (#2838)\n- (compiler) Search SELECT and UPDATE the same way (#2841)\n- (dolphin) Support more UNIONs for MySQL (#2843)\n- (compiler) Account for parameters without parents (#2844)\n- (postgresql) Remove temporary pool config (#2851)\n- (golang) Escape reserved keywords (#2849)\n- (mysql) Handle simplified CASE statements (#2852)\n- (engine/dolphin) Support enum in ALTER definition (#2680)\n- (mysql) Add, drop, rename and change enum values (#2853)\n- (config) Validate `database` config in all cases (#2856)\n- (compiler) Use correct func signature for `CommentSyntax` on windows (#2867)\n- (codegen/go) Prevent filtering of embedded struct fields (#2868)\n- (compiler) Support functions with OUT params (#2865)\n- (compiler) Pull in array information from analyzer (#2864)\n- (analyzer) Error on unexpanded star expression (#2882)\n- (vet) Remove rollback statements from DDL (#2895)\n\n#### Documentation\n\n- Add stable anchors to changelog (#2784)\n- Fix typo in v1.22.0 changelog (#2796)\n- Add sqlc upload to CI / CD guide (#2797)\n- Fix broken link, add clarity to plugins doc (#2813)\n- Add clarity and reference to JSON tags (#2819)\n- Replace form with dashboard link (#2840)\n- (examples) Update examples to use pgx/v5 (#2863)\n- Use docker compose v2 and update MYSQL_DATABASE env var (#2870)\n- Update getting started guides, use pgx for Postgres guide (#2891)\n- Use managed databases in PostgreSQL getting started guide (#2892)\n- Update managed databases doc to discuss codegen (#2897)\n- Add managed dbs to CI/CD and vet guides (#2896)\n- Document database-backed query analyzer (#2904)\n\n#### Features\n\n- (codegen) Support setting Go build tags (#2012) (#2807)\n- (generate) Reorder codegen handlers to prefer plugins (#2814)\n- (devenv) Add vscode settings.json with auto newline (#2834)\n- (cmd) Support sqlc.yml configuration file (#2828)\n- (analyzer) Analyze queries using a running PostgreSQL database (#2805)\n- (sql/ast) Render AST to SQL (#2815)\n- (codegen) Include plugin information (#2846)\n- (postgresql) Add ALTER VIEW ... SET SCHEMA (#2855)\n- (compiler) Parse query parameter metadata from comments (#2850)\n- (postgresql) Support system columns on tables (#2871)\n- (compiler) Support LEFT JOIN on aliased table (#2873)\n- Improve messaging for common cloud config and rpc errors (#2885)\n- Abort compiler when rpc fails as unauthenticated (#2887)\n- (codegen) Add support for pgvector and pgvector-go (#2888)\n- (analyzer) Cache query analysis (#2889)\n- (createdb) Create ephemeral databases (#2894)\n- (debug) Add databases=managed debug option (#2898)\n- (config) Remove managed database validation (#2901)\n\n#### Miscellaneous Tasks\n\n- (endtoend) Fix test output for do tests (#2782)\n\n#### Refactor\n\n- (codegen) Remove golang and json settings from plugin proto (#2822)\n- (codegen) Removed deprecated code and improved speed (#2899)\n\n#### Testing\n\n- (endtoend) Split shema and queries (#2803)\n- Fix a few incorrect testcases (#2804)\n- (analyzer) Add more database analyzer test cases (#2854)\n- Add more analyzer test cases (#2866)\n- Add more test cases for new analyzer (#2879)\n- (endtoend) Enabled managed-db tests in CI (#2883)\n- Enabled pgvector tests for managed dbs (#2893)\n\n#### Build\n\n- (deps) Bump packaging from 23.1 to 23.2 in /docs (#2791)\n- (deps) Bump urllib3 from 2.0.5 to 2.0.6 in /docs (#2798)\n- (deps) Bump babel from 2.12.1 to 2.13.0 in /docs (#2799)\n- (deps) Bump golang.org/x/sync from 0.3.0 to 0.4.0 (#2810)\n- (deps) Bump golang from 1.21.1 to 1.21.2 (#2811)\n- (deps) Bump github.com/google/go-cmp from 0.5.9 to 0.6.0 (#2826)\n- (deps) Bump golang from 1.21.2 to 1.21.3 (#2824)\n- (deps) Bump google.golang.org/grpc from 1.58.2 to 1.58.3 (#2825)\n- (deps) Bump golang.org/x/net from 0.12.0 to 0.17.0 (#2836)\n- (deps) Bump urllib3 from 2.0.6 to 2.0.7 in /docs (#2872)\n- (deps) Bump google.golang.org/grpc from 1.58.3 to 1.59.0 (#2876)\n- (deps) Upgrade wasmtime-go from 13.0.0 to 14.0.0 (#2900)\n\n#### Ci\n\n- Bump go version in workflows (#2835)\n\n\n(v1-22-0)=\n## [1.22.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.22.0)\nReleased 2023-09-26\n\n### Release notes\n\n#### Managed databases for `sqlc vet`\n\nIf you're using [sqlc vet](../howto/vet.md) to write rules that require access to a running\ndatabase, `sqlc` can now start and manage that database for you. PostgreSQL\nsupport is available today, with MySQL on the way.\n\nWhen you turn on managed databases, `sqlc` will use your schema to create a\ntemplate database that it can copy to make future runs of `sqlc vet` very\nperformant.\n\nThis feature relies on configuration obtained via [sqlc\nCloud](https://dashboard.sqlc.dev).\n\nRead more in the [managed databases](../howto/managed-databases.md) documentation.\n\n### Changes\n\n#### Bug Fixes\n\n- (codegen/golang) Refactor imports code to match templates (#2709)\n- (codegen/golang) Support name type (#2715)\n- (wasm) Move Runner struct to shared file (#2725)\n- (engine/sqlite) Fix grammer to avoid missing join_constraint (#2732)\n- (convert) Support YAML anchors in plugin options (#2733)\n- (mysql) Disallow time.Time in mysql :copyfrom queries, not all queries (#2768)\n- (engine/sqlite) Fix convert process for VALUES (#2737)\n\n#### Documentation\n\n- Clarify nullable override behavior (#2753)\n- Add managed databases to sidebar (#2764)\n- Pull renaming and type overrides into separate sections (#2774)\n- Update the docs banner for managed dbs (#2775)\n\n#### Features\n\n- (config) Enables the configuration of copyfrom.go similar to quierer and friends (#2727)\n- (vet) Run rules against a managed database (#2751)\n- (upload) Point upload command at new endpoint (#2772)\n- (compiler) Support DO statements (#2777)\n\n#### Miscellaneous Tasks\n\n- (endtoend) Skip tests missing secrets (#2763)\n- Skip certain tests on PRs (#2769)\n\n#### Testing\n\n- (endtoend) Verify all schemas in endtoend (#2744)\n- (examples) Use a hosted database for example testing (#2749)\n- (endtoend) Pull region from environment (#2750)\n\n#### Build\n\n- (deps) Bump golang from 1.21.0 to 1.21.1 (#2711)\n- (deps) Bump google.golang.org/grpc from 1.57.0 to 1.58.1 (#2743)\n- (deps) Bump wasmtime-go from v12 to v13 (#2756)\n- (windows) Downgrade to mingw 11.2.0 (#2757)\n- (deps) Bump urllib3 from 2.0.4 to 2.0.5 in /docs (#2747)\n- (deps) Bump google.golang.org/grpc from 1.58.1 to 1.58.2 (#2758)\n- (deps) Bump github.com/google/cel-go from 0.18.0 to 0.18.1 (#2778)\n\n#### Ci\n\n- Bump go version to latest in ci workflows (#2722)\n\n\n(v1-21-0)=\n## [1.21.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.21.0)\nReleased 2023-09-06\n\n### Release notes\n\nThis is primarily a bugfix release, along with some documentation and testing improvements.\n\n#### MySQL engine improvements\n\n`sqlc` previously didn't know how to parse a `CALL` statement when using the MySQL engine,\nwhich meant it was impossible to use sqlc with stored procedures in MySQL databases.\n\nAdditionally, `sqlc` now supports `IS [NOT] NULL` in queries. And `LIMIT` and `OFFSET` clauses\nnow work with `UNION`.\n\n#### SQLite engine improvements\n\nGitHub user [@orisano](https://github.com/orisano) continues to bring bugfixes and\nimprovements to `sqlc`'s SQLite engine. See the \"Changes\" section below for the\nfull list.\n\n#### Plugin access to environment variables\n\nIf you're authoring a [sqlc plugin](../guides/plugins.html), you can now configure\nsqlc to pass your plugin the values of specific environment variables.\n\nFor example, if your plugin\nneeds the `PATH` environment variable, add `PATH` to the `env` list in the\n`plugins` collection.\n\n```yaml\nversion: '2'\nsql:\n- schema: schema.sql\n  queries: query.sql\n  engine: postgresql\n  codegen:\n  - out: gen\n    plugin: test\nplugins:\n- name: test\n  env:\n  - PATH\n  wasm:\n    url: https://github.com/sqlc-dev/sqlc-gen-test/releases/download/v0.1.0/sqlc-gen-test.wasm\n    sha256: 138220eae508d4b65a5a8cea555edd155eb2290daf576b7a8b96949acfeb3790\n```\n\nA variable named `SQLC_VERSION` is always included in the plugin's\nenvironment, set to the version of the `sqlc` executable invoking it.\n\n### Changes\n\n#### Bug Fixes\n\n- Myriad string formatting changes (#2558)\n- (engine/sqlite) Support quoted identifier (#2556)\n- (engine/sqlite) Fix compile error (#2564)\n- (engine/sqlite) Fixed detection of column alias without AS (#2560)\n- (ci) Bump go version to 1.20.7 (#2568)\n- Remove references to deprecated `--experimental` flag (#2567)\n- (postgres) Fixed a problem with array dimensions disappearing when using \"ALTER TABLE ADD COLUMN\" (#2572)\n- Remove GitHub sponsor integration (#2574)\n- (docs) Improve discussion of prepared statements support (#2604)\n- (docs) Remove multidimensional array qualification in datatypes.md (#2619)\n- (config) Go struct tag parsing (#2606)\n- (compiler) Fix to not scan children under ast.RangeSubselect when retrieving table listing (#2573)\n- (engine/sqlite) Support NOT IN (#2587)\n- (codegen/golang) Fixed detection of the used package (#2597)\n- (engine/dolphin) Fixed problem that LIMIT OFFSET cannot be used with `UNION ALL` (#2613)\n- (compiler) Support identifiers with schema (#2579)\n- (compiler) Fix column expansion to work with quoted non-keyword identifiers (#2576)\n- (codegen/go) Compare define type in codegen (#2263) (#2578)\n- (engine/sqlite) Fix ast when using compound operator (#2673)\n- (engine/sqlite) Fix to handle join clauses correctly (#2674)\n- (codegen) Use correct Go types for bit strings and cid/oid/tid/xid with pgx/v4 (#2668)\n- (endtoend) Ensure all SQL works against PostgreSQL (#2684)\n\n#### Documentation\n\n- Update Docker installation instructions (#2552)\n- Missing emit_pointers_for_null_types configuration option in version 2 (#2682) (#2683)\n- Fix typo (#2697)\n- Document sqlc.* macros (#2698)\n- (mysql) Document parseTimet=true requirement (#2699)\n- Add atlas to the list of supported migration frameworks (#2700)\n- Minor updates to insert howto (#2701)\n\n#### Features\n\n- (endtoend/testdata) Added two sqlite `CAST` tests and rearranged postgres tests for same (#2551)\n- (docs) Add a reference to type overriding in datatypes.md (#2557)\n- (engine/sqlite) Support COLLATE for sqlite WHERE clause (#2554)\n- (mysql) Add parser support for IS [NOT] NULL (#2651)\n- (engine/dolphin) Support CALL statement (#2614)\n- (codegen) Allow plugins to access environment variables (#2669)\n- (config) Add JSON schema files for configs (#2703)\n\n#### Miscellaneous Tasks\n\n- Ignore Vim swap files (#2616)\n- Fix typo (#2696)\n\n#### Refactor\n\n- (astutils) Remove redundant nil check in `Walk` (#2660)\n\n#### Build\n\n- (deps) Bump wasmtime from v8.0.0 to v11.0.0 (#2553)\n- (deps) Bump golang from 1.20.6 to 1.20.7 (#2563)\n- (deps) Bump chardet from 5.1.0 to 5.2.0 in /docs (#2562)\n- (deps) Bump github.com/pganalyze/pg_query_go/v4 (#2583)\n- (deps) Bump golang from 1.20.7 to 1.21.0 (#2596)\n- (deps) Bump github.com/jackc/pgx/v5 from 5.4.2 to 5.4.3 (#2582)\n- (deps) Bump pygments from 2.15.1 to 2.16.1 in /docs (#2584)\n- (deps) Bump sphinxcontrib-applehelp from 1.0.4 to 1.0.7 in /docs (#2620)\n- (deps) Bump sphinxcontrib-qthelp from 1.0.3 to 1.0.6 in /docs (#2622)\n- (deps) Bump github.com/google/cel-go from 0.17.1 to 0.17.6 (#2650)\n- (deps) Bump sphinxcontrib-serializinghtml in /docs (#2641)\n- Upgrade from Go 1.20 to Go 1.21 (#2665)\n- (deps) Bump sphinxcontrib-devhelp from 1.0.2 to 1.0.5 in /docs (#2621)\n- (deps) Bump github.com/bytecodealliance/wasmtime-go from v11.0.0 to v12.0.0 (#2666)\n- (deps) Bump sphinx-rtd-theme from 1.2.2 to 1.3.0 in /docs (#2670)\n- (deps) Bump sphinxcontrib-htmlhelp from 2.0.1 to 2.0.4 in /docs (#2671)\n- (deps) Bump github.com/google/cel-go from 0.17.6 to 0.18.0 (#2691)\n- (deps) Bump actions/checkout from 3 to 4 (#2694)\n- (deps) Bump pytz from 2023.3 to 2023.3.post1 in /docs (#2695)\n- (devenv) Bump go from 1.20.7 to 1.21.0 (#2702)\n\n(v1-20-0)=\n## [1.20.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.20.0)\nReleased 2023-07-31\n\n### Release notes\n\n#### `kyleconroy/sqlc` is now `sqlc-dev/sqlc`\n\nWe've completed our migration to the [sqlc-dev/sqlc](https://github.com/sqlc-dev/sqlc) repository. All existing links and installation instructions will continue to work. If you're using the `go` tool to install `sqlc`, you'll need to use the new import path to get v1.20.0 (and all future versions).\n\n```sh\n# INCORRECT: old import path\ngo install github.com/kyleconroy/sqlc/cmd/sqlc@v1.20.0\n\n# CORRECT: new import path\ngo install github.com/sqlc-dev/sqlc/cmd/sqlc@v1.20.0\n```\n\nWe designed the upgrade process to be as smooth as possible. If you run into any issues, please [file a bug report](https://github.com/sqlc-dev/sqlc/issues/new?assignees=&labels=bug%2Ctriage&projects=&template=BUG_REPORT.yml) via GitHub.\n\n#### Use `EXPLAIN ...` output in lint rules\n\n`sqlc vet` can now run `EXPLAIN` on your queries and include the results for use in your lint rules. For example, this rule checks that `SELECT` queries use an index.\n\n```yaml\nversion: 2\nsql:\n  - schema: \"query.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    database:\n      uri: \"postgresql://postgres:postgres@localhost:5432/postgres\"\n    gen:\n      go:\n        package: \"db\"\n        out: \"db\"\n    rules:\n      - has-index\nrules:\n- name: has-index\n  rule: >\n    query.sql.startsWith(\"SELECT\") &&\n    !(postgresql.explain.plan.plans.all(p, has(p.index_name) || p.plans.all(p, has(p.index_name))))\n```\n\nThe expression environment has two variables containing `EXPLAIN ...` output, `postgresql.explain` and `mysql.explain`. `sqlc` only populates the variable associated with your configured database engine, and only when you have a [database connection configured](../reference/config.md#database).\n\nFor the `postgresql` engine, `sqlc` runs\n\n```sql\nEXPLAIN (ANALYZE false, VERBOSE, COSTS, SETTINGS, BUFFERS, FORMAT JSON) ...\n```\n\nwhere `\"...\"` is your query string, and parses the output into a [`PostgreSQLExplain`](https://buf.build/sqlc/sqlc/docs/v1.20.0:vet#vet.PostgreSQLExplain) proto message.\n\nFor the `mysql` engine, `sqlc` runs\n\n```sql\nEXPLAIN FORMAT=JSON ...\n```\n\nwhere `\"...\"` is your query string, and parses the output into a [`MySQLExplain`](https://buf.build/sqlc/sqlc/docs/v1.20.0:vet#vet.MySQLExplain) proto message.\n\nThese proto message definitions are too long to include here, but you can find them in the `protos` directory within the `sqlc` source tree.\n\nThe output from `EXPLAIN ...` depends on the structure of your query so it's a bit difficult to offer generic examples. Refer to the [PostgreSQL documentation](https://www.postgresql.org/docs/current/using-explain.html) and [MySQL documentation](https://dev.mysql.com/doc/refman/en/explain-output.html) for more information.\n\n```yaml\n...\nrules:\n- name: postgresql-query-too-costly\n  message: \"Query cost estimate is too high\"\n  rule: \"postgresql.explain.plan.total_cost > 1.0\"\n- name: postgresql-no-seq-scan\n  message: \"Query plan results in a sequential scan\"\n  rule: \"postgresql.explain.plan.node_type == 'Seq Scan'\"\n- name: mysql-query-too-costly\n  message: \"Query cost estimate is too high\"\n  rule: \"has(mysql.explain.query_block.cost_info) && double(mysql.explain.query_block.cost_info.query_cost) > 2.0\"\n- name: mysql-must-use-primary-key\n  message: \"Query plan doesn't use primary key\"\n  rule: \"has(mysql.explain.query_block.table.key) && mysql.explain.query_block.table.key != 'PRIMARY'\"\n```\n\nWhen building rules that depend on `EXPLAIN ...` output, it may be helpful to see the actual JSON returned from the database. `sqlc` will print it When you set the environment variable `SQLCDEBUG=dumpexplain=1`. Use this environment variable together with a dummy rule to see `EXPLAIN ...` output for all of your queries.\n\n#### Opting-out of lint rules\n\nFor any query, you can tell `sqlc vet` not to evaluate lint rules using the `@sqlc-vet-disable` query annotation.\n\n```sql\n/* name: GetAuthor :one */\n/* @sqlc-vet-disable */\nSELECT * FROM authors\nWHERE id = ? LIMIT 1;\n```\n\n#### Bulk insert for MySQL\n\n_Developed by [@Jille](https://github.com/Jille)_\n\nMySQL now supports the `:copyfrom` query annotation. The generated code uses the [LOAD DATA](https://dev.mysql.com/doc/refman/8.0/en/load-data.html) command to insert data quickly and efficiently.\n\nUse caution with this feature. Errors and duplicate keys are treated as warnings and insertion will continue, even without an error for some cases.  Use this in a transaction and use `SHOW WARNINGS` to check for any problems and roll back if necessary.\n\nCheck the [error handling](https://dev.mysql.com/doc/refman/8.0/en/load-data.html#load-data-error-handling) documentation for more information.\n\n```sql\nCREATE TABLE foo (a text, b integer, c DATETIME, d DATE);\n\n-- name: InsertValues :copyfrom\nINSERT INTO foo (a, b, c, d) VALUES (?, ?, ?, ?);\n```\n\n```go\nfunc (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesParams) (int64, error) {\n\t...\n}\n```\n\n`LOAD DATA` support must be enabled in the MySQL server.\n\n#### CAST support for MySQL\n\n_Developed by [@ryanpbrewster](https://github.com/ryanpbrewster) and [@RadhiFadlillah](https://github.com/RadhiFadlillah)_\n\n`sqlc` now understands `CAST` calls in MySQL queries, offering greater flexibility when generating code for complex queries.\n\n```sql\nCREATE TABLE foo (bar BOOLEAN NOT NULL);\n\n-- name: SelectColumnCast :many\nSELECT CAST(bar AS BIGINT) FROM foo;\n```\n\n```go\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectColumnCast = `-- name: SelectColumnCast :many\nSELECT CAST(bar AS BIGINT) FROM foo\n`\n\nfunc (q *Queries) SelectColumnCast(ctx context.Context) ([]int64, error) {\n  ...\n}\n```\n\n#### SQLite improvements\n\nA slew of fixes landed for our SQLite implementation, bringing it closer to parity with MySQL and PostgreSQL. We want to thank [@orisano](https://github.com/orisano) for their continued dedication to improving `sqlc`'s SQLite support.\n\n### Changes\n\n#### Features\n\n- (debug) Add debug flag and docs for dumping vet rule variables (#2521)\n- (mysql) :copyfrom support via LOAD DATA INFILE (#2545)\n- (mysql) Implement cast function parser (#2473)\n- (postgresql) Add support for PostgreSQL multi-dimensional arrays (#2338)\n- (sql/catalog) Support ALTER TABLE IF EXISTS (#2542)\n- (sqlite) Virtual tables and fts5 supported (#2531)\n- (vet) Add default query parameters for explain queries (#2543)\n- (vet) Add output from `EXPLAIN ...` for queries to the CEL program environment (#2489)\n- (vet) Introduce a query annotation to opt out of sqlc vet rules (#2474)\n- Parse comment lines starting with `@symbol` as boolean flags associated with a query (#2464)\n\n#### Bug Fixes\n\n- (codegen/golang) Fix sqlc.embed to work with pq.Array (#2544)\n- (compiler) Correctly validate alias in order/group by clauses for joins (#2537)\n- (engine/sqlite) Added function to convert cast node (#2470)\n- (engine/sqlite) Fix join_operator rule (#2434)\n- (engine/sqlite) Fix table_alias rules (#2465)\n- (engine/sqlite) Fixed IN operator precedence (#2428)\n- (engine/sqlite) Fixed to be able to find relation from WITH clause (#2444)\n- (engine/sqlite) Lowercase ast.ResTarget.Name (#2433)\n- (engine/sqlite) Put logging statement behind debug flag (#2488)\n- (engine/sqlite) Support for repeated table_option (#2482)\n- (mysql) Generate unsigned param (#2522)\n- (sql/catalog) Support pg_dump output (#2508)\n- (sqlite) Code generation for sqlc.slice (#2431)\n- (vet) Clean up unnecessary `prepareable()` func and a var name (#2509)\n- (vet) Query.cmd was always set to \":\" (#2525)\n- (vet) Report an error when a query is unpreparable, close prepared statement connection (#2486)\n- (vet) Split vet messages out of codegen.proto (#2511)\n\n#### Documentation\n\n- Add a description to the document for cases when a query result has no rows (#2462)\n- Update copyright and author (#2490)\n- Add example sqlc.yaml for migration parsing (#2479)\n- Small updates (#2506)\n- Point GitHub links to new repository location (#2534)\n\n#### Miscellaneous Tasks\n\n- Rename kyleconroy/sqlc to sqlc-dev/sqlc (#2523)\n- (proto) Reformat protos using `buf format -w` (#2536)\n- Update FEATURE_REQUEST.yml to include SQLite engine option\n- Finish migration to sqlc-dev/sqlc (#2548)\n- (compiler) Remove some duplicate code (#2546)\n\n#### Testing\n\n- Add profiles to docker compose (#2503)\n\n#### Build\n\n- Run all supported versions of MySQL / PostgreSQL (#2463)\n- (deps) Bump pygments from 2.7.4 to 2.15.0 in /docs (#2485)\n- (deps) Bump github.com/jackc/pgconn from 1.14.0 to 1.14.1 (#2483)\n- (deps) Bump github.com/google/cel-go from 0.16.0 to 0.17.1 (#2484)\n- (docs) Check Python dependencies via dependabot (#2497)\n- (deps) Bump idna from 2.10 to 3.4 in /docs (#2499)\n- (deps) Bump packaging from 20.9 to 23.1 in /docs (#2498)\n- (deps) Bump pygments from 2.15.0 to 2.15.1 in /docs (#2500)\n- (deps) Bump certifi from 2022.12.7 to 2023.7.22 in /docs (#2504)\n- (deps) Bump sphinx from 4.4.0 to 6.1.0 in /docs (#2505)\n- Add psql and mysqlsh to devenv (#2507)\n- (deps) Bump urllib3 from 1.26.5 to 2.0.4 in /docs (#2516)\n- (deps) Bump chardet from 4.0.0 to 5.1.0 in /docs (#2517)\n- (deps) Bump snowballstemmer from 2.1.0 to 2.2.0 in /docs (#2519)\n- (deps) Bump pytz from 2021.1 to 2023.3 in /docs (#2520)\n- (deps) Bump sphinxcontrib-htmlhelp from 2.0.0 to 2.0.1 in /docs (#2518)\n- (deps) Bump pyparsing from 2.4.7 to 3.1.0 in /docs (#2530)\n- (deps) Bump alabaster from 0.7.12 to 0.7.13 in /docs (#2526)\n- (docs) Ignore updates for sphinx (#2532)\n- (deps) Bump babel from 2.9.1 to 2.12.1 in /docs (#2527)\n- (deps) Bump sphinxcontrib-applehelp from 1.0.2 to 1.0.4 in /docs (#2533)\n- (deps) Bump google.golang.org/grpc from 1.56.2 to 1.57.0 (#2535)\n- (deps) Bump pyparsing from 3.1.0 to 3.1.1 in /docs (#2547)\n\n\n## [1.19.1](https://github.com/sqlc-dev/sqlc/releases/tag/v1.19.1)\nReleased 2023-07-13\n\n### Bug Fixes\n\n- Fix to traverse Sel in ast.In (#2414)\n- (compiler) Validate UNION ... ORDER BY (#2446)\n- (golang) Prevent duplicate enum output (#2447)\n\n### Miscellaneous Tasks\n\n- Replace codegen, test and docs references to github.com/tabbed repos (#2418)\n\n### Build\n\n- (deps) Bump google.golang.org/grpc from 1.56.1 to 1.56.2 (#2415)\n- (deps) Bump golang from 1.20.5 to 1.20.6 (#2437)\n- Pin Go to 1.20.6 (#2441)\n- (deps) Bump github.com/jackc/pgx/v5 from 5.4.1 to 5.4.2 (#2436)\n\n## [1.19.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.19.0)\nReleased 2023-07-06\n\n### Release notes\n\n#### sqlc vet\n\n[`sqlc vet`](../howto/vet.md) runs queries through a set of lint rules.\n\nRules are defined in the `sqlc` [configuration](config.md) file. They consist\nof a name, message, and a [Common Expression Language (CEL)](https://github.com/google/cel-spec)\nexpression. Expressions are evaluated using [cel-go](https://github.com/google/cel-go).\nIf an expression evaluates to `true`, an error is reported using the given message.\n\nWhile these examples are simplistic, they give you a flavor of the types of\nrules you can write.\n\n```yaml\nversion: 2\nsql:\n  - schema: \"query.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    gen:\n      go:\n        package: \"authors\"\n        out: \"db\"\n    rules:\n      - no-pg\n      - no-delete\n      - only-one-param\n      - no-exec\nrules:\n  - name: no-pg\n    message: \"invalid engine: postgresql\"\n    rule: |\n      config.engine == \"postgresql\"\n  - name: no-delete\n    message: \"don't use delete statements\"\n    rule: |\n      query.sql.contains(\"DELETE\")\n  - name: only-one-param\n    message: \"too many parameters\"\n    rule: |\n      query.params.size() > 1\n  - name: no-exec\n    message: \"don't use exec\"\n    rule: |\n      query.cmd == \"exec\"\n```\n\n##### Database connectivity\n\n`vet` also marks the first time that `sqlc` can connect to a live, running\ndatabase server. We'll expand this functionality over time, but for now it\npowers the `sqlc/db-prepare` built-in rule.\n\nWhen a [database](config.html#database) is configured, the\n`sqlc/db-preapre` rule will attempt to prepare each of your\nqueries against the connected database and report any failures.\n\n```yaml\nversion: 2\nsql:\n  - schema: \"query.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    gen:\n      go:\n        package: \"authors\"\n        out: \"db\"\n    database:\n      uri: \"postgresql://postgres:password@localhost:5432/postgres\"\n    rules:\n      - sqlc/db-prepare\n```\n\nTo see this in action, check out the [authors\nexample](https://github.com/sqlc-dev/sqlc/blob/main/examples/authors/sqlc.yaml).\n\nPlease note that `sqlc` does not manage or migrate your database. Use your\nmigration tool of choice to create the necessary database tables and objects\nbefore running `sqlc vet`.\n\n#### Omit unused structs\n\nAdded a new configuration parameter `omit_unused_structs` which, when set to\ntrue, filters out table and enum structs that aren't used in queries for a given\npackage.\n\n#### Suggested CI/CD setup\n\nWith the addition of `sqlc diff` and `sqlc vet`, we encourage users to run sqlc\nin your CI/CD pipelines. See our [suggested CI/CD setup](../howto/ci-cd.md) for\nmore information.\n\n#### Simplified plugin development\n\nThe [sqlc-gen-kotlin](https://github.com/sqlc-dev/sqlc-gen-kotlin) and\n[sqlc-gen-python](https://github.com/sqlc-dev/sqlc-gen-python) plugins have been\nupdated use the upcoming [WASI](https://wasi.dev/) support in [Go\n1.21](https://tip.golang.org/doc/go1.21#wasip1). Building these plugins no\nlonger requires [TinyGo](https://tinygo.org/).\n\n### Changes\n\n#### Bug Fixes\n\n- Pointers overrides skip imports in generated query files (#2240)\n- CASE-ELSE clause is not properly parsed when a value is constant (#2238)\n- Fix toSnakeCase to handle input in CamelCase format (#2245)\n- Add location info to sqlite ast (#2298)\n- Add override tags to result struct (#1867) (#1887)\n- Override types of aliased columns and named parameters (#1884)\n- Resolve duplicate fields generated when inheriting multiple tables (#2089)\n- Check column references in ORDER BY (#1411) (#1915)\n- MySQL slice shadowing database/sql import (#2332)\n- Don't defer rows.Close() if pgx.BatchResults.Query() failed  (#2362)\n- Fix type overrides not working with sqlc.slice (#2351)\n- Type overrides on columns for parameters inside an IN clause (#2352)\n- Broken interaction between query_parameter_limit and pq.Array() (#2383)\n- (codegen/golang) Bring :execlastid in line with the rest (#2378)\n\n#### Documentation\n\n- Update changelog.md with some minor edits (#2235)\n- Add F# community plugin (#2295)\n- Add a ReadTheDocs config file (#2327)\n- Update query_parameter_limit documentation (#2374)\n- Add launch announcement banner\n\n#### Features\n- PostgreSQL capture correct line and column numbers for parse error (#2289)\n- Add supporting COMMENT ON VIEW (#2249)\n- To allow spaces between function name and arguments of functions to be rewritten (#2250)\n- Add support for pgx/v5 emit_pointers_for_null_types flag (#2269)\n- (mysql) Support unsigned integers (#1746)\n- Allow use of table and column aliases for table functions returning unknown types (#2156)\n- Support \"LIMIT ?\" in UPDATE and DELETE for MySQL (#2365)\n- (internal/codegen/golang) Omit unused structs from output (#2369)\n- Improve default names for BETWEEN ? AND ? to have prefixes from_ and to_ (#2366)\n- (cmd/sqlc) Add the vet subcommand (#2344)\n- (sqlite) Add support for UPDATE/DELETE with a LIMIT clause (#2384)\n- Add support for BETWEEN sqlc.arg(min) AND sqlc.arg(max) (#2373)\n- (cmd/vet) Prepare queries against a database (#2387)\n- (cmd/vet) Prepare queries for MySQL (#2388)\n- (cmd/vet) Prepare SQLite queries (#2389)\n- (cmd/vet) Simplify environment variable substiution (#2393)\n- (cmd/vet) Add built-in db-prepare rule\n- Add compiler support for NOTIFY and LISTEN (PostgreSQL) (#2363)\n\n#### Miscellaneous Tasks\n\n- A few small staticcheck fixes (#2361)\n- Remove a bunch of dead code (#2360)\n- (scripts/regenerate) Should also update stderr.txt (#2379)\n\n#### Build\n\n- (deps) Bump requests from 2.25.1 to 2.31.0 in /docs (#2283)\n- (deps) Bump golang from 1.20.3 to 1.20.4 (#2256)\n- (deps) Bump google.golang.org/grpc from 1.54.0 to 1.55.0 (#2265)\n- (deps) Bump github.com/mattn/go-sqlite3 from 1.14.16 to 1.14.17 (#2293)\n- (deps) Bump golang.org/x/sync from 0.1.0 to 0.2.0 (#2266)\n- (deps) Bump golang from 1.20.4 to 1.20.5 (#2301)\n- Configure dependencies via devenv.sh (#2319)\n- Configure dependencies via devenv.sh (#2326)\n- (deps) Bump golang.org/x/sync from 0.2.0 to 0.3.0 (#2328)\n- (deps) Bump google.golang.org/grpc from 1.55.0 to 1.56.0 (#2333)\n- (deps) Bump google.golang.org/protobuf from 1.30.0 to 1.31.0 (#2370)\n- (deps) Bump actions/checkout from 2 to 3 (#2357)\n- Run govulncheck on all builds (#2372)\n- (deps) Bump google.golang.org/grpc from 1.56.0 to 1.56.1 (#2358)\n\n#### Cmd/sqlc\n\n- Show helpful output on missing subcommand (#2345)\n\n#### Codegen\n\n- Use catalog's default schema (#2310)\n- (go) Add tests for tables with dashes (#2312)\n- (go) Strip invalid characters from table and column names (#2314)\n- (go) Support JSON tags for nullable enum structs (#2121)\n\n#### Internal/config\n\n- Support golang overrides for slices (#2339)\n\n#### Kotlin\n\n- Use latest version of sqlc-gen-kotlin (#2356)\n\n#### Postgres\n\n- Column merging for table inheritence (#2315)\n\n#### Protos\n\n- Add missing field name (#2354)\n\n#### Python\n\n- Use latest version of sqlc-gen-python (#2355)\n\n#### Remote\n\n- Use user-id/password auth (#2262)\n\n#### Sqlite\n\n- Fixed sqlite column type override (#1986)\n\n\n## [1.18.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.18.0)\nReleased 2023-04-27\n\n### Release notes\n\n#### Remote code generation\n\n_Developed by [@andrewmbenton](https://github.com/andrewmbenton)_\n\nAt its core, sqlc is powered by SQL engines, which include parsers, formatters,\nanalyzers and more. While our goal is to support each engine on each operating\nsystem, it's not always possible. For example, the PostgreSQL engine does not\nwork on Windows.\n\nTo bridge that gap, we're announcing remote code generation, currently in\nprivate alpha. To join the private alpha, [sign up for the waitlist](https://docs.google.com/forms/d/e/1FAIpQLScDWrGtTgZWKt3mdlF5R2XCX6tL1pMkB4yuZx5yq684tTNN1Q/viewform?usp=sf_link).\n\nRemote code generation works like local code generation, except the heavy\nlifting is performed in a consistent cloud environment. WASM-based plugins are\nsupported in the remote environment, but process-based plugins are not.\n\nTo configure remote generation, add a `cloud` block in `sqlc.json`.\n\n```json\n{\n  \"version\": \"2\",\n  \"cloud\": {\n    \"organization\": \"<org-id>\",\n    \"project\": \"<project-id>\",\n  },\n  ...\n}\n```\n\nYou'll also need to set the `SQLC_AUTH_TOKEN` environment variable.\n\n```bash\nexport SQLC_AUTH_TOKEN=<token>\n```\n\nWhen the `cloud` configuration block exists, `sqlc generate` will default to remote\ncode generation. If you'd like to generate code locally without removing the `cloud`\nblock from your config, pass the `--no-remote` option.\n\n\n```bash\nsqlc generate --no-remote\n```\n\nRemote generation is off by default and requires an opt-in to use.\n\n#### sqlc.embed\n\n_Developed by [@nickjackson](https://github.com/nickjackson)_\n\nEmbedding allows you to reuse existing model structs in more queries, resulting\nin less manual serialization work. First, imagine we have the following schema\nwith students and test scores.\n\n\n```sql\nCREATE TABLE students (\n  id   bigserial PRIMARY KEY,\n  name text,\n  age  integer\n)\n\nCREATE TABLE test_scores (\n  student_id bigint,\n  score integer,\n  grade text\n)\n```\n\nWe want to select the student record and the highest score they got on a test.\nHere's how we'd usually do that:\n\n```sql\n-- name: HighScore :many\nWITH high_scores AS (\n  SELECT student_id, max(score) as high_score\n  FROM test_scores\n  GROUP BY 1\n)\nSELECT students.*, high_score::integer\nFROM students\nJOIN high_scores ON high_scores.student_id = students.id;\n```\n\nWhen using Go, sqlc will produce a struct like this:\n\n```\ntype HighScoreRow struct {\n\tID        int64\n\tName      sql.NullString\n\tAge       sql.NullInt32\n\tHighScore int32\n}\n```\n\nWith embedding, the struct will contain a model for the table instead of a\nflattened list of columns.\n\n```sql\n-- name: HighScoreEmbed :many\nWITH high_scores AS (\n  SELECT student_id, max(score) as high_score\n  FROM test_scores\n  GROUP BY 1\n)\nSELECT sqlc.embed(students), high_score::integer\nFROM students\nJOIN high_scores ON high_scores.student_id = students.id;\n```\n\n```\ntype HighScoreRow struct {\n\tStudent   Student\n\tHighScore int32\n}\n```\n\n#### sqlc.slice\n\n_Developed by Paul Cameron and Jille Timmermans_\n\nThe MySQL Go driver does not support passing slices to the IN operator. The\n`sqlc.slice` function generates a dynamic query at runtime with the correct\nnumber of parameters.\n\n```sql\n/* name: SelectStudents :many */\nSELECT * FROM students \nWHERE age IN (sqlc.slice(\"ages\"))\n```\n\n```go\nfunc (q *Queries) SelectStudents(ctx context.Context, ages []int32) ([]Student, error) {\n```\n\nThis feature is only supported in MySQL and cannot be used with prepared\nqueries.\n\n#### Batch operation improvements  \n\nWhen using batches with pgx, the error returned when a batch is closed is\nexported by the generated package. This change allows for cleaner error\nhandling using `errors.Is`.\n\n```go\nerrors.Is(err, generated_package.ErrBatchAlreadyClosed)\n```\n\nPreviously, you would have had to check match on the error message itself.\n\n```\nerr.Error() == \"batch already closed\"\n```\n\nThe generated code for batch operations always lived in `batch.go`. This file\nname can now be configured via the `output_batch_file_name` configuration\noption.\n\n#### Configurable query parameter limits for Go\n\nBy default, sqlc will limit Go functions to a single parameter. If a query\nincludes more than one parameter, the generated method will use an argument\nstruct instead of positional arguments. This behavior can now be changed via\nthe `query_parameter_limit` configuration option.  If set to `0`, every\ngenreated method will use a argument struct. \n\n### Changes\n\n#### Bug Fixes\n\n- Prevent variable redeclaration in single param conflict for pgx (#2058)\n- Retrieve Larg/Rarg join query after inner join (#2051)\n- Rename argument when conflicted to imported package (#2048)\n- Pgx closed batch return pointer if need #1959 (#1960)\n- Correct singularization of \"waves\" (#2194)\n- Honor Package level renames in v2 yaml config (#2001)\n- (mysql) Prevent UPDATE ... JOIN panic #1590 (#2154)\n- Mysql delete join panic (#2197)\n- Missing import with pointer overrides, solves #2168 #2125 (#2217)\n\n#### Documentation\n\n- (config.md) Add `sqlite` as engine option (#2164)\n- Add first pass at pgx documentation (#2174)\n- Add missed configuration option (#2188)\n- `specifies parameter \":one\" without containing a RETURNING clause` (#2173)\n\n#### Features\n\n- Add `sqlc.embed` to allow model re-use (#1615)\n- (Go) Add query_parameter_limit conf to codegen (#1558)\n- Add remote execution for codegen (#2214)\n\n#### Testing\n\n- Skip tests if required plugins are missing (#2104)\n- Add tests for reanme fix in v2 (#2196)\n- Regenerate batch output for filename tests\n- Remove remote test (#2232)\n- Regenerate test output\n\n#### Bin/sqlc\n\n- Add SQLCTMPDIR environment variable (#2189)\n\n#### Build\n\n- (deps) Bump github.com/antlr/antlr4/runtime/Go/antlr (#2109)\n- (deps) Bump github.com/jackc/pgx/v4 from 4.18.0 to 4.18.1 (#2119)\n- (deps) Bump golang from 1.20.1 to 1.20.2 (#2135)\n- (deps) Bump google.golang.org/protobuf from 1.28.1 to 1.29.0 (#2137)\n- (deps) Bump google.golang.org/protobuf from 1.29.0 to 1.29.1 (#2143)\n- (deps) Bump golang from 1.20.2 to 1.20.3 (#2192)\n- (deps) Bump actions/setup-go from 3 to 4 (#2150)\n- (deps) Bump google.golang.org/protobuf from 1.29.1 to 1.30.0 (#2151)\n- (deps) Bump github.com/spf13/cobra from 1.6.1 to 1.7.0 (#2193)\n- (deps) Bump github.com/lib/pq from 1.10.7 to 1.10.8 (#2211)\n- (deps) Bump github.com/lib/pq from 1.10.8 to 1.10.9 (#2229)\n- (deps) Bump github.com/go-sql-driver/mysql from 1.7.0 to 1.7.1 (#2228)\n\n#### Cmd/sqlc\n\n- Remove --experimental flag (#2170)\n- Add option to disable process-based plugins (#2180)\n- Bump version to v1.18.0\n\n#### Codegen\n\n- Correctly generate CopyFrom columns for single-column copyfroms (#2185)\n\n#### Config\n\n- Add top-level cloud configuration (#2204)\n\n#### Engine/postgres\n\n- Upgrade to pg_query_go/v4 (#2114)\n\n#### Ext/wasm\n\n- Check exit code on returned error (#2223)\n\n#### Parser\n\n- Generate correct types for `SELECT NOT EXISTS` (#1972)\n\n#### Sqlite\n\n- Add support for CREATE TABLE ... STRICT (#2175)\n\n#### Wasm\n\n- Upgrade to wasmtime v8.0.0 (#2222)\n\n## [1.17.2](https://github.com/sqlc-dev/sqlc/releases/tag/v1.17.2)\nReleased 2023-02-22\n\n### Bug Fixes\n\n- Fix build on Windows (#2102)\n\n## [1.17.1](https://github.com/sqlc-dev/sqlc/releases/tag/v1.17.1)\nReleased 2023-02-22\n\n### Bug Fixes\n\n- Prefer to use []T over pgype.Array[T] (#2090)\n- Revert changes to Dockerfile (#2091)\n- Do not throw error when IF NOT EXISTS is used on ADD COLUMN (#2092)\n\n### MySQL\n\n- Add `float` support to MySQL (#2097)\n\n### Build\n\n- (deps) Bump golang from 1.20.0 to 1.20.1 (#2082)\n\n## [1.17.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.17.0)\nReleased 2023-02-13\n\n### Bug Fixes\n\n- Initialize generated code outside function (#1850)\n- (engine/mysql) Take into account column's charset to distinguish text/blob, (var)char/(var)binary (#776) (#1895)\n- The enum Value method returns correct type (#1996)\n- Documentation for Inserting Rows (#2034)\n- Add import statements even if only pointer types exist (#2046)\n- Search from Rexpr if not found from Lexpr (#2056)\n\n### Documentation\n\n- Change ENTRYPOINT to CMD (#1943)\n- Update samples for HOW-TO GUIDES (#1953)\n\n### Features\n\n- Add the diff command (#1963)\n\n### Build\n\n- (deps) Bump github.com/mattn/go-sqlite3 from 1.14.15 to 1.14.16 (#1913)\n- (deps) Bump github.com/spf13/cobra from 1.6.0 to 1.6.1 (#1909)\n- Fix devcontainer (#1942)\n- Run sqlc-pg-gen via GitHub Actions (#1944)\n- Move large arrays out of functions (#1947)\n- Fix conflicts from pointer configuration (#1950)\n- (deps) Bump github.com/go-sql-driver/mysql from 1.6.0 to 1.7.0 (#1988)\n- (deps) Bump github.com/jackc/pgtype from 1.12.0 to 1.13.0 (#1978)\n- (deps) Bump golang from 1.19.3 to 1.19.4 (#1992)\n- (deps) Bump certifi from 2020.12.5 to 2022.12.7 in /docs (#1993)\n- (deps) Bump golang from 1.19.4 to 1.19.5 (#2016)\n- (deps) Bump golang from 1.19.5 to 1.20.0 (#2045)\n- (deps) Bump github.com/jackc/pgtype from 1.13.0 to 1.14.0 (#2062)\n- (deps) Bump github.com/jackc/pgx/v4 from 4.17.2 to 4.18.0 (#2063)\n\n### Cmd\n\n- Generate packages in parallel (#2026)\n\n### Cmd/sqlc\n\n- Bump version to v1.17.0\n\n### Codegen\n\n- Remove built-in Kotlin support (#1935)\n- Remove built-in Python support (#1936)\n\n### Internal/codegen\n\n- Cache pattern matching compilations (#2028)\n\n### Mysql\n\n- Add datatype tests (#1948)\n- Fix blob tests (#1949)\n\n### Plugins\n\n- Upgrade to wasmtime 3.0.1 (#2009)\n\n### Sqlite\n\n- Supported between expr (#1958) (#1967)\n\n### Tools\n\n- Regenerate scripts skips dirs that contains diff exec command (#1987)\n\n### Wasm\n\n- Upgrade to wasmtime 5.0.0 (#2065)\n\n## [1.16.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.16.0)\nReleased 2022-11-09\n\n\n### Bug Fixes\n\n- (validate) Sqlc.arg & sqlc.narg are not \"missing\" (#1814)\n- Emit correct comment for nullable enums (#1819)\n- 🐛 Correctly switch `coalesce()` result `.NotNull` value (#1664)\n- Prevent batch infinite loop with arg length (#1794)\n- Support version 2 in error message (#1839)\n- Handle empty column list in postgresql (#1843)\n- Batch imports filter queries, update cmds having ret type (#1842)\n- Named params contribute to batch parameter count (#1841)\n\n### Documentation\n\n- Add a getting started guide for SQLite (#1798)\n- Various readability improvements (#1854)\n- Add documentation for codegen plugins (#1904)\n- Update migration guides with links (#1933)\n\n### Features\n\n- Add HAVING support to MySQL (#1806)\n\n### Miscellaneous Tasks\n\n- Upgrade wasmtime version (#1827)\n- Bump wasmtime version to v1.0.0 (#1869)\n\n### Build\n\n- (deps) Bump github.com/jackc/pgconn from 1.12.1 to 1.13.0 (#1785)\n- (deps) Bump github.com/mattn/go-sqlite3 from 1.14.13 to 1.14.15 (#1799)\n- (deps) Bump github.com/jackc/pgx/v4 from 4.16.1 to 4.17.0 (#1786)\n- (deps) Bump github.com/jackc/pgx/v4 from 4.17.0 to 4.17.1 (#1825)\n- (deps) Bump github.com/bytecodealliance/wasmtime-go (#1826)\n- (deps) Bump github.com/jackc/pgx/v4 from 4.17.1 to 4.17.2 (#1831)\n- (deps) Bump golang from 1.19.0 to 1.19.1 (#1834)\n- (deps) Bump github.com/google/go-cmp from 0.5.8 to 0.5.9 (#1838)\n- (deps) Bump github.com/lib/pq from 1.10.6 to 1.10.7 (#1835)\n- (deps) Bump github.com/bytecodealliance/wasmtime-go (#1857)\n- (deps) Bump github.com/spf13/cobra from 1.5.0 to 1.6.0 (#1893)\n- (deps) Bump golang from 1.19.1 to 1.19.3 (#1920)\n\n### Cmd/sqlc\n\n- Bump to v1.16.0\n\n### Codgen\n\n- Include serialized codegen options (#1890)\n\n### Compiler\n\n- Move Kotlin parameter logic into codegen (#1910)\n\n### Examples\n\n- Port Python examples to WASM plugin (#1903)\n\n### Pg-gen\n\n- Make sqlc-pg-gen the complete source of truth for pg_catalog.go (#1809)\n- Implement information_schema shema (#1815)\n\n### Python\n\n- Port all Python tests to sqlc-gen-python (#1907)\n- Upgrade to sqlc-gen-python v1.0.0 (#1932)\n\n## [1.15.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.15.0)\nReleased 2022-08-07\n\n### Bug Fixes\n\n- (mysql) Typo (#1700)\n- (postgresql) Add quotes for CamelCase columns (#1729)\n- Cannot parse SQLite upsert statement (#1732)\n- (sqlite) Regenerate test output for builtins (#1735)\n- (wasm) Version modules by wasmtime version (#1734)\n- Missing imports (#1637)\n- Missing slice import for querier (#1773)\n\n### Documentation\n\n- Add process-based plugin docs (#1669)\n- Add links to downloads.sqlc.dev (#1681)\n- Update transactions how to example (#1775)\n\n### Features\n\n- More SQL Syntax Support for SQLite (#1687)\n- (sqlite) Promote SQLite support to beta (#1699)\n- Codegen plugins, powered by WASM (#1684)\n- Set user-agent for plugin downloads (#1707)\n- Null enums types (#1485)\n- (sqlite) Support stdlib functions (#1712)\n- (sqlite) Add support for returning (#1741)\n\n### Miscellaneous Tasks\n\n- Add tests for quoting columns (#1733)\n- Remove catalog tests (#1762)\n\n### Testing\n\n- Add tests for fixing slice imports (#1736)\n- Add test cases for returning (#1737)\n\n### Build\n\n- Upgrade to Go 1.19 (#1780)\n- Upgrade to go-wasmtime 0.39.0 (#1781)\n\n### Plugins\n\n- (wasm) Change default cache location (#1709)\n- (wasm) Change the SHA-256 config key (#1710)\n\n## [1.14.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.14.0)\nReleased 2022-06-09\n\n### Bug Fixes\n\n- (postgresql) Remove extra newline with db argument (#1417)\n- (sqlite) Fix DROP TABLE   (#1443)\n- (compiler) Fix left join nullability with table aliases (#1491)\n- Regenerate testdata for CREATE TABLE AS (#1516)\n- (bundler) Only close multipart writer once (#1528)\n- (endtoend) Regenerate testdata for exex_lastid\n- (pgx) Copyfrom imports (#1626)\n- Validate sqlc function arguments (#1633)\n- Fixed typo `sql.narg` in doc (#1668)\n\n### Features\n\n- (golang) Add Enum.Valid and AllEnumValues (#1613)\n- (sqlite) Start expanding support (#1410)\n- (pgx) Add support for batch operations (#1437)\n- (sqlite) Add support for delete statements (#1447)\n- (codegen) Insert comments in interfaces (#1458)\n- (sdk) Add the plugin SDK package (#1463)\n- Upload projects (#1436)\n- Add sqlc version to generated Kotlin code (#1512)\n- Add sqlc version to generated Go code (#1513)\n- Pass sqlc version in codegen request (#1514)\n- (postgresql) Add materialized view support (#1509)\n- (python) Graduate Python support to beta (#1520)\n- Run sqlc with docker on windows cmd (#1557)\n- Add JSON \"codegen\" output (#1565)\n- Add sqlc.narg() for nullable named params (#1536)\n- Process-based codegen plugins (#1578)\n\n### Miscellaneous Tasks\n\n- Fix extra newline in comments for copyfrom (#1438)\n- Generate marshal/unmarshal with vtprotobuf (#1467)\n\n### Refactor\n\n- (codegen) Port Kotlin codegen package to use plugin types (#1416)\n- (codegen) Port Go to plugin types (#1460)\n- (cmd) Simplify codegen selection logic (#1466)\n- (sql/catalog) Improve Readability (#1595)\n- Add basic fuzzing for config / overrides (#1500)\n\n## [1.13.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.13.0)\nReleased 2022-03-31\n\n### Bug Fixes\n\n- (compiler) Fix left join nullability with table aliases (#1491)\n- (postgresql) Remove extra newline with db argument (#1417)\n- (sqlite) Fix DROP TABLE (#1443)\n\n### Features\n\n- (cli) Upload projects (#1436)\n- (codegen) Add sqlc version to generated Go code (#1513)\n- (codegen) Add sqlc version to generated Kotlin code (#1512)\n- (codegen) Insert comments in interfaces (#1458)\n- (codegen) Pass sqlc version in codegen request (#1514)\n- (pgx) Add support for batch operations (#1437)\n- (postgresql) Add materialized view support (#1509)\n- (python) Graduate Python support to beta (#1520)\n- (sdk) Add the plugin SDK package (#1463)\n- (sqlite) Add support for delete statements (#1447)\n- (sqlite) Start expanding support (#1410)\n\n### Miscellaneous Tasks\n\n- Fix extra newline in comments for copyfrom (#1438)\n- Generate marshal/unmarshal with vtprotobuf (#1467)\n\n### Refactor\n\n- (codegen) Port Kotlin codegen package to use plugin types (#1416)\n- (codegen) Port Go to plugin types (#1460)\n- (cmd) Simplify codegen selection logic (#1466)\n\n### Config\n\n- Add basic fuzzing for config / overrides (#1500)\n\n## [1.12.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.12.0)\nReleased 2022-02-05\n\n### Bug\n\n- ALTER TABLE SET SCHEMA (#1409)\n\n### Bug Fixes\n\n- Update ANTLR v4 go.mod entry (#1336)\n- Check delete statements for CTEs (#1329)\n- Fix validation of GROUP BY on field aliases (#1348)\n- Fix imports when non-copyfrom queries needed imports that copyfrom queries didn't (#1386)\n- Remove extra comment newline (#1395)\n- Enable strict function checking (#1405)\n\n### Documentation\n\n- Bump version to 1.11.0 (#1308)\n\n### Features\n\n- Inheritance (#1339)\n- Generate query code using ASTs instead of templates (#1338)\n- Add support for CREATE TABLE a ( LIKE b ) (#1355)\n- Add support for sql.NullInt16 (#1376)\n\n### Miscellaneous Tasks\n\n- Add tests for :exec{result,rows} (#1344)\n- Delete template-based codegen (#1345)\n\n### Build\n\n- Bump github.com/jackc/pgx/v4 from 4.14.0 to 4.14.1 (#1316)\n- Bump golang from 1.17.3 to 1.17.4 (#1331)\n- Bump golang from 1.17.4 to 1.17.5 (#1337)\n- Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1343)\n- Remove devel Docker build\n- Bump golang from 1.17.5 to 1.17.6 (#1369)\n- Bump github.com/google/go-cmp from 0.5.6 to 0.5.7 (#1382)\n- Format all Go code (#1387)\n\n## [1.11.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.11.0)\nReleased 2021-11-24\n\n\n### Bug Fixes\n\n- Update incorrect signatures (#1180)\n- Correct aggregate func sig (#1182)\n- Jsonb_build_object (#1211)\n- Case-insensitive identifiers (#1216)\n- Incorrect handling of meta (#1228)\n- Detect invalid INSERT expression (#1231)\n- Respect alias name for coalesce (#1232)\n- Mark nullable when casting NULL (#1233)\n- Support nullable fields in joins for MySQL engine (#1249)\n- Fix between expression handling of table references (#1268)\n- Support nullable fields in joins on same table (#1270)\n- Fix missing binds in ORDER BY (#1273)\n- Set RV for TargetList items on updates (#1252)\n- Fix MySQL parser for query without trailing semicolon (#1282)\n- Validate table alias references (#1283)\n- Add support for MySQL ON DUPLICATE KEY UPDATE (#1286)\n- Support references to columns in joined tables in UPDATE statements (#1289)\n- Add validation for GROUP BY clause column references (#1285)\n- Prevent variable redeclaration in single param conflict (#1298)\n- Use common params struct field for same named params (#1296)\n\n### Documentation\n\n- Replace deprecated go get with go install (#1181)\n- Fix package name referenced in tutorial (#1202)\n- Add environment variables (#1264)\n- Add go.17+ install instructions (#1280)\n- Warn about golang-migrate file order (#1302)\n\n### Features\n\n- Instrument compiler via runtime/trace (#1258)\n- Add MySQL support for BETWEEN arguments (#1265)\n\n### Refactor\n\n- Move from io/ioutil to io and os package (#1164)\n\n### Styling\n\n- Apply gofmt to sample code (#1261)\n\n### Build\n\n- Bump golang from 1.17.0 to 1.17.1 (#1173)\n- Bump eskatos/gradle-command-action from 1 to 2 (#1220)\n- Bump golang from 1.17.1 to 1.17.2 (#1227)\n- Bump github.com/pganalyze/pg_query_go/v2 (#1234)\n- Bump actions/checkout from 2.3.4 to 2.3.5 (#1238)\n- Bump babel from 2.9.0 to 2.9.1 in /docs (#1245)\n- Bump golang from 1.17.2 to 1.17.3 (#1272)\n- Bump actions/checkout from 2.3.5 to 2.4.0 (#1267)\n- Bump github.com/lib/pq from 1.10.3 to 1.10.4 (#1278)\n- Bump github.com/jackc/pgx/v4 from 4.13.0 to 4.14.0 (#1303)\n\n### Cmd/sqlc\n\n- Bump version to v1.11.0\n\n## [1.10.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.10.0)\nReleased 2021-09-07\n\n\n### Documentation\n\n- Fix invalid language support table (#1161)\n- Add a getting started guide for MySQL (#1163)\n\n### Build\n\n- Bump golang from 1.16.7 to 1.17.0 (#1129)\n- Bump github.com/lib/pq from 1.10.2 to 1.10.3 (#1160)\n\n### Ci\n\n- Upgrade Go to 1.17 (#1130)\n\n### Cmd/sqlc\n\n- Bump version to v1.10.0 (#1165)\n\n### Codegen/golang\n\n- Consolidate import logic (#1139)\n- Add pgx support for range types (#1146)\n- Use pgtype for hstore when using pgx (#1156)\n\n### Codgen/golang\n\n- Use p[gq]type for network address types (#1142)\n\n### Endtoend\n\n- Run `go test` in CI (#1134)\n\n### Engine/mysql\n\n- Add support for LIKE (#1162)\n\n### Golang\n\n- Output NullUUID when necessary (#1137)\n\n## [1.9.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.9.0)\nReleased 2021-08-13\n\n\n### Documentation\n\n- Update documentation (a bit) for v1.9.0 (#1117)\n\n### Build\n\n- Bump golang from 1.16.6 to 1.16.7 (#1107)\n\n### Cmd/sqlc\n\n- Bump version to v1.9.0 (#1121)\n\n### Compiler\n\n- Add tests for COALESCE behavior (#1112)\n- Handle subqueries in SELECT statements (#1113)\n\n## [1.8.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.8.0)\nReleased 2021-05-03\n\n\n### Documentation\n\n- Add language support Matrix (#920)\n\n### Features\n\n- Add case style config option (#905)\n\n### Python\n\n- Eliminate runtime package and use sqlalchemy (#939)\n\n### Build\n\n- Bump github.com/google/go-cmp from 0.5.4 to 0.5.5 (#926)\n- Bump github.com/lib/pq from 1.9.0 to 1.10.0 (#931)\n- Bump golang from 1.16.0 to 1.16.1 (#935)\n- Bump golang from 1.16.1 to 1.16.2 (#942)\n- Bump github.com/jackc/pgx/v4 from 4.10.1 to 4.11.0 (#956)\n- Bump github.com/go-sql-driver/mysql from 1.5.0 to 1.6.0 (#961)\n- Bump github.com/pganalyze/pg_query_go/v2 (#965)\n- Bump urllib3 from 1.26.3 to 1.26.4 in /docs (#968)\n- Bump golang from 1.16.2 to 1.16.3 (#963)\n- Bump github.com/lib/pq from 1.10.0 to 1.10.1 (#980)\n\n### Cmd\n\n- Add the --experimental flag (#929)\n- Fix sqlc init (#959)\n\n### Cmd/sqlc\n\n- Bump version to v1.7.1-devel (#913)\n- Bump version to v1.8.0\n\n### Codegen\n\n- Generate valid enum names for symbols (#972)\n\n### Postgresql\n\n- Support generated columns\n- Add test for PRIMARY KEY INCLUDE\n- Add tests for CREATE TABLE PARTITION OF\n- CREATE TRIGGER EXECUTE FUNCTION\n- Add support for renaming types (#971)\n\n### Sql/ast\n\n- Resolve return values from functions (#964)\n\n### Workflows\n\n- Only run tests once (#924)\n\n## [1.7.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.7.0)\nReleased 2021-02-28\n\n\n### Bug Fixes\n\n- Struct tag formatting (#833)\n\n### Documentation\n\n- Include all the existing Markdown files (#877)\n- Split docs into four sections (#882)\n- Reorganize and consolidate documentation\n- Add link to Windows download (#888)\n- Shorten the README (#889)\n\n### Features\n\n- Adding support for pgx/v4\n- Adding support for pgx/v4\n\n### README\n\n- Add Go Report Card badge (#891)\n\n### Build\n\n- Bump github.com/google/go-cmp from 0.5.3 to 0.5.4 (#813)\n- Bump github.com/lib/pq from 1.8.0 to 1.9.0 (#820)\n- Bump golang from 1.15.5 to 1.15.6 (#822)\n- Bump github.com/jackc/pgx/v4 from 4.9.2 to 4.10.0 (#823)\n- Bump github.com/jackc/pgx/v4 from 4.10.0 to 4.10.1 (#839)\n- Bump golang from 1.15.6 to 1.15.7 (#855)\n- Bump golang from 1.15.7 to 1.15.8 (#881)\n- Bump github.com/spf13/cobra from 1.1.1 to 1.1.2 (#892)\n- Bump golang from 1.15.8 to 1.16.0 (#897)\n- Bump github.com/lfittl/pg_query_go from 1.0.1 to 1.0.2 (#901)\n- Bump github.com/spf13/cobra from 1.1.2 to 1.1.3 (#893)\n\n### Catalog\n\n- Improve alter column type (#818)\n\n### Ci\n\n- Uprade to Go 1.15 (#887)\n\n### Cmd\n\n- Allow config file location to be specified (#863)\n\n### Cmd/sqlc\n\n- Bump to version v1.6.1-devel (#807)\n- Bump version to v1.7.0 (#912)\n\n### Codegen/golang\n\n- Make sure to import net package (#858)\n\n### Compiler\n\n- Support UNION query\n\n### Dolphin\n\n- Generate bools for tinyint(1)\n- Support joins in update statements (#883)\n- Add support for union query\n\n### Endtoend\n\n- Add tests for INTERSECT and EXCEPT\n\n### Go.mod\n\n- Update to go 1.15 and run 'go mod tidy' (#808)\n\n### Mysql\n\n- Compile tinyint(1) to bool (#873)\n\n### Sql/ast\n\n- Add enum values for SetOperation\n\n## [1.6.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.6.0)\nReleased 2020-11-23\n\n\n### Dolphin\n\n- Implement Rename (#651)\n- Skip processing view drops (#653)\n\n### README\n\n- Update language / database support (#698)\n\n### Astutils\n\n- Fix Params rewrite call (#674)\n\n### Build\n\n- Bump golang from 1.14 to 1.15.3 (#765)\n- Bump docker/build-push-action from v1 to v2.1.0 (#764)\n- Bump github.com/google/go-cmp from 0.4.0 to 0.5.2 (#766)\n- Bump github.com/spf13/cobra from 1.0.0 to 1.1.1 (#767)\n- Bump github.com/jackc/pgx/v4 from 4.6.0 to 4.9.2 (#768)\n- Bump github.com/lfittl/pg_query_go from 1.0.0 to 1.0.1 (#773)\n- Bump github.com/google/go-cmp from 0.5.2 to 0.5.3 (#783)\n- Bump golang from 1.15.3 to 1.15.5 (#782)\n- Bump github.com/lib/pq from 1.4.0 to 1.8.0 (#769)\n\n### Catalog\n\n- Improve variadic argument support (#804)\n\n### Cmd/sqlc\n\n- Bump to version v1.6.0 (#806)\n\n### Codegen\n\n- Fix errant database/sql imports (#789)\n\n### Compiler\n\n- Use engine-specific reserved keywords (#677)\n\n### Dolphi\n\n- Add list of builtin functions (#795)\n\n### Dolphin\n\n- Update to the latest MySQL parser (#665)\n- Add ENUM() support (#676)\n- Add test for table aliasing (#684)\n- Add MySQL ddl_create_table test (#685)\n- Implete TRUNCATE table (#697)\n- Represent tinyint as int32 (#797)\n- Add support for coalesce (#802)\n- Add function signatures (#796)\n\n### Endtoend\n\n- Add MySQL json test (#692)\n- Add MySQL update set multiple test (#696)\n\n### Examples\n\n- Use generated enum constants in db_test (#678)\n- Port ondeck to MySQL (#680)\n- Add MySQL authors example (#682)\n\n### Internal/cmd\n\n- Print correct config file on parse failure (#749)\n\n### Kotlin\n\n- Remove runtime dependency (#774)\n\n### Metadata\n\n- Support multiple comment prefixes (#683)\n\n### Postgresql\n\n- Support string concat operator (#701)\n\n### Sql/catalog\n\n- Add support for variadic functions (#798)\n\n## [1.5.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.5.0)\nReleased 2020-08-05\n\n\n### Documentation\n\n- Build sqlc using Go 1.14 (#549)\n\n### Cmd\n\n- Add debugging support (#573)\n\n### Cmd/sqlc\n\n- Bump version to v1.4.1-devel (#548)\n- Bump version to v1.5.0\n\n### Compiler\n\n- Support calling functions with defaults (#635)\n- Skip func args without a paramRef (#636)\n- Return a single column from coalesce (#639)\n\n### Config\n\n- Add emit_empty_slices to version one (#552)\n\n### Contrib\n\n- Add generated code for contrib\n\n### Dinosql\n\n- Remove deprecated package (#554)\n\n### Dolphin\n\n- Add support for column aliasing (#566)\n- Implement star expansion for subqueries (#619)\n- Implement exapansion with reserved words (#620)\n- Implement parameter refs (#621)\n- Implement limit and offest (#622)\n- Implement inserts (#623)\n- Implement delete (#624)\n- Implement simple update statements (#625)\n- Implement INSERT ... SELECT (#626)\n- Use test driver instead of TiDB driver (#629)\n- Implement named parameters via sqlc.arg() (#632)\n\n### Endtoend\n\n- Add MySQL test for SELECT * JOIN (#565)\n- Add MySQL test for inflection (#567)\n\n### Engine\n\n- Create engine package (#556)\n\n### Equinox\n\n- Use the new equinox-io/setup action (#586)\n\n### Examples\n\n- Run tests for MySQL booktest (#627)\n\n### Golang\n\n- Add support for the money type (#561)\n- Generate correct types for int2 and int8 (#579)\n\n### Internal\n\n- Rm catalog, pg, postgres packages (#555)\n\n### Mod\n\n- Downgrade TiDB package to fix build (#603)\n\n### Mysql\n\n- Upgrade to the latest vitess commit (#562)\n- Support to infer type of a duplicated arg (#615)\n- Allow some builtin functions to be nullable (#616)\n\n### Postgresql\n\n- Generate all functions in pg_catalog (#550)\n- Remove pg_catalog schema from tests (#638)\n- Move contrib code to a package\n\n### Sql/catalog\n\n- Fix comparison of pg_catalog types (#637)\n\n### Tools\n\n- Generate functions for all of contrib\n\n### Workflow\n\n- Migrate to equinox-io/setup-release-tool (#614)\n\n## [1.4.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.4.0)\nReleased 2020-06-17\n\n\n### Dockerfile\n\n- Add version build argument (#487)\n\n### MySQL\n\n- Prevent Panic when WHERE clause contains parenthesis.  (#531)\n\n### README\n\n- Document emit_exact_table_names (#486)\n\n### All\n\n- Remove the exp build tag (#507)\n\n### Catalog\n\n- Support functions with table parameters (#541)\n\n### Cmd\n\n- Bump to version 1.3.1-devel (#485)\n\n### Cmd/sqlc\n\n- Bump version to v1.4.0 (#547)\n\n### Codegen\n\n- Add the new codegen packages (#513)\n- Add the :execresult query annotation (#542)\n\n### Compiler\n\n- Validate function calls (#505)\n- Port bottom of parseQuery (#510)\n- Don't mutate table name (#517)\n- Enable experimental parser by default (#518)\n- Apply rename rules to enum constants (#523)\n- Temp fix for typecast function parameters (#530)\n\n### Endtoend\n\n- Standardize JSON formatting (#490)\n- Add per-test configuration files (#521)\n- Read expected stderr failures from disk (#527)\n\n### Internal/dinosql\n\n- Check parameter style before ref (#488)\n- Remove unneeded column suffix (#492)\n- Support named function arguments (#494)\n\n### Internal/postgresql\n\n- Fix NamedArgExpr rewrite (#491)\n\n### Multierr\n\n- Move dinosql.ParserErr to a new package (#496)\n\n### Named\n\n- Port parameter style validation to SQL (#504)\n\n### Parser\n\n- Support columns from subselect statements (#489)\n\n### Rewrite\n\n- Move parameter rewrite to package (#499)\n\n### Sqlite\n\n- Use convert functions instead of the listener (#519)\n\n### Sqlpath\n\n- Move ReadSQLFiles into a separate package (#495)\n\n### Validation\n\n- Move query validation to separate package (#498)\n\n## [1.3.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.3.0)\nReleased 2020-05-12\n\n\n### Makefile\n\n- Update target (#449)\n\n### README\n\n- Add Myles as a sponsor (#469)\n\n### Testing\n\n- Make sure all Go examples build (#480)\n\n### Cmd\n\n- Bump version to v1.3.0 (#484)\n\n### Cmd/sqlc\n\n- Bump version to v1.2.1-devel (#442)\n\n### Dinosql\n\n- Inline addFile (#446)\n- Add PostgreSQL support for TRUNCATE (#448)\n\n### Gen\n\n- Emit json.RawMessage for JSON columns (#461)\n\n### Go.mod\n\n- Use latest lib/pq (#471)\n\n### Parser\n\n- Use same function to load SQL files (#483)\n\n### Postgresql\n\n- Fix panic walking CreateTableAsStmt (#475)\n\n## [1.2.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.2.0)\nReleased 2020-04-07\n\n\n### Documentation\n\n- Publish to Docker Hub (#422)\n\n### README\n\n- Docker installation docs (#424)\n\n### Cmd/sqlc\n\n- Bump version to v1.1.1-devel (#407)\n- Bump version to v1.2.0 (#441)\n\n### Gen\n\n- Add special case for \"campus\" (#435)\n- Properly quote reserved keywords on expansion (#436)\n\n### Migrations\n\n- Move migration parsing to new package (#427)\n\n### Parser\n\n- Generate correct types for SELECT EXISTS (#411)\n\n## [1.1.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.1.0)\nReleased 2020-03-17\n\n\n### README\n\n- Add installation instructions (#350)\n- Add section on running tests (#357)\n- Fix typo (#371)\n\n### Ast\n\n- Add AST for ALTER TABLE ADD / DROP COLUMN (#376)\n- Add support for CREATE TYPE as ENUM (#388)\n- Add support for CREATE / DROP SCHEMA (#389)\n\n### Astutils\n\n- Apply changes to the ValuesList slice (#372)\n\n### Cmd\n\n- Return v1.0.0 (#348)\n- Return next bug fix version (#349)\n\n### Cmd/sqlc\n\n- Bump version to v1.1.0 (#406)\n\n### Compiler\n\n- Wire up the experimental parsers\n\n### Config\n\n- Remove \"emit_single_file\" option (#367)\n\n### Dolphin\n\n- Add experimental parser for MySQL\n\n### Gen\n\n- Add option to emit single file for Go (#366)\n- Add support for the ltree extension (#385)\n\n### Go.mod\n\n- Add packages for MySQL and SQLite parsers\n\n### Internal/dinosql\n\n- Support Postgres macaddr type in Go (#358)\n\n### Internal/endtoend\n\n- Remove %w (#354)\n\n### Kotlin\n\n- Add Query class to support timeout and cancellation (#368)\n\n### Postgresql\n\n- Add experimental parser for MySQL\n\n### Sql\n\n- Add generic SQL AST\n\n### Sql/ast\n\n- Port support for COMMENT ON (#391)\n- Implement DROP TYPE (#397)\n- Implement ALTER TABLE RENAME (#398)\n- Implement ALTER TABLE RENAME column (#399)\n- Implement ALTER TABLE SET SCHEMA (#400)\n\n### Sql/catalog\n\n- Port tests over from catalog pkg (#402)\n\n### Sql/errors\n\n- Add a new errors package (#390)\n\n### Sqlite\n\n- Add experimental parser for SQLite\n\n## [1.0.0](https://github.com/sqlc-dev/sqlc/releases/tag/v1.0.0)\nReleased 2020-02-18\n\n\n### Documentation\n\n- Add documentation for query commands (#270)\n- Add named parameter documentation (#332)\n\n### README\n\n- Add sponsors section (#333)\n\n### Cmd\n\n- Remove parse subcommand (#322)\n\n### Config\n\n- Parse V2 config format\n- Add support for YAML (#336)\n\n### Examples\n\n- Add the jets and booktest examples (#237)\n- Move sqlc.json into examples folder (#238)\n- Add the authors example (#241)\n- Add build tag to authors tests (#319)\n\n### Internal\n\n- Allow CTE to be used with UPDATE (#268)\n- Remove the PackageMap from settings (#295)\n\n### Internal/config\n\n- Create new config package (#313)\n\n### Internal/dinosql\n\n- Emit Querier interface (#240)\n- Strip leading \"go-\" or trailing \"-go\" from import (#262)\n- Overrides can now be basic types (#271)\n- Import needed types for Querier (#285)\n- Handle schema-scoped enums (#310)\n- Ignore golang-migrate rollbacks (#320)\n\n### Internal/endtoend\n\n- Move more tests to the record/replay framework\n- Add update test for named params (#329)\n\n### Internal/mysql\n\n- Fix flaky test (#242)\n- Port tests to endtoend package (#315)\n\n### Internal/parser\n\n- Resolve nested CTEs (#324)\n- Error if last query is missing (#325)\n- Support joins with aliases (#326)\n- Remove print statement (#327)\n\n### Internal/sqlc\n\n- Add support for composite types (#311)\n\n### Kotlin\n\n- Support primitives\n- Arrays, enums, and dates\n- Generate examples\n- README for examples\n- Factor out db setup extension\n- Fix enums, use List instead of Array\n- Port Go tests for examples\n- Rewrite numbered params to positional params\n- Always use use, fix indents\n- Unbox query params\n\n### Parser\n\n- Attach range vars to insert params\n- Attach range vars to insert params (#342)\n- Remove dead code (#343)\n\n## [0.1.0](https://github.com/sqlc-dev/sqlc/releases/tag/v0.1.0)\nReleased 2020-01-07\n\n\n### Documentation\n\n- Replace remaining references to DinoSQL with sqlc (#149)\n\n### README\n\n- Fix download links (#66)\n- Add LIMIT 1 to query that should return one (#99)\n\n### Catalog\n\n- Support \"ALTER TABLE ... DROP CONSTRAINT ...\" (#34)\n- Differentiate functions with different argument types (#51)\n\n### Ci\n\n- Enable tests on pull requests\n\n### Cmd\n\n- Include filenames in error messages (#69)\n- Do not output any changes on error (#72)\n\n### Dinosql/internal\n\n- Add lower and upper functions (#215)\n- Ignore alter sequence commands (#219)\n\n### Gen\n\n- Add DO NOT EDIT comments to generated code (#50)\n- Include all schemas when generating models (#90)\n- Prefix structs with schema name (#91)\n- Generate single import for uuid package (#98)\n- Use same import logic for all Go files\n- Pick correct struct to return for queries (#107)\n- Create consistent JSON tags (#110)\n- Add Close method to Queries struct (#127)\n- Ignore empty override settings (#128)\n- Turn SQL comments into Go comments (#136)\n\n### Internal/catalog\n\n- Parse unnamed function arguments (#166)\n\n### Internal/dinosql\n\n- Prepare() with no GoQueries still valid (#95)\n- Fix multiline comment rendering (#142)\n- Dereference alias nodes on walk (#158)\n- Ignore sql-migrate rollbacks (#160)\n- Sort imported packages (#165)\n- Add support for timestamptz (#169)\n- Error on missing queries (#180)\n- Use more database/sql null types (#182)\n- Support the pg_temp schema (#183)\n- Override columns with array type (#184)\n- Implement robust expansion\n- Implement robust expansion (#186)\n- Add COMMENT ON support (#191)\n- Add DATE support\n- Add DATE support (#196)\n- Filter out invalid characters (#198)\n- Quote reserved keywords (#205)\n- Return parser errors first (#207)\n- Implement advisory locks (#212)\n- Error on duplicate query names (#221)\n- Fix incorrect enum names (#223)\n- Add support for numeric types\n- Add support for numeric types (#228)\n\n### Internal/dinosql/testdata/ondeck\n\n- Add Makefile (#156)\n\n### Ondeck\n\n- Move all tests to GitHub CI (#58)\n\n### ParseQuery\n\n- Return either a query or an error (#178)\n\n### Parser\n\n- Use schema when resolving catalog refs (#82)\n- Support function calls in expressions (#104)\n- Correctly handle single files (#119)\n- Return error if missing RETURNING (#131)\n- Add support for mathmatical operators (#132)\n- Add support for simple case expressions (#134)\n- Error on mismatched INSERT input (#135)\n- Set IsArray on joined columns (#139)\n\n### Pg\n\n- Store functions in the catalog (#41)\n- Add location to errors (#73)\n\n<!-- generated by git-cliff -->\n"
  },
  {
    "path": "docs/reference/cli.md",
    "content": "# CLI\n\n```sh\nUsage:\n  sqlc [command]\n\nAvailable Commands:\n  compile     Statically check SQL for syntax and type errors\n  completion  Generate the autocompletion script for the specified shell\n  createdb    Create an ephemeral database\n  diff        Compare the generated files to the existing files\n  generate    Generate source code from SQL\n  help        Help about any command\n  init        Create an empty sqlc.yaml settings file\n  push        Push the schema, queries, and configuration for this project\n  verify      Verify schema, queries, and configuration for this project\n  version     Print the sqlc version number\n  vet         Vet examines queries\n\nFlags:\n  -f, --file string    specify an alternate config file (default: sqlc.yaml)\n  -h, --help           help for sqlc\n      --no-database    disable database connections (default: false)\n      --no-remote      disable remote execution (default: false)\n\nUse \"sqlc [command] --help\" for more information about a command.\n```\n"
  },
  {
    "path": "docs/reference/config.md",
    "content": "# Configuration\n\nThe `sqlc` tool is configured via a `sqlc.(yaml|yml)` or `sqlc.json` file. This\nfile must be in the directory where the `sqlc` command is run.\n\n## Version 2\n\n```yaml\nversion: \"2\"\ncloud:\n  project: \"<PROJECT_ID>\"\nsql:\n- schema: \"postgresql/schema.sql\"\n  queries: \"postgresql/query.sql\"\n  engine: \"postgresql\"\n  gen:\n    go: \n      package: \"authors\"\n      out: \"postgresql\"\n  database:\n    managed: true\n  rules:\n    - sqlc/db-prepare\n- schema: \"mysql/schema.sql\"\n  queries: \"mysql/query.sql\"\n  engine: \"mysql\"\n  gen:\n    go:\n      package: \"authors\"\n      out: \"mysql\"\n```\n\n### sql\n\nEach mapping in the `sql` collection has the following keys:\n\n- `name`:\n  - An human-friendly identifier for this query set. Optional.\n- `engine`:\n  - One of `postgresql`, `mysql` or `sqlite`.\n- `schema`:\n  - Directory of SQL migrations or path to single SQL file; or a list of paths.\n- `queries`:\n  - Directory of SQL queries or path to single SQL file; or a list of paths.\n- `codegen`:\n  - A collection of mappings to configure code generators. See [codegen](#codegen) for the supported keys.\n- `gen`:\n  - A mapping to configure built-in code generators. See [gen](#gen) for the supported keys.\n- `database`:\n  - A mapping to configure database connections. See [database](#database) for the supported keys.\n- `rules`:\n  - A collection of rule names to run via `sqlc vet`. See [rules](#rules) for configuration options.\n- `analyzer`:\n  - A mapping to configure query analysis. See [analyzer](#analyzer) for the supported keys.\n- `strict_function_checks`\n  - If true, return an error if a called SQL function does not exist. Defaults to `false`.\n- `strict_order_by`\n  - If true, return an error if a order by column is ambiguous. Defaults to `true`.\n\n### codegen\n\nThe `codegen` mapping supports the following keys:\n\n- `out`:\n  - Output directory for generated code.\n- `plugin`:\n  - The name of the plugin. Must be defined in the `plugins` collection.\n- `options`:\n  - A mapping of plugin-specific options.\n\n```yaml\nversion: '2'\nplugins:\n- name: py\n  wasm:\n    url: https://github.com/sqlc-dev/sqlc-gen-python/releases/download/v0.16.0-alpha/sqlc-gen-python.wasm\n    sha256: 428476c7408fd4c032da4ec74e8a7344f4fa75e0f98a5a3302f238283b9b95f2\nsql:\n- schema: \"schema.sql\"\n  queries: \"query.sql\"\n  engine: postgresql\n  codegen:\n  - out: src/authors\n    plugin: py\n    options:\n      package: authors\n      emit_sync_querier: true\n      emit_async_querier: true\n      query_parameter_limit: 5\n```\n\n### database\n\nThe `database` mapping supports the following keys:\n\n- `managed`:\n  - If true, connect to a [managed database](../howto/managed-databases.md). Defaults to `false`.\n- `uri`:\n  - Database connection URI\n\nThe `uri` string can contain references to environment variables using the `${...}`\nsyntax. In the following example, the connection string will have the value of\nthe `PG_PASSWORD` environment variable set as its password.\n\n```yaml\nversion: '2'\nsql:\n- schema: schema.sql\n  queries: query.sql\n  engine: postgresql\n  database:\n    uri: postgresql://postgres:${PG_PASSWORD}@localhost:5432/authors\n  gen:\n    go:\n      package: authors\n      out: postgresql\n```\n\n### analyzer\n\nThe `analyzer` mapping supports the following keys:\n\n- `database`:\n  -  If false, do not use the configured database for query analysis. Defaults to `true`.\n  \n### gen\n\nThe `gen` mapping supports the following keys:\n\n#### go\n\n- `package`:\n  - The package name to use for the generated code. Defaults to `out` basename.\n- `out`:\n  - Output directory for generated code.\n- `sql_package`:\n  - Either `pgx/v4`, `pgx/v5` or `database/sql`. Defaults to `database/sql`.\n- `sql_driver`:\n  - Either `github.com/jackc/pgx/v4`, `github.com/jackc/pgx/v5`, `github.com/lib/pq` or `github.com/go-sql-driver/mysql`. No defaults. Required if query annotation `:copyfrom` is used.\n- `emit_db_tags`:\n  - If true, add DB tags to generated structs. Defaults to `false`.\n- `emit_prepared_queries`:\n  - If true, include support for prepared queries. Defaults to `false`.\n- `emit_interface`:\n  - If true, output a `Querier` interface in the generated package. Defaults to `false`.\n- `emit_exact_table_names`:\n  - If true, struct names will mirror table names. Otherwise, sqlc attempts to singularize plural table names. Defaults to `false`.\n- `emit_empty_slices`:\n  - If true, slices returned by `:many` queries will be empty instead of `nil`. Defaults to `false`.\n- `emit_exported_queries`:\n  - If true, autogenerated SQL statement can be exported to be accessed by another package.\n- `emit_json_tags`:\n  - If true, add JSON tags to generated structs. Defaults to `false`.\n- `emit_result_struct_pointers`:\n  - If true, query results are returned as pointers to structs. Queries returning multiple results are returned as slices of pointers. Defaults to `false`.\n- `emit_params_struct_pointers`:\n  - If true, parameters are passed as pointers to structs. Defaults to `false`.\n- `emit_methods_with_db_argument`:\n  - If true, generated methods will accept a DBTX argument instead of storing a DBTX on the `*Queries` struct. Defaults to `false`.\n- `emit_pointers_for_null_types`:\n  - If true, generated types for nullable columns are emitted as pointers (ie. `*string`) instead of `database/sql` null types (ie. `NullString`). Currently only supported for PostgreSQL if `sql_package` is `pgx/v4` or `pgx/v5`, and for SQLite. Defaults to `false`.\n- `emit_enum_valid_method`:\n  - If true, generate a Valid method on enum types,\n    indicating whether a string is a valid enum value.\n- `emit_all_enum_values`:\n  - If true, emit a function per enum type\n    that returns all valid enum values.\n- `emit_sql_as_comment`:\n  - If true, emits the SQL statement as a code-block comment above the generated function, appending to any existing comments. Defaults to `false`.\n- `build_tags`:\n  - If set, add a `//go:build <build_tags>` directive at the beginning of each generated Go file.\n- `initialisms`:\n  - An array of [initialisms](https://google.github.io/styleguide/go/decisions.html#initialisms) to upper-case. For example, `app_id` becomes `AppID`. Defaults to `[\"id\"]`.\n- `json_tags_id_uppercase`:\n  - If true, \"Id\" in json tags will be uppercase. If false, will be camelcase. Defaults to `false`\n- `json_tags_case_style`:\n  - `camel` for camelCase, `pascal` for PascalCase, `snake` for snake_case or `none` to use the column name in the DB. Defaults to `none`.\n- `omit_unused_structs`:\n  - If `true`, sqlc won't generate table and enum structs that aren't used in queries for a given package. Defaults to `false`.\n- `output_batch_file_name`:\n  - Customize the name of the batch file. Defaults to `batch.go`.\n- `output_db_file_name`:\n  - Customize the name of the db file. Defaults to `db.go`.\n- `output_models_file_name`:\n  - Customize the name of the models file. Defaults to `models.go`.\n- `output_querier_file_name`:\n  - Customize the name of the querier file. Defaults to `querier.go`.\n- `output_copyfrom_file_name`:\n  - Customize the name of the copyfrom file. Defaults to `copyfrom.go`.\n- `output_files_suffix`:\n  - If specified the suffix will be added to the name of the generated files.\n- `query_parameter_limit`:\n  - The number of positional arguments that will be generated for Go functions. To always emit a parameter struct, set this to `0`. Defaults to `1`.\n- `rename`:\n  - Customize the name of generated struct fields. See [Renaming fields](../howto/rename.md) for usage information.\n- `overrides`:\n  - A collection of configurations to override sqlc's default Go type choices. See [Overriding types](../howto/overrides.md) for usage information.\n\n##### overrides\n\nSee [Overriding types](../howto/overrides.md) for an in-depth guide to using type overrides.\n\n#### kotlin\n\n> Removed in v1.17.0 and replaced by the [sqlc-gen-kotlin](https://github.com/sqlc-dev/sqlc-gen-kotlin) plugin. Follow the [migration guide](../guides/migrating-to-sqlc-gen-kotlin) to switch.\n\n- `package`:\n  - The package name to use for the generated code.\n- `out`:\n  - Output directory for generated code.\n- `emit_exact_table_names`:\n  - If true, use the exact table name for generated models. Otherwise, guess a singular form. Defaults to `false`.\n\n#### python\n\n> Removed in v1.17.0 and replaced by the [sqlc-gen-python](https://github.com/sqlc-dev/sqlc-gen-python) plugin. Follow the [migration guide](../guides/migrating-to-sqlc-gen-python) to switch.\n\n- `package`:\n  - The package name to use for the generated code.\n- `out`:\n  - Output directory for generated code.\n- `emit_exact_table_names`:\n  - If true, use the exact table name for generated models. Otherwise, guess a singular form. Defaults to `false`.\n- `emit_sync_querier`:\n  - If true, generate a class with synchronous methods. Defaults to `false`.\n- `emit_async_querier`:\n  - If true, generate a class with asynchronous methods. Defaults to `false`.\n- `emit_pydantic_models`:\n  - If true, generate classes that inherit from `pydantic.BaseModel`. Otherwise, define classes using the `dataclass` decorator. Defaults to `false`.\n\n#### json\n\n- `out`:\n  - Output directory for the generated JSON.\n- `filename`:\n  - Filename for the generated JSON document. Defaults to `codegen_request.json`.\n- `indent`:\n  - Indent string to use in the JSON document. Defaults to `  `.\n\n### plugins\n\nEach mapping in the `plugins` collection has the following keys:\n\n- `name`:\n  - The name of this plugin. Required\n- `env`\n  - A list of environment variables to pass to the plugin. By default, no environment variables are passed.\n- `process`: A mapping with a single `cmd` key\n  - `cmd`:\n    - The executable to call when using this plugin\n  - `format`:\n    - The format expected. Supports `json` and `protobuf` formats. Defaults to `protobuf`.\n- `wasm`: A mapping with a two keys `url` and `sha256`\n  - `url`:\n    - The URL to fetch the WASM file. Supports the `https://` or `file://` schemes.\n  - `sha256`\n    - The SHA256 checksum for the downloaded file.\n   \n```yaml\nversion: \"2\"\nplugins:\n- name: \"py\"\n  wasm: \n    url: \"https://github.com/sqlc-dev/sqlc-gen-python/releases/download/v0.16.0-alpha/sqlc-gen-python.wasm\"\n    sha256: \"428476c7408fd4c032da4ec74e8a7344f4fa75e0f98a5a3302f238283b9b95f2\"\n- name: \"js\"\n  env:\n  - PATH\n  process: \n    cmd: \"sqlc-gen-json\"\n```\n\n### rules\n\nEach mapping in the `rules` collection has the following keys:\n\n- `name`:\n  - The name of this rule. Required\n- `rule`:\n  - A [Common Expression Language (CEL)](https://github.com/google/cel-spec) expression. Required.\n- `message`:\n  - An optional message shown when this rule evaluates to `true`.\n\nSee the [vet](../howto/vet.md) documentation for a list of built-in rules and\nhelp writing custom rules.\n   \n```yaml\nversion: \"2\"\nsql:\n  - schema: \"query.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    gen:\n      go:\n        package: \"authors\"\n        out: \"db\"\n    rules:\n      - no-pg\n      - no-delete\n      - only-one-param\n      - no-exec\nrules:\n  - name: no-pg\n    message: \"invalid engine: postgresql\"\n    rule: |\n      config.engine == \"postgresql\"\n  - name: no-delete\n    message: \"don't use delete statements\"\n    rule: |\n      query.sql.contains(\"DELETE\")\n  - name: only-one-param\n    message: \"too many parameters\"\n    rule: |\n      query.params.size() > 1\n  - name: no-exec\n    message: \"don't use exec\"\n    rule: |\n      query.cmd == \"exec\"\n```\n  \n### Global overrides\n\nSometimes, the same configuration must be done across various specifications of\ncode generation.  Then a global definition for type overriding and field\nrenaming can be done using the `overrides` mapping the following manner:\n\n```yaml\nversion: \"2\"\noverrides:\n  go:\n    rename:\n      id: \"Identifier\"\n    overrides:\n      - db_type: \"pg_catalog.timestamptz\"\n        nullable: true\n        engine: \"postgresql\"\n        go_type:\n          import: \"gopkg.in/guregu/null.v4\"\n          package: \"null\"\n          type: \"Time\"\nsql:\n- schema: \"postgresql/schema.sql\"\n  queries: \"postgresql/query.sql\"\n  engine: \"postgresql\"\n  gen:\n    go:\n      package: \"authors\"\n      out: \"postgresql\"\n- schema: \"mysql/schema.sql\"\n  queries: \"mysql/query.sql\"\n  engine: \"mysql\"\n  gen:\n    go:\n      package: \"authors\"\n      out: \"mysql\"\n```\n\nWith the previous configuration, whenever a struct field is generated from a\ntable column that is called `id`, it will generated as `Identifier`.\n\nAlso, whenever there is a nullable `timestamp with time zone` column in a\nPostgres table, it will be generated as `null.Time`.  Note that the mapping for\nglobal type overrides has a field called `engine` that is absent in the regular\ntype overrides. This field is only used when there are multiple definitions\nusing multiple engines. Otherwise, the value of the `engine` key\ndefaults to the engine that is currently being used.\n\nCurrently, type overrides and field renaming, both global and regular, are only\nfully supported in Go.\n\n## Version 1\n\n```yaml\nversion: \"1\"\npackages:\n  - name: \"db\"\n    path: \"internal/db\"\n    queries: \"./sql/query/\"\n    schema: \"./sql/schema/\"\n    engine: \"postgresql\"\n    emit_db_tags: false\n    emit_prepared_queries: true\n    emit_interface: false\n    emit_exact_table_names: false\n    emit_empty_slices: false\n    emit_exported_queries: false\n    emit_json_tags: true\n    emit_result_struct_pointers: false\n    emit_params_struct_pointers: false\n    emit_methods_with_db_argument: false\n    emit_pointers_for_null_types: false\n    emit_enum_valid_method: false\n    emit_all_enum_values: false\n    build_tags: \"some_tag\"\n    json_tags_case_style: \"camel\"\n    omit_unused_structs: false\n    output_batch_file_name: \"batch.go\"\n    output_db_file_name: \"db.go\"\n    output_models_file_name: \"models.go\"\n    output_querier_file_name: \"querier.go\"\n    output_copyfrom_file_name: \"copyfrom.go\"\n    query_parameter_limit: 1\n```\n\n### packages\n\nEach mapping in the `packages` collection has the following keys:\n\n- `name`:\n  - The package name to use for the generated code. Defaults to `path` basename.\n- `path`:\n  - Output directory for generated code.\n- `queries`:\n  - Directory of SQL queries or path to single SQL file; or a list of paths.\n- `schema`:\n  - Directory of SQL migrations or path to single SQL file; or a list of paths.\n- `engine`:\n  - Either `postgresql` or `mysql`. Defaults to `postgresql`.\n- `sql_package`:\n  - Either `pgx/v4`, `pgx/v5` or `database/sql`. Defaults to `database/sql`.\n- `overrides`:\n  - A list of type override configurations. See the [Overriding types](../howto/overrides.md) guide for details.\n- `emit_db_tags`:\n  - If true, add DB tags to generated structs. Defaults to `false`.\n- `emit_prepared_queries`:\n  - If true, include support for prepared queries. Defaults to `false`.\n- `emit_interface`:\n  - If true, output a `Querier` interface in the generated package. Defaults to `false`.\n- `emit_exact_table_names`:\n  - If true, struct names will mirror table names. Otherwise, sqlc attempts to singularize plural table names. Defaults to `false`.\n- `emit_empty_slices`:\n  - If true, slices returned by `:many` queries will be empty instead of `nil`. Defaults to `false`.\n- `emit_exported_queries`:\n  - If true, autogenerated SQL statement can be exported to be accessed by another package.\n- `emit_json_tags`:\n  - If true, add JSON tags to generated structs. Defaults to `false`.\n- `emit_result_struct_pointers`:\n  - If true, query results are returned as pointers to structs. Queries returning multiple results are returned as slices of pointers. Defaults to `false`.\n- `emit_params_struct_pointers`:\n  - If true, parameters are passed as pointers to structs. Defaults to `false`.\n- `emit_methods_with_db_argument`:\n  - If true, generated methods will accept a DBTX argument instead of storing a DBTX on the `*Queries` struct. Defaults to `false`.\n- `emit_pointers_for_null_types`:\n  - If true and `sql_package` is set to `pgx/v4` or `pgx/v5`, generated types for nullable columns are emitted as pointers (ie. `*string`) instead of `database/sql` null types (ie. `NullString`). Defaults to `false`.\n- `emit_enum_valid_method`:\n  - If true, generate a Valid method on enum types,\n    indicating whether a string is a valid enum value.\n- `emit_all_enum_values`:\n  - If true, emit a function per enum type\n    that returns all valid enum values.\n- `build_tags`:\n  - If set, add a `//go:build <build_tags>` directive at the beginning of each generated Go file.\n- `json_tags_case_style`:\n  - `camel` for camelCase, `pascal` for PascalCase, `snake` for snake_case or `none` to use the column name in the DB. Defaults to `none`.\n- `omit_unused_structs`:\n  - If `true`, sqlc won't generate table and enum structs that aren't used in queries for a given package. Defaults to `false`.\n- `output_batch_file_name`:\n  - Customize the name of the batch file. Defaults to `batch.go`.\n- `output_db_file_name`:\n  - Customize the name of the db file. Defaults to `db.go`.\n- `output_models_file_name`:\n  - Customize the name of the models file. Defaults to `models.go`.\n- `output_querier_file_name`:\n  - Customize the name of the querier file. Defaults to `querier.go`.\n- `output_copyfrom_file_name`:\n  - Customize the name of the copyfrom file. Defaults to `copyfrom.go`.\n- `output_files_suffix`:\n  - If specified the suffix will be added to the name of the generated files.\n- `query_parameter_limit`:\n  - Positional arguments that will be generated in Go functions (`>= 0`). To always emit a parameter struct, you would need to set it to `0`. Defaults to `1`.\n\n### overrides\n\nSee the version 1 configuration section of the [Overriding types](../howto/overrides.md#version-1-configuration) guide for details.\n\n### rename\n\nStruct field names are generated from column names using a simple algorithm:\nsplit the column name on underscores and capitalize the first letter of each\npart.\n\n```\naccount     -> Account\nspotify_url -> SpotifyUrl\napp_id      -> AppID\n```\n\nIf you're not happy with a field's generated name, use the `rename` mapping\nto pick a new name. The keys are column names and the values are the struct\nfield name to use.\n\n```yaml\nversion: \"1\"\npackages: [...]\nrename:\n  spotify_url: \"SpotifyURL\"\n```\n"
  },
  {
    "path": "docs/reference/datatypes.md",
    "content": "# Datatypes\n\n`sqlc` attempts to make reasonable default choices when mapping internal\ndatabase types to Go types. Choices for more complex types are described below.\n\nIf you're unsatisfied with the default, you can override any type using the\n[overrides list](config.md#overrides) in your `sqlc` config file.\n\n## Arrays\n\nPostgreSQL [arrays](https://www.postgresql.org/docs/current/arrays.html) are\nmaterialized as Go slices.\n\n```sql\nCREATE TABLE places (\n  name text   not null,\n  tags text[]\n);\n```\n\n```go\npackage db\n\ntype Place struct {\n\tName string\n\tTags []string\n}\n```\n\n## Dates and times\n\nAll date and time types are returned as `time.Time` structs. For\nnull time or date values, the `NullTime` type from `database/sql` is used.\n\nThe `pgx/v5` sql package uses the appropriate pgx types.\n\nFor MySQL users relying on `github.com/go-sql-driver/mysql`, ensure that\n`parseTime=true` is added to your database connection string.\n\n```sql\nCREATE TABLE authors (\n  id         SERIAL    PRIMARY KEY,\n  created_at timestamp NOT NULL DEFAULT NOW(),\n  updated_at timestamp\n);\n```\n\n```go\npackage db\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype Author struct {\n\tID        int\n\tCreatedAt time.Time\n\tUpdatedAt sql.NullTime\n}\n```\n\n## Enums\n\nPostgreSQL [enums](https://www.postgresql.org/docs/current/datatype-enum.html) are\nmapped to an aliased string type.\n\n```sql\nCREATE TYPE status AS ENUM (\n  'open',\n  'closed'\n);\n\nCREATE TABLE stores (\n  name   text    PRIMARY KEY,\n  status status  NOT NULL\n);\n```\n\n```go\npackage db\n\ntype Status string\n\nconst (\n\tStatusOpen   Status = \"open\"\n\tStatusClosed Status = \"closed\"\n)\n\ntype Store struct {\n\tName   string\n\tStatus Status\n}\n```\n\n## Null\n\nFor structs, null values are represented using the appropriate type from the\n`database/sql` or `pgx` package.\n\n```sql\nCREATE TABLE authors (\n  id   SERIAL PRIMARY KEY,\n  name text   NOT NULL,\n  bio  text\n);\n```\n\n```go\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int\n\tName string\n\tBio  sql.NullString\n}\n```\n\n## UUIDs\n\nThe Go standard library does not come with a `uuid` package. For UUID support,\nsqlc uses the excellent `github.com/google/uuid` package. The pgx/v5 sql package uses `pgtype.UUID`.\n\n```sql\nCREATE TABLE records (\n  id   uuid PRIMARY KEY\n);\n```\n\n```go\npackage db\n\nimport (\n\t\"github.com/google/uuid\"\n)\n\ntype Author struct {\n\tID uuid.UUID\n}\n```\n\nFor MySQL, there is no native `uuid` data type. When using `UUID_TO_BIN` to store a `UUID()`, the underlying field type is `BINARY(16)` which by default sqlc would map to `sql.NullString`. To have sqlc automatically convert these fields to a `uuid.UUID` type, use an overide on the column storing the `uuid`\n(see [Overriding types](../howto/overrides.md) for details).\n\n```json\n{\n  \"overrides\": [\n    {\n      \"column\": \"*.uuid\",\n      \"go_type\": \"github.com/google/uuid.UUID\"\n    }\n  ]\n}\n```\n\n## JSON\n\nBy default, sqlc will generate the `[]byte`, `pgtype.JSON` or `json.RawMessage` for JSON column type.\nBut if you use the `pgx/v5` sql package then you can specify a struct instead of the default type\n(see [Overriding types](../howto/overrides.md) for details).\nThe `pgx` implementation will marshal/unmarshal the struct automatically.\n\n```go\npackage dto\n\ntype BookData struct {\n\tGenres    []string `json:\"genres\"`\n\tTitle     string   `json:\"title\"`\n\tPublished bool     `json:\"published\"`\n}\n```\n\n```sql\nCREATE TABLE books (\n  data jsonb\n);\n```\n\n```json\n{\n  \"overrides\": [\n    {\n      \"column\": \"books.data\",\n      \"go_type\": {\n        \"import\":\"example.com/db\",\n        \"package\": \"dto\",\n        \"type\":\"BookData\",\n        \"pointer\": true\n      }\n    }\n  ]\n}\n```\n\n```go\npackage db\n\nimport (\n\t\"example.com/db/dto\"\n)\n\ntype Book struct {\n    Data *dto.BookData\n}\n```\n\n## TEXT\n\nIn PostgreSQL, when you have a column with the TEXT type, sqlc will map it to a Go string by default. This default mapping applies to `TEXT` columns that are not nullable. However, for nullable `TEXT` columns, sqlc maps them to `pgtype.Text` when using the pgx/v5 driver. This distinction is crucial for developers looking to handle null values appropriately in their Go applications.\n\nTo accommodate nullable strings and map them to `*string` in Go, you can use the `emit_pointers_for_null_types` option in your sqlc configuration. This option ensures that nullable SQL columns are represented as pointer types in Go, allowing for a clear distinction between null and non-null values. Another way to do this is by passing the option `pointer: true` when you are overriding the `TEXT` datatype in your sqlc config file (see [Overriding types](../howto/overrides.md) for details).\n\n## Geometry\n\n### PostGIS\n\n#### Using `github.com/twpayne/go-geos` (pgx/v5 only)\n\nsqlc can be configured to use the [geos](https://github.com/twpayne/go-geos)\npackage for working with PostGIS geometry types in [GEOS](https://libgeos.org/).\n\nThere are three steps:\n\n1. Configure sqlc to use `*github.com/twpayne/go-geos.Geom` for geometry types (see [Overriding types](../howto/overrides.md) for details).\n2. Call `github.com/twpayne/pgx-geos.Register` on each\n   `*github.com/jackc/pgx/v5.Conn`.\n3. Annotate your SQL with `::geometry` typecasts, if needed.\n\n```sql\n-- Multipolygons in British National Grid (epsg:27700)\ncreate table shapes(\n  id serial,\n  name varchar,\n  geom geometry(Multipolygon, 27700)\n);\n\n-- name: GetCentroids :many\nSELECT id, name, ST_Centroid(geom)::geometry FROM shapes;\n```\n\n```json\n{\n  \"version\": 2,\n  \"gen\": {\n    \"go\": {\n      \"overrides\": [\n        {\n          \"db_type\": \"geometry\",\n          \"go_type\": {\n            \"import\": \"github.com/twpayne/go-geos\",\n            \"package\": \"geos\",\n            \"pointer\": true,\n            \"type\": \"Geom\"\n          },\n          \"nullable\": true\n        }\n      ]\n    }\n  }\n}\n```\n\n```go\nimport (\n    \"github.com/twpayne/go-geos\"\n    pgxgeos \"github.com/twpayne/pgx-geos\"\n)\n\n// ...\n\nconfig.AfterConnect = func(ctx context.Context, conn *pgx.Conn) error {\n    if err := pgxgeos.Register(ctx, conn, geos.NewContext()); err != nil {\n        return err\n    }\n    return nil\n}\n```\n\n\n#### Using `github.com/twpayne/go-geom`\n\nsqlc can be configured to use the [geom](https://github.com/twpayne/go-geom)\npackage for working with PostGIS geometry types. See [Overriding types](../howto/overrides.md) for more information.\n\n```sql\n-- Multipolygons in British National Grid (epsg:27700)\ncreate table shapes(\n  id serial,\n  name varchar,\n  geom geometry(Multipolygon, 27700)\n);\n\n-- name: GetShapes :many\nSELECT * FROM shapes;\n```\n\n```json\n{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"db\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"query.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ],\n  \"overrides\": [\n    {\n      \"db_type\": \"geometry\",\n      \"go_type\": \"github.com/twpayne/go-geom.MultiPolygon\"\n    },\n    {\n      \"db_type\": \"geometry\",\n      \"go_type\": \"github.com/twpayne/go-geom.MultiPolygon\",\n      \"nullable\": true\n    }\n  ]\n}\n```\n"
  },
  {
    "path": "docs/reference/environment-variables.md",
    "content": "# Environment variables\n\n## SQLCEXPERIMENT\n\nThe `SQLCEXPERIMENT` variable controls experimental features within sqlc. It is\na comma-separated list of experiment names. This is modeled after Go's\n[GOEXPERIMENT](https://pkg.go.dev/internal/goexperiment) environment variable.\n\nExperiment names can be prefixed with `no` to explicitly disable them.\n\n```\nSQLCEXPERIMENT=foo,bar      # enable foo and bar experiments\nSQLCEXPERIMENT=nofoo        # explicitly disable foo experiment\nSQLCEXPERIMENT=foo,nobar    # enable foo, disable bar\n```\n\nCurrently, no experiments are defined. Experiments will be documented here as\nthey are introduced.\n\n## SQLCCACHE\n\nThe `SQLCCACHE` environment variable dictates where `sqlc` will store cached\nWASM-based plugins and modules. By default `sqlc` follows the [XDG Base\nDirectory\nSpecification](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html).\n\n## SQLCDEBUG\n\nThe `SQLCDEBUG` variable controls debugging variables within the runtime. It is\na comma-separated list of name=val pairs settings.\n\n### dumpast\n\nThe `dumpast` command shows the SQL AST that was generated by the parser. Note\nthat this is the generic SQL AST, not the engine-specific SQL AST.\n\n```\nSQLCDEBUG=dumpast=1\n```\n\n```\n([]interface {}) (len=1 cap=1) {\n (*catalog.Catalog)(0xc0004f48c0)({\n  Comment: (string) \"\",\n  DefaultSchema: (string) (len=6) \"public\",\n  Name: (string) \"\",\n  Schemas: ([]*catalog.Schema) (len=3 cap=4) {\n   (*catalog.Schema)(0xc0004f4930)({\n    Name: (string) (len=6) \"public\",\n    Tables: ([]*catalog.Table) (len=1 cap=1) {\n     (*catalog.Table)(0xc00052ff20)({\n      Rel: (*ast.TableName)(0xc00052fda0)({\n       Catalog: (string) \"\",\n       Schema: (string) \"\",\n       Name: (string) (len=7) \"authors\"\n      }),\n```\n\n### dumpcatalog\n\nThe `dumpcatalog` command outputs the entire catalog. If you're using MySQL or\nPostgreSQL, this can be a bit overwhelming. Expect this output to change in\nfuture versions.\n\n```\nSQLCDEBUG=dumpcatalog=1\n```\n\n```\n([]interface {}) (len=1 cap=1) {\n (*catalog.Catalog)(0xc00050d1f0)({\n  Comment: (string) \"\",\n  DefaultSchema: (string) (len=6) \"public\",\n  Name: (string) \"\",\n  Schemas: ([]*catalog.Schema) (len=3 cap=4) {\n   (*catalog.Schema)(0xc00050d260)({\n    Name: (string) (len=6) \"public\",\n    Tables: ([]*catalog.Table) (len=1 cap=1) {\n     (*catalog.Table)(0xc0000c0840)({\n      Rel: (*ast.TableName)(0xc0000c06c0)({\n       Catalog: (string) \"\",\n       Schema: (string) \"\",\n       Name: (string) (len=7) \"authors\"\n      }),\n```\n\n### trace\n\nThe `trace` command is helpful for tracking down performance issues.\n\n`SQLCDEBUG=trace=1`\n\nBy default, the trace output is written to `trace.out` in the current working\ndirectory. You can configure a different path if needed.\n\n`SQLCDEBUG=trace=name.out`\n\nView the execution trace using the Go `trace` tool.\n\n```\ngo tool trace trace.out\n```\n\nThere's a ton of different views for the trace output, but here's an example\nlog showing the execution time for each package.\n\n```\n0.000043897 \t .         \t1 \ttask sqlc (id 1, parent 0) created\n0.000144923 \t .   101026 \t1 \tregion generate started (duration: 47.619781ms)\n0.001048975 \t .   904052 \t1 \tregion package started (duration: 14.588456ms)\n0.001054616 \t .     5641 \t1 \tname=authors dir=/Users/kyle/projects/sqlc/examples/python language=python\n0.001071257 \t .    16641 \t1 \tregion parse started (duration: 7.966549ms)\n0.009043960 \t .  7972703 \t1 \tregion codegen started (duration: 6.587086ms)\n0.009171704 \t .   127744 \t1 \tnew goroutine 35: text/template/parse.lex·dwrap·1\n0.010361654 \t .  1189950 \t1 \tnew goroutine 36: text/template/parse.lex·dwrap·1\n0.015641815 \t .  5280161 \t1 \tregion package started (duration: 10.904938ms)\n0.015644943 \t .     3128 \t1 \tname=booktest dir=/Users/kyle/projects/sqlc/examples/python language=python\n0.015647431 \t .     2488 \t1 \tregion parse started (duration: 4.207749ms)\n0.019860308 \t .  4212877 \t1 \tregion codegen started (duration: 6.681624ms)\n0.020028488 \t .   168180 \t1 \tnew goroutine 37: text/template/parse.lex·dwrap·1\n0.021020310 \t .   991822 \t1 \tnew goroutine 8: text/template/parse.lex·dwrap·1\n0.026551163 \t .  5530853 \t1 \tregion package started (duration: 9.217294ms)\n0.026554368 \t .     3205 \t1 \tname=jets dir=/Users/kyle/projects/sqlc/examples/python language=python\n0.026556804 \t .     2436 \t1 \tregion parse started (duration: 3.491005ms)\n0.030051911 \t .  3495107 \t1 \tregion codegen started (duration: 5.711931ms)\n0.030213937 \t .   162026 \t1 \tnew goroutine 20: text/template/parse.lex·dwrap·1\n0.031099938 \t .   886001 \t1 \tnew goroutine 38: text/template/parse.lex·dwrap·1\n0.035772637 \t .  4672699 \t1 \tregion package started (duration: 10.267039ms)\n0.035775688 \t .     3051 \t1 \tname=ondeck dir=/Users/kyle/projects/sqlc/examples/python language=python\n0.035778150 \t .     2462 \t1 \tregion parse started (duration: 4.094518ms)\n0.039877181 \t .  4099031 \t1 \tregion codegen started (duration: 6.156341ms)\n0.040010771 \t .   133590 \t1 \tnew goroutine 39: text/template/parse.lex·dwrap·1\n0.040894567 \t .   883796 \t1 \tnew goroutine 40: text/template/parse.lex·dwrap·1\n0.046042779 \t .  5148212 \t1 \tregion writefiles started (duration: 1.718259ms)\n0.047767781 \t .  1725002 \t1 \ttask end\n```\n\n### processplugins\n\nSetting this value to `0` disables process-based plugins. If a process-based\nplugin is declared in the configuration file, running any `sqlc` command will\nreturn an error.\n\n`SQLCDEBUG=processplugins=0`\n\n### dumpvetenv\n\nThe `dumpvetenv` command prints the variables available to a `sqlc vet` rule\nduring evaluation.\n\n`SQLCDEBUG=dumpvetenv=1`\n\n### dumpexplain\n\nThe `dumpexplain` command prints the JSON-formatted result from running\n`EXPLAIN ...` on a query when a `sqlc vet` rule evaluation requires its output.\n\n`SQLCDEBUG=dumpexplain=1`\n\n## SQLCTMPDIR\n\nIf specified, use the given directory as the base for temporary folders. Only\napplies when using WASM-based codegen plugins. When not specified, this\ndefaults to passing an empty string to\n[`os.MkdirTemp`](https://pkg.go.dev/os#MkdirTemp).\n"
  },
  {
    "path": "docs/reference/language-support.rst",
    "content": "Database and language support\n#############################\n\n==========  =======================  ============  ============  ===============\nLanguage    Plugin                   MySQL         PostgreSQL    SQLite\n==========  =======================  ============  ============  ===============\nGo          (built-in)               Stable        Stable        Beta\nGo          `sqlc-gen-go`_           Stable        Stable        Beta\nKotlin      `sqlc-gen-kotlin`_       Beta          Beta          Not implemented\nPython      `sqlc-gen-python`_       Beta          Beta          Not implemented\nTypeScript  `sqlc-gen-typescript`_   Beta          Beta          Not implemented\n==========  =======================  ============  ============  ===============\n\nCommunity language support\n**************************\n\nNew languages can be added via :doc:`plugins <../guides/plugins>`.\n\n========  ==================================  ===============  ===============  ===============\nLanguage  Plugin                              MySQL            PostgreSQL       SQLite\n========  ==================================  ===============  ===============  ===============\nC#        `DaredevilOSS/sqlc-gen-csharp`_     Stable           Stable           Stable\nF#        `kaashyapan/sqlc-gen-fsharp`_       N/A              Beta             Beta\nJava      `tandemdude/sqlc-gen-java`_         Beta             Beta             N/A \nPHP       `lcarilla/sqlc-plugin-php-dbal`_    Beta             N/A              N/A    \nRuby      `DaredevilOSS/sqlc-gen-ruby`_       Beta             Beta             Beta           \nZig       `tinyzimmer/sqlc-gen-zig`_          N/A              Beta             Beta            \nPython    `rayakame/sqlc-gen-better-python`_  N/A              Beta             Beta          \n[Any]     `fdietze/sqlc-gen-from-template`_   Stable           Stable           Stable\n========  ==================================  ===============  ===============  ===============\n\nPlugins developed by our Community can also be found using our `github topic`_.\n\nCommunity projects\n******************\n\n========  =================================  ===============  ===============  ===============\nLanguage  Project                            MySQL            PostgreSQL       SQLite\n========  =================================  ===============  ===============  ===============\nGleam     `daniellionel01/parrot`_           Stable           Stable           Stable\n========  =================================  ===============  ===============  ===============\n\n.. _sqlc-gen-go: https://github.com/sqlc-dev/sqlc-gen-go\n.. _kaashyapan/sqlc-gen-fsharp: https://github.com/kaashyapan/sqlc-gen-fsharp\n.. _sqlc-gen-kotlin: https://github.com/sqlc-dev/sqlc-gen-kotlin\n.. _sqlc-gen-python: https://github.com/sqlc-dev/sqlc-gen-python\n.. _sqlc-gen-typescript: https://github.com/sqlc-dev/sqlc-gen-typescript\n.. _DaredevilOSS/sqlc-gen-csharp: https://github.com/DaredevilOSS/sqlc-gen-csharp\n.. _DaredevilOSS/sqlc-gen-ruby: https://github.com/DaredevilOSS/sqlc-gen-ruby\n.. _fdietze/sqlc-gen-from-template: https://github.com/fdietze/sqlc-gen-from-template\n.. _lcarilla/sqlc-plugin-php-dbal: https://github.com/lcarilla/sqlc-plugin-php-dbal\n.. _tandemdude/sqlc-gen-java: https://github.com/tandemdude/sqlc-gen-java\n.. _tinyzimmer/sqlc-gen-zig: https://github.com/tinyzimmer/sqlc-gen-zig\n.. _daniellionel01/parrot: https://github.com/daniellionel01/parrot\n.. _rayakame/sqlc-gen-better-python: https://github.com/rayakame/sqlc-gen-better-python\n.. _github topic: https://github.com/topics/sqlc-plugin\n"
  },
  {
    "path": "docs/reference/macros.md",
    "content": "# Macros\n\n## `sqlc.arg`\n\nAttach a name to a parameter in a SQL query. This macro expands to an\nengine-specific parameter placeholder. The name of the parameter is noted and\nused during code generation.\n\n```sql\n-- name: GetAuthorByName :one\nSELECT *\nFROM authors\nWHERE lower(name) = sqlc.arg(name);\n\n-- >>> EXPANDS TO >>>\n\n-- name: GetAuthorByName :one\nSELECT *\nFROM authors\nWHERE lower(name) = ?;\n```\n\nSee more examples in [Naming parameters](../howto/named_parameters).\n\n## `sqlc.embed`\n\nEmbedding allows you to reuse existing model structs in more queries, resulting\nin less manual serialization work. First, imagine we have the following schema\nwith students and test scores.\n\n```sql\nCREATE TABLE students (\n  id   bigserial PRIMARY KEY,\n  name text,\n  age  integer\n);\n\nCREATE TABLE test_scores (\n  student_id bigint,\n  score integer,\n  grade text\n);\n```\n\n```sql\n-- name: GetStudentAndScore :one\nSELECT sqlc.embed(students), sqlc.embed(test_scores)\nFROM students\nJOIN test_scores ON test_scores.student_id = students.id\nWHERE students.id = $1;\n\n-- >>> EXPANDS TO >>>\n\n-- name: GetStudentAndScore :one\nSELECT students.*, test_scores.*\nFROM students\nJOIN test_scores ON test_scores.student_id = students.id\nWHERE students.id = $1;\n```\n\nThe Go method will return a struct with a field for the `Student` and field for\nthe test `TestScore` instead of each column existing on the struct.\n\n```go\ntype GetStudentAndScoreRow struct {\n\tStudent   Student\n\tTestScore TestScore\n}\n\nfunc (q *Queries) GetStudentAndScore(ctx context.Context, id int64) (GetStudentAndScoreRow, error) {\n    // ...\n}\n```\n\nSee a full example in [Embedding structs](../howto/embedding).\n\n## `sqlc.narg`\n\nThe same as `sqlc.arg`, but always marks the parameter as nullable.\n\n```sql\n-- name: GetAuthorByName :one\nSELECT *\nFROM authors\nWHERE lower(name) = sqlc.narg(name);\n\n-- >>> EXPANDS TO >>>\n\n-- name: GetAuthorByName :one\nSELECT *\nFROM authors\nWHERE LOWER(name) = ?;\n```\n\nSee more examples in [Naming parameters](../howto/named_parameters).\n\n## `sqlc.slice`\n\nFor drivers that do not support passing slices to the IN operator, the\n`sqlc.slice` macro generates a dynamic query at runtime with the correct\nnumber of parameters.\n\n```sql\n/* name: SelectStudents :many */\nSELECT * FROM students \nWHERE age IN (sqlc.slice(\"ages\"))\n\n-- >>> EXPANDS TO >>>\n\n/* name: SelectStudents :many */\nSELECT id, name, age FROM authors \nWHERE age IN (/*SLICE:ages*/?)\n```\n\nSince the `/*SLICE:ages*/` placeholder is dynamically replaced on a per-query\nbasis, this macro can't be used with prepared statements.\n\nSee a full example in [Passing a slice as a parameter to a\nquery](../howto/select.md#mysql-and-sqlite).\n"
  },
  {
    "path": "docs/reference/query-annotations.md",
    "content": "# Query annotations\n\nsqlc requires each query to have a small comment indicating the name and\ncommand. The format of this comment is as follows:\n\n```sql\n-- name: <name> <command>\n```\n\n## `:exec`\n\nThe generated method will return the error from\n[ExecContext](https://golang.org/pkg/database/sql/#DB.ExecContext).\n\n```sql\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n```\n\n```go\nfunc (q *Queries) DeleteAuthor(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthor, id)\n\treturn err\n}\n```\n\n## `:execresult`\n\nThe generated method will return the [sql.Result](https://golang.org/pkg/database/sql/#Result) returned by\n[ExecContext](https://golang.org/pkg/database/sql/#DB.ExecContext).\n\n```sql\n-- name: DeleteAllAuthors :execresult\nDELETE FROM authors;\n```\n\n```go\nfunc (q *Queries) DeleteAllAuthors(ctx context.Context) (sql.Result, error) {\n\treturn q.db.ExecContext(ctx, deleteAllAuthors)\n}\n```\n\n## `:execrows`\n\nThe generated method will return the number of affected rows from the\n[result](https://golang.org/pkg/database/sql/#Result) returned by\n[ExecContext](https://golang.org/pkg/database/sql/#DB.ExecContext).\n\n```sql\n-- name: DeleteAllAuthors :execrows\nDELETE FROM authors;\n```\n\n```go\nfunc (q *Queries) DeleteAllAuthors(ctx context.Context) (int64, error) {\n\t_, err := q.db.ExecContext(ctx, deleteAllAuthors)\n\t// ...\n}\n```\n\n## `:execlastid`\n\nThe generated method will return the number generated by the database from the\n[result](https://golang.org/pkg/database/sql/#Result) returned by\n[ExecContext](https://golang.org/pkg/database/sql/#DB.ExecContext).\n\n```sql\n-- name: InsertAuthor :execlastid\nINSERT INTO authors (name) VALUES (?);\n```\n\n```go\nfunc (q *Queries) InsertAuthor(ctx context.Context, name string) (int64, error) {\n\t_, err := q.db.ExecContext(ctx, insertAuthor, name)\n\t// ...\n}\n```\n\n## `:many`\n\nThe generated method will return a slice of records via\n[QueryContext](https://golang.org/pkg/database/sql/#DB.QueryContext).\n\n```sql\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n```\n\n```go\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\t// ...\n}\n```\n\n## `:one`\n\nThe generated method will return a single record via\n[QueryRowContext](https://golang.org/pkg/database/sql/#DB.QueryRowContext).\n\n```sql\n-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n```\n\n```go\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\t// ...\n}\n```\n\n## `:batchexec`\n\n__NOTE: This command only works with PostgreSQL using the `pgx/v4` and `pgx/v5` drivers and outputting Go code.__\n\nThe generated method will return a batch object. The batch object will have\nthe following methods:\n- `Exec`, that takes a `func(int, error)` parameter,\n- `Close`, to close the batch operation early.\n\n```sql\n-- name: DeleteBook :batchexec\nDELETE FROM books\nWHERE book_id = $1;\n```\n\n```go\ntype DeleteBookBatchResults struct {\n\tbr  pgx.BatchResults\n\tind int\n}\n\nfunc (q *Queries) DeleteBook(ctx context.Context, bookID []int32) *DeleteBookBatchResults {\n\t//...\n}\nfunc (b *DeleteBookBatchResults) Exec(f func(int, error)) {\n\t//...\n}\nfunc (b *DeleteBookBatchResults) Close() error {\n\t//...\n}\n```\n\n## `:batchmany`\n\n__NOTE: This command only works with PostgreSQL using the `pgx/v4` and `pgx/v5` drivers and outputting Go code.__\n\nThe generated method will return a batch object. The batch object will have\nthe following methods:\n- `Query`, that takes a `func(int, []T, error)` parameter, where `T` is your query's return type\n- `Close`, to close the batch operation early.\n\n```sql\n-- name: BooksByTitleYear :batchmany\nSELECT * FROM books\nWHERE title = $1 AND year = $2;\n```\n\n```go\ntype BooksByTitleYearBatchResults struct {\n\tbr  pgx.BatchResults\n\tind int\n}\ntype BooksByTitleYearParams struct {\n\tTitle string `json:\"title\"`\n\tYear  int32  `json:\"year\"`\n}\n\nfunc (q *Queries) BooksByTitleYear(ctx context.Context, arg []BooksByTitleYearParams) *BooksByTitleYearBatchResults {\n\t//...\n}\nfunc (b *BooksByTitleYearBatchResults) Query(f func(int, []Book, error)) {\n\t//...\n}\nfunc (b *BooksByTitleYearBatchResults) Close() error {\n\t//...\n}\n```\n\n## `:batchone`\n\n__NOTE: This command only works with PostgreSQL using the `pgx/v4` and `pgx/v5` drivers and outputting Go code.__\n\nThe generated method will return a batch object. The batch object will have\nthe following methods:\n- `QueryRow`, that takes a `func(int, T, error)` parameter, where `T` is your query's return type\n- `Close`, to close the batch operation early.\n\n```sql\n-- name: CreateBook :batchone\nINSERT INTO books (\n    author_id,\n    isbn\n) VALUES (\n    $1,\n    $2\n)\nRETURNING book_id, author_id, isbn\n```\n\n```go\ntype CreateBookBatchResults struct {\n\tbr  pgx.BatchResults\n\tind int\n}\ntype CreateBookParams struct {\n\tAuthorID int32  `json:\"author_id\"`\n\tIsbn     string `json:\"isbn\"`\n}\n\nfunc (q *Queries) CreateBook(ctx context.Context, arg []CreateBookParams) *CreateBookBatchResults {\n\t//...\n}\nfunc (b *CreateBookBatchResults) QueryRow(f func(int, Book, error)) {\n\t//...\n}\nfunc (b *CreateBookBatchResults) Close() error {\n\t//...\n}\n```\n\n## `:copyfrom`\n\n__NOTE: This command is driver and package specific, see [how to insert](../howto/insert.md#using-copyfrom)\n\nThis command is used to insert rows a lot faster than sequential inserts.\n"
  },
  {
    "path": "docs/requirements.txt",
    "content": "Babel==2.17.0\nJinja2==3.1.6\nMarkupSafe==3.0.3\nPygments==2.19.2\nSphinx==7.4.7\ncertifi==2026.1.4\nchardet==5.2.0\ncommonmark==0.9.1\ndocutils==0.20.1\nidna==3.11\nimagesize==1.4.1\nmyst-parser==4.0.1 \npackaging==25.0\npyparsing==3.3.1\npytz==2025.2\nrequests==2.32.5\nsnowballstemmer==3.0.1\nsphinx-favicon==1.0.1\nsphinx-rtd-theme==3.0.2\nsphinxcontrib-applehelp==2.0.0\nsphinxcontrib-devhelp==2.0.0\nsphinxcontrib-htmlhelp==2.1.0\nsphinxcontrib-jsmath==1.0.1\nsphinxcontrib-qthelp==2.0.0\nsphinxcontrib-serializinghtml==2.0.0\nsphinxext-rediraffe==0.3.0\nurllib3==2.6.2\n"
  },
  {
    "path": "docs/tutorials/getting-started-mysql.md",
    "content": "# Getting started with MySQL\n\nThis tutorial assumes that the latest version of sqlc is\n[installed](../overview/install.md) and ready to use.\n\nWe'll generate Go code here, but other\n[language plugins](../reference/language-support.rst) are available. You'll\nnaturally need the Go toolchain if you want to build and run a program with the\ncode sqlc generates, but sqlc itself has no dependencies.\n\nAt the end, you'll push your SQL queries to [sqlc Cloud](https://dashboard.sqlc.dev/) for further insights and analysis.\n\n## Setting up\n\nCreate a new directory called `sqlc-tutorial` and open it up.\n\nInitialize a new Go module named `tutorial.sqlc.dev/app`\n\n```shell\ngo mod init tutorial.sqlc.dev/app\n```\n\nsqlc looks for either a `sqlc.(yaml|yml)` or `sqlc.json` file in the current\ndirectory. In our new directory, create a file named `sqlc.yaml` with the\nfollowing contents:\n\n```yaml\nversion: \"2\"\nsql:\n  - engine: \"mysql\"\n    queries: \"query.sql\"\n    schema: \"schema.sql\"\n    gen:\n      go:\n        package: \"tutorial\"\n        out: \"tutorial\"\n```\n\n## Schema and queries\n\nsqlc needs to know your database schema and queries in order to generate code.\nIn the same directory, create a file named `schema.sql` with the following\ncontent:\n\n```sql\nCREATE TABLE authors (\n  id   BIGINT  NOT NULL AUTO_INCREMENT PRIMARY KEY,\n  name text    NOT NULL,\n  bio  text\n);\n```\n\nNext, create a `query.sql` file with the following four queries:\n\n```sql\n-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = ? LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :execresult\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  ?, ?\n);\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = ?;\n```\n\n## Generating code\n\nYou are now ready to generate code. You shouldn't see any output when you run\nthe `generate` subcommand, unless something goes wrong:\n\n```shell\nsqlc generate\n```\n\nYou should now have a `tutorial` subdirectory with three files containing Go\nsource code. These files comprise a Go package named `tutorial`:\n\n```\n├── go.mod\n├── query.sql\n├── schema.sql\n├── sqlc.yaml\n└── tutorial\n    ├── db.go\n    ├── models.go\n    └── query.sql.go\n```\n\n## Using generated code\n\nYou can use your newly-generated `tutorial` package from any Go program.\nCreate a file named `tutorial.go` and add the following contents:\n\n```go\npackage main\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"log\"\n\t\"reflect\"\n\n\t_ \"github.com/go-sql-driver/mysql\"\n\n\t\"tutorial.sqlc.dev/app/tutorial\"\n)\n\nfunc run() error {\n\tctx := context.Background()\n\n\tdb, err := sql.Open(\"mysql\", \"user:password@/dbname?parseTime=true\")\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tqueries := tutorial.New(db)\n\n\t// list all authors\n\tauthors, err := queries.ListAuthors(ctx)\n\tif err != nil {\n\t\treturn err\n\t}\n\tlog.Println(authors)\n\n\t// create an author\n\tresult, err := queries.CreateAuthor(ctx, tutorial.CreateAuthorParams{\n\t\tName: \"Brian Kernighan\",\n\t\tBio:  sql.NullString{String: \"Co-author of The C Programming Language and The Go Programming Language\", Valid: true},\n\t})\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tinsertedAuthorID, err := result.LastInsertId()\n\tif err != nil {\n\t\treturn err\n\t}\n\tlog.Println(insertedAuthorID)\n\n\t// get the author we just inserted\n\tfetchedAuthor, err := queries.GetAuthor(ctx, insertedAuthorID)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// prints true\n\tlog.Println(reflect.DeepEqual(insertedAuthorID, fetchedAuthor.ID))\n\treturn nil\n}\n\nfunc main() {\n\tif err := run(); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n```\n\nBefore this code will compile you'll need to fetch the relevant MySQL driver:\n\n```shell\ngo get github.com/go-sql-driver/mysql\ngo build ./...\n```\n\nThe program should compile without errors. To make that possible, sqlc generates\nreadable, **idiomatic** Go code that you otherwise would've had to write\nyourself. Take a look in `tutorial/query.sql.go`.\n\nOf course for this program to run successfully you'll need\nto compile after replacing the database connection parameters in the call to\n`sql.Open()` with the correct parameters for your database. And your\ndatabase must have the `authors` table as defined in `schema.sql`.\n\nYou should now have a working program using sqlc's generated Go source code,\nand hopefully can see how you'd use sqlc in your own real-world applications.\n\n## Query verification\n\n[sqlc Cloud](https://dashboard.sqlc.dev) provides additional verification, catching subtle bugs. To get started, create a\n[dashboard account](https://dashboard.sqlc.dev). Once you've signed in, create a\nproject and generate an auth token. Add your project's ID to the `cloud` block\nto your sqlc.yaml.\n\n\n```yaml\nversion: \"2\"\ncloud:\n  # Replace <PROJECT_ID> with your project ID from the sqlc Cloud dashboard\n  project: \"<PROJECT_ID>\"\nsql:\n  - engine: \"mysql\"\n    queries: \"query.sql\"\n    schema: \"schema.sql\"\n    gen:\n      go:\n        package: \"tutorial\"\n        out: \"tutorial\"\n```\n\nReplace `<PROJECT_ID>` with your project ID from the sqlc Cloud dashboard. It\nwill look something like `01HA8SZH31HKYE9RR3N3N3TSJM`.\n\nAnd finally, set the `SQLC_AUTH_TOKEN` environment variable:\n\n```shell\nexport SQLC_AUTH_TOKEN=\"<your sqlc auth token>\"\n```\n\n```shell\n$ sqlc push --tag tutorial\n```\n"
  },
  {
    "path": "docs/tutorials/getting-started-postgresql.md",
    "content": "# Getting started with PostgreSQL\n\nThis tutorial assumes that the latest version of sqlc is\n[installed](../overview/install.md) and ready to use.\n\nWe'll generate Go code here, but other\n[language plugins](../reference/language-support.rst) are available. You'll\nnaturally need the Go toolchain if you want to build and run a program with the\ncode sqlc generates, but sqlc itself has no dependencies.\n\nAt the end, you'll push your SQL queries to [sqlc\nCloud](https://dashboard.sqlc.dev/) for further insights and analysis.\n\n## Setting up\n\nCreate a new directory called `sqlc-tutorial` and open it up.\n\nInitialize a new Go module named `tutorial.sqlc.dev/app`:\n\n```shell\ngo mod init tutorial.sqlc.dev/app\n```\n\nsqlc looks for either a `sqlc.(yaml|yml)` or `sqlc.json` file in the current\ndirectory. In our new directory, create a file named `sqlc.yaml` with the\nfollowing contents:\n\n```yaml\nversion: \"2\"\nsql:\n  - engine: \"postgresql\"\n    queries: \"query.sql\"\n    schema: \"schema.sql\"\n    gen:\n      go:\n        package: \"tutorial\"\n        out: \"tutorial\"\n        sql_package: \"pgx/v5\"\n```\n\n## Schema and queries\n\nsqlc needs to know your database schema and queries in order to generate code.\nIn the same directory, create a file named `schema.sql` with the following\ncontent:\n\n```sql\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n```\n\nNext, create a `query.sql` file with the following five queries:\n\n```sql\n-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: UpdateAuthor :exec\nUPDATE authors\n  set name = $2,\n  bio = $3\nWHERE id = $1;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n```\n\nIf you prefer, you can alter the `UpdateAuthor` query to return the updated\nrecord:\n\n```sql\n-- name: UpdateAuthor :one\nUPDATE authors\n  set name = $2,\n  bio = $3\nWHERE id = $1\nRETURNING *;\n```\n\n## Generating code\n\nYou are now ready to generate code. You shouldn't see any output when you run\nthe `generate` subcommand, unless something goes wrong:\n\n```shell\nsqlc generate\n```\n\nYou should now have a `tutorial` subdirectory with three files containing Go\nsource code. These files comprise a Go package named `tutorial`:\n\n```\n├── go.mod\n├── query.sql\n├── schema.sql\n├── sqlc.yaml\n└── tutorial\n    ├── db.go\n    ├── models.go\n    └── query.sql.go\n```\n\n## Using generated code\n\nYou can use your newly-generated `tutorial` package from any Go program.\nCreate a file named `tutorial.go` and add the following contents:\n\n```go\npackage main\n\nimport (\n\t\"context\"\n\t\"log\"\n\t\"reflect\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgtype\"\n\n\t\"tutorial.sqlc.dev/app/tutorial\"\n)\n\nfunc run() error {\n\tctx := context.Background()\n\n\tconn, err := pgx.Connect(ctx, \"user=pqgotest dbname=pqgotest sslmode=verify-full\")\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer conn.Close(ctx)\n\n\tqueries := tutorial.New(conn)\n\n\t// list all authors\n\tauthors, err := queries.ListAuthors(ctx)\n\tif err != nil {\n\t\treturn err\n\t}\n\tlog.Println(authors)\n\n\t// create an author\n\tinsertedAuthor, err := queries.CreateAuthor(ctx, tutorial.CreateAuthorParams{\n\t\tName: \"Brian Kernighan\",\n\t\tBio:  pgtype.Text{String: \"Co-author of The C Programming Language and The Go Programming Language\", Valid: true},\n\t})\n\tif err != nil {\n\t\treturn err\n\t}\n\tlog.Println(insertedAuthor)\n\n\t// get the author we just inserted\n\tfetchedAuthor, err := queries.GetAuthor(ctx, insertedAuthor.ID)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// prints true\n\tlog.Println(reflect.DeepEqual(insertedAuthor, fetchedAuthor))\n\treturn nil\n}\n\nfunc main() {\n\tif err := run(); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n```\n\nBefore this code will compile you'll need to fetch the relevant PostgreSQL\ndriver. You can use `lib/pq` with the standard library's `database/sql`\npackage, but in this tutorial we've used `pgx/v5`:\n\n```shell\ngo get github.com/jackc/pgx/v5\ngo build ./...\n```\n\nThe program should compile without errors. To make that possible, sqlc generates\nreadable, **idiomatic** Go code that you otherwise would've had to write\nyourself. Take a look in `tutorial/query.sql.go`.\n\nOf course for this program to run successfully you'll need\nto compile after replacing the database connection parameters in the call to\n`pgx.Connect()` with the correct parameters for your database. And your\ndatabase must have the `authors` table as defined in `schema.sql`.\n\nYou should now have a working program using sqlc's generated Go source code,\nand hopefully can see how you'd use sqlc in your own real-world applications.\n\n## Query verification\n\n[sqlc Cloud](https://dashboard.sqlc.dev) provides additional verification, catching subtle bugs. To get started, create a\n[dashboard account](https://dashboard.sqlc.dev). Once you've signed in, create a\nproject and generate an auth token. Add your project's ID to the `cloud` block\nto your sqlc.yaml.\n\n```yaml\nversion: \"2\"\ncloud:\n  # Replace <PROJECT_ID> with your project ID from the sqlc Cloud dashboard\n  project: \"<PROJECT_ID>\"\nsql:\n  - engine: \"postgresql\"\n    queries: \"query.sql\"\n    schema: \"schema.sql\"\n    gen:\n      go:\n        package: \"tutorial\"\n        out: \"tutorial\"\n        sql_package: \"pgx/v5\"\n```\n\nReplace `<PROJECT_ID>` with your project ID from the sqlc Cloud dashboard. It\nwill look something like `01HA8SZH31HKYE9RR3N3N3TSJM`.\n\nAnd finally, set the `SQLC_AUTH_TOKEN` environment variable:\n\n```shell\nexport SQLC_AUTH_TOKEN=\"<your sqlc auth token>\"\n```\n\n```shell\n$ sqlc push --tag tutorial\n```\n\nIn the sidebar, go to the \"Queries\" section to see your published queries. Run\n`verify` to ensure that previously published queries continue to work against\nupdated database schema.\n\n```shell\n$ sqlc verify --against tutorial\n```\n"
  },
  {
    "path": "docs/tutorials/getting-started-sqlite.md",
    "content": "# Getting started with SQLite\n\nThis tutorial assumes that the latest version of sqlc is\n[installed](../overview/install.md) and ready to use.\n\nWe'll generate Go code here, but other\n[language plugins](../reference/language-support.rst) are available. You'll\nnaturally need the Go toolchain if you want to build and run a program with the\ncode sqlc generates, but sqlc itself has no dependencies.\n\n## Setting up\n\nCreate a new directory called `sqlc-tutorial` and open it up.\n\nInitialize a new Go module named `tutorial.sqlc.dev/app`\n\n```shell\ngo mod init tutorial.sqlc.dev/app\n```\n\nsqlc looks for either a `sqlc.(yaml|yml)` or `sqlc.json` file in the current\ndirectory. In our new directory, create a file named `sqlc.yaml` with the\nfollowing contents:\n\n```yaml\nversion: \"2\"\nsql:\n  - engine: \"sqlite\"\n    queries: \"query.sql\"\n    schema: \"schema.sql\"\n    gen:\n      go:\n        package: \"tutorial\"\n        out: \"tutorial\"\n```\n\n## Schema and queries\n\nsqlc needs to know your database schema and queries in order to generate code.\nIn the same directory, create a file named `schema.sql` with the following\ncontent:\n\n```sql\nCREATE TABLE authors (\n  id   INTEGER PRIMARY KEY,\n  name text    NOT NULL,\n  bio  text\n);\n```\n\nNext, create a `query.sql` file with the following five queries:\n\n```sql\n-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = ? LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  ?, ?\n)\nRETURNING *;\n\n-- name: UpdateAuthor :exec\nUPDATE authors\nset name = ?,\nbio = ?\nWHERE id = ?;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = ?;\n```\n\nIf you prefer, you can alter the `UpdateAuthor` query to return the updated\nrecord:\n\n```sql\n-- name: UpdateAuthor :one\nUPDATE authors\nset name = ?,\nbio = ?\nWHERE id = ?\nRETURNING *;\n```\n\n## Generating code\n\nYou are now ready to generate code. You shouldn't see any output when you run\nthe `generate` subcommand, unless something goes wrong:\n\n```shell\nsqlc generate\n```\n\nYou should now have a `tutorial` subdirectory with three files containing Go\nsource code. These files comprise a Go package named `tutorial`:\n\n```\n├── go.mod\n├── query.sql\n├── schema.sql\n├── sqlc.yaml\n└── tutorial\n    ├── db.go\n    ├── models.go\n    └── query.sql.go\n```\n\n## Using generated code\n\nYou can use your newly-generated `tutorial` package from any Go program.\nCreate a file named `tutorial.go` and add the following contents:\n\n```go\npackage main\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t_ \"embed\"\n\t\"log\"\n\t\"reflect\"\n\n\t_ \"modernc.org/sqlite\"\n\n\t\"tutorial.sqlc.dev/app/tutorial\"\n)\n\n//go:embed schema.sql\nvar ddl string\n\nfunc run() error {\n\tctx := context.Background()\n\n\tdb, err := sql.Open(\"sqlite\", \":memory:\")\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// create tables\n\tif _, err := db.ExecContext(ctx, ddl); err != nil {\n\t\treturn err\n\t}\n\n\tqueries := tutorial.New(db)\n\n\t// list all authors\n\tauthors, err := queries.ListAuthors(ctx)\n\tif err != nil {\n\t\treturn err\n\t}\n\tlog.Println(authors)\n\n\t// create an author\n\tinsertedAuthor, err := queries.CreateAuthor(ctx, tutorial.CreateAuthorParams{\n\t\tName: \"Brian Kernighan\",\n\t\tBio:  sql.NullString{String: \"Co-author of The C Programming Language and The Go Programming Language\", Valid: true},\n\t})\n\tif err != nil {\n\t\treturn err\n\t}\n\tlog.Println(insertedAuthor)\n\n\t// get the author we just inserted\n\tfetchedAuthor, err := queries.GetAuthor(ctx, insertedAuthor.ID)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// prints true\n\tlog.Println(reflect.DeepEqual(insertedAuthor, fetchedAuthor))\n\treturn nil\n}\n\nfunc main() {\n\tif err := run(); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n```\n\nBefore this code will compile you'll need to fetch the relevant SQLite driver:\n\n```shell\ngo get modernc.org/sqlite\ngo build ./...\n```\n\nThe program should compile without errors, and run successfully. To make that\npossible, sqlc generates readable, **idiomatic** Go code that you\notherwise would've had to write yourself. Take a look in `tutorial/query.sql.go`.\n\nYou should now have a working program using sqlc's generated Go source code,\nand hopefully can see how you'd use sqlc in your own real-world applications.\n"
  },
  {
    "path": "examples/authors/mysql/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "examples/authors/mysql/db_test.go",
    "content": "//go:build examples\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"testing\"\n\n\t_ \"github.com/go-sql-driver/mysql\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/local\"\n)\n\nfunc TestAuthors(t *testing.T) {\n\tctx := context.Background()\n\turi := local.MySQL(t, []string{\"schema.sql\"})\n\tsdb, err := sql.Open(\"mysql\", uri)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tdefer sdb.Close()\n\n\tdb := New(sdb)\n\n\t// list all authors\n\tauthors, err := db.ListAuthors(ctx)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tt.Log(authors)\n\n\t// create an author\n\tresult, err := db.CreateAuthor(ctx, CreateAuthorParams{\n\t\tName: \"Brian Kernighan\",\n\t\tBio:  sql.NullString{String: \"Co-author of The C Programming Language and The Go Programming Language\", Valid: true},\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tauthorID, err := result.LastInsertId()\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tt.Log(authorID)\n\n\t// get the author we just inserted\n\tfetchedAuthor, err := db.GetAuthor(ctx, authorID)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tt.Log(fetchedAuthor)\n}\n"
  },
  {
    "path": "examples/authors/mysql/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "examples/authors/mysql/query.sql",
    "content": "/* name: GetAuthor :one */\nSELECT * FROM authors\nWHERE id = ? LIMIT 1;\n\n/* name: ListAuthors :many */\nSELECT * FROM authors\nORDER BY name;\n\n/* name: CreateAuthor :execresult */\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  ?, ? \n);\n\n/* name: DeleteAuthor :exec */\nDELETE FROM authors\nWHERE id = ?;\n"
  },
  {
    "path": "examples/authors/mysql/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :execresult\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  ?, ? \n)\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (sql.Result, error) {\n\treturn q.db.ExecContext(ctx, createAuthor, arg.Name, arg.Bio)\n}\n\nconst deleteAuthor = `-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = ?\n`\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthor, id)\n\treturn err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM authors\nWHERE id = ? LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio FROM authors\nORDER BY name\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "examples/authors/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGINT PRIMARY KEY AUTO_INCREMENT,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "examples/authors/postgresql/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "examples/authors/postgresql/db_test.go",
    "content": "//go:build examples\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"testing\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgtype\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/local\"\n)\n\nfunc TestAuthors(t *testing.T) {\n\tctx := context.Background()\n\turi := local.PostgreSQL(t, []string{\"schema.sql\"})\n\tdb, err := pgx.Connect(ctx, uri)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tdefer db.Close(ctx)\n\n\tq := New(db)\n\n\t// list all authors\n\tauthors, err := q.ListAuthors(ctx)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tt.Log(authors)\n\n\t// create an author\n\tinsertedAuthor, err := q.CreateAuthor(ctx, CreateAuthorParams{\n\t\tName: \"Brian Kernighan\",\n\t\tBio:  pgtype.Text{String: \"Co-author of The C Programming Language and The Go Programming Language\", Valid: true},\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tt.Log(insertedAuthor)\n\n\t// get the author we just inserted\n\tfetchedAuthor, err := q.GetAuthor(ctx, insertedAuthor.ID)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tt.Log(fetchedAuthor)\n}\n"
  },
  {
    "path": "examples/authors/postgresql/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n"
  },
  {
    "path": "examples/authors/postgresql/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "examples/authors/postgresql/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage authors\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING id, name, bio\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  pgtype.Text\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error) {\n\trow := q.db.QueryRow(ctx, createAuthor, arg.Name, arg.Bio)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst deleteAuthor = `-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, id int64) error {\n\t_, err := q.db.Exec(ctx, deleteAuthor, id)\n\treturn err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRow(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio FROM authors\nORDER BY name\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.Query(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "examples/authors/postgresql/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "examples/authors/sqlc.yaml",
    "content": "version: '2'\ncloud:\n  project: \"01HAQMMECEYQYKFJN8MP16QC41\"\nsql:\n- name: postgresql\n  schema: postgresql/schema.sql\n  queries: postgresql/query.sql\n  engine: postgresql\n  database:\n    uri: \"${VET_TEST_EXAMPLES_POSTGRES_AUTHORS}\"\n  analyzer:\n    database: false\n  rules:\n  - sqlc/db-prepare\n  - postgresql-query-too-costly\n  gen:\n    go:\n      package: authors\n      sql_package: pgx/v5\n      out: postgresql\n- name: mysql\n  schema: mysql/schema.sql\n  queries: mysql/query.sql\n  engine: mysql\n  database:\n    uri: \"${VET_TEST_EXAMPLES_MYSQL_AUTHORS}\"\n  rules:\n  - sqlc/db-prepare\n  # - mysql-query-too-costly\n  gen:\n    go:\n      package: authors\n      out: mysql\n- name: sqlite\n  schema: sqlite/schema.sql\n  queries: sqlite/query.sql\n  engine: sqlite\n  database:\n    uri: file:authors?mode=memory&cache=shared\n  rules:\n  - sqlc/db-prepare\n  gen:\n    go:\n      package: authors\n      out: sqlite\nrules:\n- name: postgresql-query-too-costly\n  message: \"Too costly\"\n  rule: \"postgresql.explain.plan.total_cost > 300.0\"\n- name: mysql-query-too-costly\n  message: \"Too costly\"\n  rule: \"has(mysql.explain.query_block.cost_info) && double(mysql.explain.query_block.cost_info.query_cost) > 2.0\"\n"
  },
  {
    "path": "examples/authors/sqlite/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "examples/authors/sqlite/db_test.go",
    "content": "//go:build examples\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"testing\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest\"\n)\n\nfunc TestAuthors(t *testing.T) {\n\tsdb, cleanup := sqltest.SQLite(t, []string{\"schema.sql\"})\n\tdefer sdb.Close()\n\tdefer cleanup()\n\n\tctx := context.Background()\n\tdb := New(sdb)\n\n\t// list all authors\n\tauthors, err := db.ListAuthors(ctx)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tt.Log(authors)\n\n\t// create an author\n\tresult, err := db.CreateAuthor(ctx, CreateAuthorParams{\n\t\tName: \"Brian Kernighan\",\n\t\tBio:  sql.NullString{String: \"Co-author of The C Programming Language and The Go Programming Language\", Valid: true},\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tauthorID, err := result.LastInsertId()\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tt.Log(authorID)\n\n\t// get the author we just inserted\n\tfetchedAuthor, err := db.GetAuthor(ctx, authorID)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tt.Log(fetchedAuthor)\n}\n"
  },
  {
    "path": "examples/authors/sqlite/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "examples/authors/sqlite/query.sql",
    "content": "/* name: GetAuthor :one */\nSELECT * FROM authors\nWHERE id = ? LIMIT 1;\n\n/* name: ListAuthors :many */\nSELECT * FROM authors\nORDER BY name;\n\n/* name: CreateAuthor :execresult */\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  ?, ? \n);\n\n/* name: DeleteAuthor :exec */\nDELETE FROM authors\nWHERE id = ?;\n"
  },
  {
    "path": "examples/authors/sqlite/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :execresult\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  ?, ? \n)\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (sql.Result, error) {\n\treturn q.db.ExecContext(ctx, createAuthor, arg.Name, arg.Bio)\n}\n\nconst deleteAuthor = `-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = ?\n`\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthor, id)\n\treturn err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM authors\nWHERE id = ? LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio FROM authors\nORDER BY name\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "examples/authors/sqlite/schema.sql",
    "content": "CREATE TABLE authors (\n          id   integer    PRIMARY KEY AUTOINCREMENT,\n          name text   NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "examples/batch/postgresql/batch.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: batch.go\n\npackage batch\n\nimport (\n\t\"context\"\n\t\"errors\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nvar (\n\tErrBatchAlreadyClosed = errors.New(\"batch already closed\")\n)\n\nconst booksByYear = `-- name: BooksByYear :batchmany\nSELECT book_id, author_id, isbn, book_type, title, year, available, tags FROM books\nWHERE year = $1\n`\n\ntype BooksByYearBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\nfunc (q *Queries) BooksByYear(ctx context.Context, year []int32) *BooksByYearBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range year {\n\t\tvals := []interface{}{\n\t\t\ta,\n\t\t}\n\t\tbatch.Queue(booksByYear, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &BooksByYearBatchResults{br, len(year), false}\n}\n\nfunc (b *BooksByYearBatchResults) Query(f func(int, []Book, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tvar items []Book\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, items, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\terr := func() error {\n\t\t\trows, err := b.br.Query()\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tdefer rows.Close()\n\t\t\tfor rows.Next() {\n\t\t\t\tvar i Book\n\t\t\t\tif err := rows.Scan(\n\t\t\t\t\t&i.BookID,\n\t\t\t\t\t&i.AuthorID,\n\t\t\t\t\t&i.Isbn,\n\t\t\t\t\t&i.BookType,\n\t\t\t\t\t&i.Title,\n\t\t\t\t\t&i.Year,\n\t\t\t\t\t&i.Available,\n\t\t\t\t\t&i.Tags,\n\t\t\t\t); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\titems = append(items, i)\n\t\t\t}\n\t\t\treturn rows.Err()\n\t\t}()\n\t\tif f != nil {\n\t\t\tf(t, items, err)\n\t\t}\n\t}\n}\n\nfunc (b *BooksByYearBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n\nconst createBook = `-- name: CreateBook :batchone\nINSERT INTO books (\n    author_id,\n    isbn,\n    book_type,\n    title,\n    year,\n    available,\n    tags\n) VALUES (\n    $1,\n    $2,\n    $3,\n    $4,\n    $5,\n    $6,\n    $7\n)\nRETURNING book_id, author_id, isbn, book_type, title, year, available, tags\n`\n\ntype CreateBookBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\ntype CreateBookParams struct {\n\tAuthorID  int32              `json:\"author_id\"`\n\tIsbn      string             `json:\"isbn\"`\n\tBookType  BookType           `json:\"book_type\"`\n\tTitle     string             `json:\"title\"`\n\tYear      int32              `json:\"year\"`\n\tAvailable pgtype.Timestamptz `json:\"available\"`\n\tTags      []string           `json:\"tags\"`\n}\n\nfunc (q *Queries) CreateBook(ctx context.Context, arg []CreateBookParams) *CreateBookBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range arg {\n\t\tvals := []interface{}{\n\t\t\ta.AuthorID,\n\t\t\ta.Isbn,\n\t\t\ta.BookType,\n\t\t\ta.Title,\n\t\t\ta.Year,\n\t\t\ta.Available,\n\t\t\ta.Tags,\n\t\t}\n\t\tbatch.Queue(createBook, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &CreateBookBatchResults{br, len(arg), false}\n}\n\nfunc (b *CreateBookBatchResults) QueryRow(f func(int, Book, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tvar i Book\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, i, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\trow := b.br.QueryRow()\n\t\terr := row.Scan(\n\t\t\t&i.BookID,\n\t\t\t&i.AuthorID,\n\t\t\t&i.Isbn,\n\t\t\t&i.BookType,\n\t\t\t&i.Title,\n\t\t\t&i.Year,\n\t\t\t&i.Available,\n\t\t\t&i.Tags,\n\t\t)\n\t\tif f != nil {\n\t\t\tf(t, i, err)\n\t\t}\n\t}\n}\n\nfunc (b *CreateBookBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n\nconst deleteBook = `-- name: DeleteBook :batchexec\nDELETE FROM books\nWHERE book_id = $1\n`\n\ntype DeleteBookBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\nfunc (q *Queries) DeleteBook(ctx context.Context, bookID []int32) *DeleteBookBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range bookID {\n\t\tvals := []interface{}{\n\t\t\ta,\n\t\t}\n\t\tbatch.Queue(deleteBook, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &DeleteBookBatchResults{br, len(bookID), false}\n}\n\nfunc (b *DeleteBookBatchResults) Exec(f func(int, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\t_, err := b.br.Exec()\n\t\tif f != nil {\n\t\t\tf(t, err)\n\t\t}\n\t}\n}\n\nfunc (b *DeleteBookBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n\nconst deleteBookNamedFunc = `-- name: DeleteBookNamedFunc :batchexec\nDELETE FROM books\nWHERE book_id = $1\n`\n\ntype DeleteBookNamedFuncBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\nfunc (q *Queries) DeleteBookNamedFunc(ctx context.Context, bookID []int32) *DeleteBookNamedFuncBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range bookID {\n\t\tvals := []interface{}{\n\t\t\ta,\n\t\t}\n\t\tbatch.Queue(deleteBookNamedFunc, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &DeleteBookNamedFuncBatchResults{br, len(bookID), false}\n}\n\nfunc (b *DeleteBookNamedFuncBatchResults) Exec(f func(int, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\t_, err := b.br.Exec()\n\t\tif f != nil {\n\t\t\tf(t, err)\n\t\t}\n\t}\n}\n\nfunc (b *DeleteBookNamedFuncBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n\nconst deleteBookNamedSign = `-- name: DeleteBookNamedSign :batchexec\nDELETE FROM books\nWHERE book_id = $1\n`\n\ntype DeleteBookNamedSignBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\nfunc (q *Queries) DeleteBookNamedSign(ctx context.Context, bookID []int32) *DeleteBookNamedSignBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range bookID {\n\t\tvals := []interface{}{\n\t\t\ta,\n\t\t}\n\t\tbatch.Queue(deleteBookNamedSign, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &DeleteBookNamedSignBatchResults{br, len(bookID), false}\n}\n\nfunc (b *DeleteBookNamedSignBatchResults) Exec(f func(int, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\t_, err := b.br.Exec()\n\t\tif f != nil {\n\t\t\tf(t, err)\n\t\t}\n\t}\n}\n\nfunc (b *DeleteBookNamedSignBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n\nconst getBiography = `-- name: GetBiography :batchone\nSELECT biography FROM authors\nWHERE author_id = $1\n`\n\ntype GetBiographyBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\nfunc (q *Queries) GetBiography(ctx context.Context, authorID []int32) *GetBiographyBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range authorID {\n\t\tvals := []interface{}{\n\t\t\ta,\n\t\t}\n\t\tbatch.Queue(getBiography, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &GetBiographyBatchResults{br, len(authorID), false}\n}\n\nfunc (b *GetBiographyBatchResults) QueryRow(f func(int, []byte, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tvar biography []byte\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, biography, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\trow := b.br.QueryRow()\n\t\terr := row.Scan(&biography)\n\t\tif f != nil {\n\t\t\tf(t, biography, err)\n\t\t}\n\t}\n}\n\nfunc (b *GetBiographyBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n\nconst updateBook = `-- name: UpdateBook :batchexec\nUPDATE books\nSET title = $1, tags = $2\nWHERE book_id = $3\n`\n\ntype UpdateBookBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\ntype UpdateBookParams struct {\n\tTitle  string   `json:\"title\"`\n\tTags   []string `json:\"tags\"`\n\tBookID int32    `json:\"book_id\"`\n}\n\nfunc (q *Queries) UpdateBook(ctx context.Context, arg []UpdateBookParams) *UpdateBookBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range arg {\n\t\tvals := []interface{}{\n\t\t\ta.Title,\n\t\t\ta.Tags,\n\t\t\ta.BookID,\n\t\t}\n\t\tbatch.Queue(updateBook, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &UpdateBookBatchResults{br, len(arg), false}\n}\n\nfunc (b *UpdateBookBatchResults) Exec(f func(int, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\t_, err := b.br.Exec()\n\t\tif f != nil {\n\t\t\tf(t, err)\n\t\t}\n\t}\n}\n\nfunc (b *UpdateBookBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n"
  },
  {
    "path": "examples/batch/postgresql/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage batch\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tSendBatch(context.Context, *pgx.Batch) pgx.BatchResults\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "examples/batch/postgresql/db_test.go",
    "content": "//go:build examples\n\npackage batch\n\nimport (\n\t\"context\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgtype\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/local\"\n)\n\nfunc TestBatchBooks(t *testing.T) {\n\turi := local.PostgreSQL(t, []string{\"schema.sql\"})\n\n\tctx := context.Background()\n\n\tdb, err := pgx.Connect(ctx, uri)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tdefer db.Close(ctx)\n\n\tdq := New(db)\n\n\t// create an author\n\ta, err := dq.CreateAuthor(ctx, \"Unknown Master\")\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tnow := pgtype.Timestamptz{Time: time.Now(), Valid: true}\n\n\t// batch insert new books\n\tnewBooksParams := []CreateBookParams{\n\t\t{\n\t\t\tAuthorID:  a.AuthorID,\n\t\t\tIsbn:      \"1\",\n\t\t\tTitle:     \"my book title\",\n\t\t\tBookType:  BookTypeFICTION,\n\t\t\tYear:      2016,\n\t\t\tAvailable: now,\n\t\t\tTags:      []string{},\n\t\t},\n\t\t{\n\t\t\tAuthorID:  a.AuthorID,\n\t\t\tIsbn:      \"2\",\n\t\t\tTitle:     \"the second book\",\n\t\t\tBookType:  BookTypeFICTION,\n\t\t\tYear:      2016,\n\t\t\tAvailable: now,\n\t\t\tTags:      []string{\"cool\", \"unique\"},\n\t\t},\n\t\t{\n\t\t\tAuthorID:  a.AuthorID,\n\t\t\tIsbn:      \"3\",\n\t\t\tTitle:     \"the third book\",\n\t\t\tBookType:  BookTypeFICTION,\n\t\t\tYear:      2001,\n\t\t\tAvailable: now,\n\t\t\tTags:      []string{\"cool\"},\n\t\t},\n\t\t{\n\t\t\tAuthorID:  a.AuthorID,\n\t\t\tIsbn:      \"4\",\n\t\t\tTitle:     \"4th place finisher\",\n\t\t\tBookType:  BookTypeNONFICTION,\n\t\t\tYear:      2011,\n\t\t\tAvailable: now,\n\t\t\tTags:      []string{\"other\"},\n\t\t},\n\t}\n\tnewBooks := make([]Book, len(newBooksParams))\n\tvar cnt int\n\tdq.CreateBook(ctx, newBooksParams).QueryRow(func(i int, b Book, err error) {\n\t\tif err != nil {\n\t\t\tt.Fatalf(\"failed inserting book (%s): %s\", b.Title, err)\n\t\t}\n\t\tnewBooks[i] = b\n\t\tcnt = i\n\t})\n\t// first i was 0, so add 1\n\tcnt++\n\tnumBooksExpected := len(newBooks)\n\tif cnt != numBooksExpected {\n\t\tt.Fatalf(\"expected to insert %d books; got %d\", numBooksExpected, cnt)\n\t}\n\n\t// batch update the title and tags\n\tupdateBooksParams := []UpdateBookParams{\n\t\t{\n\t\t\tBookID: newBooks[1].BookID,\n\t\t\tTitle:  \"changed second title\",\n\t\t\tTags:   []string{\"cool\", \"disastor\"},\n\t\t},\n\t}\n\tdq.UpdateBook(ctx, updateBooksParams).Exec(func(i int, err error) {\n\t\tif err != nil {\n\t\t\tt.Fatalf(\"error updating book %d: %s\", updateBooksParams[i].BookID, err)\n\t\t}\n\t})\n\n\t// batch many to retrieve books by year\n\tselectBooksByTitleYearParams := []int32{2001, 2016}\n\tvar books0 []Book\n\tdq.BooksByYear(ctx, selectBooksByTitleYearParams).Query(func(i int, books []Book, err error) {\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tt.Logf(\"num books for %d: %d\", selectBooksByTitleYearParams[i], len(books))\n\t\tbooks0 = append(books0, books...)\n\t})\n\n\tfor _, book := range books0 {\n\t\tt.Logf(\"Book %d (%s): %s available: %s\\n\", book.BookID, book.BookType, book.Title, book.Available.Time.Format(time.RFC822Z))\n\t\tauthor, err := dq.GetAuthor(ctx, book.AuthorID)\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tt.Logf(\"Book %d author: %s\\n\", book.BookID, author.Name)\n\t}\n\n\t// batch delete books\n\tdeleteBooksParams := make([]int32, len(newBooks))\n\tfor i, book := range newBooks {\n\t\tdeleteBooksParams[i] = book.BookID\n\t}\n\tbatchDelete := dq.DeleteBook(ctx, deleteBooksParams)\n\tnumDeletesProcessed := 0\n\twantNumDeletesProcessed := 2\n\tbatchDelete.Exec(func(i int, err error) {\n\t\tif err != nil && err.Error() != \"batch already closed\" {\n\t\t\tt.Fatalf(\"error deleting book %d: %s\", deleteBooksParams[i], err)\n\t\t}\n\n\t\tif err == nil {\n\t\t\tnumDeletesProcessed++\n\t\t}\n\n\t\tif i == wantNumDeletesProcessed-1 {\n\t\t\t// close batch operation before processing all errors from delete operation\n\t\t\tif err := batchDelete.Close(); err != nil {\n\t\t\t\tt.Fatalf(\"failed to close batch operation: %s\", err)\n\t\t\t}\n\t\t}\n\t})\n\tif numDeletesProcessed != wantNumDeletesProcessed {\n\t\tt.Fatalf(\"expected Close to short-circuit record processing (expected %d; got %d)\", wantNumDeletesProcessed, numDeletesProcessed)\n\t}\n}\n"
  },
  {
    "path": "examples/batch/postgresql/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage batch\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype BookType string\n\nconst (\n\tBookTypeFICTION    BookType = \"FICTION\"\n\tBookTypeNONFICTION BookType = \"NONFICTION\"\n)\n\nfunc (e *BookType) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = BookType(s)\n\tcase string:\n\t\t*e = BookType(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for BookType: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullBookType struct {\n\tBookType BookType `json:\"book_type\"`\n\tValid    bool     `json:\"valid\"` // Valid is true if BookType is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullBookType) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.BookType, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.BookType.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullBookType) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.BookType), nil\n}\n\ntype Author struct {\n\tAuthorID  int32  `json:\"author_id\"`\n\tName      string `json:\"name\"`\n\tBiography []byte `json:\"biography\"`\n}\n\ntype Book struct {\n\tBookID    int32              `json:\"book_id\"`\n\tAuthorID  int32              `json:\"author_id\"`\n\tIsbn      string             `json:\"isbn\"`\n\tBookType  BookType           `json:\"book_type\"`\n\tTitle     string             `json:\"title\"`\n\tYear      int32              `json:\"year\"`\n\tAvailable pgtype.Timestamptz `json:\"available\"`\n\tTags      []string           `json:\"tags\"`\n}\n"
  },
  {
    "path": "examples/batch/postgresql/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage batch\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype Querier interface {\n\tBooksByYear(ctx context.Context, year []int32) *BooksByYearBatchResults\n\tCreateAuthor(ctx context.Context, name string) (Author, error)\n\tCreateBook(ctx context.Context, arg []CreateBookParams) *CreateBookBatchResults\n\tDeleteBook(ctx context.Context, bookID []int32) *DeleteBookBatchResults\n\tDeleteBookExecResult(ctx context.Context, bookID int32) (pgconn.CommandTag, error)\n\tDeleteBookNamedFunc(ctx context.Context, bookID []int32) *DeleteBookNamedFuncBatchResults\n\tDeleteBookNamedSign(ctx context.Context, bookID []int32) *DeleteBookNamedSignBatchResults\n\tGetAuthor(ctx context.Context, authorID int32) (Author, error)\n\tGetBiography(ctx context.Context, authorID []int32) *GetBiographyBatchResults\n\tUpdateBook(ctx context.Context, arg []UpdateBookParams) *UpdateBookBatchResults\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "examples/batch/postgresql/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE author_id = $1;\n\n-- name: DeleteBookExecResult :execresult\nDELETE FROM books\nWHERE book_id = $1;\n\n-- name: DeleteBook :batchexec\nDELETE FROM books\nWHERE book_id = $1;\n\n-- name: DeleteBookNamedFunc :batchexec\nDELETE FROM books\nWHERE book_id = sqlc.arg (book_id);\n\n-- name: DeleteBookNamedSign :batchexec\nDELETE FROM books\nWHERE book_id = @book_id;\n\n-- name: BooksByYear :batchmany\nSELECT * FROM books\nWHERE year = $1;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (name) VALUES ($1)\nRETURNING *;\n\n-- name: CreateBook :batchone\nINSERT INTO books (\n    author_id,\n    isbn,\n    book_type,\n    title,\n    year,\n    available,\n    tags\n) VALUES (\n    $1,\n    $2,\n    $3,\n    $4,\n    $5,\n    $6,\n    $7\n)\nRETURNING *;\n\n-- name: UpdateBook :batchexec\nUPDATE books\nSET title = $1, tags = $2\nWHERE book_id = $3;\n\n-- name: GetBiography :batchone\nSELECT biography FROM authors\nWHERE author_id = $1;\n"
  },
  {
    "path": "examples/batch/postgresql/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage batch\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (name) VALUES ($1)\nRETURNING author_id, name, biography\n`\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, name string) (Author, error) {\n\trow := q.db.QueryRow(ctx, createAuthor, name)\n\tvar i Author\n\terr := row.Scan(&i.AuthorID, &i.Name, &i.Biography)\n\treturn i, err\n}\n\nconst deleteBookExecResult = `-- name: DeleteBookExecResult :execresult\nDELETE FROM books\nWHERE book_id = $1\n`\n\nfunc (q *Queries) DeleteBookExecResult(ctx context.Context, bookID int32) (pgconn.CommandTag, error) {\n\treturn q.db.Exec(ctx, deleteBookExecResult, bookID)\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT author_id, name, biography FROM authors\nWHERE author_id = $1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, authorID int32) (Author, error) {\n\trow := q.db.QueryRow(ctx, getAuthor, authorID)\n\tvar i Author\n\terr := row.Scan(&i.AuthorID, &i.Name, &i.Biography)\n\treturn i, err\n}\n"
  },
  {
    "path": "examples/batch/postgresql/schema.sql",
    "content": "CREATE TABLE authors (\n          author_id SERIAL PRIMARY KEY,\n          name text NOT NULL DEFAULT '',\n          biography JSONB\n);\n\nCREATE TYPE book_type AS ENUM (\n          'FICTION',\n          'NONFICTION'\n);\n\nCREATE TABLE books (\n          book_id SERIAL PRIMARY KEY,\n          author_id integer NOT NULL REFERENCES authors(author_id),\n          isbn text NOT NULL DEFAULT '' UNIQUE,\n          book_type book_type NOT NULL DEFAULT 'FICTION',\n          title text NOT NULL DEFAULT '',\n          year integer NOT NULL DEFAULT 2000,\n          available timestamp with time zone NOT NULL DEFAULT 'NOW()',\n          tags varchar[] NOT NULL DEFAULT '{}'\n);\n"
  },
  {
    "path": "examples/batch/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"cloud\": {\n    \"project\": \"01HAQMMECEYQYKFJN8MP16QC41\"\n  },\n  \"packages\": [\n    {\n      \"path\": \"postgresql\",\n      \"name\": \"batch\",\n      \"schema\": \"postgresql/schema.sql\",\n      \"queries\": \"postgresql/query.sql\",\n      \"engine\": \"postgresql\",\n      \"database\": {\n        \"uri\": \"${VET_TEST_EXAMPLES_POSTGRES_BATCH}\"\n      },\n      \"analyzer\": {\n        \"database\": false\n      },\n      \"rules\": [\n        \"sqlc/db-prepare\"\n      ],\n      \"sql_package\": \"pgx/v5\",\n      \"emit_json_tags\": true,\n      \"emit_prepared_queries\": true,\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "examples/booktest/mysql/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage booktest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "examples/booktest/mysql/db_test.go",
    "content": "//go:build examples\n\npackage booktest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"testing\"\n\t\"time\"\n\n\t_ \"github.com/go-sql-driver/mysql\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/local\"\n)\n\nfunc TestBooks(t *testing.T) {\n\tctx := context.Background()\n\turi := local.MySQL(t, []string{\"schema.sql\"})\n\tdb, err := sql.Open(\"mysql\", uri)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tdefer db.Close()\n\n\tdq := New(db)\n\n\t// create an author\n\tresult, err := dq.CreateAuthor(ctx, \"Unknown Master\")\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tauthorID, err := result.LastInsertId()\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// create transaction\n\ttx, err := db.Begin()\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\ttq := dq.WithTx(tx)\n\n\t// save first book\n\tnow := time.Now()\n\t_, err = tq.CreateBook(ctx, CreateBookParams{\n\t\tAuthorID:  int32(authorID),\n\t\tIsbn:      \"1\",\n\t\tTitle:     \"my book title\",\n\t\tBookType:  BooksBookTypeFICTION,\n\t\tYr:        2016,\n\t\tAvailable: now,\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// save second book\n\tresult, err = tq.CreateBook(ctx, CreateBookParams{\n\t\tAuthorID:  int32(authorID),\n\t\tIsbn:      \"2\",\n\t\tTitle:     \"the second book\",\n\t\tBookType:  BooksBookTypeFICTION,\n\t\tYr:        2016,\n\t\tAvailable: now,\n\t\tTags:      \"cool,unique\",\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tbookOneID, err := result.LastInsertId()\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// update the title and tags\n\terr = tq.UpdateBook(ctx, UpdateBookParams{\n\t\tBookID: int32(bookOneID),\n\t\tTitle:  \"changed second title\",\n\t\tTags:   \"cool,disastor\",\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// save third book\n\t_, err = tq.CreateBook(ctx, CreateBookParams{\n\t\tAuthorID:  int32(authorID),\n\t\tIsbn:      \"3\",\n\t\tTitle:     \"the third book\",\n\t\tBookType:  BooksBookTypeFICTION,\n\t\tYr:        2001,\n\t\tAvailable: now,\n\t\tTags:      \"cool\",\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// save fourth book\n\tresult, err = tq.CreateBook(ctx, CreateBookParams{\n\t\tAuthorID:  int32(authorID),\n\t\tIsbn:      \"4\",\n\t\tTitle:     \"4th place finisher\",\n\t\tBookType:  BooksBookTypeNONFICTION,\n\t\tYr:        2011,\n\t\tAvailable: now,\n\t\tTags:      \"other\",\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tbookThreeID, err := result.LastInsertId()\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// tx commit\n\terr = tx.Commit()\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// upsert, changing ISBN and title\n\terr = dq.UpdateBookISBN(ctx, UpdateBookISBNParams{\n\t\tBookID: int32(bookThreeID),\n\t\tIsbn:   \"NEW ISBN\",\n\t\tTitle:  \"never ever gonna finish, a quatrain\",\n\t\tTags:   \"someother\",\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// retrieve first book\n\tbooks0, err := dq.BooksByTitleYear(ctx, BooksByTitleYearParams{\n\t\tTitle: \"my book title\",\n\t\tYr:    2016,\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tfor _, book := range books0 {\n\t\tt.Logf(\"Book %d (%s): %s available: %s\\n\", book.BookID, book.BookType, book.Title, book.Available.Format(time.RFC822Z))\n\t\tauthor, err := dq.GetAuthor(ctx, book.AuthorID)\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tt.Logf(\"Book %d author: %s\\n\", book.BookID, author.Name)\n\t}\n\n\t// find a book with either \"cool\" or \"other\" tag\n\tt.Logf(\"---------\\nTag search results:\\n\")\n\tres, err := dq.BooksByTags(ctx, \"cool\")\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tfor _, ab := range res {\n\t\tt.Logf(\"Book %d: '%s', Author: '%s', ISBN: '%s' Tags: '%v'\\n\", ab.BookID, ab.Title, ab.Name.String, ab.Isbn, ab.Tags)\n\t}\n\n\t// TODO: call say_hello(varchar)\n\n\t// get book 4 and delete\n\tb5, err := dq.GetBook(ctx, int32(bookThreeID))\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif err := dq.DeleteBook(ctx, b5.BookID); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n}\n"
  },
  {
    "path": "examples/booktest/mysql/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage booktest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n\t\"time\"\n)\n\ntype BooksBookType string\n\nconst (\n\tBooksBookTypeFICTION    BooksBookType = \"FICTION\"\n\tBooksBookTypeNONFICTION BooksBookType = \"NONFICTION\"\n)\n\nfunc (e *BooksBookType) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = BooksBookType(s)\n\tcase string:\n\t\t*e = BooksBookType(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for BooksBookType: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullBooksBookType struct {\n\tBooksBookType BooksBookType\n\tValid         bool // Valid is true if BooksBookType is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullBooksBookType) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.BooksBookType, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.BooksBookType.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullBooksBookType) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.BooksBookType), nil\n}\n\ntype Author struct {\n\tAuthorID int32\n\tName     string\n}\n\ntype Book struct {\n\tBookID    int32\n\tAuthorID  int32\n\tIsbn      string\n\tBookType  BooksBookType\n\tTitle     string\n\tYr        int32\n\tAvailable time.Time\n\tTags      string\n}\n"
  },
  {
    "path": "examples/booktest/mysql/query.sql",
    "content": "/* name: GetAuthor :one */\nSELECT * FROM authors\nWHERE author_id = ?;\n\n/* name: GetBook :one */\nSELECT * FROM books\nWHERE book_id = ?;\n\n/* name: DeleteBook :exec */\nDELETE FROM books\nWHERE book_id = ?;\n\n/* name: BooksByTitleYear :many */\nSELECT * FROM books\nWHERE title = ? AND yr = ?;\n\n/* name: BooksByTags :many */\nSELECT\n  book_id,\n  title,\n  name,\n  isbn,\n  tags\nFROM books\nLEFT JOIN authors ON books.author_id = authors.author_id\nWHERE tags = ?;\n\n/* name: CreateAuthor :execresult */\nINSERT INTO authors (name) VALUES (?);\n\n/* name: CreateBook :execresult */\nINSERT INTO books (\n    author_id,\n    isbn,\n    book_type,\n    title,\n    yr,\n    available,\n    tags\n) VALUES (\n    ?,\n    ?,\n    ?,\n    ?,\n    ?,\n    ?,\n    ?\n);\n\n/* name: UpdateBook :exec */\nUPDATE books\nSET title = ?, tags = ?\nWHERE book_id = ?;\n\n/* name: UpdateBookISBN :exec */\nUPDATE books\nSET title = ?, tags = ?, isbn = ?\nWHERE book_id = ?;\n\n/* name: DeleteAuthorBeforeYear :exec */\nDELETE FROM books\nWHERE yr < ? AND author_id = ?;\n-- WHERE yr < sqlc.arg(min_publish_year) AND author_id = ?;\n"
  },
  {
    "path": "examples/booktest/mysql/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage booktest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"time\"\n)\n\nconst booksByTags = `-- name: BooksByTags :many\nSELECT\n  book_id,\n  title,\n  name,\n  isbn,\n  tags\nFROM books\nLEFT JOIN authors ON books.author_id = authors.author_id\nWHERE tags = ?\n`\n\ntype BooksByTagsRow struct {\n\tBookID int32\n\tTitle  string\n\tName   sql.NullString\n\tIsbn   string\n\tTags   string\n}\n\nfunc (q *Queries) BooksByTags(ctx context.Context, tags string) ([]BooksByTagsRow, error) {\n\trows, err := q.db.QueryContext(ctx, booksByTags, tags)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []BooksByTagsRow\n\tfor rows.Next() {\n\t\tvar i BooksByTagsRow\n\t\tif err := rows.Scan(\n\t\t\t&i.BookID,\n\t\t\t&i.Title,\n\t\t\t&i.Name,\n\t\t\t&i.Isbn,\n\t\t\t&i.Tags,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst booksByTitleYear = `-- name: BooksByTitleYear :many\nSELECT book_id, author_id, isbn, book_type, title, yr, available, tags FROM books\nWHERE title = ? AND yr = ?\n`\n\ntype BooksByTitleYearParams struct {\n\tTitle string\n\tYr    int32\n}\n\nfunc (q *Queries) BooksByTitleYear(ctx context.Context, arg BooksByTitleYearParams) ([]Book, error) {\n\trows, err := q.db.QueryContext(ctx, booksByTitleYear, arg.Title, arg.Yr)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Book\n\tfor rows.Next() {\n\t\tvar i Book\n\t\tif err := rows.Scan(\n\t\t\t&i.BookID,\n\t\t\t&i.AuthorID,\n\t\t\t&i.Isbn,\n\t\t\t&i.BookType,\n\t\t\t&i.Title,\n\t\t\t&i.Yr,\n\t\t\t&i.Available,\n\t\t\t&i.Tags,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst createAuthor = `-- name: CreateAuthor :execresult\nINSERT INTO authors (name) VALUES (?)\n`\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, name string) (sql.Result, error) {\n\treturn q.db.ExecContext(ctx, createAuthor, name)\n}\n\nconst createBook = `-- name: CreateBook :execresult\nINSERT INTO books (\n    author_id,\n    isbn,\n    book_type,\n    title,\n    yr,\n    available,\n    tags\n) VALUES (\n    ?,\n    ?,\n    ?,\n    ?,\n    ?,\n    ?,\n    ?\n)\n`\n\ntype CreateBookParams struct {\n\tAuthorID  int32\n\tIsbn      string\n\tBookType  BooksBookType\n\tTitle     string\n\tYr        int32\n\tAvailable time.Time\n\tTags      string\n}\n\nfunc (q *Queries) CreateBook(ctx context.Context, arg CreateBookParams) (sql.Result, error) {\n\treturn q.db.ExecContext(ctx, createBook,\n\t\targ.AuthorID,\n\t\targ.Isbn,\n\t\targ.BookType,\n\t\targ.Title,\n\t\targ.Yr,\n\t\targ.Available,\n\t\targ.Tags,\n\t)\n}\n\nconst deleteAuthorBeforeYear = `-- name: DeleteAuthorBeforeYear :exec\nDELETE FROM books\nWHERE yr < ? AND author_id = ?\n`\n\ntype DeleteAuthorBeforeYearParams struct {\n\tYr       int32\n\tAuthorID int32\n}\n\nfunc (q *Queries) DeleteAuthorBeforeYear(ctx context.Context, arg DeleteAuthorBeforeYearParams) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthorBeforeYear, arg.Yr, arg.AuthorID)\n\treturn err\n}\n\nconst deleteBook = `-- name: DeleteBook :exec\nDELETE FROM books\nWHERE book_id = ?\n`\n\nfunc (q *Queries) DeleteBook(ctx context.Context, bookID int32) error {\n\t_, err := q.db.ExecContext(ctx, deleteBook, bookID)\n\treturn err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT author_id, name FROM authors\nWHERE author_id = ?\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, authorID int32) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, authorID)\n\tvar i Author\n\terr := row.Scan(&i.AuthorID, &i.Name)\n\treturn i, err\n}\n\nconst getBook = `-- name: GetBook :one\nSELECT book_id, author_id, isbn, book_type, title, yr, available, tags FROM books\nWHERE book_id = ?\n`\n\nfunc (q *Queries) GetBook(ctx context.Context, bookID int32) (Book, error) {\n\trow := q.db.QueryRowContext(ctx, getBook, bookID)\n\tvar i Book\n\terr := row.Scan(\n\t\t&i.BookID,\n\t\t&i.AuthorID,\n\t\t&i.Isbn,\n\t\t&i.BookType,\n\t\t&i.Title,\n\t\t&i.Yr,\n\t\t&i.Available,\n\t\t&i.Tags,\n\t)\n\treturn i, err\n}\n\nconst updateBook = `-- name: UpdateBook :exec\nUPDATE books\nSET title = ?, tags = ?\nWHERE book_id = ?\n`\n\ntype UpdateBookParams struct {\n\tTitle  string\n\tTags   string\n\tBookID int32\n}\n\nfunc (q *Queries) UpdateBook(ctx context.Context, arg UpdateBookParams) error {\n\t_, err := q.db.ExecContext(ctx, updateBook, arg.Title, arg.Tags, arg.BookID)\n\treturn err\n}\n\nconst updateBookISBN = `-- name: UpdateBookISBN :exec\nUPDATE books\nSET title = ?, tags = ?, isbn = ?\nWHERE book_id = ?\n`\n\ntype UpdateBookISBNParams struct {\n\tTitle  string\n\tTags   string\n\tIsbn   string\n\tBookID int32\n}\n\nfunc (q *Queries) UpdateBookISBN(ctx context.Context, arg UpdateBookISBNParams) error {\n\t_, err := q.db.ExecContext(ctx, updateBookISBN,\n\t\targ.Title,\n\t\targ.Tags,\n\t\targ.Isbn,\n\t\targ.BookID,\n\t)\n\treturn err\n}\n"
  },
  {
    "path": "examples/booktest/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n          author_id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,\n          name text NOT NULL\n) ENGINE=InnoDB;\n\nCREATE INDEX authors_name_idx ON authors(name(255));\n\nCREATE TABLE books (\n          book_id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,\n          author_id integer NOT NULL,\n          isbn varchar(255) NOT NULL DEFAULT '' UNIQUE,\n          book_type ENUM('FICTION', 'NONFICTION') NOT NULL DEFAULT 'FICTION',\n          title text NOT NULL,\n          yr integer NOT NULL DEFAULT 2000,\n          available datetime NOT NULL DEFAULT NOW(),\n          tags text NOT NULL\n          -- CONSTRAINT FOREIGN KEY (author_id) REFERENCES authors(author_id)\n) ENGINE=InnoDB;\n\nCREATE INDEX books_title_idx ON books(title(255), yr);\n\n/*\nCREATE FUNCTION say_hello(s text) RETURNS text\n  DETERMINISTIC\n  RETURN CONCAT('hello ', s);\n*/\n"
  },
  {
    "path": "examples/booktest/postgresql/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage booktest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "examples/booktest/postgresql/db_test.go",
    "content": "//go:build examples\n\npackage booktest\n\nimport (\n\t\"context\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgtype\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/local\"\n)\n\nfunc TestBooks(t *testing.T) {\n\tctx := context.Background()\n\turi := local.PostgreSQL(t, []string{\"schema.sql\"})\n\tdb, err := pgx.Connect(ctx, uri)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tdefer db.Close(ctx)\n\n\tdq := New(db)\n\n\t// create an author\n\ta, err := dq.CreateAuthor(ctx, \"Unknown Master\")\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// create transaction\n\ttx, err := db.Begin(ctx)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\ttq := dq.WithTx(tx)\n\n\t// save first book\n\tnow := pgtype.Timestamptz{Time: time.Now(), Valid: true}\n\t_, err = tq.CreateBook(ctx, CreateBookParams{\n\t\tAuthorID:  a.AuthorID,\n\t\tIsbn:      \"1\",\n\t\tTitle:     \"my book title\",\n\t\tBookType:  BookTypeFICTION,\n\t\tYear:      2016,\n\t\tAvailable: now,\n\t\tTags:      []string{},\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// save second book\n\tb1, err := tq.CreateBook(ctx, CreateBookParams{\n\t\tAuthorID:  a.AuthorID,\n\t\tIsbn:      \"2\",\n\t\tTitle:     \"the second book\",\n\t\tBookType:  BookTypeFICTION,\n\t\tYear:      2016,\n\t\tAvailable: now,\n\t\tTags:      []string{\"cool\", \"unique\"},\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// update the title and tags\n\terr = tq.UpdateBook(ctx, UpdateBookParams{\n\t\tBookID: b1.BookID,\n\t\tTitle:  \"changed second title\",\n\t\tTags:   []string{\"cool\", \"disastor\"},\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// save third book\n\t_, err = tq.CreateBook(ctx, CreateBookParams{\n\t\tAuthorID:  a.AuthorID,\n\t\tIsbn:      \"3\",\n\t\tTitle:     \"the third book\",\n\t\tBookType:  BookTypeFICTION,\n\t\tYear:      2001,\n\t\tAvailable: now,\n\t\tTags:      []string{\"cool\"},\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// save fourth book\n\tb3, err := tq.CreateBook(ctx, CreateBookParams{\n\t\tAuthorID:  a.AuthorID,\n\t\tIsbn:      \"4\",\n\t\tTitle:     \"4th place finisher\",\n\t\tBookType:  BookTypeNONFICTION,\n\t\tYear:      2011,\n\t\tAvailable: now,\n\t\tTags:      []string{\"other\"},\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// tx commit\n\terr = tx.Commit(ctx)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// upsert, changing ISBN and title\n\terr = dq.UpdateBookISBN(ctx, UpdateBookISBNParams{\n\t\tBookID: b3.BookID,\n\t\tIsbn:   \"NEW ISBN\",\n\t\tTitle:  \"never ever gonna finish, a quatrain\",\n\t\tTags:   []string{\"someother\"},\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// retrieve first book\n\tbooks0, err := dq.BooksByTitleYear(ctx, BooksByTitleYearParams{\n\t\tTitle: \"my book title\",\n\t\tYear:  2016,\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tfor _, book := range books0 {\n\t\tt.Logf(\"Book %d (%s): %s available: %s\\n\", book.BookID, book.BookType, book.Title, book.Available.Time.Format(time.RFC822Z))\n\t\tauthor, err := dq.GetAuthor(ctx, book.AuthorID)\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tt.Logf(\"Book %d author: %s\\n\", book.BookID, author.Name)\n\t}\n\n\t// find a book with either \"cool\" or \"other\" tag\n\tt.Logf(\"---------\\nTag search results:\\n\")\n\tres, err := dq.BooksByTags(ctx, []string{\"cool\", \"other\", \"someother\"})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tfor _, ab := range res {\n\t\tt.Logf(\"Book %d: '%s', Author: '%s', ISBN: '%s' Tags: '%v'\\n\", ab.BookID, ab.Title, ab.Name.String, ab.Isbn, ab.Tags)\n\t}\n\n\t// call function\n\tpgText, err := dq.SayHello(ctx, \"world\")\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tstr, err := pgText.Value()\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif str != \"hello world\" {\n\t\tt.Fatal(\"expected function result to be \\\"hello world\\\". actual:\", str)\n\t}\n\n\t// get book 4 and delete\n\tb5, err := dq.GetBook(ctx, b3.BookID)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif err := dq.DeleteBook(ctx, b5.BookID); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n}\n"
  },
  {
    "path": "examples/booktest/postgresql/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage booktest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype BookType string\n\nconst (\n\tBookTypeFICTION    BookType = \"FICTION\"\n\tBookTypeNONFICTION BookType = \"NONFICTION\"\n)\n\nfunc (e *BookType) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = BookType(s)\n\tcase string:\n\t\t*e = BookType(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for BookType: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullBookType struct {\n\tBookType BookType\n\tValid    bool // Valid is true if BookType is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullBookType) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.BookType, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.BookType.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullBookType) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.BookType), nil\n}\n\ntype Author struct {\n\tAuthorID int32\n\tName     string\n}\n\ntype Book struct {\n\tBookID    int32\n\tAuthorID  int32\n\tIsbn      string\n\tBookType  BookType\n\tTitle     string\n\tYear      int32\n\tAvailable pgtype.Timestamptz\n\tTags      []string\n}\n"
  },
  {
    "path": "examples/booktest/postgresql/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE author_id = $1;\n\n-- name: GetBook :one\nSELECT * FROM books\nWHERE book_id = $1;\n\n-- name: DeleteBook :exec\nDELETE FROM books\nWHERE book_id = $1;\n\n-- name: BooksByTitleYear :many\nSELECT * FROM books\nWHERE title = $1 AND year = $2;\n\n-- name: BooksByTags :many\nSELECT \n  book_id,\n  title,\n  name,\n  isbn,\n  tags\nFROM books\nLEFT JOIN authors ON books.author_id = authors.author_id\nWHERE tags && $1::varchar[];\n\n-- name: CreateAuthor :one\nINSERT INTO authors (name) VALUES ($1)\nRETURNING *;\n\n-- name: CreateBook :one\nINSERT INTO books (\n    author_id,\n    isbn,\n    book_type,\n    title,\n    year,\n    available,\n    tags\n) VALUES (\n    $1,\n    $2,\n    $3,\n    $4,\n    $5,\n    $6,\n    $7\n)\nRETURNING *;\n\n-- name: UpdateBook :exec\nUPDATE books\nSET title = $1, tags = $2\nWHERE book_id = $3;\n\n-- name: UpdateBookISBN :exec\nUPDATE books\nSET title = $1, tags = $2, isbn = $4\nWHERE book_id = $3;\n\n-- name: SayHello :one\nselect * from say_hello($1);\n"
  },
  {
    "path": "examples/booktest/postgresql/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage booktest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst booksByTags = `-- name: BooksByTags :many\nSELECT \n  book_id,\n  title,\n  name,\n  isbn,\n  tags\nFROM books\nLEFT JOIN authors ON books.author_id = authors.author_id\nWHERE tags && $1::varchar[]\n`\n\ntype BooksByTagsRow struct {\n\tBookID int32\n\tTitle  string\n\tName   pgtype.Text\n\tIsbn   string\n\tTags   []string\n}\n\nfunc (q *Queries) BooksByTags(ctx context.Context, dollar_1 []string) ([]BooksByTagsRow, error) {\n\trows, err := q.db.Query(ctx, booksByTags, dollar_1)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []BooksByTagsRow\n\tfor rows.Next() {\n\t\tvar i BooksByTagsRow\n\t\tif err := rows.Scan(\n\t\t\t&i.BookID,\n\t\t\t&i.Title,\n\t\t\t&i.Name,\n\t\t\t&i.Isbn,\n\t\t\t&i.Tags,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst booksByTitleYear = `-- name: BooksByTitleYear :many\nSELECT book_id, author_id, isbn, book_type, title, year, available, tags FROM books\nWHERE title = $1 AND year = $2\n`\n\ntype BooksByTitleYearParams struct {\n\tTitle string\n\tYear  int32\n}\n\nfunc (q *Queries) BooksByTitleYear(ctx context.Context, arg BooksByTitleYearParams) ([]Book, error) {\n\trows, err := q.db.Query(ctx, booksByTitleYear, arg.Title, arg.Year)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Book\n\tfor rows.Next() {\n\t\tvar i Book\n\t\tif err := rows.Scan(\n\t\t\t&i.BookID,\n\t\t\t&i.AuthorID,\n\t\t\t&i.Isbn,\n\t\t\t&i.BookType,\n\t\t\t&i.Title,\n\t\t\t&i.Year,\n\t\t\t&i.Available,\n\t\t\t&i.Tags,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (name) VALUES ($1)\nRETURNING author_id, name\n`\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, name string) (Author, error) {\n\trow := q.db.QueryRow(ctx, createAuthor, name)\n\tvar i Author\n\terr := row.Scan(&i.AuthorID, &i.Name)\n\treturn i, err\n}\n\nconst createBook = `-- name: CreateBook :one\nINSERT INTO books (\n    author_id,\n    isbn,\n    book_type,\n    title,\n    year,\n    available,\n    tags\n) VALUES (\n    $1,\n    $2,\n    $3,\n    $4,\n    $5,\n    $6,\n    $7\n)\nRETURNING book_id, author_id, isbn, book_type, title, year, available, tags\n`\n\ntype CreateBookParams struct {\n\tAuthorID  int32\n\tIsbn      string\n\tBookType  BookType\n\tTitle     string\n\tYear      int32\n\tAvailable pgtype.Timestamptz\n\tTags      []string\n}\n\nfunc (q *Queries) CreateBook(ctx context.Context, arg CreateBookParams) (Book, error) {\n\trow := q.db.QueryRow(ctx, createBook,\n\t\targ.AuthorID,\n\t\targ.Isbn,\n\t\targ.BookType,\n\t\targ.Title,\n\t\targ.Year,\n\t\targ.Available,\n\t\targ.Tags,\n\t)\n\tvar i Book\n\terr := row.Scan(\n\t\t&i.BookID,\n\t\t&i.AuthorID,\n\t\t&i.Isbn,\n\t\t&i.BookType,\n\t\t&i.Title,\n\t\t&i.Year,\n\t\t&i.Available,\n\t\t&i.Tags,\n\t)\n\treturn i, err\n}\n\nconst deleteBook = `-- name: DeleteBook :exec\nDELETE FROM books\nWHERE book_id = $1\n`\n\nfunc (q *Queries) DeleteBook(ctx context.Context, bookID int32) error {\n\t_, err := q.db.Exec(ctx, deleteBook, bookID)\n\treturn err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT author_id, name FROM authors\nWHERE author_id = $1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, authorID int32) (Author, error) {\n\trow := q.db.QueryRow(ctx, getAuthor, authorID)\n\tvar i Author\n\terr := row.Scan(&i.AuthorID, &i.Name)\n\treturn i, err\n}\n\nconst getBook = `-- name: GetBook :one\nSELECT book_id, author_id, isbn, book_type, title, year, available, tags FROM books\nWHERE book_id = $1\n`\n\nfunc (q *Queries) GetBook(ctx context.Context, bookID int32) (Book, error) {\n\trow := q.db.QueryRow(ctx, getBook, bookID)\n\tvar i Book\n\terr := row.Scan(\n\t\t&i.BookID,\n\t\t&i.AuthorID,\n\t\t&i.Isbn,\n\t\t&i.BookType,\n\t\t&i.Title,\n\t\t&i.Year,\n\t\t&i.Available,\n\t\t&i.Tags,\n\t)\n\treturn i, err\n}\n\nconst sayHello = `-- name: SayHello :one\nselect say_hello from say_hello($1)\n`\n\nfunc (q *Queries) SayHello(ctx context.Context, s string) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, sayHello, s)\n\tvar say_hello pgtype.Text\n\terr := row.Scan(&say_hello)\n\treturn say_hello, err\n}\n\nconst updateBook = `-- name: UpdateBook :exec\nUPDATE books\nSET title = $1, tags = $2\nWHERE book_id = $3\n`\n\ntype UpdateBookParams struct {\n\tTitle  string\n\tTags   []string\n\tBookID int32\n}\n\nfunc (q *Queries) UpdateBook(ctx context.Context, arg UpdateBookParams) error {\n\t_, err := q.db.Exec(ctx, updateBook, arg.Title, arg.Tags, arg.BookID)\n\treturn err\n}\n\nconst updateBookISBN = `-- name: UpdateBookISBN :exec\nUPDATE books\nSET title = $1, tags = $2, isbn = $4\nWHERE book_id = $3\n`\n\ntype UpdateBookISBNParams struct {\n\tTitle  string\n\tTags   []string\n\tBookID int32\n\tIsbn   string\n}\n\nfunc (q *Queries) UpdateBookISBN(ctx context.Context, arg UpdateBookISBNParams) error {\n\t_, err := q.db.Exec(ctx, updateBookISBN,\n\t\targ.Title,\n\t\targ.Tags,\n\t\targ.BookID,\n\t\targ.Isbn,\n\t)\n\treturn err\n}\n"
  },
  {
    "path": "examples/booktest/postgresql/schema.sql",
    "content": "CREATE TABLE authors (\n          author_id SERIAL PRIMARY KEY,\n          name text NOT NULL DEFAULT ''\n);\n\nCREATE INDEX authors_name_idx ON authors(name);\n\nCREATE TYPE book_type AS ENUM (\n          'FICTION',\n          'NONFICTION'\n);\n\nCREATE TABLE books (\n          book_id SERIAL PRIMARY KEY,\n          author_id integer NOT NULL REFERENCES authors(author_id),\n          isbn text NOT NULL DEFAULT '' UNIQUE,\n          book_type book_type NOT NULL DEFAULT 'FICTION',\n          title text NOT NULL DEFAULT '',\n          year integer NOT NULL DEFAULT 2000,\n          available timestamp with time zone NOT NULL DEFAULT 'NOW()',\n          tags varchar[] NOT NULL DEFAULT '{}'\n);\n\nCREATE INDEX books_title_idx ON books(title, year);\n\nCREATE FUNCTION say_hello(s text) RETURNS text AS $$\nBEGIN\n          RETURN CONCAT('hello ', s);\nEND;\n$$ LANGUAGE plpgsql;\n\nCREATE INDEX books_title_lower_idx ON books(title);\n"
  },
  {
    "path": "examples/booktest/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"cloud\": {\n    \"project\": \"01HAQMMECEYQYKFJN8MP16QC41\"\n  },\n  \"packages\": [\n    {\n      \"name\": \"booktest\",\n      \"path\": \"postgresql\",\n      \"schema\": \"postgresql/schema.sql\",\n      \"queries\": \"postgresql/query.sql\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"database\": {\n        \"uri\": \"${VET_TEST_EXAMPLES_POSTGRES_BOOKTEST}\"\n      },\n      \"analyzer\": {\n        \"database\": false\n      },\n      \"rules\": [\n        \"sqlc/db-prepare\"\n      ]\n    },\n    {\n      \"name\": \"booktest\",\n      \"path\": \"mysql\",\n      \"schema\": \"mysql/schema.sql\",\n      \"queries\": \"mysql/query.sql\",\n      \"engine\": \"mysql\",\n      \"database\": {\n        \"uri\": \"${VET_TEST_EXAMPLES_MYSQL_BOOKTEST}\"\n      },\n      \"rules\": [\n        \"sqlc/db-prepare\"\n      ]\n    },\n    {\n      \"name\": \"booktest\",\n      \"path\": \"sqlite\",\n      \"schema\": \"sqlite/schema.sql\",\n      \"queries\": \"sqlite/query.sql\",\n      \"engine\": \"sqlite\",\n      \"database\": {\n        \"uri\": \"file:booktest?mode=memory&cache=shared\"\n      },\n      \"rules\": [\n        \"sqlc/db-prepare\"\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "examples/booktest/sqlite/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage booktest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "examples/booktest/sqlite/db_test.go",
    "content": "//go:build examples\n\npackage booktest\n\nimport (\n\t\"context\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest\"\n)\n\n// TODO: Enum is not yet supported\nconst (\n\tBooksBookTypeFICTION    string = \"FICTION\"\n\tBooksBookTypeNONFICTION string = \"NONFICTION\"\n)\n\nfunc TestBooks(t *testing.T) {\n\tdb, cleanup := sqltest.SQLite(t, []string{\"schema.sql\"})\n\tdefer db.Close()\n\tdefer cleanup()\n\n\tctx := context.Background()\n\tdq := New(db)\n\n\t// create an author\n\ta, err := dq.CreateAuthor(ctx, \"Unknown Master\")\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// create transaction\n\ttx, err := db.Begin()\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\ttq := dq.WithTx(tx)\n\n\t// save first book\n\tnow := time.Now()\n\t_, err = tq.CreateBook(ctx, CreateBookParams{\n\t\tAuthorID:  a.AuthorID,\n\t\tIsbn:      \"1\",\n\t\tTitle:     \"my book title\",\n\t\tBookType:  BooksBookTypeFICTION,\n\t\tYr:        2016,\n\t\tAvailable: now,\n\t\tTag:       \"\",\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// save second book\n\tb1, err := tq.CreateBook(ctx, CreateBookParams{\n\t\tAuthorID:  a.AuthorID,\n\t\tIsbn:      \"2\",\n\t\tTitle:     \"the second book\",\n\t\tBookType:  BooksBookTypeFICTION,\n\t\tYr:        2016,\n\t\tAvailable: now,\n\t\tTag:       \"unique\",\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// update the title and tags\n\terr = tq.UpdateBook(ctx, UpdateBookParams{\n\t\tBookID: b1.BookID,\n\t\tTitle:  \"changed second title\",\n\t\tTag:    \"disastor\",\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// save third book\n\t_, err = tq.CreateBook(ctx, CreateBookParams{\n\t\tAuthorID:  a.AuthorID,\n\t\tIsbn:      \"3\",\n\t\tTitle:     \"the third book\",\n\t\tBookType:  BooksBookTypeFICTION,\n\t\tYr:        2001,\n\t\tAvailable: now,\n\t\tTag:       \"cool\",\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// save fourth book\n\tb3, err := tq.CreateBook(ctx, CreateBookParams{\n\t\tAuthorID:  a.AuthorID,\n\t\tIsbn:      \"4\",\n\t\tTitle:     \"4th place finisher\",\n\t\tBookType:  BooksBookTypeFICTION,\n\t\tYr:        2011,\n\t\tAvailable: now,\n\t\tTag:       \"other\",\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// tx commit\n\terr = tx.Commit()\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// upsert, changing ISBN and title\n\terr = dq.UpdateBookISBN(ctx, UpdateBookISBNParams{\n\t\tBookID: b3.BookID,\n\t\tIsbn:   \"NEW ISBN\",\n\t\tTitle:  \"never ever gonna finish, a quatrain\",\n\t\tTag:    \"someother\",\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// retrieve first book\n\tbooks0, err := dq.BooksByTitleYear(ctx, BooksByTitleYearParams{\n\t\tTitle: \"my book title\",\n\t\tYr:    2016,\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tfor _, book := range books0 {\n\t\tt.Logf(\"Book %d (%s): %s available: %s\\n\", book.BookID, book.BookType, book.Title, book.Available.Format(time.RFC822Z))\n\t\tauthor, err := dq.GetAuthor(ctx, book.AuthorID)\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tt.Logf(\"Book %d author: %s\\n\", book.BookID, author.Name)\n\t}\n\n\t// find a book with either \"cool\" or \"other\" or \"someother\" tag\n\tt.Logf(\"---------\\nTag search results:\\n\")\n\tres, err := dq.BooksByTags(ctx, []string{\"cool\", \"other\", \"someother\"})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tfor _, ab := range res {\n\t\tt.Logf(\"Book %d: '%s', Author: '%s', ISBN: '%s' Tag: '%v'\\n\", ab.BookID, ab.Title, ab.Name.String, ab.Isbn, ab.Tag)\n\t}\n\n\t// TODO: call say_hello(varchar)\n\n\t// get book 4 and delete\n\tb5, err := dq.GetBook(ctx, b3.BookID)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif err := dq.DeleteBook(ctx, b5.BookID); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n}\n"
  },
  {
    "path": "examples/booktest/sqlite/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage booktest\n\nimport (\n\t\"time\"\n)\n\ntype Author struct {\n\tAuthorID int64\n\tName     string\n}\n\ntype Book struct {\n\tBookID    int64\n\tAuthorID  int64\n\tIsbn      string\n\tBookType  string\n\tTitle     string\n\tYr        int64\n\tAvailable time.Time\n\tTag       string\n}\n"
  },
  {
    "path": "examples/booktest/sqlite/query.sql",
    "content": "/* name: GetAuthor :one */\nSELECT * FROM authors\nWHERE author_id = ?;\n\n/* name: GetBook :one */\nSELECT * FROM books\nWHERE book_id = ?;\n\n/* name: DeleteBook :exec */\nDELETE FROM books\nWHERE book_id = ?;\n\n/* name: BooksByTitleYear :many */\nSELECT * FROM books\nWHERE title = ? AND yr = ?;\n\n/* name: BooksByTags :many */\nSELECT\n  book_id,\n  title,\n  name,\n  isbn,\n  tag\nFROM books\nLEFT JOIN authors ON books.author_id = authors.author_id\nWHERE tag IN (sqlc.slice(tags));\n\n/* name: CreateAuthor :one */\nINSERT INTO authors (name) VALUES (?)\nRETURNING *;\n\n/* name: CreateBook :one */\nINSERT INTO books (\n    author_id,\n    isbn,\n    book_type,\n    title,\n    yr,\n    available,\n    tag\n) VALUES (\n    ?,\n    ?,\n    ?,\n    ?,\n    ?,\n    ?,\n    ?\n)\nRETURNING *;\n\n/* name: UpdateBook :exec */\nUPDATE books\nSET title = ?1, tag = ?2\nWHERE book_id = ?3;\n\n/* name: UpdateBookISBN :exec */\nUPDATE books\nSET title = ?1, tag = ?2, isbn = ?4\nWHERE book_id = ?3;\n\n/* name: DeleteAuthorBeforeYear :exec */\nDELETE FROM books\nWHERE yr < ? AND author_id = ?;\n"
  },
  {
    "path": "examples/booktest/sqlite/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage booktest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"strings\"\n\t\"time\"\n)\n\nconst booksByTags = `-- name: BooksByTags :many\nSELECT\n  book_id,\n  title,\n  name,\n  isbn,\n  tag\nFROM books\nLEFT JOIN authors ON books.author_id = authors.author_id\nWHERE tag IN (/*SLICE:tags*/?)\n`\n\ntype BooksByTagsRow struct {\n\tBookID int64\n\tTitle  string\n\tName   sql.NullString\n\tIsbn   string\n\tTag    string\n}\n\nfunc (q *Queries) BooksByTags(ctx context.Context, tags []string) ([]BooksByTagsRow, error) {\n\tquery := booksByTags\n\tvar queryParams []interface{}\n\tif len(tags) > 0 {\n\t\tfor _, v := range tags {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:tags*/?\", strings.Repeat(\",?\", len(tags))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:tags*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.db.QueryContext(ctx, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []BooksByTagsRow\n\tfor rows.Next() {\n\t\tvar i BooksByTagsRow\n\t\tif err := rows.Scan(\n\t\t\t&i.BookID,\n\t\t\t&i.Title,\n\t\t\t&i.Name,\n\t\t\t&i.Isbn,\n\t\t\t&i.Tag,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst booksByTitleYear = `-- name: BooksByTitleYear :many\nSELECT book_id, author_id, isbn, book_type, title, yr, available, tag FROM books\nWHERE title = ? AND yr = ?\n`\n\ntype BooksByTitleYearParams struct {\n\tTitle string\n\tYr    int64\n}\n\nfunc (q *Queries) BooksByTitleYear(ctx context.Context, arg BooksByTitleYearParams) ([]Book, error) {\n\trows, err := q.db.QueryContext(ctx, booksByTitleYear, arg.Title, arg.Yr)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Book\n\tfor rows.Next() {\n\t\tvar i Book\n\t\tif err := rows.Scan(\n\t\t\t&i.BookID,\n\t\t\t&i.AuthorID,\n\t\t\t&i.Isbn,\n\t\t\t&i.BookType,\n\t\t\t&i.Title,\n\t\t\t&i.Yr,\n\t\t\t&i.Available,\n\t\t\t&i.Tag,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (name) VALUES (?)\nRETURNING author_id, name\n`\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, name string) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, createAuthor, name)\n\tvar i Author\n\terr := row.Scan(&i.AuthorID, &i.Name)\n\treturn i, err\n}\n\nconst createBook = `-- name: CreateBook :one\nINSERT INTO books (\n    author_id,\n    isbn,\n    book_type,\n    title,\n    yr,\n    available,\n    tag\n) VALUES (\n    ?,\n    ?,\n    ?,\n    ?,\n    ?,\n    ?,\n    ?\n)\nRETURNING book_id, author_id, isbn, book_type, title, yr, available, tag\n`\n\ntype CreateBookParams struct {\n\tAuthorID  int64\n\tIsbn      string\n\tBookType  string\n\tTitle     string\n\tYr        int64\n\tAvailable time.Time\n\tTag       string\n}\n\nfunc (q *Queries) CreateBook(ctx context.Context, arg CreateBookParams) (Book, error) {\n\trow := q.db.QueryRowContext(ctx, createBook,\n\t\targ.AuthorID,\n\t\targ.Isbn,\n\t\targ.BookType,\n\t\targ.Title,\n\t\targ.Yr,\n\t\targ.Available,\n\t\targ.Tag,\n\t)\n\tvar i Book\n\terr := row.Scan(\n\t\t&i.BookID,\n\t\t&i.AuthorID,\n\t\t&i.Isbn,\n\t\t&i.BookType,\n\t\t&i.Title,\n\t\t&i.Yr,\n\t\t&i.Available,\n\t\t&i.Tag,\n\t)\n\treturn i, err\n}\n\nconst deleteAuthorBeforeYear = `-- name: DeleteAuthorBeforeYear :exec\nDELETE FROM books\nWHERE yr < ? AND author_id = ?\n`\n\ntype DeleteAuthorBeforeYearParams struct {\n\tYr       int64\n\tAuthorID int64\n}\n\nfunc (q *Queries) DeleteAuthorBeforeYear(ctx context.Context, arg DeleteAuthorBeforeYearParams) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthorBeforeYear, arg.Yr, arg.AuthorID)\n\treturn err\n}\n\nconst deleteBook = `-- name: DeleteBook :exec\nDELETE FROM books\nWHERE book_id = ?\n`\n\nfunc (q *Queries) DeleteBook(ctx context.Context, bookID int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteBook, bookID)\n\treturn err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT author_id, name FROM authors\nWHERE author_id = ?\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, authorID int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, authorID)\n\tvar i Author\n\terr := row.Scan(&i.AuthorID, &i.Name)\n\treturn i, err\n}\n\nconst getBook = `-- name: GetBook :one\nSELECT book_id, author_id, isbn, book_type, title, yr, available, tag FROM books\nWHERE book_id = ?\n`\n\nfunc (q *Queries) GetBook(ctx context.Context, bookID int64) (Book, error) {\n\trow := q.db.QueryRowContext(ctx, getBook, bookID)\n\tvar i Book\n\terr := row.Scan(\n\t\t&i.BookID,\n\t\t&i.AuthorID,\n\t\t&i.Isbn,\n\t\t&i.BookType,\n\t\t&i.Title,\n\t\t&i.Yr,\n\t\t&i.Available,\n\t\t&i.Tag,\n\t)\n\treturn i, err\n}\n\nconst updateBook = `-- name: UpdateBook :exec\nUPDATE books\nSET title = ?1, tag = ?2\nWHERE book_id = ?3\n`\n\ntype UpdateBookParams struct {\n\tTitle  string\n\tTag    string\n\tBookID int64\n}\n\nfunc (q *Queries) UpdateBook(ctx context.Context, arg UpdateBookParams) error {\n\t_, err := q.db.ExecContext(ctx, updateBook, arg.Title, arg.Tag, arg.BookID)\n\treturn err\n}\n\nconst updateBookISBN = `-- name: UpdateBookISBN :exec\nUPDATE books\nSET title = ?1, tag = ?2, isbn = ?4\nWHERE book_id = ?3\n`\n\ntype UpdateBookISBNParams struct {\n\tTitle  string\n\tTag    string\n\tBookID int64\n\tIsbn   string\n}\n\nfunc (q *Queries) UpdateBookISBN(ctx context.Context, arg UpdateBookISBNParams) error {\n\t_, err := q.db.ExecContext(ctx, updateBookISBN,\n\t\targ.Title,\n\t\targ.Tag,\n\t\targ.BookID,\n\t\targ.Isbn,\n\t)\n\treturn err\n}\n"
  },
  {
    "path": "examples/booktest/sqlite/schema.sql",
    "content": "CREATE TABLE authors (\n          author_id integer NOT NULL PRIMARY KEY AUTOINCREMENT,\n          name text NOT NULL\n);\n\nCREATE INDEX authors_name_idx ON authors(name);\n\nCREATE TABLE books (\n          book_id integer NOT NULL PRIMARY KEY AUTOINCREMENT,\n          author_id integer NOT NULL,\n          isbn varchar(255) NOT NULL DEFAULT '' UNIQUE,\n          book_type text NOT NULL DEFAULT 'FICTION',\n          title text NOT NULL,\n          yr integer NOT NULL DEFAULT 2000,\n          available datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,\n          tag text NOT NULL,\n          CHECK (book_type = 'FICTION' OR book_type = 'NONFICTION')\n);\n\nCREATE INDEX books_title_idx ON books(title, yr);\n"
  },
  {
    "path": "examples/jets/README.md",
    "content": "This database schema and query selection is taken from the\n[SQLBoiler](https://github.com/volatiletech/sqlboiler#features--examples)\nREADME.\n"
  },
  {
    "path": "examples/jets/postgresql/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage jets\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "examples/jets/postgresql/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage jets\n\ntype Jet struct {\n\tID      int32\n\tPilotID int32\n\tAge     int32\n\tName    string\n\tColor   string\n}\n\ntype Language struct {\n\tID       int32\n\tLanguage string\n}\n\ntype Pilot struct {\n\tID   int32\n\tName string\n}\n\ntype PilotLanguage struct {\n\tPilotID    int32\n\tLanguageID int32\n}\n"
  },
  {
    "path": "examples/jets/postgresql/query-building.sql",
    "content": "-- name: CountPilots :one\nSELECT COUNT(*) FROM pilots;\n\n-- name: ListPilots :many\nSELECT * FROM pilots LIMIT 5;\n\n-- name: DeletePilot :exec\nDELETE FROM pilots WHERE id = $1;\n"
  },
  {
    "path": "examples/jets/postgresql/query-building.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query-building.sql\n\npackage jets\n\nimport (\n\t\"context\"\n)\n\nconst countPilots = `-- name: CountPilots :one\nSELECT COUNT(*) FROM pilots\n`\n\nfunc (q *Queries) CountPilots(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRow(ctx, countPilots)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n\nconst deletePilot = `-- name: DeletePilot :exec\nDELETE FROM pilots WHERE id = $1\n`\n\nfunc (q *Queries) DeletePilot(ctx context.Context, id int32) error {\n\t_, err := q.db.Exec(ctx, deletePilot, id)\n\treturn err\n}\n\nconst listPilots = `-- name: ListPilots :many\nSELECT id, name FROM pilots LIMIT 5\n`\n\nfunc (q *Queries) ListPilots(ctx context.Context) ([]Pilot, error) {\n\trows, err := q.db.Query(ctx, listPilots)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Pilot\n\tfor rows.Next() {\n\t\tvar i Pilot\n\t\tif err := rows.Scan(&i.ID, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "examples/jets/postgresql/schema.sql",
    "content": "CREATE TABLE pilots (\n          id integer NOT NULL,\n          name text NOT NULL\n);\n\nALTER TABLE pilots ADD CONSTRAINT pilot_pkey PRIMARY KEY (id);\n\nCREATE TABLE jets (\n          id integer NOT NULL,\n          pilot_id integer NOT NULL,\n          age integer NOT NULL,\n          name text NOT NULL,\n          color text NOT NULL\n);\n\nALTER TABLE jets ADD CONSTRAINT jet_pkey PRIMARY KEY (id);\nALTER TABLE jets ADD CONSTRAINT jet_pilots_fkey FOREIGN KEY (pilot_id) REFERENCES pilots(id);\n\nCREATE TABLE languages (\n          id integer NOT NULL,\n          language text NOT NULL\n);\n\nALTER TABLE languages ADD CONSTRAINT language_pkey PRIMARY KEY (id);\n\n-- Join table\nCREATE TABLE pilot_languages (\n          pilot_id integer NOT NULL,\n          language_id integer NOT NULL\n);\n\n-- Composite primary key\nALTER TABLE pilot_languages ADD CONSTRAINT pilot_language_pkey PRIMARY KEY (pilot_id, language_id);\nALTER TABLE pilot_languages ADD CONSTRAINT pilot_language_pilots_fkey FOREIGN KEY (pilot_id) REFERENCES pilots(id);\nALTER TABLE pilot_languages ADD CONSTRAINT pilot_language_languages_fkey FOREIGN KEY (language_id) REFERENCES languages(id);\n"
  },
  {
    "path": "examples/jets/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"cloud\": {\n    \"project\": \"01HAQMMECEYQYKFJN8MP16QC41\"\n  },\n  \"packages\": [\n    {\n      \"path\": \"postgresql\",\n      \"name\": \"jets\",\n      \"schema\": \"postgresql/schema.sql\",\n      \"queries\": \"postgresql/query-building.sql\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"database\": {\n        \"uri\": \"${VET_TEST_EXAMPLES_POSTGRES_JETS}\"\n      },\n      \"analyzer\": {\n        \"database\": false\n      },\n      \"rules\": [\n        \"sqlc/db-prepare\"\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "examples/ondeck/mysql/city.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: city.sql\n\npackage ondeck\n\nimport (\n\t\"context\"\n)\n\nconst createCity = `-- name: CreateCity :exec\nINSERT INTO city (\n    name,\n    slug\n) VALUES (\n    ?,\n    ? \n)\n`\n\ntype CreateCityParams struct {\n\tName string `json:\"name\"`\n\tSlug string `json:\"slug\"`\n}\n\nfunc (q *Queries) CreateCity(ctx context.Context, arg CreateCityParams) error {\n\t_, err := q.exec(ctx, q.createCityStmt, createCity, arg.Name, arg.Slug)\n\treturn err\n}\n\nconst getCity = `-- name: GetCity :one\nSELECT slug, name\nFROM city\nWHERE slug = ?\n`\n\nfunc (q *Queries) GetCity(ctx context.Context, slug string) (City, error) {\n\trow := q.queryRow(ctx, q.getCityStmt, getCity, slug)\n\tvar i City\n\terr := row.Scan(&i.Slug, &i.Name)\n\treturn i, err\n}\n\nconst listCities = `-- name: ListCities :many\nSELECT slug, name\nFROM city\nORDER BY name\n`\n\nfunc (q *Queries) ListCities(ctx context.Context) ([]City, error) {\n\trows, err := q.query(ctx, q.listCitiesStmt, listCities)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []City\n\tfor rows.Next() {\n\t\tvar i City\n\t\tif err := rows.Scan(&i.Slug, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst updateCityName = `-- name: UpdateCityName :exec\nUPDATE city\nSET name = ?\nWHERE slug = ?\n`\n\ntype UpdateCityNameParams struct {\n\tName string `json:\"name\"`\n\tSlug string `json:\"slug\"`\n}\n\nfunc (q *Queries) UpdateCityName(ctx context.Context, arg UpdateCityNameParams) error {\n\t_, err := q.exec(ctx, q.updateCityNameStmt, updateCityName, arg.Name, arg.Slug)\n\treturn err\n}\n"
  },
  {
    "path": "examples/ondeck/mysql/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage ondeck\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"fmt\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\nfunc Prepare(ctx context.Context, db DBTX) (*Queries, error) {\n\tq := Queries{db: db}\n\tvar err error\n\tif q.createCityStmt, err = db.PrepareContext(ctx, createCity); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query CreateCity: %w\", err)\n\t}\n\tif q.createVenueStmt, err = db.PrepareContext(ctx, createVenue); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query CreateVenue: %w\", err)\n\t}\n\tif q.deleteVenueStmt, err = db.PrepareContext(ctx, deleteVenue); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query DeleteVenue: %w\", err)\n\t}\n\tif q.getCityStmt, err = db.PrepareContext(ctx, getCity); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query GetCity: %w\", err)\n\t}\n\tif q.getVenueStmt, err = db.PrepareContext(ctx, getVenue); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query GetVenue: %w\", err)\n\t}\n\tif q.listCitiesStmt, err = db.PrepareContext(ctx, listCities); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query ListCities: %w\", err)\n\t}\n\tif q.listVenuesStmt, err = db.PrepareContext(ctx, listVenues); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query ListVenues: %w\", err)\n\t}\n\tif q.updateCityNameStmt, err = db.PrepareContext(ctx, updateCityName); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query UpdateCityName: %w\", err)\n\t}\n\tif q.updateVenueNameStmt, err = db.PrepareContext(ctx, updateVenueName); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query UpdateVenueName: %w\", err)\n\t}\n\tif q.venueCountByCityStmt, err = db.PrepareContext(ctx, venueCountByCity); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query VenueCountByCity: %w\", err)\n\t}\n\treturn &q, nil\n}\n\nfunc (q *Queries) Close() error {\n\tvar err error\n\tif q.createCityStmt != nil {\n\t\tif cerr := q.createCityStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing createCityStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.createVenueStmt != nil {\n\t\tif cerr := q.createVenueStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing createVenueStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.deleteVenueStmt != nil {\n\t\tif cerr := q.deleteVenueStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing deleteVenueStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.getCityStmt != nil {\n\t\tif cerr := q.getCityStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing getCityStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.getVenueStmt != nil {\n\t\tif cerr := q.getVenueStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing getVenueStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.listCitiesStmt != nil {\n\t\tif cerr := q.listCitiesStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing listCitiesStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.listVenuesStmt != nil {\n\t\tif cerr := q.listVenuesStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing listVenuesStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.updateCityNameStmt != nil {\n\t\tif cerr := q.updateCityNameStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing updateCityNameStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.updateVenueNameStmt != nil {\n\t\tif cerr := q.updateVenueNameStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing updateVenueNameStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.venueCountByCityStmt != nil {\n\t\tif cerr := q.venueCountByCityStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing venueCountByCityStmt: %w\", cerr)\n\t\t}\n\t}\n\treturn err\n}\n\nfunc (q *Queries) exec(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) (sql.Result, error) {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).ExecContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.ExecContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.ExecContext(ctx, query, args...)\n\t}\n}\n\nfunc (q *Queries) query(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) (*sql.Rows, error) {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).QueryContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.QueryContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.QueryContext(ctx, query, args...)\n\t}\n}\n\nfunc (q *Queries) queryRow(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) *sql.Row {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).QueryRowContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.QueryRowContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.QueryRowContext(ctx, query, args...)\n\t}\n}\n\ntype Queries struct {\n\tdb                   DBTX\n\ttx                   *sql.Tx\n\tcreateCityStmt       *sql.Stmt\n\tcreateVenueStmt      *sql.Stmt\n\tdeleteVenueStmt      *sql.Stmt\n\tgetCityStmt          *sql.Stmt\n\tgetVenueStmt         *sql.Stmt\n\tlistCitiesStmt       *sql.Stmt\n\tlistVenuesStmt       *sql.Stmt\n\tupdateCityNameStmt   *sql.Stmt\n\tupdateVenueNameStmt  *sql.Stmt\n\tvenueCountByCityStmt *sql.Stmt\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb:                   tx,\n\t\ttx:                   tx,\n\t\tcreateCityStmt:       q.createCityStmt,\n\t\tcreateVenueStmt:      q.createVenueStmt,\n\t\tdeleteVenueStmt:      q.deleteVenueStmt,\n\t\tgetCityStmt:          q.getCityStmt,\n\t\tgetVenueStmt:         q.getVenueStmt,\n\t\tlistCitiesStmt:       q.listCitiesStmt,\n\t\tlistVenuesStmt:       q.listVenuesStmt,\n\t\tupdateCityNameStmt:   q.updateCityNameStmt,\n\t\tupdateVenueNameStmt:  q.updateVenueNameStmt,\n\t\tvenueCountByCityStmt: q.venueCountByCityStmt,\n\t}\n}\n"
  },
  {
    "path": "examples/ondeck/mysql/db_test.go",
    "content": "//go:build examples\n\npackage ondeck\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"strings\"\n\t\"testing\"\n\n\t_ \"github.com/go-sql-driver/mysql\"\n\t\"github.com/google/go-cmp/cmp\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/local\"\n)\n\nfunc join(vals ...string) sql.NullString {\n\tif len(vals) == 0 {\n\t\treturn sql.NullString{}\n\t}\n\treturn sql.NullString{\n\t\tValid:  true,\n\t\tString: strings.Join(vals, \",\"),\n\t}\n}\n\nfunc runOnDeckQueries(t *testing.T, q *Queries) {\n\tctx := context.Background()\n\n\terr := q.CreateCity(ctx, CreateCityParams{\n\t\tSlug: \"san-francisco\",\n\t\tName: \"San Francisco\",\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tcity, err := q.GetCity(ctx, \"san-francisco\")\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tvenueResult, err := q.CreateVenue(ctx, CreateVenueParams{\n\t\tSlug:            \"the-fillmore\",\n\t\tName:            \"The Fillmore\",\n\t\tCity:            city.Slug,\n\t\tSpotifyPlaylist: \"spotify:uri\",\n\t\tStatus:          VenueStatusOpen,\n\t\tStatuses:        join(string(VenueStatusOpen), string(VenueStatusClosed)),\n\t\tTags:            join(\"rock\", \"punk\"),\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tvenueID, err := venueResult.LastInsertId()\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tvenue, err := q.GetVenue(ctx, GetVenueParams{\n\t\tSlug: \"the-fillmore\",\n\t\tCity: city.Slug,\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tif diff := cmp.Diff(venue.ID, uint64(venueID)); diff != \"\" {\n\t\tt.Errorf(\"venue ID mismatch:\\n%s\", diff)\n\t}\n\n\t{\n\t\tactual, err := q.VenueCountByCity(ctx)\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t\tif diff := cmp.Diff(actual, []VenueCountByCityRow{\n\t\t\t{city.Slug, int64(1)},\n\t\t}); diff != \"\" {\n\t\t\tt.Errorf(\"venue count mismatch:\\n%s\", diff)\n\t\t}\n\t}\n\n\t{\n\t\tactual, err := q.ListCities(ctx)\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t\tif diff := cmp.Diff(actual, []City{city}); diff != \"\" {\n\t\t\tt.Errorf(\"list city mismatch:\\n%s\", diff)\n\t\t}\n\t}\n\n\t{\n\t\tactual, err := q.ListVenues(ctx, city.Slug)\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t\tif diff := cmp.Diff(actual, []Venue{venue}); diff != \"\" {\n\t\t\tt.Errorf(\"list venue mismatch:\\n%s\", diff)\n\t\t}\n\t}\n\n\t{\n\t\terr := q.UpdateCityName(ctx, UpdateCityNameParams{\n\t\t\tSlug: city.Slug,\n\t\t\tName: \"SF\",\n\t\t})\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t}\n\n\t{\n\t\texpected := \"Fillmore\"\n\t\terr := q.UpdateVenueName(ctx, UpdateVenueNameParams{\n\t\t\tSlug: venue.Slug,\n\t\t\tName: expected,\n\t\t})\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t\tfresh, err := q.GetVenue(ctx, GetVenueParams{\n\t\t\tSlug: venue.Slug,\n\t\t\tCity: city.Slug,\n\t\t})\n\t\tif diff := cmp.Diff(expected, fresh.Name); diff != \"\" {\n\t\t\tt.Errorf(\"update venue mismatch:\\n%s\", diff)\n\t\t}\n\t}\n\n\t{\n\t\terr := q.DeleteVenue(ctx, DeleteVenueParams{\n\t\t\tSlug:   venue.Slug,\n\t\t\tSlug_2: venue.Slug,\n\t\t})\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t}\n}\n\nfunc TestPrepared(t *testing.T) {\n\tt.Parallel()\n\n\turi := local.MySQL(t, []string{\"schema\"})\n\tdb, err := sql.Open(\"mysql\", uri)\n\tif err != nil {\n\t\tt.Fatalf(\"%s: %s\", uri, err)\n\t}\n\tdefer db.Close()\n\n\tq, err := Prepare(context.Background(), db)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\trunOnDeckQueries(t, q)\n}\n\nfunc TestQueries(t *testing.T) {\n\tt.Parallel()\n\n\turi := local.MySQL(t, []string{\"schema\"})\n\tdb, err := sql.Open(\"mysql\", uri)\n\tif err != nil {\n\t\tt.Fatalf(\"%s: %s\", uri, err)\n\t}\n\tdefer db.Close()\n\n\trunOnDeckQueries(t, New(db))\n}\n"
  },
  {
    "path": "examples/ondeck/mysql/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage ondeck\n\nimport (\n\t\"database/sql\"\n\t\"database/sql/driver\"\n\t\"fmt\"\n\t\"time\"\n)\n\ntype VenueStatus string\n\nconst (\n\tVenueStatusOpen   VenueStatus = \"open\"\n\tVenueStatusClosed VenueStatus = \"closed\"\n)\n\nfunc (e *VenueStatus) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = VenueStatus(s)\n\tcase string:\n\t\t*e = VenueStatus(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for VenueStatus: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullVenueStatus struct {\n\tVenueStatus VenueStatus `json:\"venue_status\"`\n\tValid       bool        `json:\"valid\"` // Valid is true if VenueStatus is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullVenueStatus) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.VenueStatus, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.VenueStatus.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullVenueStatus) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.VenueStatus), nil\n}\n\ntype City struct {\n\tSlug string `json:\"slug\"`\n\tName string `json:\"name\"`\n}\n\n// Venues are places where muisc happens\ntype Venue struct {\n\tID uint64 `json:\"id\"`\n\t// Venues can be either open or closed\n\tStatus   VenueStatus    `json:\"status\"`\n\tStatuses sql.NullString `json:\"statuses\"`\n\t// This value appears in public URLs\n\tSlug            string         `json:\"slug\"`\n\tName            string         `json:\"name\"`\n\tCity            string         `json:\"city\"`\n\tSpotifyPlaylist string         `json:\"spotify_playlist\"`\n\tSongkickID      sql.NullString `json:\"songkick_id\"`\n\tTags            sql.NullString `json:\"tags\"`\n\tCreatedAt       time.Time      `json:\"created_at\"`\n}\n"
  },
  {
    "path": "examples/ondeck/mysql/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage ondeck\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype Querier interface {\n\tCreateCity(ctx context.Context, arg CreateCityParams) error\n\tCreateVenue(ctx context.Context, arg CreateVenueParams) (sql.Result, error)\n\tDeleteVenue(ctx context.Context, arg DeleteVenueParams) error\n\tGetCity(ctx context.Context, slug string) (City, error)\n\tGetVenue(ctx context.Context, arg GetVenueParams) (Venue, error)\n\tListCities(ctx context.Context) ([]City, error)\n\tListVenues(ctx context.Context, city string) ([]Venue, error)\n\tUpdateCityName(ctx context.Context, arg UpdateCityNameParams) error\n\tUpdateVenueName(ctx context.Context, arg UpdateVenueNameParams) error\n\tVenueCountByCity(ctx context.Context) ([]VenueCountByCityRow, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "examples/ondeck/mysql/query/city.sql",
    "content": "/* name: ListCities :many */\nSELECT *\nFROM city\nORDER BY name;\n\n/* name: GetCity :one */\nSELECT *\nFROM city\nWHERE slug = ?;\n\n/* name: CreateCity :exec */\nINSERT INTO city (\n    name,\n    slug\n) VALUES (\n    ?,\n    ? \n); \n\n/* name: UpdateCityName :exec */\nUPDATE city\nSET name = ?\nWHERE slug = ?;\n"
  },
  {
    "path": "examples/ondeck/mysql/query/venue.sql",
    "content": "/* name: ListVenues :many */\nSELECT *\nFROM venue\nWHERE city = ?\nORDER BY name;\n\n/* name: DeleteVenue :exec */\nDELETE FROM venue\nWHERE slug = ? AND slug = ?;\n\n/* name: GetVenue :one */\nSELECT *\nFROM venue\nWHERE slug = ? AND city = ?;\n\n/* name: CreateVenue :execresult */\nINSERT INTO venue (\n    slug,\n    name,\n    city,\n    created_at,\n    spotify_playlist,\n    status,\n    statuses,\n    tags\n) VALUES (\n    ?,\n    ?,\n    ?,\n    NOW(),\n    ?,\n    ?,\n    ?,\n    ?\n);\n\n/* name: UpdateVenueName :exec */\nUPDATE venue\nSET name = ?\nWHERE slug = ?;\n\n/* name: VenueCountByCity :many */\nSELECT\n    city,\n    count(*)\nFROM venue\nGROUP BY 1\nORDER BY 1;\n"
  },
  {
    "path": "examples/ondeck/mysql/schema/0001_city.sql",
    "content": "CREATE TABLE city (\n    slug varchar(255) PRIMARY KEY,\n    name text NOT NULL\n);\n"
  },
  {
    "path": "examples/ondeck/mysql/schema/0002_venue.sql",
    "content": "CREATE TABLE venues (\n    id               SERIAL primary key,\n    dropped          text,\n    status           ENUM('open', 'closed') not null COMMENT 'Venues can be either open or closed',\n    statuses         text, -- status[],\n    slug             text         not null COMMENT 'This value appears in public URLs',\n    name             varchar(255) not null,\n    city             varchar(255) not null references city(slug),\n    spotify_playlist varchar(255) not null,\n    songkick_id      text,\n    tags             text  -- text[]\n) COMMENT='Venues are places where muisc happens';\n"
  },
  {
    "path": "examples/ondeck/mysql/schema/0003_add_column.sql",
    "content": "ALTER TABLE venues RENAME TO venue;\nALTER TABLE venue ADD COLUMN created_at TIMESTAMP NOT NULL DEFAULT NOW();\nALTER TABLE venue DROP COLUMN dropped;\n"
  },
  {
    "path": "examples/ondeck/mysql/venue.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: venue.sql\n\npackage ondeck\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst createVenue = `-- name: CreateVenue :execresult\nINSERT INTO venue (\n    slug,\n    name,\n    city,\n    created_at,\n    spotify_playlist,\n    status,\n    statuses,\n    tags\n) VALUES (\n    ?,\n    ?,\n    ?,\n    NOW(),\n    ?,\n    ?,\n    ?,\n    ?\n)\n`\n\ntype CreateVenueParams struct {\n\tSlug            string         `json:\"slug\"`\n\tName            string         `json:\"name\"`\n\tCity            string         `json:\"city\"`\n\tSpotifyPlaylist string         `json:\"spotify_playlist\"`\n\tStatus          VenueStatus    `json:\"status\"`\n\tStatuses        sql.NullString `json:\"statuses\"`\n\tTags            sql.NullString `json:\"tags\"`\n}\n\nfunc (q *Queries) CreateVenue(ctx context.Context, arg CreateVenueParams) (sql.Result, error) {\n\treturn q.exec(ctx, q.createVenueStmt, createVenue,\n\t\targ.Slug,\n\t\targ.Name,\n\t\targ.City,\n\t\targ.SpotifyPlaylist,\n\t\targ.Status,\n\t\targ.Statuses,\n\t\targ.Tags,\n\t)\n}\n\nconst deleteVenue = `-- name: DeleteVenue :exec\nDELETE FROM venue\nWHERE slug = ? AND slug = ?\n`\n\ntype DeleteVenueParams struct {\n\tSlug   string `json:\"slug\"`\n\tSlug_2 string `json:\"slug_2\"`\n}\n\nfunc (q *Queries) DeleteVenue(ctx context.Context, arg DeleteVenueParams) error {\n\t_, err := q.exec(ctx, q.deleteVenueStmt, deleteVenue, arg.Slug, arg.Slug_2)\n\treturn err\n}\n\nconst getVenue = `-- name: GetVenue :one\nSELECT id, status, statuses, slug, name, city, spotify_playlist, songkick_id, tags, created_at\nFROM venue\nWHERE slug = ? AND city = ?\n`\n\ntype GetVenueParams struct {\n\tSlug string `json:\"slug\"`\n\tCity string `json:\"city\"`\n}\n\nfunc (q *Queries) GetVenue(ctx context.Context, arg GetVenueParams) (Venue, error) {\n\trow := q.queryRow(ctx, q.getVenueStmt, getVenue, arg.Slug, arg.City)\n\tvar i Venue\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Status,\n\t\t&i.Statuses,\n\t\t&i.Slug,\n\t\t&i.Name,\n\t\t&i.City,\n\t\t&i.SpotifyPlaylist,\n\t\t&i.SongkickID,\n\t\t&i.Tags,\n\t\t&i.CreatedAt,\n\t)\n\treturn i, err\n}\n\nconst listVenues = `-- name: ListVenues :many\nSELECT id, status, statuses, slug, name, city, spotify_playlist, songkick_id, tags, created_at\nFROM venue\nWHERE city = ?\nORDER BY name\n`\n\nfunc (q *Queries) ListVenues(ctx context.Context, city string) ([]Venue, error) {\n\trows, err := q.query(ctx, q.listVenuesStmt, listVenues, city)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Venue\n\tfor rows.Next() {\n\t\tvar i Venue\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Status,\n\t\t\t&i.Statuses,\n\t\t\t&i.Slug,\n\t\t\t&i.Name,\n\t\t\t&i.City,\n\t\t\t&i.SpotifyPlaylist,\n\t\t\t&i.SongkickID,\n\t\t\t&i.Tags,\n\t\t\t&i.CreatedAt,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst updateVenueName = `-- name: UpdateVenueName :exec\nUPDATE venue\nSET name = ?\nWHERE slug = ?\n`\n\ntype UpdateVenueNameParams struct {\n\tName string `json:\"name\"`\n\tSlug string `json:\"slug\"`\n}\n\nfunc (q *Queries) UpdateVenueName(ctx context.Context, arg UpdateVenueNameParams) error {\n\t_, err := q.exec(ctx, q.updateVenueNameStmt, updateVenueName, arg.Name, arg.Slug)\n\treturn err\n}\n\nconst venueCountByCity = `-- name: VenueCountByCity :many\nSELECT\n    city,\n    count(*)\nFROM venue\nGROUP BY 1\nORDER BY 1\n`\n\ntype VenueCountByCityRow struct {\n\tCity  string `json:\"city\"`\n\tCount int64  `json:\"count\"`\n}\n\nfunc (q *Queries) VenueCountByCity(ctx context.Context) ([]VenueCountByCityRow, error) {\n\trows, err := q.query(ctx, q.venueCountByCityStmt, venueCountByCity)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []VenueCountByCityRow\n\tfor rows.Next() {\n\t\tvar i VenueCountByCityRow\n\t\tif err := rows.Scan(&i.City, &i.Count); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "examples/ondeck/postgresql/city.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: city.sql\n\npackage ondeck\n\nimport (\n\t\"context\"\n)\n\nconst createCity = `-- name: CreateCity :one\nINSERT INTO city (\n    name,\n    slug\n) VALUES (\n    $1,\n    $2\n) RETURNING slug, name\n`\n\ntype CreateCityParams struct {\n\tName string `json:\"name\"`\n\tSlug string `json:\"slug\"`\n}\n\n// Create a new city. The slug must be unique.\n// This is the second line of the comment\n// This is the third line\nfunc (q *Queries) CreateCity(ctx context.Context, arg CreateCityParams) (City, error) {\n\trow := q.queryRow(ctx, q.createCityStmt, createCity, arg.Name, arg.Slug)\n\tvar i City\n\terr := row.Scan(&i.Slug, &i.Name)\n\treturn i, err\n}\n\nconst getCity = `-- name: GetCity :one\nSELECT slug, name\nFROM city\nWHERE slug = $1\n`\n\nfunc (q *Queries) GetCity(ctx context.Context, slug string) (City, error) {\n\trow := q.queryRow(ctx, q.getCityStmt, getCity, slug)\n\tvar i City\n\terr := row.Scan(&i.Slug, &i.Name)\n\treturn i, err\n}\n\nconst listCities = `-- name: ListCities :many\nSELECT slug, name\nFROM city\nORDER BY name\n`\n\nfunc (q *Queries) ListCities(ctx context.Context) ([]City, error) {\n\trows, err := q.query(ctx, q.listCitiesStmt, listCities)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []City\n\tfor rows.Next() {\n\t\tvar i City\n\t\tif err := rows.Scan(&i.Slug, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst updateCityName = `-- name: UpdateCityName :exec\nUPDATE city\nSET name = $2\nWHERE slug = $1\n`\n\ntype UpdateCityNameParams struct {\n\tSlug string `json:\"slug\"`\n\tName string `json:\"name\"`\n}\n\nfunc (q *Queries) UpdateCityName(ctx context.Context, arg UpdateCityNameParams) error {\n\t_, err := q.exec(ctx, q.updateCityNameStmt, updateCityName, arg.Slug, arg.Name)\n\treturn err\n}\n"
  },
  {
    "path": "examples/ondeck/postgresql/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage ondeck\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"fmt\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\nfunc Prepare(ctx context.Context, db DBTX) (*Queries, error) {\n\tq := Queries{db: db}\n\tvar err error\n\tif q.createCityStmt, err = db.PrepareContext(ctx, createCity); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query CreateCity: %w\", err)\n\t}\n\tif q.createVenueStmt, err = db.PrepareContext(ctx, createVenue); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query CreateVenue: %w\", err)\n\t}\n\tif q.deleteVenueStmt, err = db.PrepareContext(ctx, deleteVenue); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query DeleteVenue: %w\", err)\n\t}\n\tif q.getCityStmt, err = db.PrepareContext(ctx, getCity); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query GetCity: %w\", err)\n\t}\n\tif q.getVenueStmt, err = db.PrepareContext(ctx, getVenue); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query GetVenue: %w\", err)\n\t}\n\tif q.listCitiesStmt, err = db.PrepareContext(ctx, listCities); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query ListCities: %w\", err)\n\t}\n\tif q.listVenuesStmt, err = db.PrepareContext(ctx, listVenues); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query ListVenues: %w\", err)\n\t}\n\tif q.updateCityNameStmt, err = db.PrepareContext(ctx, updateCityName); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query UpdateCityName: %w\", err)\n\t}\n\tif q.updateVenueNameStmt, err = db.PrepareContext(ctx, updateVenueName); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query UpdateVenueName: %w\", err)\n\t}\n\tif q.venueCountByCityStmt, err = db.PrepareContext(ctx, venueCountByCity); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query VenueCountByCity: %w\", err)\n\t}\n\treturn &q, nil\n}\n\nfunc (q *Queries) Close() error {\n\tvar err error\n\tif q.createCityStmt != nil {\n\t\tif cerr := q.createCityStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing createCityStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.createVenueStmt != nil {\n\t\tif cerr := q.createVenueStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing createVenueStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.deleteVenueStmt != nil {\n\t\tif cerr := q.deleteVenueStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing deleteVenueStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.getCityStmt != nil {\n\t\tif cerr := q.getCityStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing getCityStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.getVenueStmt != nil {\n\t\tif cerr := q.getVenueStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing getVenueStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.listCitiesStmt != nil {\n\t\tif cerr := q.listCitiesStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing listCitiesStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.listVenuesStmt != nil {\n\t\tif cerr := q.listVenuesStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing listVenuesStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.updateCityNameStmt != nil {\n\t\tif cerr := q.updateCityNameStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing updateCityNameStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.updateVenueNameStmt != nil {\n\t\tif cerr := q.updateVenueNameStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing updateVenueNameStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.venueCountByCityStmt != nil {\n\t\tif cerr := q.venueCountByCityStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing venueCountByCityStmt: %w\", cerr)\n\t\t}\n\t}\n\treturn err\n}\n\nfunc (q *Queries) exec(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) (sql.Result, error) {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).ExecContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.ExecContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.ExecContext(ctx, query, args...)\n\t}\n}\n\nfunc (q *Queries) query(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) (*sql.Rows, error) {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).QueryContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.QueryContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.QueryContext(ctx, query, args...)\n\t}\n}\n\nfunc (q *Queries) queryRow(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) *sql.Row {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).QueryRowContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.QueryRowContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.QueryRowContext(ctx, query, args...)\n\t}\n}\n\ntype Queries struct {\n\tdb                   DBTX\n\ttx                   *sql.Tx\n\tcreateCityStmt       *sql.Stmt\n\tcreateVenueStmt      *sql.Stmt\n\tdeleteVenueStmt      *sql.Stmt\n\tgetCityStmt          *sql.Stmt\n\tgetVenueStmt         *sql.Stmt\n\tlistCitiesStmt       *sql.Stmt\n\tlistVenuesStmt       *sql.Stmt\n\tupdateCityNameStmt   *sql.Stmt\n\tupdateVenueNameStmt  *sql.Stmt\n\tvenueCountByCityStmt *sql.Stmt\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb:                   tx,\n\t\ttx:                   tx,\n\t\tcreateCityStmt:       q.createCityStmt,\n\t\tcreateVenueStmt:      q.createVenueStmt,\n\t\tdeleteVenueStmt:      q.deleteVenueStmt,\n\t\tgetCityStmt:          q.getCityStmt,\n\t\tgetVenueStmt:         q.getVenueStmt,\n\t\tlistCitiesStmt:       q.listCitiesStmt,\n\t\tlistVenuesStmt:       q.listVenuesStmt,\n\t\tupdateCityNameStmt:   q.updateCityNameStmt,\n\t\tupdateVenueNameStmt:  q.updateVenueNameStmt,\n\t\tvenueCountByCityStmt: q.venueCountByCityStmt,\n\t}\n}\n"
  },
  {
    "path": "examples/ondeck/postgresql/db_test.go",
    "content": "//go:build examples\n\npackage ondeck\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"testing\"\n\n\t\"github.com/google/go-cmp/cmp\"\n\t_ \"github.com/lib/pq\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/local\"\n)\n\nfunc runOnDeckQueries(t *testing.T, q *Queries) {\n\tctx := context.Background()\n\n\tcity, err := q.CreateCity(ctx, CreateCityParams{\n\t\tSlug: \"san-francisco\",\n\t\tName: \"San Francisco\",\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tvenueID, err := q.CreateVenue(ctx, CreateVenueParams{\n\t\tSlug:            \"the-fillmore\",\n\t\tName:            \"The Fillmore\",\n\t\tCity:            city.Slug,\n\t\tSpotifyPlaylist: \"spotify:uri\",\n\t\tStatus:          StatusOpen,\n\t\tStatuses:        []Status{StatusOpen, StatusClosed},\n\t\tTags:            []string{\"rock\", \"punk\"},\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tvenue, err := q.GetVenue(ctx, GetVenueParams{\n\t\tSlug: \"the-fillmore\",\n\t\tCity: city.Slug,\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tif diff := cmp.Diff(venue.ID, venueID); diff != \"\" {\n\t\tt.Errorf(\"venue ID mismatch:\\n%s\", diff)\n\t}\n\n\t{\n\t\tactual, err := q.GetCity(ctx, city.Slug)\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t\tif diff := cmp.Diff(actual, city); diff != \"\" {\n\t\t\tt.Errorf(\"get city mismatch:\\n%s\", diff)\n\t\t}\n\t}\n\n\t{\n\t\tactual, err := q.VenueCountByCity(ctx)\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t\tif diff := cmp.Diff(actual, []VenueCountByCityRow{\n\t\t\t{city.Slug, 1},\n\t\t}); diff != \"\" {\n\t\t\tt.Errorf(\"venue county mismatch:\\n%s\", diff)\n\t\t}\n\t}\n\n\t{\n\t\tactual, err := q.ListCities(ctx)\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t\tif diff := cmp.Diff(actual, []City{city}); diff != \"\" {\n\t\t\tt.Errorf(\"list city mismatch:\\n%s\", diff)\n\t\t}\n\t}\n\n\t{\n\t\tactual, err := q.ListVenues(ctx, city.Slug)\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t\tif diff := cmp.Diff(actual, []Venue{venue}); diff != \"\" {\n\t\t\tt.Errorf(\"list venue mismatch:\\n%s\", diff)\n\t\t}\n\t}\n\n\t{\n\t\terr := q.UpdateCityName(ctx, UpdateCityNameParams{\n\t\t\tSlug: city.Slug,\n\t\t\tName: \"SF\",\n\t\t})\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t}\n\n\t{\n\t\tid, err := q.UpdateVenueName(ctx, UpdateVenueNameParams{\n\t\t\tSlug: venue.Slug,\n\t\t\tName: \"Fillmore\",\n\t\t})\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t\tif diff := cmp.Diff(id, venue.ID); diff != \"\" {\n\t\t\tt.Errorf(\"update venue mismatch:\\n%s\", diff)\n\t\t}\n\t}\n\n\t{\n\t\terr := q.DeleteVenue(ctx, venue.Slug)\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t}\n}\n\nfunc TestPrepared(t *testing.T) {\n\tt.Parallel()\n\n\turi := local.PostgreSQL(t, []string{\"schema\"})\n\tdb, err := sql.Open(\"postgres\", uri)\n\tif err != nil {\n\t\tt.Fatalf(\"%s: %s\", uri, err)\n\t}\n\tdefer db.Close()\n\n\tq, err := Prepare(context.Background(), db)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\trunOnDeckQueries(t, q)\n}\n\nfunc TestQueries(t *testing.T) {\n\tt.Parallel()\n\n\turi := local.PostgreSQL(t, []string{\"schema\"})\n\tdb, err := sql.Open(\"postgres\", uri)\n\tif err != nil {\n\t\tt.Fatalf(\"%s: %s\", uri, err)\n\t}\n\tdefer db.Close()\n\n\trunOnDeckQueries(t, New(db))\n}\n"
  },
  {
    "path": "examples/ondeck/postgresql/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage ondeck\n\nimport (\n\t\"database/sql\"\n\t\"database/sql/driver\"\n\t\"fmt\"\n\t\"time\"\n)\n\n// Venues can be either open or closed\ntype Status string\n\nconst (\n\tStatusOpen   Status = \"op!en\"\n\tStatusClosed Status = \"clo@sed\"\n)\n\nfunc (e *Status) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Status(s)\n\tcase string:\n\t\t*e = Status(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Status: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullStatus struct {\n\tStatus Status `json:\"status\"`\n\tValid  bool   `json:\"valid\"` // Valid is true if Status is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullStatus) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Status, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Status.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullStatus) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Status), nil\n}\n\ntype City struct {\n\tSlug string `json:\"slug\"`\n\tName string `json:\"name\"`\n}\n\n// Venues are places where muisc happens\ntype Venue struct {\n\tID       int32    `json:\"id\"`\n\tStatus   Status   `json:\"status\"`\n\tStatuses []Status `json:\"statuses\"`\n\t// This value appears in public URLs\n\tSlug            string         `json:\"slug\"`\n\tName            string         `json:\"name\"`\n\tCity            string         `json:\"city\"`\n\tSpotifyPlaylist string         `json:\"spotify_playlist\"`\n\tSongkickID      sql.NullString `json:\"songkick_id\"`\n\tTags            []string       `json:\"tags\"`\n\tCreatedAt       time.Time      `json:\"created_at\"`\n}\n"
  },
  {
    "path": "examples/ondeck/postgresql/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage ondeck\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\t// Create a new city. The slug must be unique.\n\t// This is the second line of the comment\n\t// This is the third line\n\tCreateCity(ctx context.Context, arg CreateCityParams) (City, error)\n\tCreateVenue(ctx context.Context, arg CreateVenueParams) (int32, error)\n\tDeleteVenue(ctx context.Context, slug string) error\n\tGetCity(ctx context.Context, slug string) (City, error)\n\tGetVenue(ctx context.Context, arg GetVenueParams) (Venue, error)\n\tListCities(ctx context.Context) ([]City, error)\n\tListVenues(ctx context.Context, city string) ([]Venue, error)\n\tUpdateCityName(ctx context.Context, arg UpdateCityNameParams) error\n\tUpdateVenueName(ctx context.Context, arg UpdateVenueNameParams) (int32, error)\n\tVenueCountByCity(ctx context.Context) ([]VenueCountByCityRow, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "examples/ondeck/postgresql/query/city.sql",
    "content": "-- name: ListCities :many\nSELECT *\nFROM city\nORDER BY name;\n\n-- name: GetCity :one\nSELECT *\nFROM city\nWHERE slug = $1;\n\n-- name: CreateCity :one\n-- Create a new city. The slug must be unique.\n-- This is the second line of the comment\n-- This is the third line\nINSERT INTO city (\n    name,\n    slug\n) VALUES (\n    $1,\n    $2\n) RETURNING *;\n\n-- name: UpdateCityName :exec\nUPDATE city\nSET name = $2\nWHERE slug = $1;\n"
  },
  {
    "path": "examples/ondeck/postgresql/query/venue.sql",
    "content": "-- name: ListVenues :many\nSELECT *\nFROM venue\nWHERE city = $1\nORDER BY name;\n\n-- name: DeleteVenue :exec\nDELETE FROM venue\nWHERE slug = $1 AND slug = $1;\n\n-- name: GetVenue :one\nSELECT *\nFROM venue\nWHERE slug = $1 AND city = $2;\n\n-- name: CreateVenue :one\nINSERT INTO venue (\n    slug,\n    name,\n    city,\n    created_at,\n    spotify_playlist,\n    status,\n    statuses,\n    tags\n) VALUES (\n    $1,\n    $2,\n    $3,\n    NOW(),\n    $4,\n    $5,\n    $6,\n    $7\n) RETURNING id;\n\n-- name: UpdateVenueName :one\nUPDATE venue\nSET name = $2\nWHERE slug = $1\nRETURNING id;\n\n-- name: VenueCountByCity :many\nSELECT\n    city,\n    count(*)\nFROM venue\nGROUP BY 1\nORDER BY 1;\n"
  },
  {
    "path": "examples/ondeck/postgresql/schema/0001_city.sql",
    "content": "CREATE TABLE city (\n    slug text PRIMARY KEY,\n    name text NOT NULL\n)\n"
  },
  {
    "path": "examples/ondeck/postgresql/schema/0002_venue.sql",
    "content": "CREATE TYPE status AS ENUM ('op!en', 'clo@sed');\nCOMMENT ON TYPE status IS 'Venues can be either open or closed';\n\nCREATE TABLE venues (\n    id               SERIAL primary key,\n    dropped          text,\n    status           status       not null,\n    statuses         status[],\n    slug             text         not null,\n    name             varchar(255) not null,\n    city             text         not null references city(slug),\n    spotify_playlist varchar      not null,\n    songkick_id      text,\n    tags             text[]\n);\nCOMMENT ON TABLE venues IS 'Venues are places where muisc happens';\nCOMMENT ON COLUMN venues.slug IS 'This value appears in public URLs';\n\n"
  },
  {
    "path": "examples/ondeck/postgresql/schema/0003_add_column.sql",
    "content": "ALTER TABLE venues RENAME TO venue;\nALTER TABLE venue ADD COLUMN created_at TIMESTAMP NOT NULL DEFAULT NOW();\nALTER TABLE venue DROP COLUMN dropped;\n"
  },
  {
    "path": "examples/ondeck/postgresql/venue.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: venue.sql\n\npackage ondeck\n\nimport (\n\t\"context\"\n\n\t\"github.com/lib/pq\"\n)\n\nconst createVenue = `-- name: CreateVenue :one\nINSERT INTO venue (\n    slug,\n    name,\n    city,\n    created_at,\n    spotify_playlist,\n    status,\n    statuses,\n    tags\n) VALUES (\n    $1,\n    $2,\n    $3,\n    NOW(),\n    $4,\n    $5,\n    $6,\n    $7\n) RETURNING id\n`\n\ntype CreateVenueParams struct {\n\tSlug            string   `json:\"slug\"`\n\tName            string   `json:\"name\"`\n\tCity            string   `json:\"city\"`\n\tSpotifyPlaylist string   `json:\"spotify_playlist\"`\n\tStatus          Status   `json:\"status\"`\n\tStatuses        []Status `json:\"statuses\"`\n\tTags            []string `json:\"tags\"`\n}\n\nfunc (q *Queries) CreateVenue(ctx context.Context, arg CreateVenueParams) (int32, error) {\n\trow := q.queryRow(ctx, q.createVenueStmt, createVenue,\n\t\targ.Slug,\n\t\targ.Name,\n\t\targ.City,\n\t\targ.SpotifyPlaylist,\n\t\targ.Status,\n\t\tpq.Array(arg.Statuses),\n\t\tpq.Array(arg.Tags),\n\t)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst deleteVenue = `-- name: DeleteVenue :exec\nDELETE FROM venue\nWHERE slug = $1 AND slug = $1\n`\n\nfunc (q *Queries) DeleteVenue(ctx context.Context, slug string) error {\n\t_, err := q.exec(ctx, q.deleteVenueStmt, deleteVenue, slug)\n\treturn err\n}\n\nconst getVenue = `-- name: GetVenue :one\nSELECT id, status, statuses, slug, name, city, spotify_playlist, songkick_id, tags, created_at\nFROM venue\nWHERE slug = $1 AND city = $2\n`\n\ntype GetVenueParams struct {\n\tSlug string `json:\"slug\"`\n\tCity string `json:\"city\"`\n}\n\nfunc (q *Queries) GetVenue(ctx context.Context, arg GetVenueParams) (Venue, error) {\n\trow := q.queryRow(ctx, q.getVenueStmt, getVenue, arg.Slug, arg.City)\n\tvar i Venue\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Status,\n\t\tpq.Array(&i.Statuses),\n\t\t&i.Slug,\n\t\t&i.Name,\n\t\t&i.City,\n\t\t&i.SpotifyPlaylist,\n\t\t&i.SongkickID,\n\t\tpq.Array(&i.Tags),\n\t\t&i.CreatedAt,\n\t)\n\treturn i, err\n}\n\nconst listVenues = `-- name: ListVenues :many\nSELECT id, status, statuses, slug, name, city, spotify_playlist, songkick_id, tags, created_at\nFROM venue\nWHERE city = $1\nORDER BY name\n`\n\nfunc (q *Queries) ListVenues(ctx context.Context, city string) ([]Venue, error) {\n\trows, err := q.query(ctx, q.listVenuesStmt, listVenues, city)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Venue\n\tfor rows.Next() {\n\t\tvar i Venue\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Status,\n\t\t\tpq.Array(&i.Statuses),\n\t\t\t&i.Slug,\n\t\t\t&i.Name,\n\t\t\t&i.City,\n\t\t\t&i.SpotifyPlaylist,\n\t\t\t&i.SongkickID,\n\t\t\tpq.Array(&i.Tags),\n\t\t\t&i.CreatedAt,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst updateVenueName = `-- name: UpdateVenueName :one\nUPDATE venue\nSET name = $2\nWHERE slug = $1\nRETURNING id\n`\n\ntype UpdateVenueNameParams struct {\n\tSlug string `json:\"slug\"`\n\tName string `json:\"name\"`\n}\n\nfunc (q *Queries) UpdateVenueName(ctx context.Context, arg UpdateVenueNameParams) (int32, error) {\n\trow := q.queryRow(ctx, q.updateVenueNameStmt, updateVenueName, arg.Slug, arg.Name)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst venueCountByCity = `-- name: VenueCountByCity :many\nSELECT\n    city,\n    count(*)\nFROM venue\nGROUP BY 1\nORDER BY 1\n`\n\ntype VenueCountByCityRow struct {\n\tCity  string `json:\"city\"`\n\tCount int64  `json:\"count\"`\n}\n\nfunc (q *Queries) VenueCountByCity(ctx context.Context) ([]VenueCountByCityRow, error) {\n\trows, err := q.query(ctx, q.venueCountByCityStmt, venueCountByCity)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []VenueCountByCityRow\n\tfor rows.Next() {\n\t\tvar i VenueCountByCityRow\n\t\tif err := rows.Scan(&i.City, &i.Count); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "examples/ondeck/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"cloud\": {\n    \"project\": \"01HAQMMECEYQYKFJN8MP16QC41\"\n  },\n  \"packages\": [\n    {\n      \"path\": \"postgresql\",\n      \"name\": \"ondeck\",\n      \"schema\": \"postgresql/schema\",\n      \"queries\": \"postgresql/query\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"database/sql\",\n      \"database\": {\n        \"uri\": \"${VET_TEST_EXAMPLES_POSTGRES_ONDECK}\"\n      },\n      \"analyzer\": {\n        \"database\": false\n      },\n      \"rules\": [\n        \"sqlc/db-prepare\"\n      ],\n      \"emit_json_tags\": true,\n      \"emit_prepared_queries\": true,\n      \"emit_interface\": true\n    },\n    {\n    \"path\": \"mysql\",\n      \"name\": \"ondeck\",\n      \"schema\": \"mysql/schema\",\n      \"queries\": \"mysql/query\",\n      \"engine\": \"mysql\",\n      \"database\": {\n        \"uri\": \"${VET_TEST_EXAMPLES_MYSQL_ONDECK}\"\n      },\n      \"rules\": [\n        \"sqlc/db-prepare\"\n      ],\n      \"emit_json_tags\": true,\n      \"emit_prepared_queries\": true,\n      \"emit_interface\": true\n    },\n    {\n      \"path\": \"sqlite\",\n      \"name\": \"ondeck\",\n      \"schema\": \"sqlite/schema\",\n      \"queries\": \"sqlite/query\",\n      \"engine\": \"sqlite\",\n      \"database\": {\n        \"uri\": \"file:ondeck?mode=memory&cache=shared\"\n      },\n      \"rules\": [\n        \"sqlc/db-prepare\"\n      ],\n      \"emit_json_tags\": true,\n      \"emit_prepared_queries\": true,\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "examples/ondeck/sqlite/city.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: city.sql\n\npackage ondeck\n\nimport (\n\t\"context\"\n)\n\nconst createCity = `-- name: CreateCity :exec\nINSERT INTO city (\n    name,\n    slug\n) VALUES (\n    ?,\n    ? \n)\n`\n\ntype CreateCityParams struct {\n\tName string `json:\"name\"`\n\tSlug string `json:\"slug\"`\n}\n\nfunc (q *Queries) CreateCity(ctx context.Context, arg CreateCityParams) error {\n\t_, err := q.exec(ctx, q.createCityStmt, createCity, arg.Name, arg.Slug)\n\treturn err\n}\n\nconst getCity = `-- name: GetCity :one\nSELECT slug, name\nFROM city\nWHERE slug = ?\n`\n\nfunc (q *Queries) GetCity(ctx context.Context, slug string) (City, error) {\n\trow := q.queryRow(ctx, q.getCityStmt, getCity, slug)\n\tvar i City\n\terr := row.Scan(&i.Slug, &i.Name)\n\treturn i, err\n}\n\nconst listCities = `-- name: ListCities :many\nSELECT slug, name\nFROM city\nORDER BY name\n`\n\nfunc (q *Queries) ListCities(ctx context.Context) ([]City, error) {\n\trows, err := q.query(ctx, q.listCitiesStmt, listCities)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []City\n\tfor rows.Next() {\n\t\tvar i City\n\t\tif err := rows.Scan(&i.Slug, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst updateCityName = `-- name: UpdateCityName :exec\nUPDATE city\nSET name = ?\nWHERE slug = ?\n`\n\ntype UpdateCityNameParams struct {\n\tName string `json:\"name\"`\n\tSlug string `json:\"slug\"`\n}\n\nfunc (q *Queries) UpdateCityName(ctx context.Context, arg UpdateCityNameParams) error {\n\t_, err := q.exec(ctx, q.updateCityNameStmt, updateCityName, arg.Name, arg.Slug)\n\treturn err\n}\n"
  },
  {
    "path": "examples/ondeck/sqlite/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage ondeck\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"fmt\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\nfunc Prepare(ctx context.Context, db DBTX) (*Queries, error) {\n\tq := Queries{db: db}\n\tvar err error\n\tif q.createCityStmt, err = db.PrepareContext(ctx, createCity); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query CreateCity: %w\", err)\n\t}\n\tif q.createVenueStmt, err = db.PrepareContext(ctx, createVenue); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query CreateVenue: %w\", err)\n\t}\n\tif q.deleteVenueStmt, err = db.PrepareContext(ctx, deleteVenue); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query DeleteVenue: %w\", err)\n\t}\n\tif q.getCityStmt, err = db.PrepareContext(ctx, getCity); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query GetCity: %w\", err)\n\t}\n\tif q.getVenueStmt, err = db.PrepareContext(ctx, getVenue); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query GetVenue: %w\", err)\n\t}\n\tif q.listCitiesStmt, err = db.PrepareContext(ctx, listCities); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query ListCities: %w\", err)\n\t}\n\tif q.listVenuesStmt, err = db.PrepareContext(ctx, listVenues); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query ListVenues: %w\", err)\n\t}\n\tif q.updateCityNameStmt, err = db.PrepareContext(ctx, updateCityName); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query UpdateCityName: %w\", err)\n\t}\n\tif q.updateVenueNameStmt, err = db.PrepareContext(ctx, updateVenueName); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query UpdateVenueName: %w\", err)\n\t}\n\tif q.venueCountByCityStmt, err = db.PrepareContext(ctx, venueCountByCity); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query VenueCountByCity: %w\", err)\n\t}\n\treturn &q, nil\n}\n\nfunc (q *Queries) Close() error {\n\tvar err error\n\tif q.createCityStmt != nil {\n\t\tif cerr := q.createCityStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing createCityStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.createVenueStmt != nil {\n\t\tif cerr := q.createVenueStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing createVenueStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.deleteVenueStmt != nil {\n\t\tif cerr := q.deleteVenueStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing deleteVenueStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.getCityStmt != nil {\n\t\tif cerr := q.getCityStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing getCityStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.getVenueStmt != nil {\n\t\tif cerr := q.getVenueStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing getVenueStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.listCitiesStmt != nil {\n\t\tif cerr := q.listCitiesStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing listCitiesStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.listVenuesStmt != nil {\n\t\tif cerr := q.listVenuesStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing listVenuesStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.updateCityNameStmt != nil {\n\t\tif cerr := q.updateCityNameStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing updateCityNameStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.updateVenueNameStmt != nil {\n\t\tif cerr := q.updateVenueNameStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing updateVenueNameStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.venueCountByCityStmt != nil {\n\t\tif cerr := q.venueCountByCityStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing venueCountByCityStmt: %w\", cerr)\n\t\t}\n\t}\n\treturn err\n}\n\nfunc (q *Queries) exec(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) (sql.Result, error) {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).ExecContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.ExecContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.ExecContext(ctx, query, args...)\n\t}\n}\n\nfunc (q *Queries) query(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) (*sql.Rows, error) {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).QueryContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.QueryContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.QueryContext(ctx, query, args...)\n\t}\n}\n\nfunc (q *Queries) queryRow(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) *sql.Row {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).QueryRowContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.QueryRowContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.QueryRowContext(ctx, query, args...)\n\t}\n}\n\ntype Queries struct {\n\tdb                   DBTX\n\ttx                   *sql.Tx\n\tcreateCityStmt       *sql.Stmt\n\tcreateVenueStmt      *sql.Stmt\n\tdeleteVenueStmt      *sql.Stmt\n\tgetCityStmt          *sql.Stmt\n\tgetVenueStmt         *sql.Stmt\n\tlistCitiesStmt       *sql.Stmt\n\tlistVenuesStmt       *sql.Stmt\n\tupdateCityNameStmt   *sql.Stmt\n\tupdateVenueNameStmt  *sql.Stmt\n\tvenueCountByCityStmt *sql.Stmt\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb:                   tx,\n\t\ttx:                   tx,\n\t\tcreateCityStmt:       q.createCityStmt,\n\t\tcreateVenueStmt:      q.createVenueStmt,\n\t\tdeleteVenueStmt:      q.deleteVenueStmt,\n\t\tgetCityStmt:          q.getCityStmt,\n\t\tgetVenueStmt:         q.getVenueStmt,\n\t\tlistCitiesStmt:       q.listCitiesStmt,\n\t\tlistVenuesStmt:       q.listVenuesStmt,\n\t\tupdateCityNameStmt:   q.updateCityNameStmt,\n\t\tupdateVenueNameStmt:  q.updateVenueNameStmt,\n\t\tvenueCountByCityStmt: q.venueCountByCityStmt,\n\t}\n}\n"
  },
  {
    "path": "examples/ondeck/sqlite/db_test.go",
    "content": "//go:build examples\n\npackage ondeck\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"strings\"\n\t\"testing\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest\"\n\n\t\"github.com/google/go-cmp/cmp\"\n)\n\n// TODO: Enum is not yet supported\nconst (\n\tVenuesStatusOpen   string = \"open\"\n\tVenuesStatusClosed string = \"closed\"\n)\n\nfunc join(vals ...string) sql.NullString {\n\tif len(vals) == 0 {\n\t\treturn sql.NullString{}\n\t}\n\treturn sql.NullString{\n\t\tValid:  true,\n\t\tString: strings.Join(vals, \",\"),\n\t}\n}\n\nfunc runOnDeckQueries(t *testing.T, q *Queries) {\n\tctx := context.Background()\n\n\terr := q.CreateCity(ctx, CreateCityParams{\n\t\tSlug: \"san-francisco\",\n\t\tName: \"San Francisco\",\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tcity, err := q.GetCity(ctx, \"san-francisco\")\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tvenueResult, err := q.CreateVenue(ctx, CreateVenueParams{\n\t\tSlug:            \"the-fillmore\",\n\t\tName:            \"The Fillmore\",\n\t\tCity:            city.Slug,\n\t\tSpotifyPlaylist: \"spotify:uri\",\n\t\tStatus:          VenuesStatusOpen,\n\t\tStatuses:        join(string(VenuesStatusOpen), string(VenuesStatusClosed)),\n\t\tTags:            join(\"rock\", \"punk\"),\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tvenueID, err := venueResult.LastInsertId()\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tvenue, err := q.GetVenue(ctx, GetVenueParams{\n\t\tSlug: \"the-fillmore\",\n\t\tCity: city.Slug,\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tif diff := cmp.Diff(venue.ID, venueID); diff != \"\" {\n\t\tt.Errorf(\"venue ID mismatch:\\n%s\", diff)\n\t}\n\n\t{\n\t\tactual, err := q.VenueCountByCity(ctx)\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t\tif diff := cmp.Diff(actual, []VenueCountByCityRow{\n\t\t\t{city.Slug, int64(1)},\n\t\t}); diff != \"\" {\n\t\t\tt.Errorf(\"venue count mismatch:\\n%s\", diff)\n\t\t}\n\t}\n\n\t{\n\t\tactual, err := q.ListCities(ctx)\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t\tif diff := cmp.Diff(actual, []City{city}); diff != \"\" {\n\t\t\tt.Errorf(\"list city mismatch:\\n%s\", diff)\n\t\t}\n\t}\n\n\t{\n\t\tactual, err := q.ListVenues(ctx, city.Slug)\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t\tif diff := cmp.Diff(actual, []Venue{venue}); diff != \"\" {\n\t\t\tt.Errorf(\"list venue mismatch:\\n%s\", diff)\n\t\t}\n\t}\n\n\t{\n\t\terr := q.UpdateCityName(ctx, UpdateCityNameParams{\n\t\t\tSlug: city.Slug,\n\t\t\tName: \"SF\",\n\t\t})\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t}\n\n\t{\n\t\texpected := \"Fillmore\"\n\t\terr := q.UpdateVenueName(ctx, UpdateVenueNameParams{\n\t\t\tSlug: venue.Slug,\n\t\t\tName: expected,\n\t\t})\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t\tfresh, err := q.GetVenue(ctx, GetVenueParams{\n\t\t\tSlug: venue.Slug,\n\t\t\tCity: city.Slug,\n\t\t})\n\t\tif diff := cmp.Diff(expected, fresh.Name); diff != \"\" {\n\t\t\tt.Errorf(\"update venue mismatch:\\n%s\", diff)\n\t\t}\n\t}\n\n\t{\n\t\terr := q.DeleteVenue(ctx, DeleteVenueParams{\n\t\t\tSlug:   venue.Slug,\n\t\t\tSlug_2: venue.Slug,\n\t\t})\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t}\n}\n\nfunc TestPrepared(t *testing.T) {\n\tt.Parallel()\n\n\tsdb, cleanup := sqltest.SQLite(t, []string{\"schema\"})\n\tdefer sdb.Close()\n\tdefer cleanup()\n\n\tq, err := Prepare(context.Background(), sdb)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\trunOnDeckQueries(t, q)\n}\n\nfunc TestQueries(t *testing.T) {\n\tt.Parallel()\n\n\tsdb, cleanup := sqltest.SQLite(t, []string{\"schema\"})\n\tdefer sdb.Close()\n\tdefer cleanup()\n\n\trunOnDeckQueries(t, New(sdb))\n}\n"
  },
  {
    "path": "examples/ondeck/sqlite/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage ondeck\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype City struct {\n\tSlug string `json:\"slug\"`\n\tName string `json:\"name\"`\n}\n\ntype Venue struct {\n\tID              int64          `json:\"id\"`\n\tStatus          string         `json:\"status\"`\n\tStatuses        sql.NullString `json:\"statuses\"`\n\tSlug            string         `json:\"slug\"`\n\tName            string         `json:\"name\"`\n\tCity            string         `json:\"city\"`\n\tSpotifyPlaylist string         `json:\"spotify_playlist\"`\n\tSongkickID      sql.NullString `json:\"songkick_id\"`\n\tTags            sql.NullString `json:\"tags\"`\n\tCreatedAt       time.Time      `json:\"created_at\"`\n}\n"
  },
  {
    "path": "examples/ondeck/sqlite/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage ondeck\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype Querier interface {\n\tCreateCity(ctx context.Context, arg CreateCityParams) error\n\tCreateVenue(ctx context.Context, arg CreateVenueParams) (sql.Result, error)\n\tDeleteVenue(ctx context.Context, arg DeleteVenueParams) error\n\tGetCity(ctx context.Context, slug string) (City, error)\n\tGetVenue(ctx context.Context, arg GetVenueParams) (Venue, error)\n\tListCities(ctx context.Context) ([]City, error)\n\tListVenues(ctx context.Context, city string) ([]Venue, error)\n\tUpdateCityName(ctx context.Context, arg UpdateCityNameParams) error\n\tUpdateVenueName(ctx context.Context, arg UpdateVenueNameParams) error\n\tVenueCountByCity(ctx context.Context) ([]VenueCountByCityRow, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "examples/ondeck/sqlite/query/city.sql",
    "content": "/* name: ListCities :many */\nSELECT *\nFROM city\nORDER BY name;\n\n/* name: GetCity :one */\nSELECT *\nFROM city\nWHERE slug = ?;\n\n/* name: CreateCity :exec */\nINSERT INTO city (\n    name,\n    slug\n) VALUES (\n    ?,\n    ? \n); \n\n/* name: UpdateCityName :exec */\nUPDATE city\nSET name = ?\nWHERE slug = ?;\n"
  },
  {
    "path": "examples/ondeck/sqlite/query/venue.sql",
    "content": "/* name: ListVenues :many */\nSELECT *\nFROM venue\nWHERE city = ?\nORDER BY name;\n\n/* name: DeleteVenue :exec */\nDELETE FROM venue\nWHERE slug = ? AND slug = ?;\n\n/* name: GetVenue :one */\nSELECT *\nFROM venue\nWHERE slug = ? AND city = ?;\n\n/* name: CreateVenue :execresult */\nINSERT INTO venue (\n    slug,\n    name,\n    city,\n    created_at,\n    spotify_playlist,\n    status,\n    statuses,\n    tags\n) VALUES (\n    ?,\n    ?,\n    ?,\n    CURRENT_TIMESTAMP,\n    ?,\n    ?,\n    ?,\n    ?\n);\n\n/* name: UpdateVenueName :exec */\nUPDATE venue\nSET name = ?\nWHERE slug = ?;\n\n/* name: VenueCountByCity :many */\nSELECT\n    city,\n    count(*)\nFROM venue\nGROUP BY 1\nORDER BY 1;\n"
  },
  {
    "path": "examples/ondeck/sqlite/schema/0001_city.sql",
    "content": "CREATE TABLE city (\n    slug varchar(255) PRIMARY KEY,\n    name text NOT NULL\n)\n"
  },
  {
    "path": "examples/ondeck/sqlite/schema/0002_venue.sql",
    "content": "CREATE TABLE venues (\n    id               integer primary key AUTOINCREMENT,\n    dropped          text,\n    status           text not null,\n    statuses         text, -- status[]\n    slug             text         not null,\n    name             varchar(255) not null,\n    city             text         not null references city(slug),\n    spotify_playlist varchar(255) not null,\n    songkick_id      text,\n    tags             text, -- tags[]\n    CHECK (status = 'open' OR status = 'closed')\n);\n"
  },
  {
    "path": "examples/ondeck/sqlite/schema/0003_add_column.sql",
    "content": "ALTER TABLE venues RENAME TO venue;\nALTER TABLE venue ADD COLUMN created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP;\nALTER TABLE venue DROP COLUMN dropped;\n"
  },
  {
    "path": "examples/ondeck/sqlite/venue.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: venue.sql\n\npackage ondeck\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst createVenue = `-- name: CreateVenue :execresult\nINSERT INTO venue (\n    slug,\n    name,\n    city,\n    created_at,\n    spotify_playlist,\n    status,\n    statuses,\n    tags\n) VALUES (\n    ?,\n    ?,\n    ?,\n    CURRENT_TIMESTAMP,\n    ?,\n    ?,\n    ?,\n    ?\n)\n`\n\ntype CreateVenueParams struct {\n\tSlug            string         `json:\"slug\"`\n\tName            string         `json:\"name\"`\n\tCity            string         `json:\"city\"`\n\tSpotifyPlaylist string         `json:\"spotify_playlist\"`\n\tStatus          string         `json:\"status\"`\n\tStatuses        sql.NullString `json:\"statuses\"`\n\tTags            sql.NullString `json:\"tags\"`\n}\n\nfunc (q *Queries) CreateVenue(ctx context.Context, arg CreateVenueParams) (sql.Result, error) {\n\treturn q.exec(ctx, q.createVenueStmt, createVenue,\n\t\targ.Slug,\n\t\targ.Name,\n\t\targ.City,\n\t\targ.SpotifyPlaylist,\n\t\targ.Status,\n\t\targ.Statuses,\n\t\targ.Tags,\n\t)\n}\n\nconst deleteVenue = `-- name: DeleteVenue :exec\nDELETE FROM venue\nWHERE slug = ? AND slug = ?\n`\n\ntype DeleteVenueParams struct {\n\tSlug   string `json:\"slug\"`\n\tSlug_2 string `json:\"slug_2\"`\n}\n\nfunc (q *Queries) DeleteVenue(ctx context.Context, arg DeleteVenueParams) error {\n\t_, err := q.exec(ctx, q.deleteVenueStmt, deleteVenue, arg.Slug, arg.Slug_2)\n\treturn err\n}\n\nconst getVenue = `-- name: GetVenue :one\nSELECT id, status, statuses, slug, name, city, spotify_playlist, songkick_id, tags, created_at\nFROM venue\nWHERE slug = ? AND city = ?\n`\n\ntype GetVenueParams struct {\n\tSlug string `json:\"slug\"`\n\tCity string `json:\"city\"`\n}\n\nfunc (q *Queries) GetVenue(ctx context.Context, arg GetVenueParams) (Venue, error) {\n\trow := q.queryRow(ctx, q.getVenueStmt, getVenue, arg.Slug, arg.City)\n\tvar i Venue\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Status,\n\t\t&i.Statuses,\n\t\t&i.Slug,\n\t\t&i.Name,\n\t\t&i.City,\n\t\t&i.SpotifyPlaylist,\n\t\t&i.SongkickID,\n\t\t&i.Tags,\n\t\t&i.CreatedAt,\n\t)\n\treturn i, err\n}\n\nconst listVenues = `-- name: ListVenues :many\nSELECT id, status, statuses, slug, name, city, spotify_playlist, songkick_id, tags, created_at\nFROM venue\nWHERE city = ?\nORDER BY name\n`\n\nfunc (q *Queries) ListVenues(ctx context.Context, city string) ([]Venue, error) {\n\trows, err := q.query(ctx, q.listVenuesStmt, listVenues, city)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Venue\n\tfor rows.Next() {\n\t\tvar i Venue\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Status,\n\t\t\t&i.Statuses,\n\t\t\t&i.Slug,\n\t\t\t&i.Name,\n\t\t\t&i.City,\n\t\t\t&i.SpotifyPlaylist,\n\t\t\t&i.SongkickID,\n\t\t\t&i.Tags,\n\t\t\t&i.CreatedAt,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst updateVenueName = `-- name: UpdateVenueName :exec\nUPDATE venue\nSET name = ?\nWHERE slug = ?\n`\n\ntype UpdateVenueNameParams struct {\n\tName string `json:\"name\"`\n\tSlug string `json:\"slug\"`\n}\n\nfunc (q *Queries) UpdateVenueName(ctx context.Context, arg UpdateVenueNameParams) error {\n\t_, err := q.exec(ctx, q.updateVenueNameStmt, updateVenueName, arg.Name, arg.Slug)\n\treturn err\n}\n\nconst venueCountByCity = `-- name: VenueCountByCity :many\nSELECT\n    city,\n    count(*)\nFROM venue\nGROUP BY 1\nORDER BY 1\n`\n\ntype VenueCountByCityRow struct {\n\tCity  string `json:\"city\"`\n\tCount int64  `json:\"count\"`\n}\n\nfunc (q *Queries) VenueCountByCity(ctx context.Context) ([]VenueCountByCityRow, error) {\n\trows, err := q.query(ctx, q.venueCountByCityStmt, venueCountByCity)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []VenueCountByCityRow\n\tfor rows.Next() {\n\t\tvar i VenueCountByCityRow\n\t\tif err := rows.Scan(&i.City, &i.Count); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "go.mod",
    "content": "module github.com/sqlc-dev/sqlc\n\ngo 1.26.0\n\nrequire (\n\tgithub.com/antlr4-go/antlr/v4 v4.13.1\n\tgithub.com/cubicdaiya/gonp v1.0.4\n\tgithub.com/davecgh/go-spew v1.1.1\n\tgithub.com/fatih/structtag v1.2.0\n\tgithub.com/go-sql-driver/mysql v1.9.3\n\tgithub.com/google/cel-go v0.27.0\n\tgithub.com/google/go-cmp v0.7.0\n\tgithub.com/jackc/pgx/v4 v4.18.3\n\tgithub.com/jackc/pgx/v5 v5.8.0\n\tgithub.com/jinzhu/inflection v1.0.0\n\tgithub.com/lib/pq v1.11.2\n\tgithub.com/ncruces/go-sqlite3 v0.30.5\n\tgithub.com/pganalyze/pg_query_go/v6 v6.2.2\n\tgithub.com/pingcap/tidb/pkg/parser v0.0.0-20250324122243-d51e00e5bbf0\n\tgithub.com/riza-io/grpc-go v0.2.0\n\tgithub.com/spf13/cobra v1.10.2\n\tgithub.com/spf13/pflag v1.0.10\n\tgithub.com/sqlc-dev/doubleclick v1.0.0\n\tgithub.com/tetratelabs/wazero v1.11.0\n\tgithub.com/wasilibs/go-pgquery v0.0.0-20250409022910-10ac41983c07\n\tgithub.com/xeipuuv/gojsonschema v1.2.0\n\tgolang.org/x/sync v0.19.0\n\tgoogle.golang.org/grpc v1.79.1\n\tgoogle.golang.org/protobuf v1.36.11\n\tgopkg.in/yaml.v3 v3.0.1\n)\n\nrequire (\n\tcel.dev/expr v0.25.1 // indirect\n\tfilippo.io/edwards25519 v1.1.1 // indirect\n\tgithub.com/inconshreveable/mousetrap v1.1.0 // indirect\n\tgithub.com/jackc/chunkreader/v2 v2.0.1 // indirect\n\tgithub.com/jackc/pgconn v1.14.3 // indirect\n\tgithub.com/jackc/pgio v1.0.0 // indirect\n\tgithub.com/jackc/pgpassfile v1.0.0 // indirect\n\tgithub.com/jackc/pgproto3/v2 v2.3.3 // indirect\n\tgithub.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect\n\tgithub.com/jackc/pgtype v1.14.0 // indirect\n\tgithub.com/jackc/puddle/v2 v2.2.2 // indirect\n\tgithub.com/ncruces/julianday v1.0.0 // indirect\n\tgithub.com/pingcap/errors v0.11.5-0.20240311024730-e056997136bb // indirect\n\tgithub.com/pingcap/failpoint v0.0.0-20240528011301-b51a646c7c86 // indirect\n\tgithub.com/pingcap/log v1.1.0 // indirect\n\tgithub.com/rogpeppe/go-internal v1.10.0 // indirect\n\tgithub.com/wasilibs/wazero-helpers v0.0.0-20240620070341-3dff1577cd52 // indirect\n\tgithub.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect\n\tgithub.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect\n\tgo.uber.org/atomic v1.11.0 // indirect\n\tgo.uber.org/multierr v1.11.0 // indirect\n\tgo.uber.org/zap v1.27.0 // indirect\n\tgolang.org/x/crypto v0.47.0 // indirect\n\tgolang.org/x/exp v0.0.0-20250620022241-b7579e27df2b // indirect\n\tgolang.org/x/net v0.48.0 // indirect\n\tgolang.org/x/sys v0.40.0 // indirect\n\tgolang.org/x/text v0.33.0 // indirect\n\tgoogle.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect\n\tgoogle.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect\n\tgopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect\n)\n\nreplace github.com/go-sql-driver/mysql => github.com/sqlc-dev/mysql v0.0.0-20251129233104-d81e1cac6db2\n"
  },
  {
    "path": "go.sum",
    "content": "cel.dev/expr v0.25.1 h1:1KrZg61W6TWSxuNZ37Xy49ps13NUovb66QLprthtwi4=\ncel.dev/expr v0.25.1/go.mod h1:hrXvqGP6G6gyx8UAHSHJ5RGk//1Oj5nXQ2NI02Nrsg4=\nfilippo.io/edwards25519 v1.1.1 h1:YpjwWWlNmGIDyXOn8zLzqiD+9TyIlPhGFG96P39uBpw=\nfilippo.io/edwards25519 v1.1.1/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4=\ngithub.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=\ngithub.com/Masterminds/semver/v3 v3.1.1/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs=\ngithub.com/antlr4-go/antlr/v4 v4.13.1 h1:SqQKkuVZ+zWkMMNkjy5FZe5mr5WURWnlpmOuzYWrPrQ=\ngithub.com/antlr4-go/antlr/v4 v4.13.1/go.mod h1:GKmUxMtwp6ZgGwZSva4eWPC5mS6vUAmOABFgjdkM7Nw=\ngithub.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=\ngithub.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=\ngithub.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=\ngithub.com/cockroachdb/apd v1.1.0 h1:3LFP3629v+1aKXU5Q37mxmRxX/pIu1nijXydLShEq5I=\ngithub.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ=\ngithub.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=\ngithub.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=\ngithub.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g=\ngithub.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=\ngithub.com/cubicdaiya/gonp v1.0.4 h1:ky2uIAJh81WiLcGKBVD5R7KsM/36W6IqqTy6Bo6rGws=\ngithub.com/cubicdaiya/gonp v1.0.4/go.mod h1:iWGuP/7+JVTn02OWhRemVbMmG1DOUnmrGTYYACpOI0I=\ngithub.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\ngithub.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=\ngithub.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\ngithub.com/fatih/structtag v1.2.0 h1:/OdNE99OxoI/PqaW/SuSK9uxxT3f/tcSZgon/ssNSx4=\ngithub.com/fatih/structtag v1.2.0/go.mod h1:mBJUNpUnHmRKrKlQQlmCrh5PuhftFbNv8Ys4/aAZl94=\ngithub.com/go-kit/log v0.1.0/go.mod h1:zbhenjAZHb184qTLMA9ZjW7ThYL0H2mk7Q6pNt4vbaY=\ngithub.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A=\ngithub.com/go-logr/logr v1.4.3 h1:CjnDlHq8ikf6E492q6eKboGOC0T8CDaOvkHCIg8idEI=\ngithub.com/go-logr/logr v1.4.3/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY=\ngithub.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag=\ngithub.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE=\ngithub.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=\ngithub.com/gofrs/uuid v4.0.0+incompatible h1:1SD/1F5pU8p29ybwgQSwpQk+mwdRrXCYuPhW6m+TnJw=\ngithub.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=\ngithub.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek=\ngithub.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps=\ngithub.com/google/cel-go v0.27.0 h1:e7ih85+4qVrBuqQWTW4FKSqZYokVuc3HnhH5keboFTo=\ngithub.com/google/cel-go v0.27.0/go.mod h1:tTJ11FWqnhw5KKpnWpvW9CJC3Y9GK4EIS0WXnBbebzw=\ngithub.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=\ngithub.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=\ngithub.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=\ngithub.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=\ngithub.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=\ngithub.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=\ngithub.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=\ngithub.com/jackc/chunkreader v1.0.0/go.mod h1:RT6O25fNZIuasFJRyZ4R/Y2BbhasbmZXF9QQ7T3kePo=\ngithub.com/jackc/chunkreader/v2 v2.0.0/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk=\ngithub.com/jackc/chunkreader/v2 v2.0.1 h1:i+RDz65UE+mmpjTfyz0MoVTnzeYxroil2G82ki7MGG8=\ngithub.com/jackc/chunkreader/v2 v2.0.1/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk=\ngithub.com/jackc/pgconn v0.0.0-20190420214824-7e0022ef6ba3/go.mod h1:jkELnwuX+w9qN5YIfX0fl88Ehu4XC3keFuOJJk9pcnA=\ngithub.com/jackc/pgconn v0.0.0-20190824142844-760dd75542eb/go.mod h1:lLjNuW/+OfW9/pnVKPazfWOgNfH2aPem8YQ7ilXGvJE=\ngithub.com/jackc/pgconn v0.0.0-20190831204454-2fabfa3c18b7/go.mod h1:ZJKsE/KZfsUgOEh9hBm+xYTstcNHg7UPMVJqRfQxq4s=\ngithub.com/jackc/pgconn v1.8.0/go.mod h1:1C2Pb36bGIP9QHGBYCjnyhqu7Rv3sGshaQUvmfGIB/o=\ngithub.com/jackc/pgconn v1.9.0/go.mod h1:YctiPyvzfU11JFxoXokUOOKQXQmDMoJL9vJzHH8/2JY=\ngithub.com/jackc/pgconn v1.9.1-0.20210724152538-d89c8390a530/go.mod h1:4z2w8XhRbP1hYxkpTuBjTS3ne3J48K83+u0zoyvg2pI=\ngithub.com/jackc/pgconn v1.14.3 h1:bVoTr12EGANZz66nZPkMInAV/KHD2TxH9npjXXgiB3w=\ngithub.com/jackc/pgconn v1.14.3/go.mod h1:RZbme4uasqzybK2RK5c65VsHxoyaml09lx3tXOcO/VM=\ngithub.com/jackc/pgio v1.0.0 h1:g12B9UwVnzGhueNavwioyEEpAmqMe1E/BN9ES+8ovkE=\ngithub.com/jackc/pgio v1.0.0/go.mod h1:oP+2QK2wFfUWgr+gxjoBH9KGBb31Eio69xUb0w5bYf8=\ngithub.com/jackc/pgmock v0.0.0-20190831213851-13a1b77aafa2/go.mod h1:fGZlG77KXmcq05nJLRkk0+p82V8B8Dw8KN2/V9c/OAE=\ngithub.com/jackc/pgmock v0.0.0-20201204152224-4fe30f7445fd/go.mod h1:hrBW0Enj2AZTNpt/7Y5rr2xe/9Mn757Wtb2xeBzPv2c=\ngithub.com/jackc/pgmock v0.0.0-20210724152146-4ad1a8207f65 h1:DadwsjnMwFjfWc9y5Wi/+Zz7xoE5ALHsRQlOctkOiHc=\ngithub.com/jackc/pgmock v0.0.0-20210724152146-4ad1a8207f65/go.mod h1:5R2h2EEX+qri8jOWMbJCtaPWkrrNc7OHwsp2TCqp7ak=\ngithub.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM=\ngithub.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg=\ngithub.com/jackc/pgproto3 v1.1.0/go.mod h1:eR5FA3leWg7p9aeAqi37XOTgTIbkABlvcPB3E5rlc78=\ngithub.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190420180111-c116219b62db/go.mod h1:bhq50y+xrl9n5mRYyCBFKkpRVTLYJVWeCc+mEAI3yXA=\ngithub.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190609003834-432c2951c711/go.mod h1:uH0AWtUmuShn0bcesswc4aBTWGvw0cAxIJp+6OB//Wg=\ngithub.com/jackc/pgproto3/v2 v2.0.0-rc3/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM=\ngithub.com/jackc/pgproto3/v2 v2.0.0-rc3.0.20190831210041-4c03ce451f29/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM=\ngithub.com/jackc/pgproto3/v2 v2.0.6/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA=\ngithub.com/jackc/pgproto3/v2 v2.1.1/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA=\ngithub.com/jackc/pgproto3/v2 v2.3.3 h1:1HLSx5H+tXR9pW3in3zaztoEwQYRC9SQaYUHjTSUOag=\ngithub.com/jackc/pgproto3/v2 v2.3.3/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA=\ngithub.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b/go.mod h1:vsD4gTJCa9TptPL8sPkXrLZ+hDuNrZCnj29CQpr4X1E=\ngithub.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 h1:iCEnooe7UlwOQYpKFhBabPMi4aNAfoODPEFNiAnClxo=\ngithub.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761/go.mod h1:5TJZWKEWniPve33vlWYSoGYefn3gLQRzjfDlhSJ9ZKM=\ngithub.com/jackc/pgtype v0.0.0-20190421001408-4ed0de4755e0/go.mod h1:hdSHsc1V01CGwFsrv11mJRHWJ6aifDLfdV3aVjFF0zg=\ngithub.com/jackc/pgtype v0.0.0-20190824184912-ab885b375b90/go.mod h1:KcahbBH1nCMSo2DXpzsoWOAfFkdEtEJpPbVLq8eE+mc=\ngithub.com/jackc/pgtype v0.0.0-20190828014616-a8802b16cc59/go.mod h1:MWlu30kVJrUS8lot6TQqcg7mtthZ9T0EoIBFiJcmcyw=\ngithub.com/jackc/pgtype v1.8.1-0.20210724151600-32e20a603178/go.mod h1:C516IlIV9NKqfsMCXTdChteoXmwgUceqaLfjg2e3NlM=\ngithub.com/jackc/pgtype v1.14.0 h1:y+xUdabmyMkJLyApYuPj38mW+aAIqCe5uuBB51rH3Vw=\ngithub.com/jackc/pgtype v1.14.0/go.mod h1:LUMuVrfsFfdKGLw+AFFVv6KtHOFMwRgDDzBt76IqCA4=\ngithub.com/jackc/pgx/v4 v4.0.0-20190420224344-cc3461e65d96/go.mod h1:mdxmSJJuR08CZQyj1PVQBHy9XOp5p8/SHH6a0psbY9Y=\ngithub.com/jackc/pgx/v4 v4.0.0-20190421002000-1b8f0016e912/go.mod h1:no/Y67Jkk/9WuGR0JG/JseM9irFbnEPbuWV2EELPNuM=\ngithub.com/jackc/pgx/v4 v4.0.0-pre1.0.20190824185557-6972a5742186/go.mod h1:X+GQnOEnf1dqHGpw7JmHqHc1NxDoalibchSk9/RWuDc=\ngithub.com/jackc/pgx/v4 v4.12.1-0.20210724153913-640aa07df17c/go.mod h1:1QD0+tgSXP7iUjYm9C1NxKhny7lq6ee99u/z+IHFcgs=\ngithub.com/jackc/pgx/v4 v4.18.3 h1:dE2/TrEsGX3RBprb3qryqSV9Y60iZN1C6i8IrmW9/BA=\ngithub.com/jackc/pgx/v4 v4.18.3/go.mod h1:Ey4Oru5tH5sB6tV7hDmfWFahwF15Eb7DNXlRKx2CkVw=\ngithub.com/jackc/pgx/v5 v5.8.0 h1:TYPDoleBBme0xGSAX3/+NujXXtpZn9HBONkQC7IEZSo=\ngithub.com/jackc/pgx/v5 v5.8.0/go.mod h1:QVeDInX2m9VyzvNeiCJVjCkNFqzsNb43204HshNSZKw=\ngithub.com/jackc/puddle v0.0.0-20190413234325-e4ced69a3a2b/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk=\ngithub.com/jackc/puddle v0.0.0-20190608224051-11cab39313c9/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk=\ngithub.com/jackc/puddle v1.1.3/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk=\ngithub.com/jackc/puddle/v2 v2.2.2 h1:PR8nw+E/1w0GLuRFSmiioY6UooMp6KJv0/61nB7icHo=\ngithub.com/jackc/puddle/v2 v2.2.2/go.mod h1:vriiEXHvEE654aYKXXjOvZM39qJ0q+azkZFrfEOc3H4=\ngithub.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E=\ngithub.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc=\ngithub.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=\ngithub.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=\ngithub.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=\ngithub.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=\ngithub.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0=\ngithub.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk=\ngithub.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=\ngithub.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw=\ngithub.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=\ngithub.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=\ngithub.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=\ngithub.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=\ngithub.com/lib/pq v1.1.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=\ngithub.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=\ngithub.com/lib/pq v1.10.2/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o=\ngithub.com/lib/pq v1.11.2 h1:x6gxUeu39V0BHZiugWe8LXZYZ+Utk7hSJGThs8sdzfs=\ngithub.com/lib/pq v1.11.2/go.mod h1:/p+8NSbOcwzAEI7wiMXFlgydTwcgTr3OSKMsD2BitpA=\ngithub.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ=\ngithub.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=\ngithub.com/mattn/go-isatty v0.0.5/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=\ngithub.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=\ngithub.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=\ngithub.com/ncruces/go-sqlite3 v0.30.5 h1:6usmTQ6khriL8oWilkAZSJM/AIpAlVL2zFrlcpDldCE=\ngithub.com/ncruces/go-sqlite3 v0.30.5/go.mod h1:0I0JFflTKzfs3Ogfv8erP7CCoV/Z8uxigVDNOR0AQ5E=\ngithub.com/ncruces/julianday v1.0.0 h1:fH0OKwa7NWvniGQtxdJRxAgkBMolni2BjDHaWTxqt7M=\ngithub.com/ncruces/julianday v1.0.0/go.mod h1:Dusn2KvZrrovOMJuOt0TNXL6tB7U2E8kvza5fFc9G7g=\ngithub.com/pganalyze/pg_query_go/v6 v6.2.2 h1:O0L6zMC226R82RF3X5n0Ki6HjytDsoAzuzp4ATVAHNo=\ngithub.com/pganalyze/pg_query_go/v6 v6.2.2/go.mod h1:Cn6+j4870kJz3iYNsb0VsNG04vpSWgEvBwc590J4qD0=\ngithub.com/pingcap/errors v0.11.0/go.mod h1:Oi8TUi2kEtXXLMJk9l1cGmz20kV3TaQ0usTwv5KuLY8=\ngithub.com/pingcap/errors v0.11.5-0.20240311024730-e056997136bb h1:3pSi4EDG6hg0orE1ndHkXvX6Qdq2cZn8gAPir8ymKZk=\ngithub.com/pingcap/errors v0.11.5-0.20240311024730-e056997136bb/go.mod h1:X2r9ueLEUZgtx2cIogM0v4Zj5uvvzhuuiu7Pn8HzMPg=\ngithub.com/pingcap/failpoint v0.0.0-20240528011301-b51a646c7c86 h1:tdMsjOqUR7YXHoBitzdebTvOjs/swniBTOLy5XiMtuE=\ngithub.com/pingcap/failpoint v0.0.0-20240528011301-b51a646c7c86/go.mod h1:exzhVYca3WRtd6gclGNErRWb1qEgff3LYta0LvRmON4=\ngithub.com/pingcap/log v1.1.0 h1:ELiPxACz7vdo1qAvvaWJg1NrYFoY6gqAh/+Uo6aXdD8=\ngithub.com/pingcap/log v1.1.0/go.mod h1:DWQW5jICDR7UJh4HtxXSM20Churx4CQL0fwL/SoOSA4=\ngithub.com/pingcap/tidb/pkg/parser v0.0.0-20250324122243-d51e00e5bbf0 h1:W3rpAI3bubR6VWOcwxDIG0Gz9G5rl5b3SL116T0vBt0=\ngithub.com/pingcap/tidb/pkg/parser v0.0.0-20250324122243-d51e00e5bbf0/go.mod h1:+8feuexTKcXHZF/dkDfvCwEyBAmgb4paFc3/WeYV2eE=\ngithub.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=\ngithub.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=\ngithub.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=\ngithub.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=\ngithub.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=\ngithub.com/riza-io/grpc-go v0.2.0 h1:2HxQKFVE7VuYstcJ8zqpN84VnAoJ4dCL6YFhJewNcHQ=\ngithub.com/riza-io/grpc-go v0.2.0/go.mod h1:2bDvR9KkKC3KhtlSHfR3dAXjUMT86kg4UfWFyVGWqi8=\ngithub.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=\ngithub.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ=\ngithub.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog=\ngithub.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ=\ngithub.com/rs/zerolog v1.13.0/go.mod h1:YbFCdg8HfsridGWAh22vktObvhZbQsZXe4/zB0OKkWU=\ngithub.com/rs/zerolog v1.15.0/go.mod h1:xYTKnLHcpfU2225ny5qZjxnj9NvkumZYjJHlAThCjNc=\ngithub.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=\ngithub.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0=\ngithub.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24/go.mod h1:M+9NzErvs504Cn4c5DxATwIqPbtswREoFCre64PpcG4=\ngithub.com/shopspring/decimal v1.2.0 h1:abSATXmQEYyShuxI4/vyW3tV1MrKAJzCZ/0zLUXYbsQ=\ngithub.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o=\ngithub.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q=\ngithub.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=\ngithub.com/spf13/cobra v1.10.2 h1:DMTTonx5m65Ic0GOoRY2c16WCbHxOOw6xxezuLaBpcU=\ngithub.com/spf13/cobra v1.10.2/go.mod h1:7C1pvHqHw5A4vrJfjNwvOdzYu0Gml16OCs2GRiTUUS4=\ngithub.com/spf13/pflag v1.0.9/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=\ngithub.com/spf13/pflag v1.0.10 h1:4EBh2KAYBwaONj6b2Ye1GiHfwjqyROoF4RwYO+vPwFk=\ngithub.com/spf13/pflag v1.0.10/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=\ngithub.com/sqlc-dev/doubleclick v1.0.0 h1:2/OApfQ2eLgcfa/Fqs8WSMA6atH0G8j9hHbQIgMfAXI=\ngithub.com/sqlc-dev/doubleclick v1.0.0/go.mod h1:ODHRroSrk/rr5neRHlWMSRijqOak8YmNaO3VAZCNl5Y=\ngithub.com/sqlc-dev/mysql v0.0.0-20251129233104-d81e1cac6db2 h1:kmCAKKtOgK6EXXQX9oPdEASIhgor7TCpWxD8NtcqVcU=\ngithub.com/sqlc-dev/mysql v0.0.0-20251129233104-d81e1cac6db2/go.mod h1:TrDMWzjNTKvJeK2GC8uspG+PWyPLiY9QKvwdWpAdlZE=\ngithub.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=\ngithub.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=\ngithub.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE=\ngithub.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=\ngithub.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=\ngithub.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=\ngithub.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=\ngithub.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=\ngithub.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=\ngithub.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=\ngithub.com/tetratelabs/wazero v1.11.0 h1:+gKemEuKCTevU4d7ZTzlsvgd1uaToIDtlQlmNbwqYhA=\ngithub.com/tetratelabs/wazero v1.11.0/go.mod h1:eV28rsN8Q+xwjogd7f4/Pp4xFxO7uOGbLcD/LzB1wiU=\ngithub.com/wasilibs/go-pgquery v0.0.0-20250409022910-10ac41983c07 h1:mJdDDPblDfPe7z7go8Dvv1AJQDI3eQ/5xith3q2mFlo=\ngithub.com/wasilibs/go-pgquery v0.0.0-20250409022910-10ac41983c07/go.mod h1:Ak17IJ037caFp4jpCw/iQQ7/W74Sqpb1YuKJU6HTKfM=\ngithub.com/wasilibs/wazero-helpers v0.0.0-20240620070341-3dff1577cd52 h1:OvLBa8SqJnZ6P+mjlzc2K7PM22rRUPE1x32G9DTPrC4=\ngithub.com/wasilibs/wazero-helpers v0.0.0-20240620070341-3dff1577cd52/go.mod h1:jMeV4Vpbi8osrE/pKUxRZkVaA0EX7NZN0A9/oRzgpgY=\ngithub.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f h1:J9EGpcZtP0E/raorCMxlFGSTBrsSlaDGf3jU/qvAE2c=\ngithub.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU=\ngithub.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0=\ngithub.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ=\ngithub.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74=\ngithub.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y=\ngithub.com/zenazn/goji v0.9.0/go.mod h1:7S9M489iMyHBNxwZnk9/EHS098H4/F6TATF2mIxtB1Q=\ngo.opentelemetry.io/auto/sdk v1.2.1 h1:jXsnJ4Lmnqd11kwkBV2LgLoFMZKizbCi5fNZ/ipaZ64=\ngo.opentelemetry.io/auto/sdk v1.2.1/go.mod h1:KRTj+aOaElaLi+wW1kO/DZRXwkF4C5xPbEe3ZiIhN7Y=\ngo.opentelemetry.io/otel v1.39.0 h1:8yPrr/S0ND9QEfTfdP9V+SiwT4E0G7Y5MO7p85nis48=\ngo.opentelemetry.io/otel v1.39.0/go.mod h1:kLlFTywNWrFyEdH0oj2xK0bFYZtHRYUdv1NklR/tgc8=\ngo.opentelemetry.io/otel/metric v1.39.0 h1:d1UzonvEZriVfpNKEVmHXbdf909uGTOQjA0HF0Ls5Q0=\ngo.opentelemetry.io/otel/metric v1.39.0/go.mod h1:jrZSWL33sD7bBxg1xjrqyDjnuzTUB0x1nBERXd7Ftcs=\ngo.opentelemetry.io/otel/sdk v1.39.0 h1:nMLYcjVsvdui1B/4FRkwjzoRVsMK8uL/cj0OyhKzt18=\ngo.opentelemetry.io/otel/sdk v1.39.0/go.mod h1:vDojkC4/jsTJsE+kh+LXYQlbL8CgrEcwmt1ENZszdJE=\ngo.opentelemetry.io/otel/sdk/metric v1.39.0 h1:cXMVVFVgsIf2YL6QkRF4Urbr/aMInf+2WKg+sEJTtB8=\ngo.opentelemetry.io/otel/sdk/metric v1.39.0/go.mod h1:xq9HEVH7qeX69/JnwEfp6fVq5wosJsY1mt4lLfYdVew=\ngo.opentelemetry.io/otel/trace v1.39.0 h1:2d2vfpEDmCJ5zVYz7ijaJdOF59xLomrvj7bjt6/qCJI=\ngo.opentelemetry.io/otel/trace v1.39.0/go.mod h1:88w4/PnZSazkGzz/w84VHpQafiU4EtqqlVdxWy+rNOA=\ngo.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=\ngo.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=\ngo.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=\ngo.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=\ngo.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=\ngo.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=\ngo.uber.org/atomic v1.11.0 h1:ZvwS0R+56ePWxUNi+Atn9dWONBPp/AUETXlHW0DxSjE=\ngo.uber.org/atomic v1.11.0/go.mod h1:LUxbIzbOniOlMKjJjyPfpl4v+PKK2cNJn91OQbhoJI0=\ngo.uber.org/goleak v1.1.10/go.mod h1:8a7PlsEVH3e/a/GLqe5IIrQx6GzcnRmZEufDUTk4A7A=\ngo.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=\ngo.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE=\ngo.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0=\ngo.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4=\ngo.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU=\ngo.uber.org/multierr v1.6.0/go.mod h1:cdWPpRnG4AhwMwsgIHip0KRBQjJy5kYEpYjJxpXp9iU=\ngo.uber.org/multierr v1.7.0/go.mod h1:7EAYxJLBy9rStEaz58O2t4Uvip6FSURkq8/ppBp95ak=\ngo.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=\ngo.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y=\ngo.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA=\ngo.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=\ngo.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=\ngo.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM=\ngo.uber.org/zap v1.19.0/go.mod h1:xg/QME4nWcxGxrpdeYfq7UvYrLh66cuVKdrbD1XF/NI=\ngo.uber.org/zap v1.27.0 h1:aJMhYGrd5QSmlpLMr2MftRKl7t8J8PTZPA732ud/XR8=\ngo.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E=\ngo.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc=\ngo.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg=\ngolang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=\ngolang.org/x/crypto v0.0.0-20190411191339-88737f569e3a/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE=\ngolang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20201203163018-be400aefbc4c/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=\ngolang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=\ngolang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=\ngolang.org/x/crypto v0.47.0 h1:V6e3FRj+n4dbpw86FJ8Fv7XVOql7TEwpHapKoMJ/GO8=\ngolang.org/x/crypto v0.47.0/go.mod h1:ff3Y9VzzKbwSSEzWqJsJVBnWmRwRSHt/6Op5n9bQc4A=\ngolang.org/x/exp v0.0.0-20250620022241-b7579e27df2b h1:M2rDM6z3Fhozi9O7NWsxAkg/yqS/lQJ6PmkyIV3YP+o=\ngolang.org/x/exp v0.0.0-20250620022241-b7579e27df2b/go.mod h1:3//PLf8L/X+8b4vuAfHzxeRUl04Adcb341+IGKfnqS8=\ngolang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc=\ngolang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg=\ngolang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=\ngolang.org/x/net v0.48.0 h1:zyQRTTrjc33Lhh0fBgT/H3oZq9WuvRR5gPC70xpDiQU=\ngolang.org/x/net v0.48.0/go.mod h1:+ndRgGjkh8FGtu1w1FGbEC31if4VrNVMuKTgcAAnQRY=\ngolang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sync v0.19.0 h1:vV+1eWNmZ5geRlYjzm2adRgW2/mcpevXNg50YZtPCE4=\ngolang.org/x/sync v0.19.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI=\ngolang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=\ngolang.org/x/sys v0.40.0 h1:DBZZqJ2Rkml6QMQsZywtnjnnGvHza6BTfYFWY9kjEWQ=\ngolang.org/x/sys v0.40.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=\ngolang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=\ngolang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=\ngolang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=\ngolang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=\ngolang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=\ngolang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=\ngolang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=\ngolang.org/x/text v0.33.0 h1:B3njUFyqtHDUI5jMn1YIr5B0IE2U0qck04r6d4KPAxE=\ngolang.org/x/text v0.33.0/go.mod h1:LuMebE6+rBincTi9+xWTY8TztLzKHc/9C1uBCG27+q8=\ngolang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190425163242-31fd60d6bfdc/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=\ngolang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190823170909-c4a336ef6a2f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191108193012-7d206e10da11/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20200103221440-774c71fcf114/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=\ngolang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngolang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngolang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngolang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngolang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngonum.org/v1/gonum v0.16.0 h1:5+ul4Swaf3ESvrOnidPp4GZbzf0mxVQpDCYUQE7OJfk=\ngonum.org/v1/gonum v0.16.0/go.mod h1:fef3am4MQ93R2HHpKnLk4/Tbh/s0+wqD5nfa6Pnwy4E=\ngoogle.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 h1:fCvbg86sFXwdrl5LgVcTEvNC+2txB5mgROGmRL5mrls=\ngoogle.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217/go.mod h1:+rXWjjaukWZun3mLfjmVnQi18E1AsFbDN9QdJ5YXLto=\ngoogle.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 h1:gRkg/vSppuSQoDjxyiGfN4Upv/h/DQmIR10ZU8dh4Ww=\ngoogle.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217/go.mod h1:7i2o+ce6H/6BluujYR+kqX3GKH+dChPTQU19wjRPiGk=\ngoogle.golang.org/grpc v1.79.1 h1:zGhSi45ODB9/p3VAawt9a+O/MULLl9dpizzNNpq7flY=\ngoogle.golang.org/grpc v1.79.1/go.mod h1:KmT0Kjez+0dde/v2j9vzwoAScgEPx/Bw1CYChhHLrHQ=\ngoogle.golang.org/protobuf v1.36.11 h1:fV6ZwhNocDyBLK0dj+fg8ektcVegBBuEolpbTQyBNVE=\ngoogle.golang.org/protobuf v1.36.11/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco=\ngopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=\ngopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=\ngopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=\ngopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=\ngopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=\ngopkg.in/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec/go.mod h1:aPpfJ7XW+gOuirDoZ8gHhLh3kZ1B08FtV2bbmy7Jv3s=\ngopkg.in/natefinch/lumberjack.v2 v2.0.0/go.mod h1:l0ndWWf7gzL7RNwBG7wST/UCcT4T24xpD6X8LsfU/+k=\ngopkg.in/natefinch/lumberjack.v2 v2.2.1 h1:bBRl1b0OH9s/DuPhuXpNl+VtCaJXFZ5/uEFST95x9zc=\ngopkg.in/natefinch/lumberjack.v2 v2.2.1/go.mod h1:YD8tP3GAjkrDg1eZH7EGmyESg/lsYskCTPBJVb9jqSc=\ngopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v2 v2.2.8/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=\ngopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=\ngopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=\ngopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=\nhonnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=\n"
  },
  {
    "path": "internal/analysis/analysis.pb.go",
    "content": "// Code generated by protoc-gen-go. DO NOT EDIT.\n// versions:\n// \tprotoc-gen-go v1.30.0\n// \tprotoc        (unknown)\n// source: analysis/analysis.proto\n\npackage analysis\n\nimport (\n\tprotoreflect \"google.golang.org/protobuf/reflect/protoreflect\"\n\tprotoimpl \"google.golang.org/protobuf/runtime/protoimpl\"\n\treflect \"reflect\"\n\tsync \"sync\"\n)\n\nconst (\n\t// Verify that this generated code is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)\n\t// Verify that runtime/protoimpl is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)\n)\n\ntype Identifier struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tCatalog string `protobuf:\"bytes,1,opt,name=catalog,proto3\" json:\"catalog,omitempty\"`\n\tSchema  string `protobuf:\"bytes,2,opt,name=schema,proto3\" json:\"schema,omitempty\"`\n\tName    string `protobuf:\"bytes,3,opt,name=name,proto3\" json:\"name,omitempty\"`\n}\n\nfunc (x *Identifier) Reset() {\n\t*x = Identifier{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_analysis_analysis_proto_msgTypes[0]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Identifier) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Identifier) ProtoMessage() {}\n\nfunc (x *Identifier) ProtoReflect() protoreflect.Message {\n\tmi := &file_analysis_analysis_proto_msgTypes[0]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Identifier.ProtoReflect.Descriptor instead.\nfunc (*Identifier) Descriptor() ([]byte, []int) {\n\treturn file_analysis_analysis_proto_rawDescGZIP(), []int{0}\n}\n\nfunc (x *Identifier) GetCatalog() string {\n\tif x != nil {\n\t\treturn x.Catalog\n\t}\n\treturn \"\"\n}\n\nfunc (x *Identifier) GetSchema() string {\n\tif x != nil {\n\t\treturn x.Schema\n\t}\n\treturn \"\"\n}\n\nfunc (x *Identifier) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\ntype Column struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tName         string      `protobuf:\"bytes,1,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tOriginalName string      `protobuf:\"bytes,2,opt,name=original_name,json=originalName,proto3\" json:\"original_name,omitempty\"`\n\tDataType     string      `protobuf:\"bytes,3,opt,name=data_type,json=dataType,proto3\" json:\"data_type,omitempty\"`\n\tNotNull      bool        `protobuf:\"varint,4,opt,name=not_null,json=notNull,proto3\" json:\"not_null,omitempty\"`\n\tUnsigned     bool        `protobuf:\"varint,5,opt,name=unsigned,proto3\" json:\"unsigned,omitempty\"`\n\tIsArray      bool        `protobuf:\"varint,6,opt,name=is_array,json=isArray,proto3\" json:\"is_array,omitempty\"`\n\tArrayDims    int32       `protobuf:\"varint,7,opt,name=array_dims,json=arrayDims,proto3\" json:\"array_dims,omitempty\"`\n\tComment      string      `protobuf:\"bytes,8,opt,name=comment,proto3\" json:\"comment,omitempty\"`\n\tLength       int32       `protobuf:\"varint,9,opt,name=length,proto3\" json:\"length,omitempty\"` // *int\n\tIsNamedParam bool        `protobuf:\"varint,10,opt,name=is_named_param,json=isNamedParam,proto3\" json:\"is_named_param,omitempty\"`\n\tIsFuncCall   bool        `protobuf:\"varint,11,opt,name=is_func_call,json=isFuncCall,proto3\" json:\"is_func_call,omitempty\"`\n\tScope        string      `protobuf:\"bytes,12,opt,name=scope,proto3\" json:\"scope,omitempty\"`\n\tTable        *Identifier `protobuf:\"bytes,13,opt,name=table,proto3\" json:\"table,omitempty\"`\n\tTableAlias   string      `protobuf:\"bytes,14,opt,name=table_alias,json=tableAlias,proto3\" json:\"table_alias,omitempty\"`\n\tType         *Identifier `protobuf:\"bytes,15,opt,name=type,proto3\" json:\"type,omitempty\"`\n\tEmbedTable   *Identifier `protobuf:\"bytes,16,opt,name=embed_table,json=embedTable,proto3\" json:\"embed_table,omitempty\"`\n\tIsSqlcSlice  bool        `protobuf:\"varint,17,opt,name=is_sqlc_slice,json=isSqlcSlice,proto3\" json:\"is_sqlc_slice,omitempty\"`\n}\n\nfunc (x *Column) Reset() {\n\t*x = Column{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_analysis_analysis_proto_msgTypes[1]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Column) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Column) ProtoMessage() {}\n\nfunc (x *Column) ProtoReflect() protoreflect.Message {\n\tmi := &file_analysis_analysis_proto_msgTypes[1]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Column.ProtoReflect.Descriptor instead.\nfunc (*Column) Descriptor() ([]byte, []int) {\n\treturn file_analysis_analysis_proto_rawDescGZIP(), []int{1}\n}\n\nfunc (x *Column) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *Column) GetOriginalName() string {\n\tif x != nil {\n\t\treturn x.OriginalName\n\t}\n\treturn \"\"\n}\n\nfunc (x *Column) GetDataType() string {\n\tif x != nil {\n\t\treturn x.DataType\n\t}\n\treturn \"\"\n}\n\nfunc (x *Column) GetNotNull() bool {\n\tif x != nil {\n\t\treturn x.NotNull\n\t}\n\treturn false\n}\n\nfunc (x *Column) GetUnsigned() bool {\n\tif x != nil {\n\t\treturn x.Unsigned\n\t}\n\treturn false\n}\n\nfunc (x *Column) GetIsArray() bool {\n\tif x != nil {\n\t\treturn x.IsArray\n\t}\n\treturn false\n}\n\nfunc (x *Column) GetArrayDims() int32 {\n\tif x != nil {\n\t\treturn x.ArrayDims\n\t}\n\treturn 0\n}\n\nfunc (x *Column) GetComment() string {\n\tif x != nil {\n\t\treturn x.Comment\n\t}\n\treturn \"\"\n}\n\nfunc (x *Column) GetLength() int32 {\n\tif x != nil {\n\t\treturn x.Length\n\t}\n\treturn 0\n}\n\nfunc (x *Column) GetIsNamedParam() bool {\n\tif x != nil {\n\t\treturn x.IsNamedParam\n\t}\n\treturn false\n}\n\nfunc (x *Column) GetIsFuncCall() bool {\n\tif x != nil {\n\t\treturn x.IsFuncCall\n\t}\n\treturn false\n}\n\nfunc (x *Column) GetScope() string {\n\tif x != nil {\n\t\treturn x.Scope\n\t}\n\treturn \"\"\n}\n\nfunc (x *Column) GetTable() *Identifier {\n\tif x != nil {\n\t\treturn x.Table\n\t}\n\treturn nil\n}\n\nfunc (x *Column) GetTableAlias() string {\n\tif x != nil {\n\t\treturn x.TableAlias\n\t}\n\treturn \"\"\n}\n\nfunc (x *Column) GetType() *Identifier {\n\tif x != nil {\n\t\treturn x.Type\n\t}\n\treturn nil\n}\n\nfunc (x *Column) GetEmbedTable() *Identifier {\n\tif x != nil {\n\t\treturn x.EmbedTable\n\t}\n\treturn nil\n}\n\nfunc (x *Column) GetIsSqlcSlice() bool {\n\tif x != nil {\n\t\treturn x.IsSqlcSlice\n\t}\n\treturn false\n}\n\ntype Parameter struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tNumber int32   `protobuf:\"varint,1,opt,name=number,proto3\" json:\"number,omitempty\"`\n\tColumn *Column `protobuf:\"bytes,2,opt,name=column,proto3\" json:\"column,omitempty\"`\n}\n\nfunc (x *Parameter) Reset() {\n\t*x = Parameter{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_analysis_analysis_proto_msgTypes[2]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Parameter) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Parameter) ProtoMessage() {}\n\nfunc (x *Parameter) ProtoReflect() protoreflect.Message {\n\tmi := &file_analysis_analysis_proto_msgTypes[2]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Parameter.ProtoReflect.Descriptor instead.\nfunc (*Parameter) Descriptor() ([]byte, []int) {\n\treturn file_analysis_analysis_proto_rawDescGZIP(), []int{2}\n}\n\nfunc (x *Parameter) GetNumber() int32 {\n\tif x != nil {\n\t\treturn x.Number\n\t}\n\treturn 0\n}\n\nfunc (x *Parameter) GetColumn() *Column {\n\tif x != nil {\n\t\treturn x.Column\n\t}\n\treturn nil\n}\n\ntype Analysis struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tColumns []*Column    `protobuf:\"bytes,1,rep,name=columns,proto3\" json:\"columns,omitempty\"`\n\tParams  []*Parameter `protobuf:\"bytes,2,rep,name=params,proto3\" json:\"params,omitempty\"`\n}\n\nfunc (x *Analysis) Reset() {\n\t*x = Analysis{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_analysis_analysis_proto_msgTypes[3]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Analysis) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Analysis) ProtoMessage() {}\n\nfunc (x *Analysis) ProtoReflect() protoreflect.Message {\n\tmi := &file_analysis_analysis_proto_msgTypes[3]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Analysis.ProtoReflect.Descriptor instead.\nfunc (*Analysis) Descriptor() ([]byte, []int) {\n\treturn file_analysis_analysis_proto_rawDescGZIP(), []int{3}\n}\n\nfunc (x *Analysis) GetColumns() []*Column {\n\tif x != nil {\n\t\treturn x.Columns\n\t}\n\treturn nil\n}\n\nfunc (x *Analysis) GetParams() []*Parameter {\n\tif x != nil {\n\t\treturn x.Params\n\t}\n\treturn nil\n}\n\nvar File_analysis_analysis_proto protoreflect.FileDescriptor\n\nvar file_analysis_analysis_proto_rawDesc = []byte{\n\t0x0a, 0x17, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x2f, 0x61, 0x6e, 0x61, 0x6c, 0x79,\n\t0x73, 0x69, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x08, 0x61, 0x6e, 0x61, 0x6c, 0x79,\n\t0x73, 0x69, 0x73, 0x22, 0x52, 0x0a, 0x0a, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65,\n\t0x72, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x18, 0x01, 0x20, 0x01,\n\t0x28, 0x09, 0x52, 0x07, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x73,\n\t0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x63, 0x68,\n\t0x65, 0x6d, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xb1, 0x04, 0x0a, 0x06, 0x43, 0x6f, 0x6c, 0x75,\n\t0x6d, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e,\n\t0x61, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6f,\n\t0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64,\n\t0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,\n\t0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x6e, 0x6f, 0x74, 0x5f,\n\t0x6e, 0x75, 0x6c, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x6e, 0x6f, 0x74, 0x4e,\n\t0x75, 0x6c, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x6e, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x18,\n\t0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x75, 0x6e, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x12,\n\t0x19, 0x0a, 0x08, 0x69, 0x73, 0x5f, 0x61, 0x72, 0x72, 0x61, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28,\n\t0x08, 0x52, 0x07, 0x69, 0x73, 0x41, 0x72, 0x72, 0x61, 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x72,\n\t0x72, 0x61, 0x79, 0x5f, 0x64, 0x69, 0x6d, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09,\n\t0x61, 0x72, 0x72, 0x61, 0x79, 0x44, 0x69, 0x6d, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d,\n\t0x6d, 0x65, 0x6e, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x6d,\n\t0x65, 0x6e, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x09, 0x20,\n\t0x01, 0x28, 0x05, 0x52, 0x06, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x12, 0x24, 0x0a, 0x0e, 0x69,\n\t0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x18, 0x0a, 0x20,\n\t0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x64, 0x50, 0x61, 0x72, 0x61,\n\t0x6d, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x5f, 0x63, 0x61, 0x6c,\n\t0x6c, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x46, 0x75, 0x6e, 0x63, 0x43,\n\t0x61, 0x6c, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x18, 0x0c, 0x20, 0x01,\n\t0x28, 0x09, 0x52, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x2a, 0x0a, 0x05, 0x74, 0x61, 0x62,\n\t0x6c, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x61, 0x6e, 0x61, 0x6c, 0x79,\n\t0x73, 0x69, 0x73, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x05,\n\t0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x61,\n\t0x6c, 0x69, 0x61, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x61, 0x62, 0x6c,\n\t0x65, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x28, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0f,\n\t0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x2e,\n\t0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,\n\t0x12, 0x35, 0x0a, 0x0b, 0x65, 0x6d, 0x62, 0x65, 0x64, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18,\n\t0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73,\n\t0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x0a, 0x65, 0x6d, 0x62,\n\t0x65, 0x64, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x73, 0x71,\n\t0x6c, 0x63, 0x5f, 0x73, 0x6c, 0x69, 0x63, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b,\n\t0x69, 0x73, 0x53, 0x71, 0x6c, 0x63, 0x53, 0x6c, 0x69, 0x63, 0x65, 0x22, 0x4d, 0x0a, 0x09, 0x50,\n\t0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62,\n\t0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72,\n\t0x12, 0x28, 0x0a, 0x06, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,\n\t0x32, 0x10, 0x2e, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x2e, 0x43, 0x6f, 0x6c, 0x75,\n\t0x6d, 0x6e, 0x52, 0x06, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x22, 0x63, 0x0a, 0x08, 0x41, 0x6e,\n\t0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x12, 0x2a, 0x0a, 0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e,\n\t0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x73,\n\t0x69, 0x73, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d,\n\t0x6e, 0x73, 0x12, 0x2b, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03,\n\t0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x2e, 0x50, 0x61,\n\t0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x42,\n\t0x89, 0x01, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x2e, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73,\n\t0x42, 0x0d, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,\n\t0x01, 0x5a, 0x2a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x71,\n\t0x6c, 0x63, 0x2d, 0x64, 0x65, 0x76, 0x2f, 0x73, 0x71, 0x6c, 0x63, 0x2f, 0x69, 0x6e, 0x74, 0x65,\n\t0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0xa2, 0x02, 0x03,\n\t0x41, 0x58, 0x58, 0xaa, 0x02, 0x08, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0xca, 0x02,\n\t0x08, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0xe2, 0x02, 0x14, 0x41, 0x6e, 0x61, 0x6c,\n\t0x79, 0x73, 0x69, 0x73, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,\n\t0xea, 0x02, 0x08, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x73, 0x69, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,\n\t0x74, 0x6f, 0x33,\n}\n\nvar (\n\tfile_analysis_analysis_proto_rawDescOnce sync.Once\n\tfile_analysis_analysis_proto_rawDescData = file_analysis_analysis_proto_rawDesc\n)\n\nfunc file_analysis_analysis_proto_rawDescGZIP() []byte {\n\tfile_analysis_analysis_proto_rawDescOnce.Do(func() {\n\t\tfile_analysis_analysis_proto_rawDescData = protoimpl.X.CompressGZIP(file_analysis_analysis_proto_rawDescData)\n\t})\n\treturn file_analysis_analysis_proto_rawDescData\n}\n\nvar file_analysis_analysis_proto_msgTypes = make([]protoimpl.MessageInfo, 4)\nvar file_analysis_analysis_proto_goTypes = []interface{}{\n\t(*Identifier)(nil), // 0: analysis.Identifier\n\t(*Column)(nil),     // 1: analysis.Column\n\t(*Parameter)(nil),  // 2: analysis.Parameter\n\t(*Analysis)(nil),   // 3: analysis.Analysis\n}\nvar file_analysis_analysis_proto_depIdxs = []int32{\n\t0, // 0: analysis.Column.table:type_name -> analysis.Identifier\n\t0, // 1: analysis.Column.type:type_name -> analysis.Identifier\n\t0, // 2: analysis.Column.embed_table:type_name -> analysis.Identifier\n\t1, // 3: analysis.Parameter.column:type_name -> analysis.Column\n\t1, // 4: analysis.Analysis.columns:type_name -> analysis.Column\n\t2, // 5: analysis.Analysis.params:type_name -> analysis.Parameter\n\t6, // [6:6] is the sub-list for method output_type\n\t6, // [6:6] is the sub-list for method input_type\n\t6, // [6:6] is the sub-list for extension type_name\n\t6, // [6:6] is the sub-list for extension extendee\n\t0, // [0:6] is the sub-list for field type_name\n}\n\nfunc init() { file_analysis_analysis_proto_init() }\nfunc file_analysis_analysis_proto_init() {\n\tif File_analysis_analysis_proto != nil {\n\t\treturn\n\t}\n\tif !protoimpl.UnsafeEnabled {\n\t\tfile_analysis_analysis_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Identifier); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_analysis_analysis_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Column); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_analysis_analysis_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Parameter); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_analysis_analysis_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Analysis); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t}\n\ttype x struct{}\n\tout := protoimpl.TypeBuilder{\n\t\tFile: protoimpl.DescBuilder{\n\t\t\tGoPackagePath: reflect.TypeOf(x{}).PkgPath(),\n\t\t\tRawDescriptor: file_analysis_analysis_proto_rawDesc,\n\t\t\tNumEnums:      0,\n\t\t\tNumMessages:   4,\n\t\t\tNumExtensions: 0,\n\t\t\tNumServices:   0,\n\t\t},\n\t\tGoTypes:           file_analysis_analysis_proto_goTypes,\n\t\tDependencyIndexes: file_analysis_analysis_proto_depIdxs,\n\t\tMessageInfos:      file_analysis_analysis_proto_msgTypes,\n\t}.Build()\n\tFile_analysis_analysis_proto = out.File\n\tfile_analysis_analysis_proto_rawDesc = nil\n\tfile_analysis_analysis_proto_goTypes = nil\n\tfile_analysis_analysis_proto_depIdxs = nil\n}\n"
  },
  {
    "path": "internal/analysis/analysis_vtproto.pb.go",
    "content": "// Code generated by protoc-gen-go-vtproto. DO NOT EDIT.\n// protoc-gen-go-vtproto version: v0.4.0\n// source: analysis/analysis.proto\n\npackage analysis\n\nimport (\n\tfmt \"fmt\"\n\tproto \"google.golang.org/protobuf/proto\"\n\tprotoimpl \"google.golang.org/protobuf/runtime/protoimpl\"\n\tio \"io\"\n\tbits \"math/bits\"\n)\n\nconst (\n\t// Verify that this generated code is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)\n\t// Verify that runtime/protoimpl is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)\n)\n\nfunc (m *Identifier) CloneVT() *Identifier {\n\tif m == nil {\n\t\treturn (*Identifier)(nil)\n\t}\n\tr := &Identifier{\n\t\tCatalog: m.Catalog,\n\t\tSchema:  m.Schema,\n\t\tName:    m.Name,\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *Identifier) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (m *Column) CloneVT() *Column {\n\tif m == nil {\n\t\treturn (*Column)(nil)\n\t}\n\tr := &Column{\n\t\tName:         m.Name,\n\t\tOriginalName: m.OriginalName,\n\t\tDataType:     m.DataType,\n\t\tNotNull:      m.NotNull,\n\t\tUnsigned:     m.Unsigned,\n\t\tIsArray:      m.IsArray,\n\t\tArrayDims:    m.ArrayDims,\n\t\tComment:      m.Comment,\n\t\tLength:       m.Length,\n\t\tIsNamedParam: m.IsNamedParam,\n\t\tIsFuncCall:   m.IsFuncCall,\n\t\tScope:        m.Scope,\n\t\tTable:        m.Table.CloneVT(),\n\t\tTableAlias:   m.TableAlias,\n\t\tType:         m.Type.CloneVT(),\n\t\tEmbedTable:   m.EmbedTable.CloneVT(),\n\t\tIsSqlcSlice:  m.IsSqlcSlice,\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *Column) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (m *Parameter) CloneVT() *Parameter {\n\tif m == nil {\n\t\treturn (*Parameter)(nil)\n\t}\n\tr := &Parameter{\n\t\tNumber: m.Number,\n\t\tColumn: m.Column.CloneVT(),\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *Parameter) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (m *Analysis) CloneVT() *Analysis {\n\tif m == nil {\n\t\treturn (*Analysis)(nil)\n\t}\n\tr := &Analysis{}\n\tif rhs := m.Columns; rhs != nil {\n\t\ttmpContainer := make([]*Column, len(rhs))\n\t\tfor k, v := range rhs {\n\t\t\ttmpContainer[k] = v.CloneVT()\n\t\t}\n\t\tr.Columns = tmpContainer\n\t}\n\tif rhs := m.Params; rhs != nil {\n\t\ttmpContainer := make([]*Parameter, len(rhs))\n\t\tfor k, v := range rhs {\n\t\t\ttmpContainer[k] = v.CloneVT()\n\t\t}\n\t\tr.Params = tmpContainer\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *Analysis) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (this *Identifier) EqualVT(that *Identifier) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif this.Catalog != that.Catalog {\n\t\treturn false\n\t}\n\tif this.Schema != that.Schema {\n\t\treturn false\n\t}\n\tif this.Name != that.Name {\n\t\treturn false\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *Identifier) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*Identifier)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (this *Column) EqualVT(that *Column) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif this.Name != that.Name {\n\t\treturn false\n\t}\n\tif this.OriginalName != that.OriginalName {\n\t\treturn false\n\t}\n\tif this.DataType != that.DataType {\n\t\treturn false\n\t}\n\tif this.NotNull != that.NotNull {\n\t\treturn false\n\t}\n\tif this.Unsigned != that.Unsigned {\n\t\treturn false\n\t}\n\tif this.IsArray != that.IsArray {\n\t\treturn false\n\t}\n\tif this.ArrayDims != that.ArrayDims {\n\t\treturn false\n\t}\n\tif this.Comment != that.Comment {\n\t\treturn false\n\t}\n\tif this.Length != that.Length {\n\t\treturn false\n\t}\n\tif this.IsNamedParam != that.IsNamedParam {\n\t\treturn false\n\t}\n\tif this.IsFuncCall != that.IsFuncCall {\n\t\treturn false\n\t}\n\tif this.Scope != that.Scope {\n\t\treturn false\n\t}\n\tif !this.Table.EqualVT(that.Table) {\n\t\treturn false\n\t}\n\tif this.TableAlias != that.TableAlias {\n\t\treturn false\n\t}\n\tif !this.Type.EqualVT(that.Type) {\n\t\treturn false\n\t}\n\tif !this.EmbedTable.EqualVT(that.EmbedTable) {\n\t\treturn false\n\t}\n\tif this.IsSqlcSlice != that.IsSqlcSlice {\n\t\treturn false\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *Column) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*Column)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (this *Parameter) EqualVT(that *Parameter) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif this.Number != that.Number {\n\t\treturn false\n\t}\n\tif !this.Column.EqualVT(that.Column) {\n\t\treturn false\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *Parameter) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*Parameter)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (this *Analysis) EqualVT(that *Analysis) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif len(this.Columns) != len(that.Columns) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.Columns {\n\t\tvy := that.Columns[i]\n\t\tif p, q := vx, vy; p != q {\n\t\t\tif p == nil {\n\t\t\t\tp = &Column{}\n\t\t\t}\n\t\t\tif q == nil {\n\t\t\t\tq = &Column{}\n\t\t\t}\n\t\t\tif !p.EqualVT(q) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t}\n\tif len(this.Params) != len(that.Params) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.Params {\n\t\tvy := that.Params[i]\n\t\tif p, q := vx, vy; p != q {\n\t\t\tif p == nil {\n\t\t\t\tp = &Parameter{}\n\t\t\t}\n\t\t\tif q == nil {\n\t\t\t\tq = &Parameter{}\n\t\t\t}\n\t\t\tif !p.EqualVT(q) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *Analysis) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*Analysis)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (m *Identifier) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *Identifier) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *Identifier) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.Name) > 0 {\n\t\ti -= len(m.Name)\n\t\tcopy(dAtA[i:], m.Name)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Name)))\n\t\ti--\n\t\tdAtA[i] = 0x1a\n\t}\n\tif len(m.Schema) > 0 {\n\t\ti -= len(m.Schema)\n\t\tcopy(dAtA[i:], m.Schema)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Schema)))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif len(m.Catalog) > 0 {\n\t\ti -= len(m.Catalog)\n\t\tcopy(dAtA[i:], m.Catalog)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Catalog)))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *Column) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *Column) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *Column) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.IsSqlcSlice {\n\t\ti--\n\t\tif m.IsSqlcSlice {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0x88\n\t}\n\tif m.EmbedTable != nil {\n\t\tsize, err := m.EmbedTable.MarshalToSizedBufferVT(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0x82\n\t}\n\tif m.Type != nil {\n\t\tsize, err := m.Type.MarshalToSizedBufferVT(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x7a\n\t}\n\tif len(m.TableAlias) > 0 {\n\t\ti -= len(m.TableAlias)\n\t\tcopy(dAtA[i:], m.TableAlias)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.TableAlias)))\n\t\ti--\n\t\tdAtA[i] = 0x72\n\t}\n\tif m.Table != nil {\n\t\tsize, err := m.Table.MarshalToSizedBufferVT(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x6a\n\t}\n\tif len(m.Scope) > 0 {\n\t\ti -= len(m.Scope)\n\t\tcopy(dAtA[i:], m.Scope)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Scope)))\n\t\ti--\n\t\tdAtA[i] = 0x62\n\t}\n\tif m.IsFuncCall {\n\t\ti--\n\t\tif m.IsFuncCall {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x58\n\t}\n\tif m.IsNamedParam {\n\t\ti--\n\t\tif m.IsNamedParam {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x50\n\t}\n\tif m.Length != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.Length))\n\t\ti--\n\t\tdAtA[i] = 0x48\n\t}\n\tif len(m.Comment) > 0 {\n\t\ti -= len(m.Comment)\n\t\tcopy(dAtA[i:], m.Comment)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Comment)))\n\t\ti--\n\t\tdAtA[i] = 0x42\n\t}\n\tif m.ArrayDims != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.ArrayDims))\n\t\ti--\n\t\tdAtA[i] = 0x38\n\t}\n\tif m.IsArray {\n\t\ti--\n\t\tif m.IsArray {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x30\n\t}\n\tif m.Unsigned {\n\t\ti--\n\t\tif m.Unsigned {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x28\n\t}\n\tif m.NotNull {\n\t\ti--\n\t\tif m.NotNull {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x20\n\t}\n\tif len(m.DataType) > 0 {\n\t\ti -= len(m.DataType)\n\t\tcopy(dAtA[i:], m.DataType)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.DataType)))\n\t\ti--\n\t\tdAtA[i] = 0x1a\n\t}\n\tif len(m.OriginalName) > 0 {\n\t\ti -= len(m.OriginalName)\n\t\tcopy(dAtA[i:], m.OriginalName)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.OriginalName)))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif len(m.Name) > 0 {\n\t\ti -= len(m.Name)\n\t\tcopy(dAtA[i:], m.Name)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Name)))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *Parameter) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *Parameter) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *Parameter) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.Column != nil {\n\t\tsize, err := m.Column.MarshalToSizedBufferVT(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif m.Number != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.Number))\n\t\ti--\n\t\tdAtA[i] = 0x8\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *Analysis) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *Analysis) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *Analysis) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.Params) > 0 {\n\t\tfor iNdEx := len(m.Params) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\tsize, err := m.Params[iNdEx].MarshalToSizedBufferVT(dAtA[:i])\n\t\t\tif err != nil {\n\t\t\t\treturn 0, err\n\t\t\t}\n\t\t\ti -= size\n\t\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x12\n\t\t}\n\t}\n\tif len(m.Columns) > 0 {\n\t\tfor iNdEx := len(m.Columns) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\tsize, err := m.Columns[iNdEx].MarshalToSizedBufferVT(dAtA[:i])\n\t\t\tif err != nil {\n\t\t\t\treturn 0, err\n\t\t\t}\n\t\t\ti -= size\n\t\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\t\ti--\n\t\t\tdAtA[i] = 0xa\n\t\t}\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc encodeVarint(dAtA []byte, offset int, v uint64) int {\n\toffset -= sov(v)\n\tbase := offset\n\tfor v >= 1<<7 {\n\t\tdAtA[offset] = uint8(v&0x7f | 0x80)\n\t\tv >>= 7\n\t\toffset++\n\t}\n\tdAtA[offset] = uint8(v)\n\treturn base\n}\nfunc (m *Identifier) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *Identifier) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *Identifier) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.Name) > 0 {\n\t\ti -= len(m.Name)\n\t\tcopy(dAtA[i:], m.Name)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Name)))\n\t\ti--\n\t\tdAtA[i] = 0x1a\n\t}\n\tif len(m.Schema) > 0 {\n\t\ti -= len(m.Schema)\n\t\tcopy(dAtA[i:], m.Schema)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Schema)))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif len(m.Catalog) > 0 {\n\t\ti -= len(m.Catalog)\n\t\tcopy(dAtA[i:], m.Catalog)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Catalog)))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *Column) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *Column) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *Column) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.IsSqlcSlice {\n\t\ti--\n\t\tif m.IsSqlcSlice {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0x88\n\t}\n\tif m.EmbedTable != nil {\n\t\tsize, err := m.EmbedTable.MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0x82\n\t}\n\tif m.Type != nil {\n\t\tsize, err := m.Type.MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x7a\n\t}\n\tif len(m.TableAlias) > 0 {\n\t\ti -= len(m.TableAlias)\n\t\tcopy(dAtA[i:], m.TableAlias)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.TableAlias)))\n\t\ti--\n\t\tdAtA[i] = 0x72\n\t}\n\tif m.Table != nil {\n\t\tsize, err := m.Table.MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x6a\n\t}\n\tif len(m.Scope) > 0 {\n\t\ti -= len(m.Scope)\n\t\tcopy(dAtA[i:], m.Scope)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Scope)))\n\t\ti--\n\t\tdAtA[i] = 0x62\n\t}\n\tif m.IsFuncCall {\n\t\ti--\n\t\tif m.IsFuncCall {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x58\n\t}\n\tif m.IsNamedParam {\n\t\ti--\n\t\tif m.IsNamedParam {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x50\n\t}\n\tif m.Length != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.Length))\n\t\ti--\n\t\tdAtA[i] = 0x48\n\t}\n\tif len(m.Comment) > 0 {\n\t\ti -= len(m.Comment)\n\t\tcopy(dAtA[i:], m.Comment)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Comment)))\n\t\ti--\n\t\tdAtA[i] = 0x42\n\t}\n\tif m.ArrayDims != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.ArrayDims))\n\t\ti--\n\t\tdAtA[i] = 0x38\n\t}\n\tif m.IsArray {\n\t\ti--\n\t\tif m.IsArray {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x30\n\t}\n\tif m.Unsigned {\n\t\ti--\n\t\tif m.Unsigned {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x28\n\t}\n\tif m.NotNull {\n\t\ti--\n\t\tif m.NotNull {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x20\n\t}\n\tif len(m.DataType) > 0 {\n\t\ti -= len(m.DataType)\n\t\tcopy(dAtA[i:], m.DataType)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.DataType)))\n\t\ti--\n\t\tdAtA[i] = 0x1a\n\t}\n\tif len(m.OriginalName) > 0 {\n\t\ti -= len(m.OriginalName)\n\t\tcopy(dAtA[i:], m.OriginalName)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.OriginalName)))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif len(m.Name) > 0 {\n\t\ti -= len(m.Name)\n\t\tcopy(dAtA[i:], m.Name)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Name)))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *Parameter) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *Parameter) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *Parameter) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.Column != nil {\n\t\tsize, err := m.Column.MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif m.Number != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.Number))\n\t\ti--\n\t\tdAtA[i] = 0x8\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *Analysis) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *Analysis) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *Analysis) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.Params) > 0 {\n\t\tfor iNdEx := len(m.Params) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\tsize, err := m.Params[iNdEx].MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\t\tif err != nil {\n\t\t\t\treturn 0, err\n\t\t\t}\n\t\t\ti -= size\n\t\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x12\n\t\t}\n\t}\n\tif len(m.Columns) > 0 {\n\t\tfor iNdEx := len(m.Columns) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\tsize, err := m.Columns[iNdEx].MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\t\tif err != nil {\n\t\t\t\treturn 0, err\n\t\t\t}\n\t\t\ti -= size\n\t\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\t\ti--\n\t\t\tdAtA[i] = 0xa\n\t\t}\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *Identifier) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tl = len(m.Catalog)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tl = len(m.Schema)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tl = len(m.Name)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc (m *Column) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tl = len(m.Name)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tl = len(m.OriginalName)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tl = len(m.DataType)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif m.NotNull {\n\t\tn += 2\n\t}\n\tif m.Unsigned {\n\t\tn += 2\n\t}\n\tif m.IsArray {\n\t\tn += 2\n\t}\n\tif m.ArrayDims != 0 {\n\t\tn += 1 + sov(uint64(m.ArrayDims))\n\t}\n\tl = len(m.Comment)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif m.Length != 0 {\n\t\tn += 1 + sov(uint64(m.Length))\n\t}\n\tif m.IsNamedParam {\n\t\tn += 2\n\t}\n\tif m.IsFuncCall {\n\t\tn += 2\n\t}\n\tl = len(m.Scope)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif m.Table != nil {\n\t\tl = m.Table.SizeVT()\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tl = len(m.TableAlias)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif m.Type != nil {\n\t\tl = m.Type.SizeVT()\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif m.EmbedTable != nil {\n\t\tl = m.EmbedTable.SizeVT()\n\t\tn += 2 + l + sov(uint64(l))\n\t}\n\tif m.IsSqlcSlice {\n\t\tn += 3\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc (m *Parameter) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tif m.Number != 0 {\n\t\tn += 1 + sov(uint64(m.Number))\n\t}\n\tif m.Column != nil {\n\t\tl = m.Column.SizeVT()\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc (m *Analysis) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tif len(m.Columns) > 0 {\n\t\tfor _, e := range m.Columns {\n\t\t\tl = e.SizeVT()\n\t\t\tn += 1 + l + sov(uint64(l))\n\t\t}\n\t}\n\tif len(m.Params) > 0 {\n\t\tfor _, e := range m.Params {\n\t\t\tl = e.SizeVT()\n\t\t\tn += 1 + l + sov(uint64(l))\n\t\t}\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc sov(x uint64) (n int) {\n\treturn (bits.Len64(x|1) + 6) / 7\n}\nfunc soz(x uint64) (n int) {\n\treturn sov(uint64((x << 1) ^ uint64((int64(x) >> 63))))\n}\nfunc (m *Identifier) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: Identifier: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: Identifier: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Catalog\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Catalog = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 2:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Schema\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Schema = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 3:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Name\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Name = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\nfunc (m *Column) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: Column: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: Column: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Name\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Name = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 2:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field OriginalName\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.OriginalName = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 3:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field DataType\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.DataType = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 4:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field NotNull\", wireType)\n\t\t\t}\n\t\t\tvar v int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tv |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tm.NotNull = bool(v != 0)\n\t\tcase 5:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Unsigned\", wireType)\n\t\t\t}\n\t\t\tvar v int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tv |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tm.Unsigned = bool(v != 0)\n\t\tcase 6:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field IsArray\", wireType)\n\t\t\t}\n\t\t\tvar v int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tv |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tm.IsArray = bool(v != 0)\n\t\tcase 7:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field ArrayDims\", wireType)\n\t\t\t}\n\t\t\tm.ArrayDims = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.ArrayDims |= int32(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 8:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Comment\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Comment = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 9:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Length\", wireType)\n\t\t\t}\n\t\t\tm.Length = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.Length |= int32(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 10:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field IsNamedParam\", wireType)\n\t\t\t}\n\t\t\tvar v int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tv |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tm.IsNamedParam = bool(v != 0)\n\t\tcase 11:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field IsFuncCall\", wireType)\n\t\t\t}\n\t\t\tvar v int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tv |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tm.IsFuncCall = bool(v != 0)\n\t\tcase 12:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Scope\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Scope = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 13:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Table\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.Table == nil {\n\t\t\t\tm.Table = &Identifier{}\n\t\t\t}\n\t\t\tif err := m.Table.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tcase 14:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field TableAlias\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.TableAlias = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 15:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Type\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.Type == nil {\n\t\t\t\tm.Type = &Identifier{}\n\t\t\t}\n\t\t\tif err := m.Type.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tcase 16:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field EmbedTable\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.EmbedTable == nil {\n\t\t\t\tm.EmbedTable = &Identifier{}\n\t\t\t}\n\t\t\tif err := m.EmbedTable.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tcase 17:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field IsSqlcSlice\", wireType)\n\t\t\t}\n\t\t\tvar v int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tv |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tm.IsSqlcSlice = bool(v != 0)\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\nfunc (m *Parameter) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: Parameter: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: Parameter: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Number\", wireType)\n\t\t\t}\n\t\t\tm.Number = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.Number |= int32(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 2:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Column\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.Column == nil {\n\t\t\t\tm.Column = &Column{}\n\t\t\t}\n\t\t\tif err := m.Column.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\nfunc (m *Analysis) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: Analysis: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: Analysis: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Columns\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Columns = append(m.Columns, &Column{})\n\t\t\tif err := m.Columns[len(m.Columns)-1].UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tcase 2:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Params\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Params = append(m.Params, &Parameter{})\n\t\t\tif err := m.Params[len(m.Params)-1].UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\n\nfunc skip(dAtA []byte) (n int, err error) {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tdepth := 0\n\tfor iNdEx < l {\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn 0, ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn 0, io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= (uint64(b) & 0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\twireType := int(wire & 0x7)\n\t\tswitch wireType {\n\t\tcase 0:\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn 0, ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn 0, io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tiNdEx++\n\t\t\t\tif dAtA[iNdEx-1] < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 1:\n\t\t\tiNdEx += 8\n\t\tcase 2:\n\t\t\tvar length int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn 0, ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn 0, io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tlength |= (int(b) & 0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif length < 0 {\n\t\t\t\treturn 0, ErrInvalidLength\n\t\t\t}\n\t\t\tiNdEx += length\n\t\tcase 3:\n\t\t\tdepth++\n\t\tcase 4:\n\t\t\tif depth == 0 {\n\t\t\t\treturn 0, ErrUnexpectedEndOfGroup\n\t\t\t}\n\t\t\tdepth--\n\t\tcase 5:\n\t\t\tiNdEx += 4\n\t\tdefault:\n\t\t\treturn 0, fmt.Errorf(\"proto: illegal wireType %d\", wireType)\n\t\t}\n\t\tif iNdEx < 0 {\n\t\t\treturn 0, ErrInvalidLength\n\t\t}\n\t\tif depth == 0 {\n\t\t\treturn iNdEx, nil\n\t\t}\n\t}\n\treturn 0, io.ErrUnexpectedEOF\n}\n\nvar (\n\tErrInvalidLength        = fmt.Errorf(\"proto: negative length found during unmarshaling\")\n\tErrIntOverflow          = fmt.Errorf(\"proto: integer overflow\")\n\tErrUnexpectedEndOfGroup = fmt.Errorf(\"proto: unexpected end of group\")\n)\n"
  },
  {
    "path": "internal/analyzer/analyzer.go",
    "content": "package analyzer\n\nimport (\n\t\"context\"\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"hash/fnv\"\n\t\"log/slog\"\n\t\"os\"\n\t\"path/filepath\"\n\n\t\"google.golang.org/protobuf/proto\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/analysis\"\n\t\"github.com/sqlc-dev/sqlc/internal/cache\"\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/info\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/named\"\n)\n\ntype CachedAnalyzer struct {\n\ta           Analyzer\n\tconfig      config.Config\n\tconfigBytes []byte\n\tdb          config.Database\n}\n\nfunc Cached(a Analyzer, c config.Config, db config.Database) *CachedAnalyzer {\n\treturn &CachedAnalyzer{\n\t\ta:      a,\n\t\tconfig: c,\n\t\tdb:     db,\n\t}\n}\n\n// Create a new error here\n\nfunc (c *CachedAnalyzer) Analyze(ctx context.Context, n ast.Node, q string, schema []string, np *named.ParamSet) (*analysis.Analysis, error) {\n\tresult, rerun, err := c.analyze(ctx, n, q, schema, np)\n\tif rerun {\n\t\tif err != nil {\n\t\t\tslog.Warn(\"first analysis failed with error\", \"err\", err)\n\t\t}\n\t\treturn c.a.Analyze(ctx, n, q, schema, np)\n\t}\n\treturn result, err\n}\n\nfunc (c *CachedAnalyzer) analyze(ctx context.Context, n ast.Node, q string, schema []string, np *named.ParamSet) (*analysis.Analysis, bool, error) {\n\t// Only cache queries for managed databases. We can't be certain the\n\t// database is in an unchanged state otherwise\n\tif !c.db.Managed {\n\t\treturn nil, true, nil\n\t}\n\n\tdir, err := cache.AnalysisDir()\n\tif err != nil {\n\t\treturn nil, true, err\n\t}\n\n\tif c.configBytes == nil {\n\t\tc.configBytes, err = json.Marshal(c.config)\n\t\tif err != nil {\n\t\t\treturn nil, true, err\n\t\t}\n\t}\n\n\t// Calculate cache key\n\th := fnv.New64()\n\th.Write([]byte(info.Version))\n\th.Write(c.configBytes)\n\tfor _, m := range schema {\n\t\th.Write([]byte(m))\n\t}\n\th.Write([]byte(q))\n\n\tkey := fmt.Sprintf(\"%x\", h.Sum(nil))\n\tpath := filepath.Join(dir, key)\n\tif _, err := os.Stat(path); err == nil {\n\t\tcontents, err := os.ReadFile(path)\n\t\tif err != nil {\n\t\t\treturn nil, true, err\n\t\t}\n\t\tvar a analysis.Analysis\n\t\tif err := proto.Unmarshal(contents, &a); err != nil {\n\t\t\treturn nil, true, err\n\t\t}\n\t\treturn &a, false, nil\n\t}\n\n\tresult, err := c.a.Analyze(ctx, n, q, schema, np)\n\n\tif err == nil {\n\t\tcontents, err := proto.Marshal(result)\n\t\tif err != nil {\n\t\t\tslog.Warn(\"unable to marshal analysis\", \"err\", err)\n\t\t\treturn result, false, nil\n\t\t}\n\t\tif err := os.WriteFile(path, contents, 0644); err != nil {\n\t\t\tslog.Warn(\"saving analysis to disk failed\", \"err\", err)\n\t\t\treturn result, false, nil\n\t\t}\n\t}\n\n\treturn result, false, err\n}\n\nfunc (c *CachedAnalyzer) Close(ctx context.Context) error {\n\treturn c.a.Close(ctx)\n}\n\nfunc (c *CachedAnalyzer) EnsureConn(ctx context.Context, migrations []string) error {\n\treturn c.a.EnsureConn(ctx, migrations)\n}\n\nfunc (c *CachedAnalyzer) GetColumnNames(ctx context.Context, query string) ([]string, error) {\n\treturn c.a.GetColumnNames(ctx, query)\n}\n\ntype Analyzer interface {\n\tAnalyze(context.Context, ast.Node, string, []string, *named.ParamSet) (*analysis.Analysis, error)\n\tClose(context.Context) error\n\t// EnsureConn initializes the database connection with the given migrations.\n\t// This is required for database-only mode where we need to connect before analyzing queries.\n\tEnsureConn(ctx context.Context, migrations []string) error\n\t// GetColumnNames returns the column names for a query by preparing it against the database.\n\t// This is used for star expansion in database-only mode.\n\tGetColumnNames(ctx context.Context, query string) ([]string, error)\n}\n"
  },
  {
    "path": "internal/bundler/multipart.go",
    "content": "package bundler\n\nimport (\n\t\"os\"\n\t\"path/filepath\"\n\n\tpb \"github.com/sqlc-dev/sqlc/internal/quickdb/v1\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlpath\"\n)\n\nfunc readFiles(dir string, paths []string) ([]*pb.File, error) {\n\tfiles, err := sqlpath.Glob(paths)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar out []*pb.File\n\tfor _, file := range files {\n\t\tf, err := readFile(dir, file)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tout = append(out, f)\n\t}\n\treturn out, nil\n}\n\nfunc readFile(dir string, path string) (*pb.File, error) {\n\trel, err := filepath.Rel(dir, path)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tblob, err := os.ReadFile(path)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &pb.File{\n\t\tName:     rel,\n\t\tContents: blob,\n\t}, nil\n}\n"
  },
  {
    "path": "internal/bundler/upload.go",
    "content": "package bundler\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"log/slog\"\n\t\"os\"\n\t\"strings\"\n\n\t\"google.golang.org/protobuf/proto\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/info\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n\t\"github.com/sqlc-dev/sqlc/internal/quickdb\"\n\tpb \"github.com/sqlc-dev/sqlc/internal/quickdb/v1\"\n)\n\nvar ErrNoProject = errors.New(`project uploads require a cloud project\n\nIf you don't have a project, you can create one from the sqlc Cloud\ndashboard at https://dashboard.sqlc.dev/. If you have a project, ensure\nyou've set its id as the value of the \"project\" field within the \"cloud\"\nsection of your sqlc configuration. The id will look similar to\n\"01HA8TWGMYPHK0V2GGMB3R2TP9\".`)\nvar ErrNoAuthToken = errors.New(`project uploads require an auth token\n\nIf you don't have an auth token, you can create one from the sqlc Cloud\ndashboard at https://dashboard.sqlc.dev/. If you have an auth token, ensure\nyou've set it as the value of the SQLC_AUTH_TOKEN environment variable.`)\n\ntype Uploader struct {\n\tconfigPath string\n\tconfig     *config.Config\n\tdir        string\n\tclient     pb.QuickClient\n}\n\ntype QuerySetArchive struct {\n\tName    string\n\tQueries []string\n\tSchema  []string\n\tRequest *plugin.GenerateRequest\n}\n\nfunc NewUploader(configPath, dir string, conf *config.Config) *Uploader {\n\treturn &Uploader{\n\t\tconfigPath: configPath,\n\t\tconfig:     conf,\n\t\tdir:        dir,\n\t}\n}\n\nfunc (up *Uploader) Validate() error {\n\tif up.config.Cloud.Project == \"\" {\n\t\treturn ErrNoProject\n\t}\n\tif up.config.Cloud.AuthToken == \"\" {\n\t\treturn ErrNoAuthToken\n\t}\n\tif up.client == nil {\n\t\tclient, err := quickdb.NewClientFromConfig(up.config.Cloud)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"client init failed: %w\", err)\n\t\t}\n\t\tup.client = client\n\t}\n\treturn nil\n}\n\nvar envvars = []string{\n\t\"GITHUB_REPOSITORY\",\n\t\"GITHUB_REF\",\n\t\"GITHUB_REF_NAME\",\n\t\"GITHUB_REF_TYPE\",\n\t\"GITHUB_SHA\",\n}\n\nfunc annotate() map[string]string {\n\tlabels := map[string]string{}\n\tfor _, ev := range envvars {\n\t\tkey := strings.ReplaceAll(strings.ToLower(ev), \"_\", \".\")\n\t\tlabels[key] = os.Getenv(ev)\n\t}\n\treturn labels\n}\n\nfunc BuildRequest(ctx context.Context, dir, configPath string, results []*QuerySetArchive, tags []string) (*pb.UploadArchiveRequest, error) {\n\tconf, err := readFile(dir, configPath)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tres := &pb.UploadArchiveRequest{\n\t\tSqlcVersion: info.Version,\n\t\tConfig:      conf,\n\t\tTags:        tags,\n\t\tAnnotations: annotate(),\n\t}\n\tfor i, result := range results {\n\t\tschema, err := readFiles(dir, result.Schema)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tqueries, err := readFiles(dir, result.Queries)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tname := result.Name\n\t\tif name == \"\" {\n\t\t\tname = fmt.Sprintf(\"queryset_%d\", i)\n\t\t}\n\t\tgenreq, err := proto.Marshal(result.Request)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tres.QuerySets = append(res.QuerySets, &pb.QuerySet{\n\t\t\tName:    name,\n\t\t\tSchema:  schema,\n\t\t\tQueries: queries,\n\t\t\tCodegenRequest: &pb.File{\n\t\t\t\tName:     \"codegen_request.pb\",\n\t\t\t\tContents: genreq,\n\t\t\t},\n\t\t})\n\t}\n\treturn res, nil\n}\n\nfunc (up *Uploader) buildRequest(ctx context.Context, results []*QuerySetArchive, tags []string) (*pb.UploadArchiveRequest, error) {\n\treturn BuildRequest(ctx, up.dir, up.configPath, results, tags)\n}\n\nfunc (up *Uploader) DumpRequestOut(ctx context.Context, result []*QuerySetArchive) error {\n\treq, err := up.buildRequest(ctx, result, []string{})\n\tif err != nil {\n\t\treturn err\n\t}\n\tslog.Info(\"config\", \"file\", req.Config.Name, \"bytes\", len(req.Config.Contents))\n\tfor _, qs := range req.QuerySets {\n\t\tslog.Info(\"codegen_request\", \"queryset\", qs.Name, \"file\", \"codegen_request.pb\")\n\t\tfor _, file := range qs.Schema {\n\t\t\tslog.Info(\"schema\", \"queryset\", qs.Name, \"file\", file.Name, \"bytes\", len(file.Contents))\n\t\t}\n\t\tfor _, file := range qs.Queries {\n\t\t\tslog.Info(\"query\", \"queryset\", qs.Name, \"file\", file.Name, \"bytes\", len(file.Contents))\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (up *Uploader) Upload(ctx context.Context, result []*QuerySetArchive, tags []string) error {\n\tif err := up.Validate(); err != nil {\n\t\treturn err\n\t}\n\treq, err := up.buildRequest(ctx, result, tags)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif _, err := up.client.UploadArchive(ctx, req); err != nil {\n\t\treturn fmt.Errorf(\"upload error: %w\", err)\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "internal/cache/cache.go",
    "content": "package cache\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n)\n\n// The cache directory defaults to os.UserCacheDir(). This location can be\n// overridden by the SQLCCACHE environment variable.\n//\n// Currently the cache stores two types of data: plugins and query analysis\nfunc Dir() (string, error) {\n\tcache := os.Getenv(\"SQLCCACHE\")\n\tif cache != \"\" {\n\t\treturn cache, nil\n\t}\n\tcacheHome, err := os.UserCacheDir()\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\treturn filepath.Join(cacheHome, \"sqlc\"), nil\n}\n\nfunc PluginsDir() (string, error) {\n\tcacheRoot, err := Dir()\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tdir := filepath.Join(cacheRoot, \"plugins\")\n\tif err := os.MkdirAll(dir, 0755); err != nil && !os.IsExist(err) {\n\t\treturn \"\", fmt.Errorf(\"failed to create %s directory: %w\", dir, err)\n\t}\n\treturn dir, nil\n}\n\nfunc AnalysisDir() (string, error) {\n\tcacheRoot, err := Dir()\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tdir := filepath.Join(cacheRoot, \"query_analysis\")\n\tif err := os.MkdirAll(dir, 0755); err != nil && !os.IsExist(err) {\n\t\treturn \"\", fmt.Errorf(\"failed to create %s directory: %w\", dir, err)\n\t}\n\treturn dir, nil\n}\n"
  },
  {
    "path": "internal/cmd/cmd.go",
    "content": "package cmd\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"os/exec\"\n\t\"path/filepath\"\n\t\"runtime/trace\"\n\n\t\"github.com/cubicdaiya/gonp\"\n\t\"github.com/spf13/cobra\"\n\t\"github.com/spf13/pflag\"\n\t\"gopkg.in/yaml.v3\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/debug\"\n\t\"github.com/sqlc-dev/sqlc/internal/info\"\n\t\"github.com/sqlc-dev/sqlc/internal/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/tracer\"\n)\n\nfunc init() {\n\tcreateDBCmd.Flags().StringP(\"queryset\", \"\", \"\", \"name of the queryset to use\")\n\tpushCmd.Flags().BoolP(\"dry-run\", \"\", false, \"dump push request (default: false)\")\n\tinitCmd.Flags().BoolP(\"v1\", \"\", false, \"generate v1 config yaml file\")\n\tinitCmd.Flags().BoolP(\"v2\", \"\", true, \"generate v2 config yaml file\")\n\tinitCmd.MarkFlagsMutuallyExclusive(\"v1\", \"v2\")\n\tparseCmd.Flags().StringP(\"dialect\", \"d\", \"\", \"SQL dialect to use (postgresql, mysql, or sqlite)\")\n}\n\n// Do runs the command logic.\nfunc Do(args []string, stdin io.Reader, stdout io.Writer, stderr io.Writer) int {\n\trootCmd := &cobra.Command{Use: \"sqlc\", SilenceUsage: true}\n\trootCmd.PersistentFlags().StringP(\"file\", \"f\", \"\", \"specify an alternate config file (default: sqlc.yaml)\")\n\trootCmd.PersistentFlags().Bool(\"no-remote\", false, \"disable remote execution (default: false)\")\n\trootCmd.PersistentFlags().Bool(\"remote\", false, \"enable remote execution (default: false)\")\n\n\trootCmd.AddCommand(checkCmd)\n\trootCmd.AddCommand(createDBCmd)\n\trootCmd.AddCommand(diffCmd)\n\trootCmd.AddCommand(genCmd)\n\trootCmd.AddCommand(initCmd)\n\trootCmd.AddCommand(parseCmd)\n\trootCmd.AddCommand(versionCmd)\n\trootCmd.AddCommand(verifyCmd)\n\trootCmd.AddCommand(pushCmd)\n\trootCmd.AddCommand(NewCmdVet())\n\n\trootCmd.SetArgs(args)\n\trootCmd.SetIn(stdin)\n\trootCmd.SetOut(stdout)\n\trootCmd.SetErr(stderr)\n\n\tctx := context.Background()\n\tif debug.Debug.Trace != \"\" {\n\t\ttracectx, cleanup, err := tracer.Start(ctx)\n\t\tif err != nil {\n\t\t\tfmt.Printf(\"failed to start trace: %v\\n\", err)\n\t\t\treturn 1\n\t\t}\n\t\tctx = tracectx\n\t\tdefer cleanup()\n\t}\n\tif err := rootCmd.ExecuteContext(ctx); err != nil {\n\t\tif exitError, ok := err.(*exec.ExitError); ok {\n\t\t\treturn exitError.ExitCode()\n\t\t} else {\n\t\t\treturn 1\n\t\t}\n\t}\n\treturn 0\n}\n\nvar version string\n\nvar versionCmd = &cobra.Command{\n\tUse:   \"version\",\n\tShort: \"Print the sqlc version number\",\n\tRunE: func(cmd *cobra.Command, args []string) error {\n\t\tdefer trace.StartRegion(cmd.Context(), \"version\").End()\n\t\tif version == \"\" {\n\t\t\tfmt.Fprintf(cmd.OutOrStdout(), \"%s\\n\", info.Version)\n\t\t} else {\n\t\t\tfmt.Fprintf(cmd.OutOrStdout(), \"%s\\n\", version)\n\t\t}\n\t\treturn nil\n\t},\n}\n\nvar initCmd = &cobra.Command{\n\tUse:   \"init\",\n\tShort: \"Create an empty sqlc.yaml settings file\",\n\tRunE: func(cmd *cobra.Command, args []string) error {\n\t\tuseV1, err := cmd.Flags().GetBool(\"v1\")\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tvar yamlConfig interface{}\n\t\tif useV1 {\n\t\t\tyamlConfig = config.V1GenerateSettings{Version: \"1\"}\n\t\t} else {\n\t\t\tyamlConfig = config.Config{Version: \"2\"}\n\t\t}\n\n\t\tdefer trace.StartRegion(cmd.Context(), \"init\").End()\n\t\tfile := \"sqlc.yaml\"\n\t\tif f := cmd.Flag(\"file\"); f != nil && f.Changed {\n\t\t\tfile = f.Value.String()\n\t\t\tif file == \"\" {\n\t\t\t\treturn fmt.Errorf(\"file argument is empty\")\n\t\t\t}\n\t\t}\n\t\tif _, err := os.Stat(file); !os.IsNotExist(err) {\n\t\t\tfmt.Printf(\"%s is already created\\n\", file)\n\t\t\treturn nil\n\t\t}\n\t\tblob, err := yaml.Marshal(yamlConfig)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\terr = os.WriteFile(file, blob, 0644)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tconfigDoc := \"https://docs.sqlc.dev/en/stable/reference/config.html\"\n\t\tfmt.Printf(\n\t\t\t\"%s is added. Please visit %s to learn more about configuration\\n\",\n\t\t\tfile,\n\t\t\tconfigDoc,\n\t\t)\n\t\treturn nil\n\t},\n}\n\ntype Env struct {\n\tDryRun     bool\n\tDebug      opts.Debug\n\tExperiment opts.Experiment\n\tRemote     bool\n\tNoRemote   bool\n}\n\nfunc ParseEnv(c *cobra.Command) Env {\n\tdr := c.Flag(\"dry-run\")\n\tr := c.Flag(\"remote\")\n\tnr := c.Flag(\"no-remote\")\n\treturn Env{\n\t\tDryRun:     dr != nil && dr.Changed,\n\t\tDebug:      opts.DebugFromEnv(),\n\t\tExperiment: opts.ExperimentFromEnv(),\n\t\tRemote:     r != nil && r.Value.String() == \"true\",\n\t\tNoRemote:   nr != nil && nr.Value.String() == \"true\",\n\t}\n}\n\nvar ErrPluginProcessDisabled = errors.New(\"plugin: process-based plugins disabled via SQLCDEBUG=processplugins=0\")\n\nfunc (e *Env) Validate(cfg *config.Config) error {\n\tfor _, plugin := range cfg.Plugins {\n\t\tif plugin.Process != nil && !e.Debug.ProcessPlugins {\n\t\t\treturn ErrPluginProcessDisabled\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc getConfigPath(stderr io.Writer, f *pflag.Flag) (string, string) {\n\tif f != nil && f.Changed {\n\t\tfile := f.Value.String()\n\t\tif file == \"\" {\n\t\t\tfmt.Fprintln(stderr, \"error parsing config: file argument is empty\")\n\t\t\tos.Exit(1)\n\t\t}\n\t\tabspath, err := filepath.Abs(file)\n\t\tif err != nil {\n\t\t\tfmt.Fprintf(stderr, \"error parsing config: absolute file path lookup failed: %s\\n\", err)\n\t\t\tos.Exit(1)\n\t\t}\n\t\treturn filepath.Dir(abspath), filepath.Base(abspath)\n\t} else {\n\t\twd, err := os.Getwd()\n\t\tif err != nil {\n\t\t\tfmt.Fprintln(stderr, \"error parsing sqlc.json: file does not exist\")\n\t\t\tos.Exit(1)\n\t\t}\n\t\treturn wd, \"\"\n\t}\n}\n\nvar genCmd = &cobra.Command{\n\tUse:   \"generate\",\n\tShort: \"Generate source code from SQL\",\n\tRunE: func(cmd *cobra.Command, args []string) error {\n\t\tdefer trace.StartRegion(cmd.Context(), \"generate\").End()\n\t\tstderr := cmd.ErrOrStderr()\n\t\tdir, name := getConfigPath(stderr, cmd.Flag(\"file\"))\n\t\toutput, err := Generate(cmd.Context(), dir, name, &Options{\n\t\t\tEnv:    ParseEnv(cmd),\n\t\t\tStderr: stderr,\n\t\t})\n\t\tif err != nil {\n\t\t\tos.Exit(1)\n\t\t}\n\t\tdefer trace.StartRegion(cmd.Context(), \"writefiles\").End()\n\t\tfor filename, source := range output {\n\t\t\tos.MkdirAll(filepath.Dir(filename), 0755)\n\t\t\tif err := os.WriteFile(filename, []byte(source), 0644); err != nil {\n\t\t\t\tfmt.Fprintf(stderr, \"%s: %s\\n\", filename, err)\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\treturn nil\n\t},\n}\n\nvar checkCmd = &cobra.Command{\n\tUse:   \"compile\",\n\tShort: \"Statically check SQL for syntax and type errors\",\n\tRunE: func(cmd *cobra.Command, args []string) error {\n\t\tdefer trace.StartRegion(cmd.Context(), \"compile\").End()\n\t\tstderr := cmd.ErrOrStderr()\n\t\tdir, name := getConfigPath(stderr, cmd.Flag(\"file\"))\n\t\t_, err := Generate(cmd.Context(), dir, name, &Options{\n\t\t\tEnv:    ParseEnv(cmd),\n\t\t\tStderr: stderr,\n\t\t})\n\t\tif err != nil {\n\t\t\tos.Exit(1)\n\t\t}\n\t\treturn nil\n\t},\n}\n\nfunc getLines(f []byte) []string {\n\tfp := bytes.NewReader(f)\n\tscanner := bufio.NewScanner(fp)\n\tlines := make([]string, 0)\n\tfor scanner.Scan() {\n\t\tlines = append(lines, scanner.Text())\n\t}\n\treturn lines\n}\n\nfunc filterHunks[T gonp.Elem](uniHunks []gonp.UniHunk[T]) []gonp.UniHunk[T] {\n\tvar out []gonp.UniHunk[T]\n\tfor i, uniHunk := range uniHunks {\n\t\tvar changed bool\n\t\tfor _, e := range uniHunk.GetChanges() {\n\t\t\tswitch e.GetType() {\n\t\t\tcase gonp.SesDelete:\n\t\t\t\tchanged = true\n\t\t\tcase gonp.SesAdd:\n\t\t\t\tchanged = true\n\t\t\t}\n\t\t}\n\t\tif changed {\n\t\t\tout = append(out, uniHunks[i])\n\t\t}\n\t}\n\treturn out\n}\n\nvar diffCmd = &cobra.Command{\n\tUse:   \"diff\",\n\tShort: \"Compare the generated files to the existing files\",\n\tRunE: func(cmd *cobra.Command, args []string) error {\n\t\tdefer trace.StartRegion(cmd.Context(), \"diff\").End()\n\t\tstderr := cmd.ErrOrStderr()\n\t\tdir, name := getConfigPath(stderr, cmd.Flag(\"file\"))\n\t\topts := &Options{\n\t\t\tEnv:    ParseEnv(cmd),\n\t\t\tStderr: stderr,\n\t\t}\n\t\tif err := Diff(cmd.Context(), dir, name, opts); err != nil {\n\t\t\tos.Exit(1)\n\t\t}\n\t\treturn nil\n\t},\n}\n"
  },
  {
    "path": "internal/cmd/createdb.go",
    "content": "package cmd\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"os\"\n\t\"runtime/trace\"\n\t\"time\"\n\n\t\"github.com/spf13/cobra\"\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/dbmanager\"\n\t\"github.com/sqlc-dev/sqlc/internal/migrations\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlpath\"\n)\n\nvar createDBCmd = &cobra.Command{\n\tUse:   \"createdb\",\n\tShort: \"Create an ephemeral database\",\n\tArgs:  cobra.NoArgs,\n\tRunE: func(cmd *cobra.Command, args []string) error {\n\t\tdefer trace.StartRegion(cmd.Context(), \"createdb\").End()\n\t\tstderr := cmd.ErrOrStderr()\n\t\tdir, filename := getConfigPath(stderr, cmd.Flag(\"file\"))\n\t\tquerySetName, err := cmd.Flags().GetString(\"queryset\")\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\terr = CreateDB(cmd.Context(), dir, filename, querySetName, &Options{\n\t\t\tEnv:    ParseEnv(cmd),\n\t\t\tStderr: stderr,\n\t\t})\n\t\tif err != nil {\n\t\t\tfmt.Fprintln(stderr, err.Error())\n\t\t\tos.Exit(1)\n\t\t}\n\t\treturn nil\n\t},\n}\n\nfunc CreateDB(ctx context.Context, dir, filename, querySetName string, o *Options) error {\n\t_, conf, err := o.ReadConfig(dir, filename)\n\tif err != nil {\n\t\treturn err\n\t}\n\t// Find the first queryset with a managed database\n\tvar queryset *config.SQL\n\tvar count int\n\tfor _, sql := range conf.SQL {\n\t\tsql := sql\n\t\tif querySetName != \"\" && sql.Name != querySetName {\n\t\t\tcontinue\n\t\t}\n\t\tif sql.Database != nil && sql.Database.Managed {\n\t\t\tqueryset = &sql\n\t\t\tcount += 1\n\t\t}\n\t}\n\tif queryset == nil && querySetName != \"\" {\n\t\treturn fmt.Errorf(\"no queryset found with name %q\", querySetName)\n\t}\n\tif queryset == nil {\n\t\treturn fmt.Errorf(\"no querysets configured to use a managed database\")\n\t}\n\tif count > 1 {\n\t\treturn fmt.Errorf(\"multiple querysets configured to use managed databases\")\n\t}\n\n\tswitch queryset.Engine {\n\tcase config.EngineMySQL:\n\t\t// pass\n\tcase config.EnginePostgreSQL:\n\t\t// pass\n\tdefault:\n\t\treturn fmt.Errorf(\"createdb does not support the %s engine\", queryset.Engine)\n\t}\n\n\tvar ddl []string\n\tfiles, err := sqlpath.Glob(queryset.Schema)\n\tif err != nil {\n\t\treturn err\n\t}\n\tfor _, schema := range files {\n\t\tcontents, err := os.ReadFile(schema)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"read file: %w\", err)\n\t\t}\n\t\tddl = append(ddl, migrations.RemoveRollbackStatements(string(contents)))\n\t}\n\n\tnow := time.Now().UTC().UnixNano()\n\tclient := dbmanager.NewClient(conf.Servers)\n\tresp, err := client.CreateDatabase(ctx, &dbmanager.CreateDatabaseRequest{\n\t\tEngine:     string(queryset.Engine),\n\t\tMigrations: ddl,\n\t\tPrefix:     fmt.Sprintf(\"sqlc_createdb_%d\", now),\n\t})\n\tif err != nil {\n\t\treturn fmt.Errorf(\"managed: create database: %w\", err)\n\t}\n\tfmt.Println(resp.Uri)\n\treturn nil\n}\n"
  },
  {
    "path": "internal/cmd/diff.go",
    "content": "package cmd\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"os\"\n\t\"runtime/trace\"\n\t\"sort\"\n\t\"strings\"\n\n\t\"github.com/cubicdaiya/gonp\"\n)\n\nfunc Diff(ctx context.Context, dir, name string, opts *Options) error {\n\tstderr := opts.Stderr\n\toutput, err := Generate(ctx, dir, name, opts)\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer trace.StartRegion(ctx, \"checkfiles\").End()\n\tvar errored bool\n\n\tkeys := make([]string, 0, len(output))\n\tfor k, _ := range output {\n\t\tkk := k\n\t\tkeys = append(keys, kk)\n\t}\n\tsort.Strings(keys)\n\n\tfor _, filename := range keys {\n\t\tsource := output[filename]\n\t\tif _, err := os.Stat(filename); errors.Is(err, os.ErrNotExist) {\n\t\t\terrored = true\n\t\t\t// stdout message\n\t\t\tcontinue\n\t\t}\n\t\texisting, err := os.ReadFile(filename)\n\t\tif err != nil {\n\t\t\terrored = true\n\t\t\tfmt.Fprintf(stderr, \"%s: %s\\n\", filename, err)\n\t\t\tcontinue\n\t\t}\n\t\tdiff := gonp.New(getLines(existing), getLines([]byte(source)))\n\t\tdiff.Compose()\n\t\tuniHunks := filterHunks(diff.UnifiedHunks())\n\n\t\tif len(uniHunks) > 0 {\n\t\t\terrored = true\n\t\t\tfmt.Fprintf(stderr, \"--- a%s\\n\", strings.TrimPrefix(filename, dir))\n\t\t\tfmt.Fprintf(stderr, \"+++ b%s\\n\", strings.TrimPrefix(filename, dir))\n\t\t\tdiff.FprintUniHunks(stderr, uniHunks)\n\t\t}\n\t}\n\tif errored {\n\t\treturn errors.New(\"diff found\")\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "internal/cmd/generate.go",
    "content": "package cmd\n\nimport (\n\t\"context\"\n\t\"encoding/json\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"runtime/trace\"\n\t\"strings\"\n\t\"sync\"\n\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/status\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/golang\"\n\tgenjson \"github.com/sqlc-dev/sqlc/internal/codegen/json\"\n\t\"github.com/sqlc-dev/sqlc/internal/compiler\"\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/config/convert\"\n\t\"github.com/sqlc-dev/sqlc/internal/debug\"\n\t\"github.com/sqlc-dev/sqlc/internal/ext\"\n\t\"github.com/sqlc-dev/sqlc/internal/ext/process\"\n\t\"github.com/sqlc-dev/sqlc/internal/ext/wasm\"\n\t\"github.com/sqlc-dev/sqlc/internal/info\"\n\t\"github.com/sqlc-dev/sqlc/internal/multierr\"\n\t\"github.com/sqlc-dev/sqlc/internal/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n\t\"github.com/sqlc-dev/sqlc/internal/remote\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlpath\"\n)\n\nconst errMessageNoVersion = `The configuration file must have a version number.\nSet the version to 1 or 2 at the top of sqlc.json:\n\n{\n  \"version\": \"1\"\n  ...\n}\n`\n\nconst errMessageUnknownVersion = `The configuration file has an invalid version number.\nThe supported version can only be \"1\" or \"2\".\n`\n\nconst errMessageNoPackages = `No packages are configured`\n\nfunc printFileErr(stderr io.Writer, dir string, fileErr *multierr.FileError) {\n\tfilename, err := filepath.Rel(dir, fileErr.Filename)\n\tif err != nil {\n\t\tfilename = fileErr.Filename\n\t}\n\tfmt.Fprintf(stderr, \"%s:%d:%d: %s\\n\", filename, fileErr.Line, fileErr.Column, fileErr.Err)\n}\n\nfunc findPlugin(conf config.Config, name string) (*config.Plugin, error) {\n\tfor _, plug := range conf.Plugins {\n\t\tif plug.Name == name {\n\t\t\treturn &plug, nil\n\t\t}\n\t}\n\treturn nil, fmt.Errorf(\"plugin not found\")\n}\n\nfunc readConfig(stderr io.Writer, dir, filename string) (string, *config.Config, error) {\n\tconfigPath := \"\"\n\tif filename != \"\" {\n\t\tconfigPath = filepath.Join(dir, filename)\n\t} else {\n\t\tvar yamlMissing, jsonMissing, ymlMissing bool\n\t\tyamlPath := filepath.Join(dir, \"sqlc.yaml\")\n\t\tymlPath := filepath.Join(dir, \"sqlc.yml\")\n\t\tjsonPath := filepath.Join(dir, \"sqlc.json\")\n\n\t\tif _, err := os.Stat(yamlPath); os.IsNotExist(err) {\n\t\t\tyamlMissing = true\n\t\t}\n\t\tif _, err := os.Stat(jsonPath); os.IsNotExist(err) {\n\t\t\tjsonMissing = true\n\t\t}\n\n\t\tif _, err := os.Stat(ymlPath); os.IsNotExist(err) {\n\t\t\tymlMissing = true\n\t\t}\n\n\t\tif yamlMissing && ymlMissing && jsonMissing {\n\t\t\tfmt.Fprintln(stderr, \"error parsing configuration files. sqlc.(yaml|yml) or sqlc.json: file does not exist\")\n\t\t\treturn \"\", nil, errors.New(\"config file missing\")\n\t\t}\n\n\t\tif (!yamlMissing || !ymlMissing) && !jsonMissing {\n\t\t\tfmt.Fprintln(stderr, \"error: both sqlc.json and sqlc.(yaml|yml) files present\")\n\t\t\treturn \"\", nil, errors.New(\"sqlc.json and sqlc.(yaml|yml) present\")\n\t\t}\n\n\t\tif jsonMissing {\n\t\t\tif yamlMissing {\n\t\t\t\tconfigPath = ymlPath\n\t\t\t} else {\n\t\t\t\tconfigPath = yamlPath\n\t\t\t}\n\t\t} else {\n\t\t\tconfigPath = jsonPath\n\t\t}\n\t}\n\n\tbase := filepath.Base(configPath)\n\tfile, err := os.Open(configPath)\n\tif err != nil {\n\t\tfmt.Fprintf(stderr, \"error parsing %s: file does not exist\\n\", base)\n\t\treturn \"\", nil, err\n\t}\n\tdefer file.Close()\n\n\tconf, err := config.ParseConfig(file)\n\tif err != nil {\n\t\tswitch err {\n\t\tcase config.ErrMissingVersion:\n\t\t\tfmt.Fprint(stderr, errMessageNoVersion)\n\t\tcase config.ErrUnknownVersion:\n\t\t\tfmt.Fprint(stderr, errMessageUnknownVersion)\n\t\tcase config.ErrNoPackages:\n\t\t\tfmt.Fprint(stderr, errMessageNoPackages)\n\t\t}\n\t\tfmt.Fprintf(stderr, \"error parsing %s: %s\\n\", base, err)\n\t\treturn \"\", nil, err\n\t}\n\n\treturn configPath, &conf, nil\n}\n\nfunc Generate(ctx context.Context, dir, filename string, o *Options) (map[string]string, error) {\n\te := o.Env\n\tstderr := o.Stderr\n\n\tconfigPath, conf, err := o.ReadConfig(dir, filename)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tbase := filepath.Base(configPath)\n\tif err := config.Validate(conf); err != nil {\n\t\tfmt.Fprintf(stderr, \"error validating %s: %s\\n\", base, err)\n\t\treturn nil, err\n\t}\n\n\tif err := e.Validate(conf); err != nil {\n\t\tfmt.Fprintf(stderr, \"error validating %s: %s\\n\", base, err)\n\t\treturn nil, err\n\t}\n\n\t// Comment on why these two methods exist\n\tif conf.Cloud.Project != \"\" && e.Remote && !e.NoRemote {\n\t\treturn remoteGenerate(ctx, configPath, conf, dir, stderr)\n\t}\n\n\tg := &generator{\n\t\tdir:    dir,\n\t\toutput: map[string]string{},\n\t}\n\n\tif err := processQuerySets(ctx, g, conf, dir, o); err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn g.output, nil\n}\n\ntype generator struct {\n\tm      sync.Mutex\n\tdir    string\n\toutput map[string]string\n}\n\nfunc (g *generator) Pairs(ctx context.Context, conf *config.Config) []OutputPair {\n\tvar pairs []OutputPair\n\tfor _, sql := range conf.SQL {\n\t\tif sql.Gen.Go != nil {\n\t\t\tpairs = append(pairs, OutputPair{\n\t\t\t\tSQL: sql,\n\t\t\t\tGen: config.SQLGen{Go: sql.Gen.Go},\n\t\t\t})\n\t\t}\n\t\tif sql.Gen.JSON != nil {\n\t\t\tpairs = append(pairs, OutputPair{\n\t\t\t\tSQL: sql,\n\t\t\t\tGen: config.SQLGen{JSON: sql.Gen.JSON},\n\t\t\t})\n\t\t}\n\t\tfor i := range sql.Codegen {\n\t\t\tpairs = append(pairs, OutputPair{\n\t\t\t\tSQL:    sql,\n\t\t\t\tPlugin: &sql.Codegen[i],\n\t\t\t})\n\t\t}\n\t}\n\treturn pairs\n}\n\nfunc (g *generator) ProcessResult(ctx context.Context, combo config.CombinedSettings, sql OutputPair, result *compiler.Result) error {\n\tout, resp, err := codegen(ctx, combo, sql, result)\n\tif err != nil {\n\t\treturn err\n\t}\n\tfiles := map[string]string{}\n\tfor _, file := range resp.Files {\n\t\tfiles[file.Name] = string(file.Contents)\n\t}\n\tg.m.Lock()\n\n\t// out is specified by the user, not a plugin\n\tabsout := filepath.Join(g.dir, out)\n\n\tfor n, source := range files {\n\t\tfilename := filepath.Join(g.dir, out, n)\n\t\t// filepath.Join calls filepath.Clean which should remove all \"..\", but\n\t\t// double check to make sure\n\t\tif strings.Contains(filename, \"..\") {\n\t\t\treturn fmt.Errorf(\"invalid file output path: %s\", filename)\n\t\t}\n\t\t// The output file must be contained inside the output directory\n\t\tif !strings.HasPrefix(filename, absout) {\n\t\t\treturn fmt.Errorf(\"invalid file output path: %s\", filename)\n\t\t}\n\t\tg.output[filename] = source\n\t}\n\tg.m.Unlock()\n\treturn nil\n}\n\nfunc remoteGenerate(ctx context.Context, configPath string, conf *config.Config, dir string, stderr io.Writer) (map[string]string, error) {\n\trpcClient, err := remote.NewClient(conf.Cloud)\n\tif err != nil {\n\t\tfmt.Fprintf(stderr, \"error creating rpc client: %s\\n\", err)\n\t\treturn nil, err\n\t}\n\n\tconfigBytes, err := os.ReadFile(configPath)\n\tif err != nil {\n\t\tfmt.Fprintf(stderr, \"error reading config file %s: %s\\n\", configPath, err)\n\t\treturn nil, err\n\t}\n\n\trpcReq := remote.GenerateRequest{\n\t\tVersion: info.Version,\n\t\tInputs:  []*remote.File{{Path: filepath.Base(configPath), Bytes: configBytes}},\n\t}\n\n\tfor _, pkg := range conf.SQL {\n\t\tfor _, paths := range []config.Paths{pkg.Schema, pkg.Queries} {\n\t\t\tfor i, relFilePath := range paths {\n\t\t\t\tpaths[i] = filepath.Join(dir, relFilePath)\n\t\t\t}\n\t\t\tfiles, err := sqlpath.Glob(paths)\n\t\t\tif err != nil {\n\t\t\t\tfmt.Fprintf(stderr, \"error globbing paths: %s\\n\", err)\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tfor _, filePath := range files {\n\t\t\t\tfileBytes, err := os.ReadFile(filePath)\n\t\t\t\tif err != nil {\n\t\t\t\t\tfmt.Fprintf(stderr, \"error reading file %s: %s\\n\", filePath, err)\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tfileRelPath, _ := filepath.Rel(dir, filePath)\n\t\t\t\trpcReq.Inputs = append(rpcReq.Inputs, &remote.File{Path: fileRelPath, Bytes: fileBytes})\n\t\t\t}\n\t\t}\n\t}\n\n\trpcResp, err := rpcClient.Generate(ctx, &rpcReq)\n\tif err != nil {\n\t\trpcStatus, ok := status.FromError(err)\n\t\tif !ok {\n\t\t\treturn nil, err\n\t\t}\n\t\tfmt.Fprintf(stderr, \"rpc error: %s\", rpcStatus.Message())\n\t\treturn nil, rpcStatus.Err()\n\t}\n\n\tif rpcResp.ExitCode != 0 {\n\t\tfmt.Fprintf(stderr, \"%s\", rpcResp.Stderr)\n\t\treturn nil, errors.New(\"remote execution returned with non-zero exit code\")\n\t}\n\n\toutput := map[string]string{}\n\tfor _, file := range rpcResp.Outputs {\n\t\toutput[filepath.Join(dir, file.Path)] = string(file.Bytes)\n\t}\n\n\treturn output, nil\n}\n\nfunc parse(ctx context.Context, name, dir string, sql config.SQL, combo config.CombinedSettings, parserOpts opts.Parser, stderr io.Writer) (*compiler.Result, bool) {\n\tdefer trace.StartRegion(ctx, \"parse\").End()\n\tc, err := compiler.NewCompiler(sql, combo, parserOpts)\n\tdefer func() {\n\t\tif c != nil {\n\t\t\tc.Close(ctx)\n\t\t}\n\t}()\n\tif err != nil {\n\t\tfmt.Fprintf(stderr, \"error creating compiler: %s\\n\", err)\n\t\treturn nil, true\n\t}\n\tif err := c.ParseCatalog(sql.Schema); err != nil {\n\t\tfmt.Fprintf(stderr, \"# package %s\\n\", name)\n\t\tif parserErr, ok := err.(*multierr.Error); ok {\n\t\t\tfor _, fileErr := range parserErr.Errs() {\n\t\t\t\tprintFileErr(stderr, dir, fileErr)\n\t\t\t}\n\t\t} else {\n\t\t\tfmt.Fprintf(stderr, \"error parsing schema: %s\\n\", err)\n\t\t}\n\t\treturn nil, true\n\t}\n\tif parserOpts.Debug.DumpCatalog {\n\t\tdebug.Dump(c.Catalog())\n\t}\n\tif err := c.ParseQueries(sql.Queries, parserOpts); err != nil {\n\t\tfmt.Fprintf(stderr, \"# package %s\\n\", name)\n\t\tif parserErr, ok := err.(*multierr.Error); ok {\n\t\t\tfor _, fileErr := range parserErr.Errs() {\n\t\t\t\tprintFileErr(stderr, dir, fileErr)\n\t\t\t}\n\t\t} else {\n\t\t\tfmt.Fprintf(stderr, \"error parsing queries: %s\\n\", err)\n\t\t}\n\t\treturn nil, true\n\t}\n\treturn c.Result(), false\n}\n\nfunc codegen(ctx context.Context, combo config.CombinedSettings, sql OutputPair, result *compiler.Result) (string, *plugin.GenerateResponse, error) {\n\tdefer trace.StartRegion(ctx, \"codegen\").End()\n\treq := codeGenRequest(result, combo)\n\tvar handler grpc.ClientConnInterface\n\tvar out string\n\tswitch {\n\tcase sql.Plugin != nil:\n\t\tout = sql.Plugin.Out\n\t\tplug, err := findPlugin(combo.Global, sql.Plugin.Plugin)\n\t\tif err != nil {\n\t\t\treturn \"\", nil, fmt.Errorf(\"plugin not found: %s\", err)\n\t\t}\n\n\t\tswitch {\n\t\tcase plug.Process != nil:\n\t\t\thandler = &process.Runner{\n\t\t\t\tCmd:    plug.Process.Cmd,\n\t\t\t\tEnv:    plug.Env,\n\t\t\t\tFormat: plug.Process.Format,\n\t\t\t}\n\t\tcase plug.WASM != nil:\n\t\t\thandler = &wasm.Runner{\n\t\t\t\tURL:    plug.WASM.URL,\n\t\t\t\tSHA256: plug.WASM.SHA256,\n\t\t\t\tEnv:    plug.Env,\n\t\t\t}\n\t\tdefault:\n\t\t\treturn \"\", nil, fmt.Errorf(\"unsupported plugin type\")\n\t\t}\n\n\t\topts, err := convert.YAMLtoJSON(sql.Plugin.Options)\n\t\tif err != nil {\n\t\t\treturn \"\", nil, fmt.Errorf(\"invalid plugin options: %w\", err)\n\t\t}\n\t\treq.PluginOptions = opts\n\n\t\tglobal, found := combo.Global.Options[plug.Name]\n\t\tif found {\n\t\t\topts, err := convert.YAMLtoJSON(global)\n\t\t\tif err != nil {\n\t\t\t\treturn \"\", nil, fmt.Errorf(\"invalid global options: %w\", err)\n\t\t\t}\n\t\t\treq.GlobalOptions = opts\n\t\t}\n\n\tcase sql.Gen.Go != nil:\n\t\tout = combo.Go.Out\n\t\thandler = ext.HandleFunc(golang.Generate)\n\t\topts, err := json.Marshal(sql.Gen.Go)\n\t\tif err != nil {\n\t\t\treturn \"\", nil, fmt.Errorf(\"opts marshal failed: %w\", err)\n\t\t}\n\t\treq.PluginOptions = opts\n\n\t\tif combo.Global.Overrides.Go != nil {\n\t\t\topts, err := json.Marshal(combo.Global.Overrides.Go)\n\t\t\tif err != nil {\n\t\t\t\treturn \"\", nil, fmt.Errorf(\"opts marshal failed: %w\", err)\n\t\t\t}\n\t\t\treq.GlobalOptions = opts\n\t\t}\n\n\tcase sql.Gen.JSON != nil:\n\t\tout = combo.JSON.Out\n\t\thandler = ext.HandleFunc(genjson.Generate)\n\t\topts, err := json.Marshal(sql.Gen.JSON)\n\t\tif err != nil {\n\t\t\treturn \"\", nil, fmt.Errorf(\"opts marshal failed: %w\", err)\n\t\t}\n\t\treq.PluginOptions = opts\n\n\tdefault:\n\t\treturn \"\", nil, fmt.Errorf(\"missing language backend\")\n\t}\n\tclient := plugin.NewCodegenServiceClient(handler)\n\tresp, err := client.Generate(ctx, req)\n\treturn out, resp, err\n}\n"
  },
  {
    "path": "internal/cmd/options.go",
    "content": "package cmd\n\nimport (\n\t\"io\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n)\n\ntype Options struct {\n\tEnv    Env\n\tStderr io.Writer\n\t// TODO: Move these to a command-specific struct\n\tTags    []string\n\tAgainst string\n\n\t// Testing only\n\tMutateConfig func(*config.Config)\n}\n\nfunc (o *Options) ReadConfig(dir, filename string) (string, *config.Config, error) {\n\tpath, conf, err := readConfig(o.Stderr, dir, filename)\n\tif err != nil {\n\t\treturn path, conf, err\n\t}\n\tif o.MutateConfig != nil {\n\t\to.MutateConfig(conf)\n\t}\n\treturn path, conf, nil\n}\n"
  },
  {
    "path": "internal/cmd/parse.go",
    "content": "package cmd\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\n\t\"github.com/spf13/cobra\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/engine/clickhouse\"\n\t\"github.com/sqlc-dev/sqlc/internal/engine/dolphin\"\n\t\"github.com/sqlc-dev/sqlc/internal/engine/postgresql\"\n\t\"github.com/sqlc-dev/sqlc/internal/engine/sqlite\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\nvar parseCmd = &cobra.Command{\n\tUse:   \"parse [file]\",\n\tShort: \"Parse SQL and output the AST as JSON\",\n\tLong: `Parse SQL from a file or stdin and output the abstract syntax tree as JSON.\n\nExamples:\n  # Parse a SQL file with PostgreSQL dialect\n  sqlc parse --dialect postgresql schema.sql\n\n  # Parse from stdin with MySQL dialect\n  echo \"SELECT * FROM users\" | sqlc parse --dialect mysql\n\n  # Parse SQLite SQL\n  sqlc parse --dialect sqlite queries.sql\n\n  # Parse ClickHouse SQL\n  sqlc parse --dialect clickhouse queries.sql`,\n\tArgs: cobra.MaximumNArgs(1),\n\tRunE: func(cmd *cobra.Command, args []string) error {\n\t\tdialect, err := cmd.Flags().GetString(\"dialect\")\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif dialect == \"\" {\n\t\t\treturn fmt.Errorf(\"--dialect flag is required (postgresql, mysql, sqlite, or clickhouse)\")\n\t\t}\n\n\t\t// Determine input source\n\t\tvar input io.Reader\n\t\tif len(args) == 1 {\n\t\t\tfile, err := os.Open(args[0])\n\t\t\tif err != nil {\n\t\t\t\treturn fmt.Errorf(\"failed to open file: %w\", err)\n\t\t\t}\n\t\t\tdefer file.Close()\n\t\t\tinput = file\n\t\t} else {\n\t\t\t// Check if stdin has data\n\t\t\tstat, err := os.Stdin.Stat()\n\t\t\tif err != nil {\n\t\t\t\treturn fmt.Errorf(\"failed to stat stdin: %w\", err)\n\t\t\t}\n\t\t\tif (stat.Mode() & os.ModeCharDevice) != 0 {\n\t\t\t\treturn fmt.Errorf(\"no input provided. Specify a file path or pipe SQL via stdin\")\n\t\t\t}\n\t\t\tinput = cmd.InOrStdin()\n\t\t}\n\n\t\t// Parse SQL based on dialect\n\t\tvar stmts []ast.Statement\n\t\tswitch dialect {\n\t\tcase \"postgresql\", \"postgres\", \"pg\":\n\t\t\tparser := postgresql.NewParser()\n\t\t\tstmts, err = parser.Parse(input)\n\t\tcase \"mysql\":\n\t\t\tparser := dolphin.NewParser()\n\t\t\tstmts, err = parser.Parse(input)\n\t\tcase \"sqlite\":\n\t\t\tparser := sqlite.NewParser()\n\t\t\tstmts, err = parser.Parse(input)\n\t\tcase \"clickhouse\":\n\t\t\tparser := clickhouse.NewParser()\n\t\t\tstmts, err = parser.Parse(input)\n\t\tdefault:\n\t\t\treturn fmt.Errorf(\"unsupported dialect: %s (use postgresql, mysql, sqlite, or clickhouse)\", dialect)\n\t\t}\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"parse error: %w\", err)\n\t\t}\n\n\t\t// Output AST as JSON\n\t\tstdout := cmd.OutOrStdout()\n\t\tencoder := json.NewEncoder(stdout)\n\t\tencoder.SetIndent(\"\", \"  \")\n\n\t\tfor _, stmt := range stmts {\n\t\t\tif err := encoder.Encode(stmt.Raw); err != nil {\n\t\t\t\treturn fmt.Errorf(\"failed to encode AST: %w\", err)\n\t\t\t}\n\t\t}\n\n\t\treturn nil\n\t},\n}\n"
  },
  {
    "path": "internal/cmd/process.go",
    "content": "package cmd\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"fmt\"\n\t\"io\"\n\t\"path/filepath\"\n\t\"runtime\"\n\t\"runtime/trace\"\n\n\t\"golang.org/x/sync/errgroup\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/compiler\"\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/debug\"\n\t\"github.com/sqlc-dev/sqlc/internal/opts\"\n)\n\ntype OutputPair struct {\n\tGen    config.SQLGen\n\tPlugin *config.Codegen\n\n\tconfig.SQL\n}\n\ntype ResultProcessor interface {\n\tPairs(context.Context, *config.Config) []OutputPair\n\tProcessResult(context.Context, config.CombinedSettings, OutputPair, *compiler.Result) error\n}\n\nfunc Process(ctx context.Context, rp ResultProcessor, dir, filename string, o *Options) error {\n\te := o.Env\n\tstderr := o.Stderr\n\n\tconfigPath, conf, err := o.ReadConfig(dir, filename)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tbase := filepath.Base(configPath)\n\tif err := config.Validate(conf); err != nil {\n\t\tfmt.Fprintf(stderr, \"error validating %s: %s\\n\", base, err)\n\t\treturn err\n\t}\n\n\tif err := e.Validate(conf); err != nil {\n\t\tfmt.Fprintf(stderr, \"error validating %s: %s\\n\", base, err)\n\t\treturn err\n\t}\n\n\treturn processQuerySets(ctx, rp, conf, dir, o)\n}\n\nfunc processQuerySets(ctx context.Context, rp ResultProcessor, conf *config.Config, dir string, o *Options) error {\n\tstderr := o.Stderr\n\n\terrored := false\n\n\tpairs := rp.Pairs(ctx, conf)\n\tgrp, gctx := errgroup.WithContext(ctx)\n\tgrp.SetLimit(runtime.GOMAXPROCS(0))\n\n\tstderrs := make([]bytes.Buffer, len(pairs))\n\n\tfor i, pair := range pairs {\n\t\tsql := pair\n\t\terrout := &stderrs[i]\n\n\t\tgrp.Go(func() error {\n\t\t\tcombo := config.Combine(*conf, sql.SQL)\n\t\t\tif sql.Plugin != nil {\n\t\t\t\tcombo.Codegen = *sql.Plugin\n\t\t\t}\n\n\t\t\t// TODO: This feels like a hack that will bite us later\n\t\t\tjoined := make([]string, 0, len(sql.Schema))\n\t\t\tfor _, s := range sql.Schema {\n\t\t\t\tjoined = append(joined, filepath.Join(dir, s))\n\t\t\t}\n\t\t\tsql.Schema = joined\n\n\t\t\tjoined = make([]string, 0, len(sql.Queries))\n\t\t\tfor _, q := range sql.Queries {\n\t\t\t\tjoined = append(joined, filepath.Join(dir, q))\n\t\t\t}\n\t\t\tsql.Queries = joined\n\n\t\t\tvar name, lang string\n\t\t\tparseOpts := opts.Parser{\n\t\t\t\tDebug: debug.Debug,\n\t\t\t}\n\n\t\t\tswitch {\n\t\t\tcase sql.Gen.Go != nil:\n\t\t\t\tname = combo.Go.Package\n\t\t\t\tlang = \"golang\"\n\n\t\t\tcase sql.Plugin != nil:\n\t\t\t\tlang = fmt.Sprintf(\"process:%s\", sql.Plugin.Plugin)\n\t\t\t\tname = sql.Plugin.Plugin\n\t\t\t}\n\n\t\t\tpackageRegion := trace.StartRegion(gctx, \"package\")\n\t\t\ttrace.Logf(gctx, \"\", \"name=%s dir=%s plugin=%s\", name, dir, lang)\n\n\t\t\tresult, failed := parse(gctx, name, dir, sql.SQL, combo, parseOpts, errout)\n\t\t\tif failed {\n\t\t\t\tpackageRegion.End()\n\t\t\t\terrored = true\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\tif err := rp.ProcessResult(gctx, combo, sql, result); err != nil {\n\t\t\t\tfmt.Fprintf(errout, \"# package %s\\n\", name)\n\t\t\t\tfmt.Fprintf(errout, \"error generating code: %s\\n\", err)\n\t\t\t\terrored = true\n\t\t\t}\n\t\t\tpackageRegion.End()\n\t\t\treturn nil\n\t\t})\n\t}\n\tif err := grp.Wait(); err != nil {\n\t\treturn err\n\t}\n\tif errored {\n\t\tfor i, _ := range stderrs {\n\t\t\tif _, err := io.Copy(stderr, &stderrs[i]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t\treturn fmt.Errorf(\"errored\")\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "internal/cmd/push.go",
    "content": "package cmd\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"os\"\n\t\"sync\"\n\n\t\"github.com/spf13/cobra\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/bundler\"\n\t\"github.com/sqlc-dev/sqlc/internal/compiler\"\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n)\n\nfunc init() {\n\tpushCmd.Flags().StringSliceP(\"tag\", \"t\", nil, \"tag this push with a value\")\n}\n\nvar pushCmd = &cobra.Command{\n\tUse:     \"push\",\n\tAliases: []string{\"upload\"},\n\tShort:   \"Push the schema, queries, and configuration for this project\",\n\tRunE: func(cmd *cobra.Command, args []string) error {\n\t\tstderr := cmd.ErrOrStderr()\n\t\tdir, name := getConfigPath(stderr, cmd.Flag(\"file\"))\n\t\ttags, err := cmd.Flags().GetStringSlice(\"tag\")\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\topts := &Options{\n\t\t\tEnv:    ParseEnv(cmd),\n\t\t\tStderr: stderr,\n\t\t\tTags:   tags,\n\t\t}\n\t\tif err := Push(cmd.Context(), dir, name, opts); err != nil {\n\t\t\tfmt.Fprintf(stderr, \"error pushing: %s\\n\", err)\n\t\t\tos.Exit(1)\n\t\t}\n\t\treturn nil\n\t},\n}\n\ntype pusher struct {\n\tm       sync.Mutex\n\tresults []*bundler.QuerySetArchive\n}\n\nfunc (g *pusher) Pairs(ctx context.Context, conf *config.Config) []OutputPair {\n\tvar pairs []OutputPair\n\tfor _, sql := range conf.SQL {\n\t\tpairs = append(pairs, OutputPair{\n\t\t\tSQL: sql,\n\t\t})\n\t}\n\treturn pairs\n}\n\nfunc (g *pusher) ProcessResult(ctx context.Context, combo config.CombinedSettings, sql OutputPair, result *compiler.Result) error {\n\treq := codeGenRequest(result, combo)\n\tg.m.Lock()\n\tg.results = append(g.results, &bundler.QuerySetArchive{\n\t\tName:    sql.Name,\n\t\tSchema:  sql.Schema,\n\t\tQueries: sql.Queries,\n\t\tRequest: req,\n\t})\n\tg.m.Unlock()\n\treturn nil\n}\n\nfunc Push(ctx context.Context, dir, filename string, opts *Options) error {\n\te := opts.Env\n\tstderr := opts.Stderr\n\tconfigPath, conf, err := readConfig(stderr, dir, filename)\n\tif err != nil {\n\t\treturn err\n\t}\n\tup := bundler.NewUploader(configPath, dir, conf)\n\tif err := up.Validate(); err != nil {\n\t\treturn err\n\t}\n\tp := &pusher{}\n\tif err := Process(ctx, p, dir, filename, opts); err != nil {\n\t\treturn err\n\t}\n\tif e.DryRun {\n\t\treturn up.DumpRequestOut(ctx, p.results)\n\t} else {\n\t\treturn up.Upload(ctx, p.results, opts.Tags)\n\t}\n}\n"
  },
  {
    "path": "internal/cmd/shim.go",
    "content": "package cmd\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/compiler\"\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/config/convert\"\n\t\"github.com/sqlc-dev/sqlc/internal/info\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nfunc pluginSettings(r *compiler.Result, cs config.CombinedSettings) *plugin.Settings {\n\treturn &plugin.Settings{\n\t\tVersion: cs.Global.Version,\n\t\tEngine:  string(cs.Package.Engine),\n\t\tSchema:  []string(cs.Package.Schema),\n\t\tQueries: []string(cs.Package.Queries),\n\t\tCodegen: pluginCodegen(cs, cs.Codegen),\n\t}\n}\n\nfunc pluginCodegen(cs config.CombinedSettings, s config.Codegen) *plugin.Codegen {\n\topts, err := convert.YAMLtoJSON(s.Options)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tcg := &plugin.Codegen{\n\t\tOut:     s.Out,\n\t\tPlugin:  s.Plugin,\n\t\tOptions: opts,\n\t}\n\tfor _, p := range cs.Global.Plugins {\n\t\tif p.Name == s.Plugin {\n\t\t\tcg.Env = p.Env\n\t\t\tcg.Process = pluginProcess(p)\n\t\t\tcg.Wasm = pluginWASM(p)\n\t\t\treturn cg\n\t\t}\n\t}\n\treturn cg\n}\n\nfunc pluginProcess(p config.Plugin) *plugin.Codegen_Process {\n\tif p.Process != nil {\n\t\treturn &plugin.Codegen_Process{\n\t\t\tCmd: p.Process.Cmd,\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc pluginWASM(p config.Plugin) *plugin.Codegen_WASM {\n\tif p.WASM != nil {\n\t\treturn &plugin.Codegen_WASM{\n\t\t\tUrl:    p.WASM.URL,\n\t\t\tSha256: p.WASM.SHA256,\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc pluginCatalog(c *catalog.Catalog) *plugin.Catalog {\n\tvar schemas []*plugin.Schema\n\tfor _, s := range c.Schemas {\n\t\tvar enums []*plugin.Enum\n\t\tvar cts []*plugin.CompositeType\n\t\tfor _, typ := range s.Types {\n\t\t\tswitch typ := typ.(type) {\n\t\t\tcase *catalog.Enum:\n\t\t\t\tenums = append(enums, &plugin.Enum{\n\t\t\t\t\tName:    typ.Name,\n\t\t\t\t\tComment: typ.Comment,\n\t\t\t\t\tVals:    typ.Vals,\n\t\t\t\t})\n\t\t\tcase *catalog.CompositeType:\n\t\t\t\tcts = append(cts, &plugin.CompositeType{\n\t\t\t\t\tName:    typ.Name,\n\t\t\t\t\tComment: typ.Comment,\n\t\t\t\t})\n\t\t\t}\n\t\t}\n\t\tvar tables []*plugin.Table\n\t\tfor _, t := range s.Tables {\n\t\t\tvar columns []*plugin.Column\n\t\t\tfor _, c := range t.Columns {\n\t\t\t\tl := -1\n\t\t\t\tif c.Length != nil {\n\t\t\t\t\tl = *c.Length\n\t\t\t\t}\n\t\t\t\tcolumns = append(columns, &plugin.Column{\n\t\t\t\t\tName: c.Name,\n\t\t\t\t\tType: &plugin.Identifier{\n\t\t\t\t\t\tCatalog: c.Type.Catalog,\n\t\t\t\t\t\tSchema:  c.Type.Schema,\n\t\t\t\t\t\tName:    c.Type.Name,\n\t\t\t\t\t},\n\t\t\t\t\tComment:   c.Comment,\n\t\t\t\t\tNotNull:   c.IsNotNull,\n\t\t\t\t\tUnsigned:  c.IsUnsigned,\n\t\t\t\t\tIsArray:   c.IsArray,\n\t\t\t\t\tArrayDims: int32(c.ArrayDims),\n\t\t\t\t\tLength:    int32(l),\n\t\t\t\t\tTable: &plugin.Identifier{\n\t\t\t\t\t\tCatalog: t.Rel.Catalog,\n\t\t\t\t\t\tSchema:  t.Rel.Schema,\n\t\t\t\t\t\tName:    t.Rel.Name,\n\t\t\t\t\t},\n\t\t\t\t})\n\t\t\t}\n\t\t\ttables = append(tables, &plugin.Table{\n\t\t\t\tRel: &plugin.Identifier{\n\t\t\t\t\tCatalog: t.Rel.Catalog,\n\t\t\t\t\tSchema:  t.Rel.Schema,\n\t\t\t\t\tName:    t.Rel.Name,\n\t\t\t\t},\n\t\t\t\tColumns: columns,\n\t\t\t\tComment: t.Comment,\n\t\t\t})\n\t\t}\n\t\tschemas = append(schemas, &plugin.Schema{\n\t\t\tComment:        s.Comment,\n\t\t\tName:           s.Name,\n\t\t\tTables:         tables,\n\t\t\tEnums:          enums,\n\t\t\tCompositeTypes: cts,\n\t\t})\n\t}\n\treturn &plugin.Catalog{\n\t\tName:          c.Name,\n\t\tDefaultSchema: c.DefaultSchema,\n\t\tComment:       c.Comment,\n\t\tSchemas:       schemas,\n\t}\n}\n\nfunc pluginQueries(r *compiler.Result) []*plugin.Query {\n\tvar out []*plugin.Query\n\tfor _, q := range r.Queries {\n\t\tvar params []*plugin.Parameter\n\t\tvar columns []*plugin.Column\n\t\tfor _, c := range q.Columns {\n\t\t\tcolumns = append(columns, pluginQueryColumn(c))\n\t\t}\n\t\tfor _, p := range q.Params {\n\t\t\tparams = append(params, pluginQueryParam(p))\n\t\t}\n\t\tvar iit *plugin.Identifier\n\t\tif q.InsertIntoTable != nil {\n\t\t\tiit = &plugin.Identifier{\n\t\t\t\tCatalog: q.InsertIntoTable.Catalog,\n\t\t\t\tSchema:  q.InsertIntoTable.Schema,\n\t\t\t\tName:    q.InsertIntoTable.Name,\n\t\t\t}\n\t\t}\n\t\tout = append(out, &plugin.Query{\n\t\t\tName:            q.Metadata.Name,\n\t\t\tCmd:             q.Metadata.Cmd,\n\t\t\tText:            q.SQL,\n\t\t\tComments:        q.Metadata.Comments,\n\t\t\tColumns:         columns,\n\t\t\tParams:          params,\n\t\t\tFilename:        q.Metadata.Filename,\n\t\t\tInsertIntoTable: iit,\n\t\t})\n\t}\n\treturn out\n}\n\nfunc pluginQueryColumn(c *compiler.Column) *plugin.Column {\n\tl := -1\n\tif c.Length != nil {\n\t\tl = *c.Length\n\t}\n\tout := &plugin.Column{\n\t\tName:         c.Name,\n\t\tOriginalName: c.OriginalName,\n\t\tComment:      c.Comment,\n\t\tNotNull:      c.NotNull,\n\t\tUnsigned:     c.Unsigned,\n\t\tIsArray:      c.IsArray,\n\t\tArrayDims:    int32(c.ArrayDims),\n\t\tLength:       int32(l),\n\t\tIsNamedParam: c.IsNamedParam,\n\t\tIsFuncCall:   c.IsFuncCall,\n\t\tIsSqlcSlice:  c.IsSqlcSlice,\n\t}\n\n\tif c.Type != nil {\n\t\tout.Type = &plugin.Identifier{\n\t\t\tCatalog: c.Type.Catalog,\n\t\t\tSchema:  c.Type.Schema,\n\t\t\tName:    c.Type.Name,\n\t\t}\n\t} else {\n\t\tout.Type = &plugin.Identifier{\n\t\t\tName: c.DataType,\n\t\t}\n\t}\n\n\tif c.Table != nil {\n\t\tout.Table = &plugin.Identifier{\n\t\t\tCatalog: c.Table.Catalog,\n\t\t\tSchema:  c.Table.Schema,\n\t\t\tName:    c.Table.Name,\n\t\t}\n\t}\n\n\tif c.EmbedTable != nil {\n\t\tout.EmbedTable = &plugin.Identifier{\n\t\t\tCatalog: c.EmbedTable.Catalog,\n\t\t\tSchema:  c.EmbedTable.Schema,\n\t\t\tName:    c.EmbedTable.Name,\n\t\t}\n\t}\n\n\treturn out\n}\n\nfunc pluginQueryParam(p compiler.Parameter) *plugin.Parameter {\n\treturn &plugin.Parameter{\n\t\tNumber: int32(p.Number),\n\t\tColumn: pluginQueryColumn(p.Column),\n\t}\n}\n\nfunc codeGenRequest(r *compiler.Result, settings config.CombinedSettings) *plugin.GenerateRequest {\n\treturn &plugin.GenerateRequest{\n\t\tSettings:    pluginSettings(r, settings),\n\t\tCatalog:     pluginCatalog(r.Catalog),\n\t\tQueries:     pluginQueries(r),\n\t\tSqlcVersion: info.Version,\n\t}\n}\n"
  },
  {
    "path": "internal/cmd/verify.go",
    "content": "package cmd\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"errors\"\n\t\"fmt\"\n\t\"log/slog\"\n\t\"os\"\n\n\t_ \"github.com/jackc/pgx/v5/stdlib\"\n\t\"github.com/spf13/cobra\"\n\t\"google.golang.org/protobuf/proto\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/dbmanager\"\n\t\"github.com/sqlc-dev/sqlc/internal/migrations\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n\t\"github.com/sqlc-dev/sqlc/internal/quickdb\"\n\tpb \"github.com/sqlc-dev/sqlc/internal/quickdb/v1\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlpath\"\n)\n\nfunc init() {\n\tverifyCmd.Flags().String(\"against\", \"\", \"compare against this tag\")\n}\n\nvar verifyCmd = &cobra.Command{\n\tUse:   \"verify\",\n\tShort: \"Verify schema, queries, and configuration for this project\",\n\tRunE: func(cmd *cobra.Command, args []string) error {\n\t\tstderr := cmd.ErrOrStderr()\n\t\tdir, name := getConfigPath(stderr, cmd.Flag(\"file\"))\n\t\tagainst, err := cmd.Flags().GetString(\"against\")\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\topts := &Options{\n\t\t\tEnv:     ParseEnv(cmd),\n\t\t\tStderr:  stderr,\n\t\t\tAgainst: against,\n\t\t}\n\t\tif err := Verify(cmd.Context(), dir, name, opts); err != nil {\n\t\t\tfmt.Fprintf(stderr, \"Error verifying queries: %s\\n\", err)\n\t\t\tos.Exit(1)\n\t\t}\n\t\treturn nil\n\t},\n}\n\nfunc Verify(ctx context.Context, dir, filename string, opts *Options) error {\n\tstderr := opts.Stderr\n\t_, conf, err := readConfig(stderr, dir, filename)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tclient, err := quickdb.NewClientFromConfig(conf.Cloud)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"client init failed: %w\", err)\n\t}\n\n\tmanager := dbmanager.NewClient(conf.Servers)\n\n\t// Get query sets from a previous archive by tag. If no tag is provided, get\n\t// the latest query sets.\n\tprevious, err := client.GetQuerySets(ctx, &pb.GetQuerySetsRequest{\n\t\tTag: opts.Against,\n\t})\n\tif err != nil {\n\t\treturn err\n\t}\n\n\t// Create a mapping of name to query set\n\texisting := map[string]config.SQL{}\n\tfor _, qs := range conf.SQL {\n\t\texisting[qs.Name] = qs\n\t}\n\n\tvar verr error\n\tfor _, qs := range previous.QuerySets {\n\t\t// TODO: Create a function for this so that we can return early on errors\n\n\t\tcheck := func() error {\n\t\t\tif qs.Name == \"\" {\n\t\t\t\treturn fmt.Errorf(\"unnamed query set\")\n\t\t\t}\n\n\t\t\tcurrent, found := existing[qs.Name]\n\t\t\tif !found {\n\t\t\t\treturn fmt.Errorf(\"unknown query set: %s\", qs.Name)\n\t\t\t}\n\n\t\t\t// Read the schema files into memory, removing rollback statements\n\t\t\tvar ddl []string\n\t\t\tfiles, err := sqlpath.Glob(current.Schema)\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tfor _, schema := range files {\n\t\t\t\tcontents, err := os.ReadFile(schema)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn fmt.Errorf(\"read file: %w\", err)\n\t\t\t\t}\n\t\t\t\tddl = append(ddl, migrations.RemoveRollbackStatements(string(contents)))\n\t\t\t}\n\n\t\t\tvar codegen plugin.GenerateRequest\n\t\t\tif err := proto.Unmarshal(qs.CodegenRequest.Contents, &codegen); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\n\t\t\t// Create (or re-use) a database to verify against\n\t\t\tresp, err := manager.CreateDatabase(ctx, &dbmanager.CreateDatabaseRequest{\n\t\t\t\tEngine:     string(current.Engine),\n\t\t\t\tMigrations: ddl,\n\t\t\t})\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\n\t\t\tdb, err := sql.Open(\"pgx\", resp.Uri)\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tdefer db.Close()\n\n\t\t\tvar qerr error\n\t\t\tfor _, query := range codegen.Queries {\n\t\t\t\tstmt, err := db.PrepareContext(ctx, query.Text)\n\t\t\t\tif err != nil {\n\t\t\t\t\tfmt.Fprintf(stderr, \"Failed to prepare the following query:\\n\")\n\t\t\t\t\tfmt.Fprintf(stderr, \"%s\\n\", query.Text)\n\t\t\t\t\tfmt.Fprintf(stderr, \"Error was: %s\\n\", err)\n\t\t\t\t\tqerr = err\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif err := stmt.Close(); err != nil {\n\t\t\t\t\tslog.Error(\"stmt.Close failed\", \"err\", err)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn qerr\n\t\t}\n\n\t\tif err := check(); err != nil {\n\t\t\tverr = errors.New(\"errored\")\n\t\t\tfmt.Fprintf(stderr, \"FAIL\\t%s\\n\", qs.Name)\n\t\t\tfmt.Fprintf(stderr, \"  ERROR\\t%s\\n\", err)\n\t\t} else {\n\t\t\tfmt.Fprintf(stderr, \"ok\\t%s\\n\", qs.Name)\n\t\t}\n\t}\n\n\treturn verr\n}\n"
  },
  {
    "path": "internal/cmd/vet.go",
    "content": "package cmd\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"encoding/json\"\n\t\"errors\"\n\t\"fmt\"\n\t\"github.com/sqlc-dev/sqlc/internal/constants\"\n\t\"io\"\n\t\"log\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"runtime/trace\"\n\t\"slices\"\n\t\"strings\"\n\t\"sync\"\n\t\"time\"\n\n\t_ \"github.com/go-sql-driver/mysql\"\n\t\"github.com/google/cel-go/cel\"\n\t\"github.com/google/cel-go/ext\"\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/spf13/cobra\"\n\t\"google.golang.org/protobuf/encoding/protojson\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/dbmanager\"\n\t\"github.com/sqlc-dev/sqlc/internal/debug\"\n\t\"github.com/sqlc-dev/sqlc/internal/migrations\"\n\t\"github.com/sqlc-dev/sqlc/internal/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n\t\"github.com/sqlc-dev/sqlc/internal/quickdb\"\n\t\"github.com/sqlc-dev/sqlc/internal/shfmt\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlpath\"\n\t\"github.com/sqlc-dev/sqlc/internal/vet\"\n)\n\nvar ErrFailedChecks = errors.New(\"failed checks\")\n\nvar pjson = protojson.UnmarshalOptions{AllowPartial: true, DiscardUnknown: true}\n\nfunc NewCmdVet() *cobra.Command {\n\treturn &cobra.Command{\n\t\tUse:   \"vet\",\n\t\tShort: \"Vet examines queries\",\n\t\tRunE: func(cmd *cobra.Command, args []string) error {\n\t\t\tdefer trace.StartRegion(cmd.Context(), \"vet\").End()\n\t\t\tstderr := cmd.ErrOrStderr()\n\t\t\topts := &Options{\n\t\t\t\tEnv:    ParseEnv(cmd),\n\t\t\t\tStderr: stderr,\n\t\t\t}\n\t\t\tdir, name := getConfigPath(stderr, cmd.Flag(\"file\"))\n\t\t\tif err := Vet(cmd.Context(), dir, name, opts); err != nil {\n\t\t\t\tif !errors.Is(err, ErrFailedChecks) {\n\t\t\t\t\tfmt.Fprintf(stderr, \"%s\\n\", err)\n\t\t\t\t}\n\t\t\t\tos.Exit(1)\n\t\t\t}\n\t\t\treturn nil\n\t\t},\n\t}\n}\n\nfunc Vet(ctx context.Context, dir, filename string, opts *Options) error {\n\te := opts.Env\n\tstderr := opts.Stderr\n\tconfigPath, conf, err := readConfig(stderr, dir, filename)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tbase := filepath.Base(configPath)\n\tif err := config.Validate(conf); err != nil {\n\t\tfmt.Fprintf(stderr, \"error validating %s: %s\\n\", base, err)\n\t\treturn err\n\t}\n\n\tif err := e.Validate(conf); err != nil {\n\t\tfmt.Fprintf(stderr, \"error validating %s: %s\\n\", base, err)\n\t\treturn err\n\t}\n\n\tenv, err := cel.NewEnv(\n\t\tcel.StdLib(),\n\t\text.Strings(ext.StringsVersion(1)),\n\t\tcel.Types(\n\t\t\t&vet.Config{},\n\t\t\t&vet.Query{},\n\t\t\t&vet.PostgreSQL{},\n\t\t\t&vet.MySQL{},\n\t\t),\n\t\tcel.Variable(\"query\",\n\t\t\tcel.ObjectType(\"vet.Query\"),\n\t\t),\n\t\tcel.Variable(\"config\",\n\t\t\tcel.ObjectType(\"vet.Config\"),\n\t\t),\n\t\tcel.Variable(\"postgresql\",\n\t\t\tcel.ObjectType(\"vet.PostgreSQL\"),\n\t\t),\n\t\tcel.Variable(\"mysql\",\n\t\t\tcel.ObjectType(\"vet.MySQL\"),\n\t\t),\n\t)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"new CEL env error: %s\", err)\n\t}\n\n\trules := map[string]rule{\n\t\tconstants.QueryRuleDbPrepare: {NeedsPrepare: true},\n\t}\n\n\tfor _, c := range conf.Rules {\n\t\tif c.Name == \"\" {\n\t\t\treturn fmt.Errorf(\"rules require a name\")\n\t\t}\n\t\tif _, found := rules[c.Name]; found {\n\t\t\treturn fmt.Errorf(\"type-check error: a rule with the name '%s' already exists\", c.Name)\n\t\t}\n\t\tif c.Rule == \"\" {\n\t\t\treturn fmt.Errorf(\"type-check error: %s is empty\", c.Name)\n\t\t}\n\t\tast, issues := env.Compile(c.Rule)\n\t\tif issues != nil && issues.Err() != nil {\n\t\t\treturn fmt.Errorf(\"type-check error: %s %s\", c.Name, issues.Err())\n\t\t}\n\t\tprg, err := env.Program(ast)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"program construction error: %s %s\", c.Name, err)\n\t\t}\n\t\trule := rule{Program: &prg, Message: c.Msg}\n\n\t\t// TODO There's probably a nicer way to do this from the ast\n\t\t// https://pkg.go.dev/github.com/google/cel-go/common/ast#AllMatcher\n\t\tif strings.Contains(c.Rule, \"postgresql.explain\") ||\n\t\t\tstrings.Contains(c.Rule, \"mysql.explain\") {\n\t\t\trule.NeedsExplain = true\n\t\t}\n\n\t\trules[c.Name] = rule\n\t}\n\n\tc := checker{\n\t\tRules:         rules,\n\t\tConf:          conf,\n\t\tDir:           dir,\n\t\tEnv:           env,\n\t\tStderr:        stderr,\n\t\tOnlyManagedDB: e.Debug.OnlyManagedDatabases,\n\t\tReplacer:      shfmt.NewReplacer(nil),\n\t}\n\terrored := false\n\tfor _, sql := range conf.SQL {\n\t\tif err := c.checkSQL(ctx, sql); err != nil {\n\t\t\tif !errors.Is(err, ErrFailedChecks) {\n\t\t\t\tfmt.Fprintf(stderr, \"%s\\n\", err)\n\t\t\t}\n\t\t\terrored = true\n\t\t}\n\t}\n\tif errored {\n\t\treturn ErrFailedChecks\n\t}\n\treturn nil\n}\n\ntype preparer interface {\n\tPrepare(context.Context, string, string) error\n}\n\ntype pgxConn struct {\n\tc *pgx.Conn\n}\n\nfunc (p *pgxConn) Prepare(ctx context.Context, name, query string) error {\n\t_, err := p.c.Prepare(ctx, name, query)\n\treturn err\n}\n\n// Return a default value for a PostgreSQL column based on its type. Returns nil\n// if the type is unknown.\nfunc pgDefaultValue(col *plugin.Column) any {\n\tif col == nil {\n\t\treturn nil\n\t}\n\tif col.Type == nil {\n\t\treturn nil\n\t}\n\ttypname := strings.TrimPrefix(col.Type.Name, \"pg_catalog.\")\n\tswitch typname {\n\tcase \"any\", \"void\":\n\t\tif col.IsArray {\n\t\t\treturn []any{}\n\t\t} else {\n\t\t\treturn nil\n\t\t}\n\tcase \"anyarray\":\n\t\treturn []any{}\n\tcase \"bool\", \"boolean\":\n\t\tif col.IsArray {\n\t\t\treturn []bool{}\n\t\t} else {\n\t\t\treturn false\n\t\t}\n\tcase \"double\", \"double precision\", \"real\":\n\t\tif col.IsArray {\n\t\t\treturn []float32{}\n\t\t} else {\n\t\t\treturn 0.1\n\t\t}\n\tcase \"json\", \"jsonb\":\n\t\tif col.IsArray {\n\t\t\treturn []string{}\n\t\t} else {\n\t\t\treturn \"{}\"\n\t\t}\n\tcase \"citext\", \"string\", \"text\", \"varchar\":\n\t\tif col.IsArray {\n\t\t\treturn []string{}\n\t\t} else {\n\t\t\treturn \"\"\n\t\t}\n\tcase \"bigint\", \"bigserial\", \"integer\", \"int\", \"int2\", \"int4\", \"int8\", \"serial\":\n\t\tif col.IsArray {\n\t\t\treturn []int{}\n\t\t} else {\n\t\t\treturn 1\n\t\t}\n\tcase \"date\", \"time\", \"timestamp\", \"timestamptz\":\n\t\tif col.IsArray {\n\t\t\treturn []time.Time{}\n\t\t} else {\n\t\t\treturn time.Time{}\n\t\t}\n\tcase \"uuid\":\n\t\tif col.IsArray {\n\t\t\treturn []string{}\n\t\t} else {\n\t\t\treturn \"00000000-0000-0000-0000-000000000000\"\n\t\t}\n\tcase \"numeric\", \"decimal\":\n\t\tif col.IsArray {\n\t\t\treturn []string{}\n\t\t} else {\n\t\t\treturn \"0.1\"\n\t\t}\n\tcase \"inet\":\n\t\tif col.IsArray {\n\t\t\treturn []string{}\n\t\t} else {\n\t\t\treturn \"192.168.0.1/24\"\n\t\t}\n\tcase \"cidr\":\n\t\tif col.IsArray {\n\t\t\treturn []string{}\n\t\t} else {\n\t\t\treturn \"192.168.1/24\"\n\t\t}\n\tdefault:\n\t\treturn nil\n\t}\n}\n\n// Return a default value for a MySQL column based on its type. Returns nil\n// if the type is unknown.\nfunc mysqlDefaultValue(col *plugin.Column) any {\n\tif col == nil {\n\t\treturn nil\n\t}\n\tif col.Type == nil {\n\t\treturn nil\n\t}\n\tswitch col.Type.Name {\n\tcase \"any\":\n\t\treturn nil\n\tcase \"bool\":\n\t\treturn false\n\tcase \"int\", \"bigint\", \"mediumint\", \"smallint\", \"tinyint\", \"bit\":\n\t\treturn 1\n\tcase \"decimal\": // \"numeric\", \"dec\", \"fixed\"\n\t\t// No perfect choice here to avoid \"Impossible WHERE\" but I think\n\t\t// 0.1 is decent. It works for all cases where `scale` > 0 which\n\t\t// should be the majority. For more information refer to\n\t\t// https://dev.mysql.com/doc/refman/8.1/en/fixed-point-types.html.\n\t\treturn 0.1\n\tcase \"float\", \"double\":\n\t\treturn 0.1\n\tcase \"date\":\n\t\treturn \"0000-00-00\"\n\tcase \"datetime\", \"timestamp\":\n\t\treturn \"0000-00-00 00:00:00\"\n\tcase \"time\":\n\t\treturn \"00:00:00\"\n\tcase \"year\":\n\t\treturn \"0000\"\n\tcase \"char\", \"varchar\", \"binary\", \"varbinary\", \"tinyblob\", \"blob\",\n\t\t\"mediumblob\", \"longblob\", \"tinytext\", \"text\", \"mediumtext\", \"longtext\":\n\t\treturn \"\"\n\tcase \"json\":\n\t\treturn \"{}\"\n\tdefault:\n\t\treturn nil\n\t}\n}\n\nfunc (p *pgxConn) Explain(ctx context.Context, query string, args ...*plugin.Parameter) (*vetEngineOutput, error) {\n\teQuery := \"EXPLAIN (ANALYZE false, VERBOSE, COSTS, SETTINGS, BUFFERS, FORMAT JSON) \" + query\n\teArgs := make([]any, len(args))\n\tfor i, a := range args {\n\t\teArgs[i] = pgDefaultValue(a.Column)\n\t}\n\trow := p.c.QueryRow(ctx, eQuery, eArgs...)\n\tvar result []json.RawMessage\n\tif err := row.Scan(&result); err != nil {\n\t\treturn nil, err\n\t}\n\tif debug.Debug.DumpExplain {\n\t\tfmt.Println(eQuery, \"with args\", eArgs)\n\t\tfmt.Println(string(result[0]))\n\t}\n\tvar explain vet.PostgreSQLExplain\n\tif err := pjson.Unmarshal(result[0], &explain); err != nil {\n\t\treturn nil, err\n\t}\n\treturn &vetEngineOutput{PostgreSQL: &vet.PostgreSQL{Explain: &explain}}, nil\n}\n\ntype dbPreparer struct {\n\tdb *sql.DB\n}\n\nfunc (p *dbPreparer) Prepare(ctx context.Context, name, query string) error {\n\ts, err := p.db.PrepareContext(ctx, query)\n\tif s != nil {\n\t\ts.Close()\n\t}\n\treturn err\n}\n\ntype explainer interface {\n\tExplain(context.Context, string, ...*plugin.Parameter) (*vetEngineOutput, error)\n}\n\ntype mysqlExplainer struct {\n\t*sql.DB\n}\n\nfunc (me *mysqlExplainer) Explain(ctx context.Context, query string, args ...*plugin.Parameter) (*vetEngineOutput, error) {\n\teQuery := \"EXPLAIN FORMAT=JSON \" + query\n\teArgs := make([]any, len(args))\n\tfor i, a := range args {\n\t\teArgs[i] = mysqlDefaultValue(a.Column)\n\t}\n\trow := me.QueryRowContext(ctx, eQuery, eArgs...)\n\tvar result json.RawMessage\n\tif err := row.Scan(&result); err != nil {\n\t\treturn nil, err\n\t}\n\tif debug.Debug.DumpExplain {\n\t\tfmt.Println(eQuery, \"with args\", eArgs)\n\t\tfmt.Println(string(result))\n\t}\n\tvar explain vet.MySQLExplain\n\tif err := pjson.Unmarshal(result, &explain); err != nil {\n\t\treturn nil, err\n\t}\n\tif explain.QueryBlock.Message != \"\" {\n\t\treturn nil, fmt.Errorf(\"mysql explain: %s\", explain.QueryBlock.Message)\n\t}\n\treturn &vetEngineOutput{MySQL: &vet.MySQL{Explain: &explain}}, nil\n}\n\ntype rule struct {\n\tProgram      *cel.Program\n\tMessage      string\n\tNeedsPrepare bool\n\tNeedsExplain bool\n}\n\ntype checker struct {\n\tRules         map[string]rule\n\tConf          *config.Config\n\tDir           string\n\tEnv           *cel.Env\n\tStderr        io.Writer\n\tOnlyManagedDB bool\n\tClient        dbmanager.Client\n\tclientOnce    sync.Once\n\tReplacer      *shfmt.Replacer\n}\n\n// isInMemorySQLite checks if a SQLite URI refers to an in-memory database\nfunc isInMemorySQLite(uri string) bool {\n\tif uri == \":memory:\" || uri == \"\" {\n\t\treturn true\n\t}\n\t// Check for file URI with mode=memory parameter\n\t// e.g., \"file:test?mode=memory&cache=shared\"\n\tif strings.Contains(uri, \"mode=memory\") {\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc (c *checker) fetchDatabaseUri(ctx context.Context, s config.SQL) (string, func() error, error) {\n\tcleanup := func() error {\n\t\treturn nil\n\t}\n\n\tif s.Database == nil {\n\t\tpanic(\"fetch database URI called with nil database\")\n\t}\n\tif !s.Database.Managed {\n\t\turi, err := c.DSN(s.Database.URI)\n\t\treturn uri, cleanup, err\n\t}\n\n\t// Initialize the client exactly once, even if called concurrently\n\tc.clientOnce.Do(func() {\n\t\tc.Client = dbmanager.NewClient(c.Conf.Servers)\n\t})\n\n\tvar ddl []string\n\tfiles, err := sqlpath.Glob(s.Schema)\n\tif err != nil {\n\t\treturn \"\", cleanup, err\n\t}\n\tfor _, schema := range files {\n\t\tcontents, err := os.ReadFile(schema)\n\t\tif err != nil {\n\t\t\treturn \"\", cleanup, fmt.Errorf(\"read file: %w\", err)\n\t\t}\n\t\tddl = append(ddl, migrations.RemoveRollbackStatements(string(contents)))\n\t}\n\n\tresp, err := c.Client.CreateDatabase(ctx, &dbmanager.CreateDatabaseRequest{\n\t\tEngine:     string(s.Engine),\n\t\tMigrations: ddl,\n\t})\n\tif err != nil {\n\t\treturn \"\", cleanup, fmt.Errorf(\"managed: create database: %w\", err)\n\t}\n\n\tvar uri string\n\tswitch s.Engine {\n\tcase config.EngineMySQL:\n\t\tdburi, err := quickdb.MySQLReformatURI(resp.Uri)\n\t\tif err != nil {\n\t\t\treturn \"\", cleanup, fmt.Errorf(\"reformat uri: %w\", err)\n\t\t}\n\t\turi = dburi\n\tdefault:\n\t\turi = resp.Uri\n\t}\n\n\treturn uri, cleanup, nil\n}\n\nfunc (c *checker) DSN(dsn string) (string, error) {\n\treturn c.Replacer.Replace(dsn), nil\n}\n\nfunc (c *checker) checkSQL(ctx context.Context, s config.SQL) error {\n\t// TODO: Create a separate function for this logic so we can\n\tcombo := config.Combine(*c.Conf, s)\n\n\t// TODO: This feels like a hack that will bite us later\n\tjoined := make([]string, 0, len(s.Schema))\n\tfor _, s := range s.Schema {\n\t\tjoined = append(joined, filepath.Join(c.Dir, s))\n\t}\n\ts.Schema = joined\n\n\tjoined = make([]string, 0, len(s.Queries))\n\tfor _, q := range s.Queries {\n\t\tjoined = append(joined, filepath.Join(c.Dir, q))\n\t}\n\ts.Queries = joined\n\n\tvar name string\n\tparseOpts := opts.Parser{\n\t\tDebug: debug.Debug,\n\t}\n\n\tresult, failed := parse(ctx, name, c.Dir, s, combo, parseOpts, c.Stderr)\n\tif failed {\n\t\treturn ErrFailedChecks\n\t}\n\n\tvar prep preparer\n\tvar expl explainer\n\tif s.Database != nil { // TODO only set up a database connection if a rule evaluation requires it\n\t\tif s.Database.URI != \"\" && c.OnlyManagedDB {\n\t\t\treturn fmt.Errorf(\"database: connections disabled via SQLCDEBUG=databases=managed\")\n\t\t}\n\t\tdburl, cleanup, err := c.fetchDatabaseUri(ctx, s)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tdefer func() {\n\t\t\tif err := cleanup(); err != nil {\n\t\t\t\tfmt.Fprintf(c.Stderr, \"error cleaning up: %s\\n\", err)\n\t\t\t}\n\t\t}()\n\n\t\tswitch s.Engine {\n\t\tcase config.EnginePostgreSQL:\n\t\t\tconn, err := pgx.Connect(ctx, dburl)\n\t\t\tif err != nil {\n\t\t\t\treturn fmt.Errorf(\"database: connection error: %s\", err)\n\t\t\t}\n\t\t\tif err := conn.Ping(ctx); err != nil {\n\t\t\t\treturn fmt.Errorf(\"database: connection error: %s\", err)\n\t\t\t}\n\t\t\tdefer conn.Close(ctx)\n\t\t\tpConn := &pgxConn{conn}\n\t\t\tprep = pConn\n\t\t\texpl = pConn\n\t\tcase config.EngineMySQL:\n\t\t\tdb, err := sql.Open(\"mysql\", dburl)\n\t\t\tif err != nil {\n\t\t\t\treturn fmt.Errorf(\"database: connection error: %s\", err)\n\t\t\t}\n\t\t\tif err := db.PingContext(ctx); err != nil {\n\t\t\t\treturn fmt.Errorf(\"database: connection error: %s\", err)\n\t\t\t}\n\t\t\tdefer db.Close()\n\t\t\tprep = &dbPreparer{db}\n\t\t\texpl = &mysqlExplainer{db}\n\t\tcase config.EngineSQLite:\n\t\t\tdb, err := sql.Open(\"sqlite3\", dburl)\n\t\t\tif err != nil {\n\t\t\t\treturn fmt.Errorf(\"database: connection error: %s\", err)\n\t\t\t}\n\t\t\tif err := db.PingContext(ctx); err != nil {\n\t\t\t\treturn fmt.Errorf(\"database: connection error: %s\", err)\n\t\t\t}\n\t\t\tdefer db.Close()\n\t\t\t// For in-memory SQLite databases, apply migrations\n\t\t\tif isInMemorySQLite(dburl) {\n\t\t\t\tfiles, err := sqlpath.Glob(s.Schema)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn fmt.Errorf(\"schema: %w\", err)\n\t\t\t\t}\n\t\t\t\tfor _, schema := range files {\n\t\t\t\t\tcontents, err := os.ReadFile(schema)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn fmt.Errorf(\"read schema file: %w\", err)\n\t\t\t\t\t}\n\t\t\t\t\tddl := migrations.RemoveRollbackStatements(string(contents))\n\t\t\t\t\tif _, err := db.ExecContext(ctx, ddl); err != nil {\n\t\t\t\t\t\treturn fmt.Errorf(\"apply schema %s: %w\", schema, err)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tprep = &dbPreparer{db}\n\t\t\t// SQLite really doesn't want us to depend on the output of EXPLAIN\n\t\t\t// QUERY PLAN: https://www.sqlite.org/eqp.html\n\t\t\texpl = nil\n\t\tdefault:\n\t\t\treturn fmt.Errorf(\"unsupported database uri: %s\", s.Engine)\n\t\t}\n\t}\n\n\terrored := false\n\treq := codeGenRequest(result, combo)\n\tcfg := vetConfig(req)\n\tfor i, query := range req.Queries {\n\t\tmd := result.Queries[i].Metadata\n\t\tif md.Flags[constants.QueryFlagSqlcVetDisable] {\n\t\t\t// If the vet disable flag is specified without any rules listed, all rules are ignored.\n\t\t\tif len(md.RuleSkiplist) == 0 {\n\t\t\t\tif debug.Active {\n\t\t\t\t\tlog.Printf(\"Skipping all vet rules for query: %s\\n\", query.Name)\n\t\t\t\t}\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\t// Rules which are listed to be disabled but not declared in the config file are rejected.\n\t\t\tfor r := range md.RuleSkiplist {\n\t\t\t\tif !slices.Contains(s.Rules, r) {\n\t\t\t\t\tfmt.Fprintf(c.Stderr, \"%s: %s: rule-check error: rule %q does not exist in the config file\\n\", query.Filename, query.Name, r)\n\t\t\t\t\terrored = true\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tevalMap := map[string]any{\n\t\t\t\"query\":  vetQuery(query),\n\t\t\t\"config\": cfg,\n\t\t}\n\n\t\tfor _, name := range s.Rules {\n\t\t\tif _, skip := md.RuleSkiplist[name]; skip {\n\t\t\t\tif debug.Active {\n\t\t\t\t\tlog.Printf(\"Skipping vet rule %q for query: %s\\n\", name, query.Name)\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\trule, ok := c.Rules[name]\n\t\t\t\tif !ok {\n\t\t\t\t\treturn fmt.Errorf(\"type-check error: a rule with the name '%s' does not exist\", name)\n\t\t\t\t}\n\n\t\t\t\tif rule.NeedsPrepare {\n\t\t\t\t\tif prep == nil {\n\t\t\t\t\t\tfmt.Fprintf(c.Stderr, \"%s: %s: %s: error preparing query: database connection required\\n\", query.Filename, query.Name, name)\n\t\t\t\t\t\terrored = true\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tprepName := fmt.Sprintf(\"sqlc_vet_%d_%d\", time.Now().Unix(), i)\n\t\t\t\t\tif err := prep.Prepare(ctx, prepName, query.Text); err != nil {\n\t\t\t\t\t\tfmt.Fprintf(c.Stderr, \"%s: %s: %s: error preparing query: %s\\n\", query.Filename, query.Name, name, err)\n\t\t\t\t\t\terrored = true\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// short-circuit for \"sqlc/db-prepare\" rule which doesn't have a CEL program\n\t\t\t\tif rule.Program == nil {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\t// Get explain output for this query if we need it\n\t\t\t\t_, pgsqlOK := evalMap[\"postgresql\"]\n\t\t\t\t_, mysqlOK := evalMap[\"mysql\"]\n\t\t\t\tif rule.NeedsExplain && !(pgsqlOK || mysqlOK) {\n\t\t\t\t\tif expl == nil {\n\t\t\t\t\t\tfmt.Fprintf(c.Stderr, \"%s: %s: %s: error explaining query: database connection required\\n\", query.Filename, query.Name, name)\n\t\t\t\t\t\terrored = true\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tengineOutput, err := expl.Explain(ctx, query.Text, query.Params...)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tfmt.Fprintf(c.Stderr, \"%s: %s: %s: error explaining query: %s\\n\", query.Filename, query.Name, name, err)\n\t\t\t\t\t\terrored = true\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\n\t\t\t\t\tevalMap[\"postgresql\"] = engineOutput.PostgreSQL\n\t\t\t\t\tevalMap[\"mysql\"] = engineOutput.MySQL\n\t\t\t\t}\n\n\t\t\t\tif debug.Debug.DumpVetEnv {\n\t\t\t\t\tfmt.Printf(\"vars for rule '%s' evaluating against query '%s':\\n\", name, query.Name)\n\t\t\t\t\tdebug.DumpAsJSON(evalMap)\n\t\t\t\t}\n\n\t\t\t\tout, _, err := (*rule.Program).Eval(evalMap)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\ttripped, ok := out.Value().(bool)\n\t\t\t\tif !ok {\n\t\t\t\t\treturn fmt.Errorf(\"expression returned non-bool value: %v\", out.Value())\n\t\t\t\t}\n\t\t\t\tif tripped {\n\t\t\t\t\t// TODO: Get line numbers in the output\n\t\t\t\t\tif rule.Message == \"\" {\n\t\t\t\t\t\tfmt.Fprintf(c.Stderr, \"%s: %s: %s\\n\", query.Filename, query.Name, name)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfmt.Fprintf(c.Stderr, \"%s: %s: %s: %s\\n\", query.Filename, query.Name, name, rule.Message)\n\t\t\t\t\t}\n\t\t\t\t\terrored = true\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tif errored {\n\t\treturn ErrFailedChecks\n\t}\n\treturn nil\n}\n\nfunc vetConfig(req *plugin.GenerateRequest) *vet.Config {\n\treturn &vet.Config{\n\t\tVersion: req.Settings.Version,\n\t\tEngine:  req.Settings.Engine,\n\t\tSchema:  req.Settings.Schema,\n\t\tQueries: req.Settings.Queries,\n\t}\n}\n\nfunc vetQuery(q *plugin.Query) *vet.Query {\n\tvar params []*vet.Parameter\n\tfor _, p := range q.Params {\n\t\tparams = append(params, &vet.Parameter{\n\t\t\tNumber: p.Number,\n\t\t})\n\t}\n\treturn &vet.Query{\n\t\tSql:    q.Text,\n\t\tName:   q.Name,\n\t\tCmd:    strings.TrimPrefix(q.Cmd, \":\"),\n\t\tParams: params,\n\t}\n}\n\ntype vetEngineOutput struct {\n\tPostgreSQL *vet.PostgreSQL\n\tMySQL      *vet.MySQL\n}\n"
  },
  {
    "path": "internal/cmd/vet_sqlite.go",
    "content": "package cmd\n\nimport (\n\t_ \"github.com/ncruces/go-sqlite3/driver\"\n\t_ \"github.com/ncruces/go-sqlite3/embed\"\n)\n"
  },
  {
    "path": "internal/codegen/golang/driver.go",
    "content": "package golang\n\nimport \"github.com/sqlc-dev/sqlc/internal/codegen/golang/opts\"\n\nfunc parseDriver(sqlPackage string) opts.SQLDriver {\n\tswitch sqlPackage {\n\tcase opts.SQLPackagePGXV4:\n\t\treturn opts.SQLDriverPGXV4\n\tcase opts.SQLPackagePGXV5:\n\t\treturn opts.SQLDriverPGXV5\n\tdefault:\n\t\treturn opts.SQLDriverLibPQ\n\t}\n}\n"
  },
  {
    "path": "internal/codegen/golang/enum.go",
    "content": "package golang\n\nimport (\n\t\"strings\"\n\t\"unicode\"\n)\n\ntype Constant struct {\n\tName  string\n\tType  string\n\tValue string\n}\n\ntype Enum struct {\n\tName      string\n\tComment   string\n\tConstants []Constant\n\tNameTags  map[string]string\n\tValidTags map[string]string\n}\n\nfunc (e Enum) NameTag() string {\n\treturn TagsToString(e.NameTags)\n}\n\nfunc (e Enum) ValidTag() string {\n\treturn TagsToString(e.ValidTags)\n}\n\nfunc enumReplacer(r rune) rune {\n\tif strings.ContainsRune(\"-/:_\", r) {\n\t\treturn '_'\n\t} else if (r >= 'a' && r <= 'z') ||\n\t\t(r >= 'A' && r <= 'Z') ||\n\t\t(r >= '0' && r <= '9') {\n\t\treturn r\n\t} else {\n\t\treturn -1\n\t}\n}\n\n// EnumReplace removes all non ident symbols (all but letters, numbers and\n// underscore) and returns valid ident name for provided name.\nfunc EnumReplace(value string) string {\n\treturn strings.Map(enumReplacer, value)\n}\n\n// EnumValueName removes all non ident symbols (all but letters, numbers and\n// underscore) and converts snake case ident to camel case.\nfunc EnumValueName(value string) string {\n\tparts := strings.Split(EnumReplace(value), \"_\")\n\tfor i, part := range parts {\n\t\tparts[i] = titleFirst(part)\n\t}\n\n\treturn strings.Join(parts, \"\")\n}\n\nfunc titleFirst(s string) string {\n\tr := []rune(s)\n\tr[0] = unicode.ToUpper(r[0])\n\n\treturn string(r)\n}\n"
  },
  {
    "path": "internal/codegen/golang/field.go",
    "content": "package golang\n\nimport (\n\t\"fmt\"\n\t\"regexp\"\n\t\"sort\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/golang/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\ntype Field struct {\n\tName    string // CamelCased name for Go\n\tDBName  string // Name as used in the DB\n\tType    string\n\tTags    map[string]string\n\tComment string\n\tColumn  *plugin.Column\n\t// EmbedFields contains the embedded fields that require scanning.\n\tEmbedFields []Field\n}\n\nfunc (gf Field) Tag() string {\n\treturn TagsToString(gf.Tags)\n}\n\nfunc (gf Field) HasSqlcSlice() bool {\n\treturn gf.Column.IsSqlcSlice\n}\n\nfunc TagsToString(tags map[string]string) string {\n\tif len(tags) == 0 {\n\t\treturn \"\"\n\t}\n\ttagParts := make([]string, 0, len(tags))\n\tfor key, val := range tags {\n\t\ttagParts = append(tagParts, fmt.Sprintf(\"%s:%q\", key, val))\n\t}\n\tsort.Strings(tagParts)\n\treturn strings.Join(tagParts, \" \")\n}\n\nfunc JSONTagName(name string, options *opts.Options) string {\n\tstyle := options.JsonTagsCaseStyle\n\tidUppercase := options.JsonTagsIdUppercase\n\tif style == \"\" || style == \"none\" {\n\t\treturn name\n\t} else {\n\t\treturn SetJSONCaseStyle(name, style, idUppercase)\n\t}\n}\n\nfunc SetCaseStyle(name string, style string) string {\n\tswitch style {\n\tcase \"camel\":\n\t\treturn toCamelCase(name)\n\tcase \"pascal\":\n\t\treturn toPascalCase(name)\n\tcase \"snake\":\n\t\treturn toSnakeCase(name)\n\tdefault:\n\t\tpanic(fmt.Sprintf(\"unsupported JSON tags case style: '%s'\", style))\n\t}\n}\n\nfunc SetJSONCaseStyle(name string, style string, idUppercase bool) string {\n\tswitch style {\n\tcase \"camel\":\n\t\treturn toJsonCamelCase(name, idUppercase)\n\tcase \"pascal\":\n\t\treturn toPascalCase(name)\n\tcase \"snake\":\n\t\treturn toSnakeCase(name)\n\tdefault:\n\t\tpanic(fmt.Sprintf(\"unsupported JSON tags case style: '%s'\", style))\n\t}\n}\n\nvar camelPattern = regexp.MustCompile(\"[^A-Z][A-Z]+\")\n\nfunc toSnakeCase(s string) string {\n\tif !strings.ContainsRune(s, '_') {\n\t\ts = camelPattern.ReplaceAllStringFunc(s, func(x string) string {\n\t\t\treturn x[:1] + \"_\" + x[1:]\n\t\t})\n\t}\n\treturn strings.ToLower(s)\n}\n\nfunc toCamelCase(s string) string {\n\treturn toCamelInitCase(s, false)\n}\n\nfunc toPascalCase(s string) string {\n\treturn toCamelInitCase(s, true)\n}\n\nfunc toCamelInitCase(name string, initUpper bool) string {\n\tout := \"\"\n\tfor i, p := range strings.Split(name, \"_\") {\n\t\tif !initUpper && i == 0 {\n\t\t\tout += p\n\t\t\tcontinue\n\t\t}\n\t\tif p == \"id\" {\n\t\t\tout += \"ID\"\n\t\t} else {\n\t\t\tout += strings.Title(p)\n\t\t}\n\t}\n\treturn out\n}\n\nfunc toJsonCamelCase(name string, idUppercase bool) string {\n\tout := \"\"\n\tidStr := \"Id\"\n\n\tif idUppercase {\n\t\tidStr = \"ID\"\n\t}\n\n\tfor i, p := range strings.Split(name, \"_\") {\n\t\tif i == 0 {\n\t\t\tout += p\n\t\t\tcontinue\n\t\t}\n\t\tif p == \"id\" {\n\t\t\tout += idStr\n\t\t} else {\n\t\t\tout += strings.Title(p)\n\t\t}\n\t}\n\treturn out\n}\n\nfunc toLowerCase(str string) string {\n\tif str == \"\" {\n\t\treturn \"\"\n\t}\n\n\treturn strings.ToLower(str[:1]) + str[1:]\n}\n"
  },
  {
    "path": "internal/codegen/golang/gen.go",
    "content": "package golang\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"go/format\"\n\t\"strings\"\n\t\"text/template\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/golang/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/sdk\"\n\t\"github.com/sqlc-dev/sqlc/internal/metadata\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\ntype tmplCtx struct {\n\tQ           string\n\tPackage     string\n\tSQLDriver   opts.SQLDriver\n\tEnums       []Enum\n\tStructs     []Struct\n\tGoQueries   []Query\n\tSqlcVersion string\n\n\t// TODO: Race conditions\n\tSourceName string\n\n\tEmitJSONTags              bool\n\tJsonTagsIDUppercase       bool\n\tEmitDBTags                bool\n\tEmitPreparedQueries       bool\n\tEmitInterface             bool\n\tEmitEmptySlices           bool\n\tEmitMethodsWithDBArgument bool\n\tEmitEnumValidMethod       bool\n\tEmitAllEnumValues         bool\n\tUsesCopyFrom              bool\n\tUsesBatch                 bool\n\tOmitSqlcVersion           bool\n\tBuildTags                 string\n\tWrapErrors                bool\n}\n\nfunc (t *tmplCtx) OutputQuery(sourceName string) bool {\n\treturn t.SourceName == sourceName\n}\n\nfunc (t *tmplCtx) codegenDbarg() string {\n\tif t.EmitMethodsWithDBArgument {\n\t\treturn \"db DBTX, \"\n\t}\n\treturn \"\"\n}\n\n// Called as a global method since subtemplate queryCodeStdExec does not have\n// access to the toplevel tmplCtx\nfunc (t *tmplCtx) codegenEmitPreparedQueries() bool {\n\treturn t.EmitPreparedQueries\n}\n\nfunc (t *tmplCtx) codegenQueryMethod(q Query) string {\n\tdb := \"q.db\"\n\tif t.EmitMethodsWithDBArgument {\n\t\tdb = \"db\"\n\t}\n\n\tswitch q.Cmd {\n\tcase \":one\":\n\t\tif t.EmitPreparedQueries {\n\t\t\treturn \"q.queryRow\"\n\t\t}\n\t\treturn db + \".QueryRowContext\"\n\n\tcase \":many\":\n\t\tif t.EmitPreparedQueries {\n\t\t\treturn \"q.query\"\n\t\t}\n\t\treturn db + \".QueryContext\"\n\n\tdefault:\n\t\tif t.EmitPreparedQueries {\n\t\t\treturn \"q.exec\"\n\t\t}\n\t\treturn db + \".ExecContext\"\n\t}\n}\n\nfunc (t *tmplCtx) codegenQueryRetval(q Query) (string, error) {\n\tswitch q.Cmd {\n\tcase \":one\":\n\t\treturn \"row :=\", nil\n\tcase \":many\":\n\t\treturn \"rows, err :=\", nil\n\tcase \":exec\":\n\t\treturn \"_, err :=\", nil\n\tcase \":execrows\", \":execlastid\":\n\t\treturn \"result, err :=\", nil\n\tcase \":execresult\":\n\t\tif t.WrapErrors {\n\t\t\treturn \"result, err :=\", nil\n\t\t}\n\t\treturn \"return\", nil\n\tdefault:\n\t\treturn \"\", fmt.Errorf(\"unhandled q.Cmd case %q\", q.Cmd)\n\t}\n}\n\nfunc Generate(ctx context.Context, req *plugin.GenerateRequest) (*plugin.GenerateResponse, error) {\n\toptions, err := opts.Parse(req)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tif err := opts.ValidateOpts(options); err != nil {\n\t\treturn nil, err\n\t}\n\n\tenums := buildEnums(req, options)\n\tstructs := buildStructs(req, options)\n\tqueries, err := buildQueries(req, options, structs)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tif options.OmitUnusedStructs {\n\t\tenums, structs = filterUnusedStructs(enums, structs, queries)\n\t}\n\n\tif err := validate(options, enums, structs, queries); err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn generate(req, options, enums, structs, queries)\n}\n\nfunc validate(options *opts.Options, enums []Enum, structs []Struct, queries []Query) error {\n\tenumNames := make(map[string]struct{})\n\tfor _, enum := range enums {\n\t\tenumNames[enum.Name] = struct{}{}\n\t\tenumNames[\"Null\"+enum.Name] = struct{}{}\n\t}\n\tstructNames := make(map[string]struct{})\n\tfor _, struckt := range structs {\n\t\tif _, ok := enumNames[struckt.Name]; ok {\n\t\t\treturn fmt.Errorf(\"struct name conflicts with enum name: %s\", struckt.Name)\n\t\t}\n\t\tstructNames[struckt.Name] = struct{}{}\n\t}\n\tif !options.EmitExportedQueries {\n\t\treturn nil\n\t}\n\tfor _, query := range queries {\n\t\tif _, ok := enumNames[query.ConstantName]; ok {\n\t\t\treturn fmt.Errorf(\"query constant name conflicts with enum name: %s\", query.ConstantName)\n\t\t}\n\t\tif _, ok := structNames[query.ConstantName]; ok {\n\t\t\treturn fmt.Errorf(\"query constant name conflicts with struct name: %s\", query.ConstantName)\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc generate(req *plugin.GenerateRequest, options *opts.Options, enums []Enum, structs []Struct, queries []Query) (*plugin.GenerateResponse, error) {\n\ti := &importer{\n\t\tOptions: options,\n\t\tQueries: queries,\n\t\tEnums:   enums,\n\t\tStructs: structs,\n\t}\n\n\ttctx := tmplCtx{\n\t\tEmitInterface:             options.EmitInterface,\n\t\tEmitJSONTags:              options.EmitJsonTags,\n\t\tJsonTagsIDUppercase:       options.JsonTagsIdUppercase,\n\t\tEmitDBTags:                options.EmitDbTags,\n\t\tEmitPreparedQueries:       options.EmitPreparedQueries,\n\t\tEmitEmptySlices:           options.EmitEmptySlices,\n\t\tEmitMethodsWithDBArgument: options.EmitMethodsWithDbArgument,\n\t\tEmitEnumValidMethod:       options.EmitEnumValidMethod,\n\t\tEmitAllEnumValues:         options.EmitAllEnumValues,\n\t\tUsesCopyFrom:              usesCopyFrom(queries),\n\t\tUsesBatch:                 usesBatch(queries),\n\t\tSQLDriver:                 parseDriver(options.SqlPackage),\n\t\tQ:                         \"`\",\n\t\tPackage:                   options.Package,\n\t\tEnums:                     enums,\n\t\tStructs:                   structs,\n\t\tSqlcVersion:               req.SqlcVersion,\n\t\tBuildTags:                 options.BuildTags,\n\t\tOmitSqlcVersion:           options.OmitSqlcVersion,\n\t\tWrapErrors:                options.WrapErrors,\n\t}\n\n\tif tctx.UsesCopyFrom && !tctx.SQLDriver.IsPGX() && options.SqlDriver != opts.SQLDriverGoSQLDriverMySQL {\n\t\treturn nil, errors.New(\":copyfrom is only supported by pgx and github.com/go-sql-driver/mysql\")\n\t}\n\n\tif tctx.UsesCopyFrom && options.SqlDriver == opts.SQLDriverGoSQLDriverMySQL {\n\t\tif err := checkNoTimesForMySQLCopyFrom(queries); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\ttctx.SQLDriver = opts.SQLDriverGoSQLDriverMySQL\n\t}\n\n\tif tctx.UsesBatch && !tctx.SQLDriver.IsPGX() {\n\t\treturn nil, errors.New(\":batch* commands are only supported by pgx\")\n\t}\n\n\tfuncMap := template.FuncMap{\n\t\t\"lowerTitle\": sdk.LowerTitle,\n\t\t\"comment\":    sdk.DoubleSlashComment,\n\t\t\"escape\":     sdk.EscapeBacktick,\n\t\t\"imports\":    i.Imports,\n\t\t\"hasImports\": i.HasImports,\n\t\t\"hasPrefix\":  strings.HasPrefix,\n\n\t\t// These methods are Go specific, they do not belong in the codegen package\n\t\t// (as that is language independent)\n\t\t\"dbarg\":               tctx.codegenDbarg,\n\t\t\"emitPreparedQueries\": tctx.codegenEmitPreparedQueries,\n\t\t\"queryMethod\":         tctx.codegenQueryMethod,\n\t\t\"queryRetval\":         tctx.codegenQueryRetval,\n\t}\n\n\ttmpl := template.Must(\n\t\ttemplate.New(\"table\").\n\t\t\tFuncs(funcMap).\n\t\t\tParseFS(\n\t\t\t\ttemplates,\n\t\t\t\t\"templates/*.tmpl\",\n\t\t\t\t\"templates/*/*.tmpl\",\n\t\t\t),\n\t)\n\n\toutput := map[string]string{}\n\n\texecute := func(name, templateName string) error {\n\t\timports := i.Imports(name)\n\t\treplacedQueries := replaceConflictedArg(imports, queries)\n\n\t\tvar b bytes.Buffer\n\t\tw := bufio.NewWriter(&b)\n\t\ttctx.SourceName = name\n\t\ttctx.GoQueries = replacedQueries\n\t\terr := tmpl.ExecuteTemplate(w, templateName, &tctx)\n\t\tw.Flush()\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tcode, err := format.Source(b.Bytes())\n\t\tif err != nil {\n\t\t\tfmt.Println(b.String())\n\t\t\treturn fmt.Errorf(\"source error: %w\", err)\n\t\t}\n\n\t\tif templateName == \"queryFile\" && options.OutputFilesSuffix != \"\" {\n\t\t\tname += options.OutputFilesSuffix\n\t\t}\n\n\t\tif !strings.HasSuffix(name, \".go\") {\n\t\t\tname += \".go\"\n\t\t}\n\t\toutput[name] = string(code)\n\t\treturn nil\n\t}\n\n\tdbFileName := \"db.go\"\n\tif options.OutputDbFileName != \"\" {\n\t\tdbFileName = options.OutputDbFileName\n\t}\n\tmodelsFileName := \"models.go\"\n\tif options.OutputModelsFileName != \"\" {\n\t\tmodelsFileName = options.OutputModelsFileName\n\t}\n\tquerierFileName := \"querier.go\"\n\tif options.OutputQuerierFileName != \"\" {\n\t\tquerierFileName = options.OutputQuerierFileName\n\t}\n\tcopyfromFileName := \"copyfrom.go\"\n\tif options.OutputCopyfromFileName != \"\" {\n\t\tcopyfromFileName = options.OutputCopyfromFileName\n\t}\n\n\tbatchFileName := \"batch.go\"\n\tif options.OutputBatchFileName != \"\" {\n\t\tbatchFileName = options.OutputBatchFileName\n\t}\n\n\tif err := execute(dbFileName, \"dbFile\"); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := execute(modelsFileName, \"modelsFile\"); err != nil {\n\t\treturn nil, err\n\t}\n\tif options.EmitInterface {\n\t\tif err := execute(querierFileName, \"interfaceFile\"); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tif tctx.UsesCopyFrom {\n\t\tif err := execute(copyfromFileName, \"copyfromFile\"); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tif tctx.UsesBatch {\n\t\tif err := execute(batchFileName, \"batchFile\"); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tfiles := map[string]struct{}{}\n\tfor _, gq := range queries {\n\t\tfiles[gq.SourceName] = struct{}{}\n\t}\n\n\tfor source := range files {\n\t\tif err := execute(source, \"queryFile\"); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\tresp := plugin.GenerateResponse{}\n\n\tfor filename, code := range output {\n\t\tresp.Files = append(resp.Files, &plugin.File{\n\t\t\tName:     filename,\n\t\t\tContents: []byte(code),\n\t\t})\n\t}\n\n\treturn &resp, nil\n}\n\nfunc usesCopyFrom(queries []Query) bool {\n\tfor _, q := range queries {\n\t\tif q.Cmd == metadata.CmdCopyFrom {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\nfunc usesBatch(queries []Query) bool {\n\tfor _, q := range queries {\n\t\tfor _, cmd := range []string{metadata.CmdBatchExec, metadata.CmdBatchMany, metadata.CmdBatchOne} {\n\t\t\tif q.Cmd == cmd {\n\t\t\t\treturn true\n\t\t\t}\n\t\t}\n\t}\n\treturn false\n}\n\nfunc checkNoTimesForMySQLCopyFrom(queries []Query) error {\n\tfor _, q := range queries {\n\t\tif q.Cmd != metadata.CmdCopyFrom {\n\t\t\tcontinue\n\t\t}\n\t\tfor _, f := range q.Arg.CopyFromMySQLFields() {\n\t\t\tif f.Type == \"time.Time\" {\n\t\t\t\treturn fmt.Errorf(\"values with a timezone are not yet supported\")\n\t\t\t}\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc filterUnusedStructs(enums []Enum, structs []Struct, queries []Query) ([]Enum, []Struct) {\n\tkeepTypes := make(map[string]struct{})\n\n\tfor _, query := range queries {\n\t\tif !query.Arg.isEmpty() {\n\t\t\tkeepTypes[query.Arg.Type()] = struct{}{}\n\t\t\tif query.Arg.IsStruct() {\n\t\t\t\tfor _, field := range query.Arg.Struct.Fields {\n\t\t\t\t\tkeepTypes[field.Type] = struct{}{}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif query.hasRetType() {\n\t\t\tkeepTypes[query.Ret.Type()] = struct{}{}\n\t\t\tif query.Ret.IsStruct() {\n\t\t\t\tfor _, field := range query.Ret.Struct.Fields {\n\t\t\t\t\tkeepTypes[strings.TrimPrefix(field.Type, \"[]\")] = struct{}{}\n\t\t\t\t\tfor _, embedField := range field.EmbedFields {\n\t\t\t\t\t\tkeepTypes[embedField.Type] = struct{}{}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tkeepEnums := make([]Enum, 0, len(enums))\n\tfor _, enum := range enums {\n\t\t_, keep := keepTypes[enum.Name]\n\t\t_, keepNull := keepTypes[\"Null\"+enum.Name]\n\t\tif keep || keepNull {\n\t\t\tkeepEnums = append(keepEnums, enum)\n\t\t}\n\t}\n\n\tkeepStructs := make([]Struct, 0, len(structs))\n\tfor _, st := range structs {\n\t\tif _, ok := keepTypes[st.Name]; ok {\n\t\t\tkeepStructs = append(keepStructs, st)\n\t\t}\n\t}\n\n\treturn keepEnums, keepStructs\n}\n"
  },
  {
    "path": "internal/codegen/golang/go_type.go",
    "content": "package golang\n\nimport (\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/golang/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/sdk\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\nfunc addExtraGoStructTags(tags map[string]string, req *plugin.GenerateRequest, options *opts.Options, col *plugin.Column) {\n\tfor _, override := range options.Overrides {\n\t\toride := override.ShimOverride\n\t\tif oride.GoType.StructTags == nil {\n\t\t\tcontinue\n\t\t}\n\t\tif override.MatchesColumn(col) {\n\t\t\tfor k, v := range oride.GoType.StructTags {\n\t\t\t\ttags[k] = v\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\tif !override.Matches(col.Table, req.Catalog.DefaultSchema) {\n\t\t\t// Different table.\n\t\t\tcontinue\n\t\t}\n\t\tcname := col.Name\n\t\tif col.OriginalName != \"\" {\n\t\t\tcname = col.OriginalName\n\t\t}\n\t\tif !sdk.MatchString(oride.ColumnName, cname) {\n\t\t\t// Different column.\n\t\t\tcontinue\n\t\t}\n\t\t// Add the extra tags.\n\t\tfor k, v := range oride.GoType.StructTags {\n\t\t\ttags[k] = v\n\t\t}\n\t}\n}\n\nfunc goType(req *plugin.GenerateRequest, options *opts.Options, col *plugin.Column) string {\n\t// Check if the column's type has been overridden\n\tfor _, override := range options.Overrides {\n\t\toride := override.ShimOverride\n\n\t\tif oride.GoType.TypeName == \"\" {\n\t\t\tcontinue\n\t\t}\n\t\tcname := col.Name\n\t\tif col.OriginalName != \"\" {\n\t\t\tcname = col.OriginalName\n\t\t}\n\t\tsameTable := override.Matches(col.Table, req.Catalog.DefaultSchema)\n\t\tif oride.Column != \"\" && sdk.MatchString(oride.ColumnName, cname) && sameTable {\n\t\t\tif col.IsSqlcSlice {\n\t\t\t\treturn \"[]\" + oride.GoType.TypeName\n\t\t\t}\n\t\t\treturn oride.GoType.TypeName\n\t\t}\n\t}\n\ttyp := goInnerType(req, options, col)\n\tif col.IsSqlcSlice {\n\t\treturn \"[]\" + typ\n\t}\n\tif col.IsArray {\n\t\treturn strings.Repeat(\"[]\", int(col.ArrayDims)) + typ\n\t}\n\treturn typ\n}\n\nfunc goInnerType(req *plugin.GenerateRequest, options *opts.Options, col *plugin.Column) string {\n\t// package overrides have a higher precedence\n\tfor _, override := range options.Overrides {\n\t\toride := override.ShimOverride\n\t\tif oride.GoType.TypeName == \"\" {\n\t\t\tcontinue\n\t\t}\n\t\tif override.MatchesColumn(col) {\n\t\t\treturn oride.GoType.TypeName\n\t\t}\n\t}\n\n\t// TODO: Extend the engine interface to handle types\n\tswitch req.Settings.Engine {\n\tcase \"mysql\":\n\t\treturn mysqlType(req, options, col)\n\tcase \"postgresql\":\n\t\treturn postgresType(req, options, col)\n\tcase \"sqlite\":\n\t\treturn sqliteType(req, options, col)\n\tdefault:\n\t\treturn \"interface{}\"\n\t}\n}\n"
  },
  {
    "path": "internal/codegen/golang/imports.go",
    "content": "package golang\n\nimport (\n\t\"fmt\"\n\t\"sort\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/golang/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/metadata\"\n)\n\ntype fileImports struct {\n\tStd []ImportSpec\n\tDep []ImportSpec\n}\n\ntype ImportSpec struct {\n\tID   string\n\tPath string\n}\n\nfunc (s ImportSpec) String() string {\n\tif s.ID != \"\" {\n\t\treturn fmt.Sprintf(\"%s %q\", s.ID, s.Path)\n\t} else {\n\t\treturn fmt.Sprintf(\"%q\", s.Path)\n\t}\n}\n\nfunc mergeImports(imps ...fileImports) [][]ImportSpec {\n\tif len(imps) == 1 {\n\t\treturn [][]ImportSpec{\n\t\t\timps[0].Std,\n\t\t\timps[0].Dep,\n\t\t}\n\t}\n\n\tvar stds, pkgs []ImportSpec\n\tseenStd := map[string]struct{}{}\n\tseenPkg := map[string]struct{}{}\n\tfor i := range imps {\n\t\tfor _, spec := range imps[i].Std {\n\t\t\tif _, ok := seenStd[spec.Path]; ok {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tstds = append(stds, spec)\n\t\t\tseenStd[spec.Path] = struct{}{}\n\t\t}\n\t\tfor _, spec := range imps[i].Dep {\n\t\t\tif _, ok := seenPkg[spec.Path]; ok {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tpkgs = append(pkgs, spec)\n\t\t\tseenPkg[spec.Path] = struct{}{}\n\t\t}\n\t}\n\treturn [][]ImportSpec{stds, pkgs}\n}\n\ntype importer struct {\n\tOptions *opts.Options\n\tQueries []Query\n\tEnums   []Enum\n\tStructs []Struct\n}\n\nfunc (i *importer) usesType(typ string) bool {\n\tfor _, strct := range i.Structs {\n\t\tfor _, f := range strct.Fields {\n\t\t\tif hasPrefixIgnoringSliceAndPointerPrefix(f.Type, typ) {\n\t\t\t\treturn true\n\t\t\t}\n\t\t}\n\t}\n\treturn false\n}\n\nfunc (i *importer) HasImports(filename string) bool {\n\timports := i.Imports(filename)\n\treturn len(imports[0]) != 0 || len(imports[1]) != 0\n}\n\nfunc (i *importer) Imports(filename string) [][]ImportSpec {\n\tdbFileName := \"db.go\"\n\tif i.Options.OutputDbFileName != \"\" {\n\t\tdbFileName = i.Options.OutputDbFileName\n\t}\n\tmodelsFileName := \"models.go\"\n\tif i.Options.OutputModelsFileName != \"\" {\n\t\tmodelsFileName = i.Options.OutputModelsFileName\n\t}\n\tquerierFileName := \"querier.go\"\n\tif i.Options.OutputQuerierFileName != \"\" {\n\t\tquerierFileName = i.Options.OutputQuerierFileName\n\t}\n\tcopyfromFileName := \"copyfrom.go\"\n\tif i.Options.OutputCopyfromFileName != \"\" {\n\t\tcopyfromFileName = i.Options.OutputCopyfromFileName\n\t}\n\tbatchFileName := \"batch.go\"\n\tif i.Options.OutputBatchFileName != \"\" {\n\t\tbatchFileName = i.Options.OutputBatchFileName\n\t}\n\n\tswitch filename {\n\tcase dbFileName:\n\t\treturn mergeImports(i.dbImports())\n\tcase modelsFileName:\n\t\treturn mergeImports(i.modelImports())\n\tcase querierFileName:\n\t\treturn mergeImports(i.interfaceImports())\n\tcase copyfromFileName:\n\t\treturn mergeImports(i.copyfromImports())\n\tcase batchFileName:\n\t\treturn mergeImports(i.batchImports())\n\tdefault:\n\t\treturn mergeImports(i.queryImports(filename))\n\t}\n}\n\nfunc (i *importer) dbImports() fileImports {\n\tvar pkg []ImportSpec\n\tstd := []ImportSpec{\n\t\t{Path: \"context\"},\n\t}\n\n\tsqlpkg := parseDriver(i.Options.SqlPackage)\n\tswitch sqlpkg {\n\tcase opts.SQLDriverPGXV4:\n\t\tpkg = append(pkg, ImportSpec{Path: \"github.com/jackc/pgconn\"})\n\t\tpkg = append(pkg, ImportSpec{Path: \"github.com/jackc/pgx/v4\"})\n\tcase opts.SQLDriverPGXV5:\n\t\tpkg = append(pkg, ImportSpec{Path: \"github.com/jackc/pgx/v5/pgconn\"})\n\t\tpkg = append(pkg, ImportSpec{Path: \"github.com/jackc/pgx/v5\"})\n\tdefault:\n\t\tstd = append(std, ImportSpec{Path: \"database/sql\"})\n\t\tif i.Options.EmitPreparedQueries {\n\t\t\tstd = append(std, ImportSpec{Path: \"fmt\"})\n\t\t}\n\t}\n\n\tsort.Slice(std, func(i, j int) bool { return std[i].Path < std[j].Path })\n\tsort.Slice(pkg, func(i, j int) bool { return pkg[i].Path < pkg[j].Path })\n\treturn fileImports{Std: std, Dep: pkg}\n}\n\nvar stdlibTypes = map[string]string{\n\t\"json.RawMessage\":  \"encoding/json\",\n\t\"time.Time\":        \"time\",\n\t\"net.IP\":           \"net\",\n\t\"net.HardwareAddr\": \"net\",\n\t\"netip.Addr\":       \"net/netip\",\n\t\"netip.Prefix\":     \"net/netip\",\n}\n\nvar pqtypeTypes = map[string]struct{}{\n\t\"pqtype.CIDR\":           {},\n\t\"pqtype.Inet\":           {},\n\t\"pqtype.Macaddr\":        {},\n\t\"pqtype.NullRawMessage\": {},\n}\n\nfunc buildImports(options *opts.Options, queries []Query, uses func(string) bool) (map[string]struct{}, map[ImportSpec]struct{}) {\n\tpkg := make(map[ImportSpec]struct{})\n\tstd := make(map[string]struct{})\n\n\tif uses(\"sql.Null\") {\n\t\tstd[\"database/sql\"] = struct{}{}\n\t}\n\n\tsqlpkg := parseDriver(options.SqlPackage)\n\tfor _, q := range queries {\n\t\tif q.Cmd == metadata.CmdExecResult {\n\t\t\tswitch sqlpkg {\n\t\t\tcase opts.SQLDriverPGXV4:\n\t\t\t\tpkg[ImportSpec{Path: \"github.com/jackc/pgconn\"}] = struct{}{}\n\t\t\tcase opts.SQLDriverPGXV5:\n\t\t\t\tpkg[ImportSpec{Path: \"github.com/jackc/pgx/v5/pgconn\"}] = struct{}{}\n\t\t\tdefault:\n\t\t\t\tstd[\"database/sql\"] = struct{}{}\n\t\t\t}\n\t\t}\n\t}\n\n\tfor typeName, pkg := range stdlibTypes {\n\t\tif uses(typeName) {\n\t\t\tstd[pkg] = struct{}{}\n\t\t}\n\t}\n\n\tif uses(\"pgtype.\") {\n\t\tif sqlpkg == opts.SQLDriverPGXV5 {\n\t\t\tpkg[ImportSpec{Path: \"github.com/jackc/pgx/v5/pgtype\"}] = struct{}{}\n\t\t} else {\n\t\t\tpkg[ImportSpec{Path: \"github.com/jackc/pgtype\"}] = struct{}{}\n\t\t}\n\t}\n\n\tfor typeName := range pqtypeTypes {\n\t\tif uses(typeName) {\n\t\t\tpkg[ImportSpec{Path: \"github.com/sqlc-dev/pqtype\"}] = struct{}{}\n\t\t\tbreak\n\t\t}\n\t}\n\n\toverrideTypes := map[string]string{}\n\tfor _, override := range options.Overrides {\n\t\to := override.ShimOverride\n\t\tif o.GoType.BasicType || o.GoType.TypeName == \"\" {\n\t\t\tcontinue\n\t\t}\n\t\toverrideTypes[o.GoType.TypeName] = o.GoType.ImportPath\n\t}\n\n\t_, overrideNullTime := overrideTypes[\"pq.NullTime\"]\n\tif uses(\"pq.NullTime\") && !overrideNullTime {\n\t\tpkg[ImportSpec{Path: \"github.com/lib/pq\"}] = struct{}{}\n\t}\n\t_, overrideUUID := overrideTypes[\"uuid.UUID\"]\n\tif uses(\"uuid.UUID\") && !overrideUUID {\n\t\tpkg[ImportSpec{Path: \"github.com/google/uuid\"}] = struct{}{}\n\t}\n\t_, overrideNullUUID := overrideTypes[\"uuid.NullUUID\"]\n\tif uses(\"uuid.NullUUID\") && !overrideNullUUID {\n\t\tpkg[ImportSpec{Path: \"github.com/google/uuid\"}] = struct{}{}\n\t}\n\t_, overrideVector := overrideTypes[\"pgvector.Vector\"]\n\tif uses(\"pgvector.Vector\") && !overrideVector {\n\t\tpkg[ImportSpec{Path: \"github.com/pgvector/pgvector-go\"}] = struct{}{}\n\t}\n\n\t// Custom imports\n\tfor _, override := range options.Overrides {\n\t\to := override.ShimOverride\n\n\t\tif o.GoType.BasicType || o.GoType.TypeName == \"\" {\n\t\t\tcontinue\n\t\t}\n\t\t_, alreadyImported := std[o.GoType.ImportPath]\n\t\thasPackageAlias := o.GoType.Package != \"\"\n\t\tif (!alreadyImported || hasPackageAlias) && uses(o.GoType.TypeName) {\n\t\t\tpkg[ImportSpec{Path: o.GoType.ImportPath, ID: o.GoType.Package}] = struct{}{}\n\t\t}\n\t}\n\n\treturn std, pkg\n}\n\nfunc (i *importer) interfaceImports() fileImports {\n\tstd, pkg := buildImports(i.Options, i.Queries, func(name string) bool {\n\t\tfor _, q := range i.Queries {\n\t\t\tif q.hasRetType() {\n\t\t\t\tif usesBatch([]Query{q}) {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif hasPrefixIgnoringSliceAndPointerPrefix(q.Ret.Type(), name) {\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\t\t\tfor _, f := range q.Arg.Pairs() {\n\t\t\t\tif hasPrefixIgnoringSliceAndPointerPrefix(f.Type, name) {\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn false\n\t})\n\n\tstd[\"context\"] = struct{}{}\n\n\treturn sortedImports(std, pkg)\n}\n\nfunc (i *importer) modelImports() fileImports {\n\tstd, pkg := buildImports(i.Options, nil, i.usesType)\n\n\tif len(i.Enums) > 0 {\n\t\tstd[\"fmt\"] = struct{}{}\n\t\tstd[\"database/sql/driver\"] = struct{}{}\n\t}\n\n\treturn sortedImports(std, pkg)\n}\n\nfunc sortedImports(std map[string]struct{}, pkg map[ImportSpec]struct{}) fileImports {\n\tpkgs := make([]ImportSpec, 0, len(pkg))\n\tfor spec := range pkg {\n\t\tpkgs = append(pkgs, spec)\n\t}\n\tstds := make([]ImportSpec, 0, len(std))\n\tfor path := range std {\n\t\tstds = append(stds, ImportSpec{Path: path})\n\t}\n\tsort.Slice(stds, func(i, j int) bool { return stds[i].Path < stds[j].Path })\n\tsort.Slice(pkgs, func(i, j int) bool { return pkgs[i].Path < pkgs[j].Path })\n\treturn fileImports{stds, pkgs}\n}\n\nfunc (i *importer) queryImports(filename string) fileImports {\n\tvar gq []Query\n\tanyNonCopyFrom := false\n\tfor _, query := range i.Queries {\n\t\tif usesBatch([]Query{query}) {\n\t\t\tcontinue\n\t\t}\n\t\tif query.SourceName == filename {\n\t\t\tgq = append(gq, query)\n\t\t\tif query.Cmd != metadata.CmdCopyFrom {\n\t\t\t\tanyNonCopyFrom = true\n\t\t\t}\n\t\t}\n\t}\n\n\tstd, pkg := buildImports(i.Options, gq, func(name string) bool {\n\t\tfor _, q := range gq {\n\t\t\tif q.hasRetType() {\n\t\t\t\tif q.Ret.EmitStruct() {\n\t\t\t\t\tfor _, f := range q.Ret.Struct.Fields {\n\t\t\t\t\t\tif hasPrefixIgnoringSliceAndPointerPrefix(f.Type, name) {\n\t\t\t\t\t\t\treturn true\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif hasPrefixIgnoringSliceAndPointerPrefix(q.Ret.Type(), name) {\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\t\t\t// Check the fields of the argument struct if it's emitted\n\t\t\tif q.Arg.EmitStruct() {\n\t\t\t\tfor _, f := range q.Arg.Struct.Fields {\n\t\t\t\t\tif hasPrefixIgnoringSliceAndPointerPrefix(f.Type, name) {\n\t\t\t\t\t\treturn true\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t// Check the argument pairs inside the method definition\n\t\t\tfor _, f := range q.Arg.Pairs() {\n\t\t\t\tif hasPrefixIgnoringSliceAndPointerPrefix(f.Type, name) {\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn false\n\t})\n\n\tsliceScan := func() bool {\n\t\tfor _, q := range gq {\n\t\t\tif q.hasRetType() {\n\t\t\t\tif q.Ret.IsStruct() {\n\t\t\t\t\tfor _, f := range q.Ret.Struct.Fields {\n\t\t\t\t\t\tif strings.HasPrefix(f.Type, \"[]\") && f.Type != \"[]byte\" {\n\t\t\t\t\t\t\treturn true\n\t\t\t\t\t\t}\n\t\t\t\t\t\tfor _, embed := range f.EmbedFields {\n\t\t\t\t\t\t\tif strings.HasPrefix(embed.Type, \"[]\") && embed.Type != \"[]byte\" {\n\t\t\t\t\t\t\t\treturn true\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tif strings.HasPrefix(q.Ret.Type(), \"[]\") && q.Ret.Type() != \"[]byte\" {\n\t\t\t\t\t\treturn true\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif !q.Arg.isEmpty() {\n\t\t\t\tif q.Arg.IsStruct() {\n\t\t\t\t\tfor _, f := range q.Arg.Struct.Fields {\n\t\t\t\t\t\tif strings.HasPrefix(f.Type, \"[]\") && f.Type != \"[]byte\" && !f.HasSqlcSlice() {\n\t\t\t\t\t\t\treturn true\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tif strings.HasPrefix(q.Arg.Type(), \"[]\") && q.Arg.Type() != \"[]byte\" && !q.Arg.HasSqlcSlices() {\n\t\t\t\t\t\treturn true\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn false\n\t}\n\n\t// Search for sqlc.slice() calls\n\tsqlcSliceScan := func() bool {\n\t\tfor _, q := range gq {\n\t\t\tif q.Arg.HasSqlcSlices() {\n\t\t\t\treturn true\n\t\t\t}\n\t\t}\n\t\treturn false\n\t}\n\n\tif anyNonCopyFrom {\n\t\tstd[\"context\"] = struct{}{}\n\t}\n\n\tsqlpkg := parseDriver(i.Options.SqlPackage)\n\tif sqlcSliceScan() && !sqlpkg.IsPGX() {\n\t\tstd[\"strings\"] = struct{}{}\n\t}\n\tif sliceScan() && !sqlpkg.IsPGX() {\n\t\tpkg[ImportSpec{Path: \"github.com/lib/pq\"}] = struct{}{}\n\t}\n\n\tif i.Options.WrapErrors {\n\t\tstd[\"fmt\"] = struct{}{}\n\t}\n\n\treturn sortedImports(std, pkg)\n}\n\nfunc (i *importer) copyfromImports() fileImports {\n\tcopyFromQueries := make([]Query, 0, len(i.Queries))\n\tfor _, q := range i.Queries {\n\t\tif q.Cmd == metadata.CmdCopyFrom {\n\t\t\tcopyFromQueries = append(copyFromQueries, q)\n\t\t}\n\t}\n\tstd, pkg := buildImports(i.Options, copyFromQueries, func(name string) bool {\n\t\tfor _, q := range copyFromQueries {\n\t\t\tif q.hasRetType() {\n\t\t\t\tif strings.HasPrefix(q.Ret.Type(), name) {\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\t\t\tif !q.Arg.isEmpty() {\n\t\t\t\tif strings.HasPrefix(q.Arg.Type(), name) {\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn false\n\t})\n\n\tstd[\"context\"] = struct{}{}\n\tif i.Options.SqlDriver == opts.SQLDriverGoSQLDriverMySQL {\n\t\tstd[\"io\"] = struct{}{}\n\t\tstd[\"fmt\"] = struct{}{}\n\t\tstd[\"sync/atomic\"] = struct{}{}\n\t\tpkg[ImportSpec{Path: \"github.com/go-sql-driver/mysql\"}] = struct{}{}\n\t\tpkg[ImportSpec{Path: \"github.com/hexon/mysqltsv\"}] = struct{}{}\n\t}\n\n\treturn sortedImports(std, pkg)\n}\n\nfunc (i *importer) batchImports() fileImports {\n\tbatchQueries := make([]Query, 0, len(i.Queries))\n\tfor _, q := range i.Queries {\n\t\tif usesBatch([]Query{q}) {\n\t\t\tbatchQueries = append(batchQueries, q)\n\t\t}\n\t}\n\tstd, pkg := buildImports(i.Options, batchQueries, func(name string) bool {\n\t\tfor _, q := range batchQueries {\n\t\t\tif q.hasRetType() {\n\t\t\t\tif q.Ret.EmitStruct() {\n\t\t\t\t\tfor _, f := range q.Ret.Struct.Fields {\n\t\t\t\t\t\tif hasPrefixIgnoringSliceAndPointerPrefix(f.Type, name) {\n\t\t\t\t\t\t\treturn true\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif hasPrefixIgnoringSliceAndPointerPrefix(q.Ret.Type(), name) {\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\t\t\tif q.Arg.EmitStruct() {\n\t\t\t\tfor _, f := range q.Arg.Struct.Fields {\n\t\t\t\t\tif hasPrefixIgnoringSliceAndPointerPrefix(f.Type, name) {\n\t\t\t\t\t\treturn true\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tfor _, f := range q.Arg.Pairs() {\n\t\t\t\tif hasPrefixIgnoringSliceAndPointerPrefix(f.Type, name) {\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn false\n\t})\n\n\tstd[\"context\"] = struct{}{}\n\tstd[\"errors\"] = struct{}{}\n\tsqlpkg := parseDriver(i.Options.SqlPackage)\n\tswitch sqlpkg {\n\tcase opts.SQLDriverPGXV4:\n\t\tpkg[ImportSpec{Path: \"github.com/jackc/pgx/v4\"}] = struct{}{}\n\tcase opts.SQLDriverPGXV5:\n\t\tpkg[ImportSpec{Path: \"github.com/jackc/pgx/v5\"}] = struct{}{}\n\t}\n\n\treturn sortedImports(std, pkg)\n}\n\nfunc trimSliceAndPointerPrefix(v string) string {\n\tv = strings.TrimPrefix(v, \"[]\")\n\tv = strings.TrimPrefix(v, \"*\")\n\treturn v\n}\n\nfunc hasPrefixIgnoringSliceAndPointerPrefix(s, prefix string) bool {\n\ttrimmedS := trimSliceAndPointerPrefix(s)\n\ttrimmedPrefix := trimSliceAndPointerPrefix(prefix)\n\treturn strings.HasPrefix(trimmedS, trimmedPrefix)\n}\n\nfunc replaceConflictedArg(imports [][]ImportSpec, queries []Query) []Query {\n\tm := make(map[string]struct{})\n\tfor _, is := range imports {\n\t\tfor _, i := range is {\n\t\t\tpaths := strings.Split(i.Path, \"/\")\n\t\t\tm[paths[len(paths)-1]] = struct{}{}\n\t\t}\n\t}\n\n\treplacedQueries := make([]Query, 0, len(queries))\n\tfor _, query := range queries {\n\t\tif _, exist := m[query.Arg.Name]; exist {\n\t\t\tquery.Arg.Name = toCamelCase(fmt.Sprintf(\"arg_%s\", query.Arg.Name))\n\t\t}\n\t\treplacedQueries = append(replacedQueries, query)\n\t}\n\treturn replacedQueries\n}\n"
  },
  {
    "path": "internal/codegen/golang/mysql_type.go",
    "content": "package golang\n\nimport (\n\t\"log\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/golang/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/sdk\"\n\t\"github.com/sqlc-dev/sqlc/internal/debug\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\nfunc mysqlType(req *plugin.GenerateRequest, options *opts.Options, col *plugin.Column) string {\n\tcolumnType := sdk.DataType(col.Type)\n\tnotNull := col.NotNull || col.IsArray\n\tunsigned := col.Unsigned\n\n\tswitch columnType {\n\n\tcase \"varchar\", \"text\", \"char\", \"tinytext\", \"mediumtext\", \"longtext\":\n\t\tif notNull {\n\t\t\treturn \"string\"\n\t\t}\n\t\treturn \"sql.NullString\"\n\n\tcase \"tinyint\":\n\t\tif col.Length == 1 {\n\t\t\tif notNull {\n\t\t\t\treturn \"bool\"\n\t\t\t}\n\t\t\treturn \"sql.NullBool\"\n\t\t} else {\n\t\t\tif notNull {\n\t\t\t\tif unsigned {\n\t\t\t\t\treturn \"uint8\"\n\t\t\t\t}\n\t\t\t\treturn \"int8\"\n\t\t\t}\n\t\t\t// The database/sql package does not have a sql.NullInt8 type, so we\n\t\t\t// use the smallest type they have which is NullInt16\n\t\t\treturn \"sql.NullInt16\"\n\t\t}\n\n\tcase \"year\":\n\t\tif notNull {\n\t\t\treturn \"int16\"\n\t\t}\n\t\treturn \"sql.NullInt16\"\n\n\tcase \"smallint\":\n\t\tif notNull {\n\t\t\tif unsigned {\n\t\t\t\treturn \"uint16\"\n\t\t\t}\n\t\t\treturn \"int16\"\n\t\t}\n\t\treturn \"sql.NullInt16\"\n\n\tcase \"int\", \"integer\", \"mediumint\":\n\t\tif notNull {\n\t\t\tif unsigned {\n\t\t\t\treturn \"uint32\"\n\t\t\t}\n\t\t\treturn \"int32\"\n\t\t}\n\t\treturn \"sql.NullInt32\"\n\n\tcase \"bigint\", \"bigint unsigned\", \"bigint signed\":\n\t\t// \"bigint unsigned\" and \"bigint signed\" are MySQL CAST types\n\t\t// Note: We use int64 for CAST AS UNSIGNED to match original behavior,\n\t\t// even though uint64 would be more semantically correct.\n\t\t// The Unsigned flag on columns (from table schema) still uses uint64.\n\t\tif notNull {\n\t\t\tif unsigned {\n\t\t\t\treturn \"uint64\"\n\t\t\t}\n\t\t\treturn \"int64\"\n\t\t}\n\t\treturn \"sql.NullInt64\"\n\n\tcase \"blob\", \"binary\", \"varbinary\", \"tinyblob\", \"mediumblob\", \"longblob\":\n\t\tif notNull {\n\t\t\treturn \"[]byte\"\n\t\t}\n\t\treturn \"sql.NullString\"\n\n\tcase \"double\", \"double precision\", \"real\", \"float\":\n\t\tif notNull {\n\t\t\treturn \"float64\"\n\t\t}\n\t\treturn \"sql.NullFloat64\"\n\n\tcase \"decimal\", \"dec\", \"fixed\":\n\t\tif notNull {\n\t\t\treturn \"string\"\n\t\t}\n\t\treturn \"sql.NullString\"\n\n\tcase \"enum\":\n\t\t// TODO: Proper Enum support\n\t\treturn \"string\"\n\n\tcase \"date\", \"timestamp\", \"datetime\", \"time\":\n\t\tif notNull {\n\t\t\treturn \"time.Time\"\n\t\t}\n\t\treturn \"sql.NullTime\"\n\n\tcase \"boolean\", \"bool\":\n\t\tif notNull {\n\t\t\treturn \"bool\"\n\t\t}\n\t\treturn \"sql.NullBool\"\n\n\tcase \"json\":\n\t\treturn \"json.RawMessage\"\n\n\tcase \"any\":\n\t\treturn \"interface{}\"\n\n\tdefault:\n\t\tfor _, schema := range req.Catalog.Schemas {\n\t\t\tfor _, enum := range schema.Enums {\n\t\t\t\tif enum.Name == columnType {\n\t\t\t\t\tif notNull {\n\t\t\t\t\t\tif schema.Name == req.Catalog.DefaultSchema {\n\t\t\t\t\t\t\treturn StructName(enum.Name, options)\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn StructName(schema.Name+\"_\"+enum.Name, options)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif schema.Name == req.Catalog.DefaultSchema {\n\t\t\t\t\t\t\treturn \"Null\" + StructName(enum.Name, options)\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn \"Null\" + StructName(schema.Name+\"_\"+enum.Name, options)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif debug.Active {\n\t\t\tlog.Printf(\"Unknown MySQL type: %s\\n\", columnType)\n\t\t}\n\t\treturn \"interface{}\"\n\n\t}\n}\n"
  },
  {
    "path": "internal/codegen/golang/opts/enum.go",
    "content": "package opts\n\nimport \"fmt\"\n\ntype SQLDriver string\n\nconst (\n\tSQLPackagePGXV4    string = \"pgx/v4\"\n\tSQLPackagePGXV5    string = \"pgx/v5\"\n\tSQLPackageStandard string = \"database/sql\"\n)\n\nvar validPackages = map[string]struct{}{\n\tstring(SQLPackagePGXV4):    {},\n\tstring(SQLPackagePGXV5):    {},\n\tstring(SQLPackageStandard): {},\n}\n\nfunc validatePackage(sqlPackage string) error {\n\tif _, found := validPackages[sqlPackage]; !found {\n\t\treturn fmt.Errorf(\"unknown SQL package: %s\", sqlPackage)\n\t}\n\treturn nil\n}\n\nconst (\n\tSQLDriverPGXV4            SQLDriver = \"github.com/jackc/pgx/v4\"\n\tSQLDriverPGXV5                      = \"github.com/jackc/pgx/v5\"\n\tSQLDriverLibPQ                      = \"github.com/lib/pq\"\n\tSQLDriverGoSQLDriverMySQL           = \"github.com/go-sql-driver/mysql\"\n)\n\nvar validDrivers = map[string]struct{}{\n\tstring(SQLDriverPGXV4):            {},\n\tstring(SQLDriverPGXV5):            {},\n\tstring(SQLDriverLibPQ):            {},\n\tstring(SQLDriverGoSQLDriverMySQL): {},\n}\n\nfunc validateDriver(sqlDriver string) error {\n\tif _, found := validDrivers[sqlDriver]; !found {\n\t\treturn fmt.Errorf(\"unknown SQL driver: %s\", sqlDriver)\n\t}\n\treturn nil\n}\n\nfunc (d SQLDriver) IsPGX() bool {\n\treturn d == SQLDriverPGXV4 || d == SQLDriverPGXV5\n}\n\nfunc (d SQLDriver) IsGoSQLDriverMySQL() bool {\n\treturn d == SQLDriverGoSQLDriverMySQL\n}\n\nfunc (d SQLDriver) Package() string {\n\tswitch d {\n\tcase SQLDriverPGXV4:\n\t\treturn SQLPackagePGXV4\n\tcase SQLDriverPGXV5:\n\t\treturn SQLPackagePGXV5\n\tdefault:\n\t\treturn SQLPackageStandard\n\t}\n}\n"
  },
  {
    "path": "internal/codegen/golang/opts/go_type.go",
    "content": "package opts\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"go/types\"\n\t\"regexp\"\n\t\"strings\"\n\n\t\"github.com/fatih/structtag\"\n)\n\ntype GoType struct {\n\tPath    string `json:\"import\" yaml:\"import\"`\n\tPackage string `json:\"package\" yaml:\"package\"`\n\tName    string `json:\"type\" yaml:\"type\"`\n\tPointer bool   `json:\"pointer\" yaml:\"pointer\"`\n\tSlice   bool   `json:\"slice\" yaml:\"slice\"`\n\tSpec    string `json:\"-\"`\n\tBuiltIn bool   `json:\"-\"`\n}\n\ntype ParsedGoType struct {\n\tImportPath string\n\tPackage    string\n\tTypeName   string\n\tBasicType  bool\n\tStructTag  string\n}\n\nfunc (o *GoType) MarshalJSON() ([]byte, error) {\n\tif o.Spec != \"\" {\n\t\treturn json.Marshal(o.Spec)\n\t}\n\ttype alias GoType\n\treturn json.Marshal(alias(*o))\n}\n\nfunc (o *GoType) UnmarshalJSON(data []byte) error {\n\tvar spec string\n\tif err := json.Unmarshal(data, &spec); err == nil {\n\t\t*o = GoType{Spec: spec}\n\t\treturn nil\n\t}\n\ttype alias GoType\n\tvar a alias\n\tif err := json.Unmarshal(data, &a); err != nil {\n\t\treturn err\n\t}\n\t*o = GoType(a)\n\treturn nil\n}\n\nfunc (o *GoType) UnmarshalYAML(unmarshal func(interface{}) error) error {\n\tvar spec string\n\tif err := unmarshal(&spec); err == nil {\n\t\t*o = GoType{Spec: spec}\n\t\treturn nil\n\t}\n\ttype alias GoType\n\tvar a alias\n\tif err := unmarshal(&a); err != nil {\n\t\treturn err\n\t}\n\t*o = GoType(a)\n\treturn nil\n}\n\nvar validIdentifier = regexp.MustCompile(`^[a-zA-Z0-9_]+$`)\nvar versionNumber = regexp.MustCompile(`^v[0-9]+$`)\nvar invalidIdentifier = regexp.MustCompile(`[^a-zA-Z0-9_]`)\n\nfunc generatePackageID(importPath string) (string, bool) {\n\tparts := strings.Split(importPath, \"/\")\n\tname := parts[len(parts)-1]\n\t// If the last part of the import path is a valid identifier, assume that's the package name\n\tif versionNumber.MatchString(name) && len(parts) >= 2 {\n\t\tname = parts[len(parts)-2]\n\t\treturn invalidIdentifier.ReplaceAllString(strings.ToLower(name), \"_\"), true\n\t}\n\tif validIdentifier.MatchString(name) {\n\t\treturn name, false\n\t}\n\treturn invalidIdentifier.ReplaceAllString(strings.ToLower(name), \"_\"), true\n}\n\n// validate GoType\nfunc (gt GoType) parse() (*ParsedGoType, error) {\n\tvar o ParsedGoType\n\n\tif gt.Spec == \"\" {\n\t\t// TODO: Validation\n\t\tif gt.Path == \"\" && gt.Package != \"\" {\n\t\t\treturn nil, fmt.Errorf(\"Package override `go_type`: package name requires an import path\")\n\t\t}\n\t\tvar pkg string\n\t\tvar pkgNeedsAlias bool\n\n\t\tif gt.Package == \"\" && gt.Path != \"\" {\n\t\t\tpkg, pkgNeedsAlias = generatePackageID(gt.Path)\n\t\t\tif pkgNeedsAlias {\n\t\t\t\to.Package = pkg\n\t\t\t}\n\t\t} else {\n\t\t\tpkg = gt.Package\n\t\t\to.Package = gt.Package\n\t\t}\n\n\t\to.ImportPath = gt.Path\n\t\to.TypeName = gt.Name\n\t\to.BasicType = gt.Path == \"\" && gt.Package == \"\"\n\t\tif pkg != \"\" {\n\t\t\to.TypeName = pkg + \".\" + o.TypeName\n\t\t}\n\t\tif gt.Pointer {\n\t\t\to.TypeName = \"*\" + o.TypeName\n\t\t}\n\t\tif gt.Slice {\n\t\t\to.TypeName = \"[]\" + o.TypeName\n\t\t}\n\t\treturn &o, nil\n\t}\n\n\tinput := gt.Spec\n\tlastDot := strings.LastIndex(input, \".\")\n\tlastSlash := strings.LastIndex(input, \"/\")\n\ttypename := input\n\tif lastDot == -1 && lastSlash == -1 {\n\t\t// if the type name has no slash and no dot, validate that the type is a basic Go type\n\t\tvar found bool\n\t\tfor _, typ := range types.Typ {\n\t\t\tinfo := typ.Info()\n\t\t\tif info == 0 {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif info&types.IsUntyped != 0 {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif typename == typ.Name() {\n\t\t\t\tfound = true\n\t\t\t}\n\t\t}\n\t\tif !found {\n\t\t\treturn nil, fmt.Errorf(\"Package override `go_type` specifier %q is not a Go basic type e.g. 'string'\", input)\n\t\t}\n\t\to.BasicType = true\n\t} else {\n\t\t// assume the type lives in a Go package\n\t\tif lastDot == -1 {\n\t\t\treturn nil, fmt.Errorf(\"Package override `go_type` specifier %q is not the proper format, expected 'package.type', e.g. 'github.com/segmentio/ksuid.KSUID'\", input)\n\t\t}\n\t\ttypename = input[lastSlash+1:]\n\t\t// a package name beginning with \"go-\" will give syntax errors in\n\t\t// generated code. We should do the right thing and get the actual\n\t\t// import name, but in lieu of that, stripping the leading \"go-\" may get\n\t\t// us what we want.\n\t\ttypename = strings.TrimPrefix(typename, \"go-\")\n\t\ttypename = strings.TrimSuffix(typename, \"-go\")\n\t\to.ImportPath = input[:lastDot]\n\t}\n\to.TypeName = typename\n\tisPointer := input[0] == '*'\n\tif isPointer {\n\t\to.ImportPath = o.ImportPath[1:]\n\t\to.TypeName = \"*\" + o.TypeName\n\t}\n\treturn &o, nil\n}\n\n// GoStructTag is a raw Go struct tag.\ntype GoStructTag string\n\n// Parse parses and validates a GoStructTag.\n// The output is in a form convenient for codegen.\n//\n// Sample valid inputs/outputs:\n//\n// In                    Out\n// empty string      {}\n// `a:\"b\"`           {\"a\": \"b\"}\n// `a:\"b\" x:\"y,z\"`   {\"a\": \"b\", \"x\": \"y,z\"}\nfunc (s GoStructTag) parse() (map[string]string, error) {\n\tm := make(map[string]string)\n\ttags, err := structtag.Parse(string(s))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tfor _, tag := range tags.Tags() {\n\t\tm[tag.Key] = tag.Value()\n\t}\n\treturn m, nil\n}\n"
  },
  {
    "path": "internal/codegen/golang/opts/options.go",
    "content": "package opts\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"maps\"\n\t\"path/filepath\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\ntype Options struct {\n\tEmitInterface               bool              `json:\"emit_interface\" yaml:\"emit_interface\"`\n\tEmitJsonTags                bool              `json:\"emit_json_tags\" yaml:\"emit_json_tags\"`\n\tJsonTagsIdUppercase         bool              `json:\"json_tags_id_uppercase\" yaml:\"json_tags_id_uppercase\"`\n\tEmitDbTags                  bool              `json:\"emit_db_tags\" yaml:\"emit_db_tags\"`\n\tEmitPreparedQueries         bool              `json:\"emit_prepared_queries\" yaml:\"emit_prepared_queries\"`\n\tEmitExactTableNames         bool              `json:\"emit_exact_table_names,omitempty\" yaml:\"emit_exact_table_names\"`\n\tEmitEmptySlices             bool              `json:\"emit_empty_slices,omitempty\" yaml:\"emit_empty_slices\"`\n\tEmitExportedQueries         bool              `json:\"emit_exported_queries\" yaml:\"emit_exported_queries\"`\n\tEmitResultStructPointers    bool              `json:\"emit_result_struct_pointers\" yaml:\"emit_result_struct_pointers\"`\n\tEmitParamsStructPointers    bool              `json:\"emit_params_struct_pointers\" yaml:\"emit_params_struct_pointers\"`\n\tEmitMethodsWithDbArgument   bool              `json:\"emit_methods_with_db_argument,omitempty\" yaml:\"emit_methods_with_db_argument\"`\n\tEmitPointersForNullTypes    bool              `json:\"emit_pointers_for_null_types\" yaml:\"emit_pointers_for_null_types\"`\n\tEmitEnumValidMethod         bool              `json:\"emit_enum_valid_method,omitempty\" yaml:\"emit_enum_valid_method\"`\n\tEmitAllEnumValues           bool              `json:\"emit_all_enum_values,omitempty\" yaml:\"emit_all_enum_values\"`\n\tEmitSqlAsComment            bool              `json:\"emit_sql_as_comment,omitempty\" yaml:\"emit_sql_as_comment\"`\n\tJsonTagsCaseStyle           string            `json:\"json_tags_case_style,omitempty\" yaml:\"json_tags_case_style\"`\n\tPackage                     string            `json:\"package\" yaml:\"package\"`\n\tOut                         string            `json:\"out\" yaml:\"out\"`\n\tOverrides                   []Override        `json:\"overrides,omitempty\" yaml:\"overrides\"`\n\tRename                      map[string]string `json:\"rename,omitempty\" yaml:\"rename\"`\n\tSqlPackage                  string            `json:\"sql_package\" yaml:\"sql_package\"`\n\tSqlDriver                   string            `json:\"sql_driver\" yaml:\"sql_driver\"`\n\tOutputBatchFileName         string            `json:\"output_batch_file_name,omitempty\" yaml:\"output_batch_file_name\"`\n\tOutputDbFileName            string            `json:\"output_db_file_name,omitempty\" yaml:\"output_db_file_name\"`\n\tOutputModelsFileName        string            `json:\"output_models_file_name,omitempty\" yaml:\"output_models_file_name\"`\n\tOutputQuerierFileName       string            `json:\"output_querier_file_name,omitempty\" yaml:\"output_querier_file_name\"`\n\tOutputCopyfromFileName      string            `json:\"output_copyfrom_file_name,omitempty\" yaml:\"output_copyfrom_file_name\"`\n\tOutputFilesSuffix           string            `json:\"output_files_suffix,omitempty\" yaml:\"output_files_suffix\"`\n\tInflectionExcludeTableNames []string          `json:\"inflection_exclude_table_names,omitempty\" yaml:\"inflection_exclude_table_names\"`\n\tWrapErrors                  bool              `json:\"wrap_errors,omitempty\" yaml:\"wrap_errors\"`\n\tQueryParameterLimit         *int32            `json:\"query_parameter_limit,omitempty\" yaml:\"query_parameter_limit\"`\n\tOmitSqlcVersion             bool              `json:\"omit_sqlc_version,omitempty\" yaml:\"omit_sqlc_version\"`\n\tOmitUnusedStructs           bool              `json:\"omit_unused_structs,omitempty\" yaml:\"omit_unused_structs\"`\n\tBuildTags                   string            `json:\"build_tags,omitempty\" yaml:\"build_tags\"`\n\tInitialisms                 *[]string         `json:\"initialisms,omitempty\" yaml:\"initialisms\"`\n\n\tInitialismsMap map[string]struct{} `json:\"-\" yaml:\"-\"`\n}\n\ntype GlobalOptions struct {\n\tOverrides []Override        `json:\"overrides,omitempty\" yaml:\"overrides\"`\n\tRename    map[string]string `json:\"rename,omitempty\" yaml:\"rename\"`\n}\n\nfunc Parse(req *plugin.GenerateRequest) (*Options, error) {\n\toptions, err := parseOpts(req)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tglobal, err := parseGlobalOpts(req)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif len(global.Overrides) > 0 {\n\t\toptions.Overrides = append(global.Overrides, options.Overrides...)\n\t}\n\tif len(global.Rename) > 0 {\n\t\tif options.Rename == nil {\n\t\t\toptions.Rename = map[string]string{}\n\t\t}\n\t\tmaps.Copy(options.Rename, global.Rename)\n\t}\n\treturn options, nil\n}\n\nfunc parseOpts(req *plugin.GenerateRequest) (*Options, error) {\n\tvar options Options\n\tif len(req.PluginOptions) == 0 {\n\t\treturn &options, nil\n\t}\n\tif err := json.Unmarshal(req.PluginOptions, &options); err != nil {\n\t\treturn nil, fmt.Errorf(\"unmarshalling plugin options: %w\", err)\n\t}\n\n\tif options.Package == \"\" {\n\t\tif options.Out != \"\" {\n\t\t\toptions.Package = filepath.Base(options.Out)\n\t\t} else {\n\t\t\treturn nil, fmt.Errorf(\"invalid options: missing package name\")\n\t\t}\n\t}\n\n\tfor i := range options.Overrides {\n\t\tif err := options.Overrides[i].parse(req); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tif options.SqlPackage != \"\" {\n\t\tif err := validatePackage(options.SqlPackage); err != nil {\n\t\t\treturn nil, fmt.Errorf(\"invalid options: %s\", err)\n\t\t}\n\t}\n\n\tif options.SqlDriver != \"\" {\n\t\tif err := validateDriver(options.SqlDriver); err != nil {\n\t\t\treturn nil, fmt.Errorf(\"invalid options: %s\", err)\n\t\t}\n\t}\n\n\tif options.QueryParameterLimit == nil {\n\t\toptions.QueryParameterLimit = new(int32)\n\t\t*options.QueryParameterLimit = 1\n\t}\n\n\tif options.Initialisms == nil {\n\t\toptions.Initialisms = new([]string)\n\t\t*options.Initialisms = []string{\"id\"}\n\t}\n\n\toptions.InitialismsMap = map[string]struct{}{}\n\tfor _, initial := range *options.Initialisms {\n\t\toptions.InitialismsMap[initial] = struct{}{}\n\t}\n\n\treturn &options, nil\n}\n\nfunc parseGlobalOpts(req *plugin.GenerateRequest) (*GlobalOptions, error) {\n\tvar options GlobalOptions\n\tif len(req.GlobalOptions) == 0 {\n\t\treturn &options, nil\n\t}\n\tif err := json.Unmarshal(req.GlobalOptions, &options); err != nil {\n\t\treturn nil, fmt.Errorf(\"unmarshalling global options: %w\", err)\n\t}\n\tfor i := range options.Overrides {\n\t\tif err := options.Overrides[i].parse(req); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\treturn &options, nil\n}\n\nfunc ValidateOpts(opts *Options) error {\n\tif opts.EmitMethodsWithDbArgument && opts.EmitPreparedQueries {\n\t\treturn fmt.Errorf(\"invalid options: emit_methods_with_db_argument and emit_prepared_queries options are mutually exclusive\")\n\t}\n\tif *opts.QueryParameterLimit < 0 {\n\t\treturn fmt.Errorf(\"invalid options: query parameter limit must not be negative\")\n\t}\n\n\treturn nil\n}\n"
  },
  {
    "path": "internal/codegen/golang/opts/override.go",
    "content": "package opts\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/sdk\"\n\t\"github.com/sqlc-dev/sqlc/internal/pattern\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\ntype Override struct {\n\t// name of the golang type to use, e.g. `github.com/segmentio/ksuid.KSUID`\n\tGoType GoType `json:\"go_type\" yaml:\"go_type\"`\n\n\t// additional Go struct tags to add to this field, in raw Go struct tag form, e.g. `validate:\"required\" x:\"y,z\"`\n\t// see https://github.com/sqlc-dev/sqlc/issues/534\n\tGoStructTag GoStructTag `json:\"go_struct_tag\" yaml:\"go_struct_tag\"`\n\n\t// fully qualified name of the Go type, e.g. `github.com/segmentio/ksuid.KSUID`\n\tDBType                  string `json:\"db_type\" yaml:\"db_type\"`\n\tDeprecated_PostgresType string `json:\"postgres_type\" yaml:\"postgres_type\"`\n\n\t// for global overrides only when two different engines are in use\n\tEngine string `json:\"engine,omitempty\" yaml:\"engine\"`\n\n\t// True if the GoType should override if the matching type is nullable\n\tNullable bool `json:\"nullable\" yaml:\"nullable\"`\n\n\t// True if the GoType should override if the matching type is unsiged.\n\tUnsigned bool `json:\"unsigned\" yaml:\"unsigned\"`\n\n\t// Deprecated. Use the `nullable` property instead\n\tDeprecated_Null bool `json:\"null\" yaml:\"null\"`\n\n\t// fully qualified name of the column, e.g. `accounts.id`\n\tColumn string `json:\"column\" yaml:\"column\"`\n\n\tColumnName   *pattern.Match `json:\"-\"`\n\tTableCatalog *pattern.Match `json:\"-\"`\n\tTableSchema  *pattern.Match `json:\"-\"`\n\tTableRel     *pattern.Match `json:\"-\"`\n\tGoImportPath string         `json:\"-\"`\n\tGoPackage    string         `json:\"-\"`\n\tGoTypeName   string         `json:\"-\"`\n\tGoBasicType  bool           `json:\"-\"`\n\n\t// Parsed form of GoStructTag, e.g. {\"validate:\", \"required\"}\n\tGoStructTags map[string]string `json:\"-\"`\n\tShimOverride *ShimOverride     `json:\"-\"`\n}\n\nfunc (o *Override) Matches(n *plugin.Identifier, defaultSchema string) bool {\n\tif n == nil {\n\t\treturn false\n\t}\n\tschema := n.Schema\n\tif n.Schema == \"\" {\n\t\tschema = defaultSchema\n\t}\n\tif o.TableCatalog != nil && !o.TableCatalog.MatchString(n.Catalog) {\n\t\treturn false\n\t}\n\tif o.TableSchema == nil && schema != \"\" {\n\t\treturn false\n\t}\n\tif o.TableSchema != nil && !o.TableSchema.MatchString(schema) {\n\t\treturn false\n\t}\n\tif o.TableRel == nil && n.Name != \"\" {\n\t\treturn false\n\t}\n\tif o.TableRel != nil && !o.TableRel.MatchString(n.Name) {\n\t\treturn false\n\t}\n\treturn true\n}\n\nfunc (o *Override) MatchesColumn(col *plugin.Column) bool {\n\tcolumnType := sdk.DataType(col.Type)\n\tnotNull := col.NotNull || col.IsArray\n\treturn o.DBType != \"\" && o.DBType == columnType && o.Nullable != notNull && o.Unsigned == col.Unsigned\n}\n\nfunc (o *Override) parse(req *plugin.GenerateRequest) (err error) {\n\t// validate deprecated postgres_type field\n\tif o.Deprecated_PostgresType != \"\" {\n\t\tfmt.Fprintf(os.Stderr, \"WARNING: \\\"postgres_type\\\" is deprecated. Instead, use \\\"db_type\\\" to specify a type override.\\n\")\n\t\tif o.DBType != \"\" {\n\t\t\treturn fmt.Errorf(`Type override configurations cannot have \"db_type\" and \"postres_type\" together. Use \"db_type\" alone`)\n\t\t}\n\t\to.DBType = o.Deprecated_PostgresType\n\t}\n\n\t// validate deprecated null field\n\tif o.Deprecated_Null {\n\t\tfmt.Fprintf(os.Stderr, \"WARNING: \\\"null\\\" is deprecated. Instead, use the \\\"nullable\\\" field.\\n\")\n\t\to.Nullable = true\n\t}\n\n\tschema := \"public\"\n\tif req != nil && req.Catalog != nil {\n\t\tschema = req.Catalog.DefaultSchema\n\t}\n\n\t// validate option combinations\n\tswitch {\n\tcase o.Column != \"\" && o.DBType != \"\":\n\t\treturn fmt.Errorf(\"Override specifying both `column` (%q) and `db_type` (%q) is not valid.\", o.Column, o.DBType)\n\tcase o.Column == \"\" && o.DBType == \"\":\n\t\treturn fmt.Errorf(\"Override must specify one of either `column` or `db_type`\")\n\t}\n\n\t// validate Column\n\tif o.Column != \"\" {\n\t\tcolParts := strings.Split(o.Column, \".\")\n\t\tswitch len(colParts) {\n\t\tcase 2:\n\t\t\tif o.ColumnName, err = pattern.MatchCompile(colParts[1]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif o.TableRel, err = pattern.MatchCompile(colParts[0]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif o.TableSchema, err = pattern.MatchCompile(schema); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\tcase 3:\n\t\t\tif o.ColumnName, err = pattern.MatchCompile(colParts[2]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif o.TableRel, err = pattern.MatchCompile(colParts[1]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif o.TableSchema, err = pattern.MatchCompile(colParts[0]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\tcase 4:\n\t\t\tif o.ColumnName, err = pattern.MatchCompile(colParts[3]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif o.TableRel, err = pattern.MatchCompile(colParts[2]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif o.TableSchema, err = pattern.MatchCompile(colParts[1]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif o.TableCatalog, err = pattern.MatchCompile(colParts[0]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\tdefault:\n\t\t\treturn fmt.Errorf(\"Override `column` specifier %q is not the proper format, expected '[catalog.][schema.]tablename.colname'\", o.Column)\n\t\t}\n\t}\n\n\t// validate GoType\n\tparsed, err := o.GoType.parse()\n\tif err != nil {\n\t\treturn err\n\t}\n\to.GoImportPath = parsed.ImportPath\n\to.GoPackage = parsed.Package\n\to.GoTypeName = parsed.TypeName\n\to.GoBasicType = parsed.BasicType\n\n\t// validate GoStructTag\n\ttags, err := o.GoStructTag.parse()\n\tif err != nil {\n\t\treturn err\n\t}\n\to.GoStructTags = tags\n\n\to.ShimOverride = shimOverride(req, o)\n\treturn nil\n}\n"
  },
  {
    "path": "internal/codegen/golang/opts/override_test.go",
    "content": "package opts\n\nimport (\n\t\"testing\"\n\n\t\"github.com/google/go-cmp/cmp\"\n)\n\nfunc TestTypeOverrides(t *testing.T) {\n\tfor _, test := range []struct {\n\t\toverride Override\n\t\tpkg      string\n\t\ttypeName string\n\t\tbasic    bool\n\t}{\n\t\t{\n\t\t\tOverride{\n\t\t\t\tDBType: \"uuid\",\n\t\t\t\tGoType: GoType{Spec: \"github.com/segmentio/ksuid.KSUID\"},\n\t\t\t},\n\t\t\t\"github.com/segmentio/ksuid\",\n\t\t\t\"ksuid.KSUID\",\n\t\t\tfalse,\n\t\t},\n\t\t// TODO: Add test for struct pointers\n\t\t//\n\t\t// {\n\t\t// \tOverride{\n\t\t// \t\tDBType: \"uuid\",\n\t\t// \t\tGoType:       \"github.com/segmentio/*ksuid.KSUID\",\n\t\t// \t},\n\t\t// \t\"github.com/segmentio/ksuid\",\n\t\t// \t\"*ksuid.KSUID\",\n\t\t// \tfalse,\n\t\t// },\n\t\t{\n\t\t\tOverride{\n\t\t\t\tDBType: \"citext\",\n\t\t\t\tGoType: GoType{Spec: \"string\"},\n\t\t\t},\n\t\t\t\"\",\n\t\t\t\"string\",\n\t\t\ttrue,\n\t\t},\n\t\t{\n\t\t\tOverride{\n\t\t\t\tDBType: \"timestamp\",\n\t\t\t\tGoType: GoType{Spec: \"time.Time\"},\n\t\t\t},\n\t\t\t\"time\",\n\t\t\t\"time.Time\",\n\t\t\tfalse,\n\t\t},\n\t} {\n\t\ttt := test\n\t\tt.Run(tt.override.GoType.Spec, func(t *testing.T) {\n\t\t\tif err := tt.override.parse(nil); err != nil {\n\t\t\t\tt.Fatalf(\"override parsing failed; %s\", err)\n\t\t\t}\n\t\t\tif diff := cmp.Diff(tt.pkg, tt.override.GoImportPath); diff != \"\" {\n\t\t\t\tt.Errorf(\"package mismatch;\\n%s\", diff)\n\t\t\t}\n\t\t\tif diff := cmp.Diff(tt.typeName, tt.override.GoTypeName); diff != \"\" {\n\t\t\t\tt.Errorf(\"type name mismatch;\\n%s\", diff)\n\t\t\t}\n\t\t\tif diff := cmp.Diff(tt.basic, tt.override.GoBasicType); diff != \"\" {\n\t\t\t\tt.Errorf(\"basic mismatch;\\n%s\", diff)\n\t\t\t}\n\t\t})\n\t}\n\tfor _, test := range []struct {\n\t\toverride Override\n\t\terr      string\n\t}{\n\t\t{\n\t\t\tOverride{\n\t\t\t\tDBType: \"uuid\",\n\t\t\t\tGoType: GoType{Spec: \"Pointer\"},\n\t\t\t},\n\t\t\t\"Package override `go_type` specifier \\\"Pointer\\\" is not a Go basic type e.g. 'string'\",\n\t\t},\n\t\t{\n\t\t\tOverride{\n\t\t\t\tDBType: \"uuid\",\n\t\t\t\tGoType: GoType{Spec: \"untyped rune\"},\n\t\t\t},\n\t\t\t\"Package override `go_type` specifier \\\"untyped rune\\\" is not a Go basic type e.g. 'string'\",\n\t\t},\n\t} {\n\t\ttt := test\n\t\tt.Run(tt.override.GoType.Spec, func(t *testing.T) {\n\t\t\terr := tt.override.parse(nil)\n\t\t\tif err == nil {\n\t\t\t\tt.Fatalf(\"expected parse to fail; got nil\")\n\t\t\t}\n\t\t\tif diff := cmp.Diff(tt.err, err.Error()); diff != \"\" {\n\t\t\t\tt.Errorf(\"error mismatch;\\n%s\", diff)\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc FuzzOverride(f *testing.F) {\n\tfor _, spec := range []string{\n\t\t\"string\",\n\t\t\"github.com/gofrs/uuid.UUID\",\n\t\t\"github.com/segmentio/ksuid.KSUID\",\n\t} {\n\t\tf.Add(spec)\n\t}\n\tf.Fuzz(func(t *testing.T, s string) {\n\t\to := Override{\n\t\t\tGoType: GoType{Spec: s},\n\t\t}\n\t\to.parse(nil)\n\t})\n}\n"
  },
  {
    "path": "internal/codegen/golang/opts/shim.go",
    "content": "package opts\n\nimport (\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\n// The ShimOverride struct exists to bridge the gap between the Override struct\n// and the previous Override struct defined in codegen.proto. Eventually these\n// shim structs should be removed in favor of using the existing Override and\n// GoType structs, but it's easier to provide these shim structs to not change\n// the existing, working code.\ntype ShimOverride struct {\n\tDbType     string\n\tNullable   bool\n\tColumn     string\n\tTable      *plugin.Identifier\n\tColumnName string\n\tUnsigned   bool\n\tGoType     *ShimGoType\n}\n\nfunc shimOverride(req *plugin.GenerateRequest, o *Override) *ShimOverride {\n\tvar column string\n\tvar table plugin.Identifier\n\n\tif o.Column != \"\" {\n\t\tcolParts := strings.Split(o.Column, \".\")\n\t\tswitch len(colParts) {\n\t\tcase 2:\n\t\t\ttable.Schema = req.Catalog.DefaultSchema\n\t\t\ttable.Name = colParts[0]\n\t\t\tcolumn = colParts[1]\n\t\tcase 3:\n\t\t\ttable.Schema = colParts[0]\n\t\t\ttable.Name = colParts[1]\n\t\t\tcolumn = colParts[2]\n\t\tcase 4:\n\t\t\ttable.Catalog = colParts[0]\n\t\t\ttable.Schema = colParts[1]\n\t\t\ttable.Name = colParts[2]\n\t\t\tcolumn = colParts[3]\n\t\t}\n\t}\n\treturn &ShimOverride{\n\t\tDbType:     o.DBType,\n\t\tNullable:   o.Nullable,\n\t\tUnsigned:   o.Unsigned,\n\t\tColumn:     o.Column,\n\t\tColumnName: column,\n\t\tTable:      &table,\n\t\tGoType:     shimGoType(o),\n\t}\n}\n\ntype ShimGoType struct {\n\tImportPath string\n\tPackage    string\n\tTypeName   string\n\tBasicType  bool\n\tStructTags map[string]string\n}\n\nfunc shimGoType(o *Override) *ShimGoType {\n\t// Note that there is a slight mismatch between this and the\n\t// proto api. The GoType on the override is the unparsed type,\n\t// which could be a qualified path or an object, as per\n\t// https://docs.sqlc.dev/en/v1.18.0/reference/config.html#type-overriding\n\treturn &ShimGoType{\n\t\tImportPath: o.GoImportPath,\n\t\tPackage:    o.GoPackage,\n\t\tTypeName:   o.GoTypeName,\n\t\tBasicType:  o.GoBasicType,\n\t\tStructTags: o.GoStructTags,\n\t}\n}\n"
  },
  {
    "path": "internal/codegen/golang/postgresql_type.go",
    "content": "package golang\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/golang/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/sdk\"\n\t\"github.com/sqlc-dev/sqlc/internal/debug\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\nfunc parseIdentifierString(name string) (*plugin.Identifier, error) {\n\tparts := strings.Split(name, \".\")\n\tswitch len(parts) {\n\tcase 1:\n\t\treturn &plugin.Identifier{\n\t\t\tName: parts[0],\n\t\t}, nil\n\tcase 2:\n\t\treturn &plugin.Identifier{\n\t\t\tSchema: parts[0],\n\t\t\tName:   parts[1],\n\t\t}, nil\n\tcase 3:\n\t\treturn &plugin.Identifier{\n\t\t\tCatalog: parts[0],\n\t\t\tSchema:  parts[1],\n\t\t\tName:    parts[2],\n\t\t}, nil\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"invalid name: %s\", name)\n\t}\n}\n\nfunc postgresType(req *plugin.GenerateRequest, options *opts.Options, col *plugin.Column) string {\n\tcolumnType := sdk.DataType(col.Type)\n\tnotNull := col.NotNull || col.IsArray\n\tdriver := parseDriver(options.SqlPackage)\n\temitPointersForNull := driver.IsPGX() && options.EmitPointersForNullTypes\n\n\tswitch columnType {\n\tcase \"serial\", \"serial4\", \"pg_catalog.serial4\":\n\t\tif notNull {\n\t\t\treturn \"int32\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*int32\"\n\t\t}\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Int4\"\n\t\t}\n\t\treturn \"sql.NullInt32\"\n\n\tcase \"bigserial\", \"serial8\", \"pg_catalog.serial8\":\n\t\tif notNull {\n\t\t\treturn \"int64\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*int64\"\n\t\t}\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Int8\"\n\t\t}\n\t\treturn \"sql.NullInt64\"\n\n\tcase \"smallserial\", \"serial2\", \"pg_catalog.serial2\":\n\t\tif notNull {\n\t\t\treturn \"int16\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*int16\"\n\t\t}\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Int2\"\n\t\t}\n\t\treturn \"sql.NullInt16\"\n\n\tcase \"integer\", \"int\", \"int4\", \"pg_catalog.int4\":\n\t\tif notNull {\n\t\t\treturn \"int32\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*int32\"\n\t\t}\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Int4\"\n\t\t}\n\t\treturn \"sql.NullInt32\"\n\n\tcase \"bigint\", \"int8\", \"pg_catalog.int8\":\n\t\tif notNull {\n\t\t\treturn \"int64\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*int64\"\n\t\t}\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Int8\"\n\t\t}\n\t\treturn \"sql.NullInt64\"\n\n\tcase \"smallint\", \"int2\", \"pg_catalog.int2\":\n\t\tif notNull {\n\t\t\treturn \"int16\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*int16\"\n\t\t}\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Int2\"\n\t\t}\n\t\treturn \"sql.NullInt16\"\n\n\tcase \"float\", \"double precision\", \"float8\", \"pg_catalog.float8\":\n\t\tif notNull {\n\t\t\treturn \"float64\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*float64\"\n\t\t}\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Float8\"\n\t\t}\n\t\treturn \"sql.NullFloat64\"\n\n\tcase \"real\", \"float4\", \"pg_catalog.float4\":\n\t\tif notNull {\n\t\t\treturn \"float32\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*float32\"\n\t\t}\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Float4\"\n\t\t}\n\t\treturn \"sql.NullFloat64\" // TODO: Change to sql.NullFloat32 after updating the go.mod file\n\n\tcase \"numeric\", \"pg_catalog.numeric\", \"money\":\n\t\tif driver.IsPGX() {\n\t\t\treturn \"pgtype.Numeric\"\n\t\t}\n\t\t// Since the Go standard library does not have a decimal type, lib/pq\n\t\t// returns numerics as strings.\n\t\t//\n\t\t// https://github.com/lib/pq/issues/648\n\t\tif notNull {\n\t\t\treturn \"string\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*string\"\n\t\t}\n\t\treturn \"sql.NullString\"\n\n\tcase \"boolean\", \"bool\", \"pg_catalog.bool\":\n\t\tif notNull {\n\t\t\treturn \"bool\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*bool\"\n\t\t}\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Bool\"\n\t\t}\n\t\treturn \"sql.NullBool\"\n\n\tcase \"json\", \"pg_catalog.json\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\treturn \"[]byte\"\n\t\tcase opts.SQLDriverPGXV4:\n\t\t\treturn \"pgtype.JSON\"\n\t\tcase opts.SQLDriverLibPQ:\n\t\t\tif notNull {\n\t\t\t\treturn \"json.RawMessage\"\n\t\t\t} else {\n\t\t\t\treturn \"pqtype.NullRawMessage\"\n\t\t\t}\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"jsonb\", \"pg_catalog.jsonb\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\treturn \"[]byte\"\n\t\tcase opts.SQLDriverPGXV4:\n\t\t\treturn \"pgtype.JSONB\"\n\t\tcase opts.SQLDriverLibPQ:\n\t\t\tif notNull {\n\t\t\t\treturn \"json.RawMessage\"\n\t\t\t} else {\n\t\t\t\treturn \"pqtype.NullRawMessage\"\n\t\t\t}\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"bytea\", \"blob\", \"pg_catalog.bytea\":\n\t\treturn \"[]byte\"\n\n\tcase \"date\":\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Date\"\n\t\t}\n\t\tif notNull {\n\t\t\treturn \"time.Time\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*time.Time\"\n\t\t}\n\t\treturn \"sql.NullTime\"\n\n\tcase \"pg_catalog.time\":\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Time\"\n\t\t}\n\t\tif notNull {\n\t\t\treturn \"time.Time\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*time.Time\"\n\t\t}\n\t\treturn \"sql.NullTime\"\n\n\tcase \"pg_catalog.timetz\":\n\t\tif notNull {\n\t\t\treturn \"time.Time\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*time.Time\"\n\t\t}\n\t\treturn \"sql.NullTime\"\n\n\tcase \"pg_catalog.timestamp\", \"timestamp\":\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Timestamp\"\n\t\t}\n\t\tif notNull {\n\t\t\treturn \"time.Time\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*time.Time\"\n\t\t}\n\t\treturn \"sql.NullTime\"\n\n\tcase \"pg_catalog.timestamptz\", \"timestamptz\":\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Timestamptz\"\n\t\t}\n\t\tif notNull {\n\t\t\treturn \"time.Time\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*time.Time\"\n\t\t}\n\t\treturn \"sql.NullTime\"\n\n\tcase \"text\", \"pg_catalog.varchar\", \"pg_catalog.bpchar\", \"string\", \"citext\", \"name\":\n\t\tif notNull {\n\t\t\treturn \"string\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*string\"\n\t\t}\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Text\"\n\t\t}\n\t\treturn \"sql.NullString\"\n\n\tcase \"uuid\":\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.UUID\"\n\t\t}\n\t\tif notNull {\n\t\t\treturn \"uuid.UUID\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*uuid.UUID\"\n\t\t}\n\t\treturn \"uuid.NullUUID\"\n\n\tcase \"inet\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\tif notNull {\n\t\t\t\treturn \"netip.Addr\"\n\t\t\t}\n\t\t\treturn \"*netip.Addr\"\n\t\tcase opts.SQLDriverPGXV4:\n\t\t\treturn \"pgtype.Inet\"\n\t\tcase opts.SQLDriverLibPQ:\n\t\t\treturn \"pqtype.Inet\"\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"cidr\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\tif notNull {\n\t\t\t\treturn \"netip.Prefix\"\n\t\t\t}\n\t\t\treturn \"*netip.Prefix\"\n\t\tcase opts.SQLDriverPGXV4:\n\t\t\treturn \"pgtype.CIDR\"\n\t\tcase opts.SQLDriverLibPQ:\n\t\t\treturn \"pqtype.CIDR\"\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"macaddr\", \"macaddr8\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\treturn \"net.HardwareAddr\"\n\t\tcase opts.SQLDriverPGXV4:\n\t\t\treturn \"pgtype.Macaddr\"\n\t\tcase opts.SQLDriverLibPQ:\n\t\t\treturn \"pqtype.Macaddr\"\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"ltree\", \"lquery\", \"ltxtquery\":\n\t\t// This module implements a data type ltree for representing labels\n\t\t// of data stored in a hierarchical tree-like structure. Extensive\n\t\t// facilities for searching through label trees are provided.\n\t\t//\n\t\t// https://www.postgresql.org/docs/current/ltree.html\n\t\tif notNull {\n\t\t\treturn \"string\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*string\"\n\t\t}\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Text\"\n\t\t}\n\t\treturn \"sql.NullString\"\n\n\tcase \"interval\", \"pg_catalog.interval\":\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Interval\"\n\t\t}\n\t\tif notNull {\n\t\t\treturn \"int64\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*int64\"\n\t\t}\n\t\treturn \"sql.NullInt64\"\n\n\tcase \"daterange\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV4:\n\t\t\treturn \"pgtype.Daterange\"\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\treturn \"pgtype.Range[pgtype.Date]\"\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"datemultirange\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\treturn \"pgtype.Multirange[pgtype.Range[pgtype.Date]]\"\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"tsrange\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV4:\n\t\t\treturn \"pgtype.Tsrange\"\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\treturn \"pgtype.Range[pgtype.Timestamp]\"\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"tsmultirange\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\treturn \"pgtype.Multirange[pgtype.Range[pgtype.Timestamp]]\"\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"tstzrange\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV4:\n\t\t\treturn \"pgtype.Tstzrange\"\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\treturn \"pgtype.Range[pgtype.Timestamptz]\"\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"tstzmultirange\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\treturn \"pgtype.Multirange[pgtype.Range[pgtype.Timestamptz]]\"\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"numrange\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV4:\n\t\t\treturn \"pgtype.Numrange\"\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\treturn \"pgtype.Range[pgtype.Numeric]\"\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"nummultirange\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\treturn \"pgtype.Multirange[pgtype.Range[pgtype.Numeric]]\"\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"int4range\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV4:\n\t\t\treturn \"pgtype.Int4range\"\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\treturn \"pgtype.Range[pgtype.Int4]\"\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"int4multirange\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\treturn \"pgtype.Multirange[pgtype.Range[pgtype.Int4]]\"\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"int8range\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV4:\n\t\t\treturn \"pgtype.Int8range\"\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\treturn \"pgtype.Range[pgtype.Int8]\"\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"int8multirange\":\n\t\tswitch driver {\n\t\tcase opts.SQLDriverPGXV5:\n\t\t\treturn \"pgtype.Multirange[pgtype.Range[pgtype.Int8]]\"\n\t\tdefault:\n\t\t\treturn \"interface{}\"\n\t\t}\n\n\tcase \"hstore\":\n\t\tif driver.IsPGX() {\n\t\t\treturn \"pgtype.Hstore\"\n\t\t}\n\t\treturn \"interface{}\"\n\n\tcase \"bit\", \"varbit\", \"pg_catalog.bit\", \"pg_catalog.varbit\":\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Bits\"\n\t\t}\n\t\tif driver == opts.SQLDriverPGXV4 {\n\t\t\treturn \"pgtype.Varbit\"\n\t\t}\n\n\tcase \"cid\":\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Uint32\"\n\t\t}\n\t\tif driver == opts.SQLDriverPGXV4 {\n\t\t\treturn \"pgtype.CID\"\n\t\t}\n\n\tcase \"oid\":\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Uint32\"\n\t\t}\n\t\tif driver == opts.SQLDriverPGXV4 {\n\t\t\treturn \"pgtype.OID\"\n\t\t}\n\n\tcase \"tid\":\n\t\tif driver.IsPGX() {\n\t\t\treturn \"pgtype.TID\"\n\t\t}\n\n\tcase \"xid\":\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\treturn \"pgtype.Uint32\"\n\t\t}\n\t\tif driver == opts.SQLDriverPGXV4 {\n\t\t\treturn \"pgtype.XID\"\n\t\t}\n\n\tcase \"box\":\n\t\tif driver.IsPGX() {\n\t\t\treturn \"pgtype.Box\"\n\t\t}\n\n\tcase \"circle\":\n\t\tif driver.IsPGX() {\n\t\t\treturn \"pgtype.Circle\"\n\t\t}\n\n\tcase \"line\":\n\t\tif driver.IsPGX() {\n\t\t\treturn \"pgtype.Line\"\n\t\t}\n\n\tcase \"lseg\":\n\t\tif driver.IsPGX() {\n\t\t\treturn \"pgtype.Lseg\"\n\t\t}\n\n\tcase \"path\":\n\t\tif driver.IsPGX() {\n\t\t\treturn \"pgtype.Path\"\n\t\t}\n\n\tcase \"point\":\n\t\tif driver.IsPGX() {\n\t\t\treturn \"pgtype.Point\"\n\t\t}\n\n\tcase \"polygon\":\n\t\tif driver.IsPGX() {\n\t\t\treturn \"pgtype.Polygon\"\n\t\t}\n\n\tcase \"vector\":\n\t\tif driver == opts.SQLDriverPGXV5 {\n\t\t\tif emitPointersForNull {\n\t\t\t\treturn \"*pgvector.Vector\"\n\t\t\t} else {\n\t\t\t\treturn \"pgvector.Vector\"\n\t\t\t}\n\t\t}\n\n\tcase \"void\":\n\t\t// A void value can only be scanned into an empty interface.\n\t\treturn \"interface{}\"\n\n\tcase \"any\":\n\t\treturn \"interface{}\"\n\n\tdefault:\n\t\trel, err := parseIdentifierString(columnType)\n\t\tif err != nil {\n\t\t\t// TODO: Should this actually return an error here?\n\t\t\treturn \"interface{}\"\n\t\t}\n\t\tif rel.Schema == \"\" {\n\t\t\trel.Schema = req.Catalog.DefaultSchema\n\t\t}\n\n\t\tfor _, schema := range req.Catalog.Schemas {\n\t\t\tif schema.Name == \"pg_catalog\" || schema.Name == \"information_schema\" {\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tfor _, enum := range schema.Enums {\n\t\t\t\tif rel.Name == enum.Name && rel.Schema == schema.Name {\n\t\t\t\t\tif notNull {\n\t\t\t\t\t\tif schema.Name == req.Catalog.DefaultSchema {\n\t\t\t\t\t\t\treturn StructName(enum.Name, options)\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn StructName(schema.Name+\"_\"+enum.Name, options)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tif schema.Name == req.Catalog.DefaultSchema {\n\t\t\t\t\t\t\treturn \"Null\" + StructName(enum.Name, options)\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn \"Null\" + StructName(schema.Name+\"_\"+enum.Name, options)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor _, ct := range schema.CompositeTypes {\n\t\t\t\tif rel.Name == ct.Name && rel.Schema == schema.Name {\n\t\t\t\t\tif notNull {\n\t\t\t\t\t\treturn \"string\"\n\t\t\t\t\t}\n\t\t\t\t\tif emitPointersForNull {\n\t\t\t\t\t\treturn \"*string\"\n\t\t\t\t\t}\n\t\t\t\t\treturn \"sql.NullString\"\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tif debug.Active {\n\t\tlog.Printf(\"unknown PostgreSQL type: %s\\n\", columnType)\n\t}\n\treturn \"interface{}\"\n}\n"
  },
  {
    "path": "internal/codegen/golang/query.go",
    "content": "package golang\n\nimport (\n\t\"fmt\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/golang/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/metadata\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\ntype QueryValue struct {\n\tEmit        bool\n\tEmitPointer bool\n\tName        string\n\tDBName      string // The name of the field in the database. Only set if Struct==nil.\n\tStruct      *Struct\n\tTyp         string\n\tSQLDriver   opts.SQLDriver\n\n\t// Column is kept so late in the generation process around to differentiate\n\t// between mysql slices and pg arrays\n\tColumn *plugin.Column\n}\n\nfunc (v QueryValue) EmitStruct() bool {\n\treturn v.Emit\n}\n\nfunc (v QueryValue) IsStruct() bool {\n\treturn v.Struct != nil\n}\n\nfunc (v QueryValue) IsPointer() bool {\n\treturn v.EmitPointer && v.Struct != nil\n}\n\nfunc (v QueryValue) isEmpty() bool {\n\treturn v.Typ == \"\" && v.Name == \"\" && v.Struct == nil\n}\n\ntype Argument struct {\n\tName string\n\tType string\n}\n\nfunc (v QueryValue) Pair() string {\n\tvar out []string\n\tfor _, arg := range v.Pairs() {\n\t\tout = append(out, arg.Name+\" \"+arg.Type)\n\t}\n\treturn strings.Join(out, \",\")\n}\n\n// Return the argument name and type for query methods. Should only be used in\n// the context of method arguments.\nfunc (v QueryValue) Pairs() []Argument {\n\tif v.isEmpty() {\n\t\treturn nil\n\t}\n\tif !v.EmitStruct() && v.IsStruct() {\n\t\tvar out []Argument\n\t\tfor _, f := range v.Struct.Fields {\n\t\t\tout = append(out, Argument{\n\t\t\t\tName: escape(toLowerCase(f.Name)),\n\t\t\t\tType: f.Type,\n\t\t\t})\n\t\t}\n\t\treturn out\n\t}\n\treturn []Argument{\n\t\t{\n\t\t\tName: escape(v.Name),\n\t\t\tType: v.DefineType(),\n\t\t},\n\t}\n}\n\nfunc (v QueryValue) SlicePair() string {\n\tif v.isEmpty() {\n\t\treturn \"\"\n\t}\n\treturn v.Name + \" []\" + v.DefineType()\n}\n\nfunc (v QueryValue) Type() string {\n\tif v.Typ != \"\" {\n\t\treturn v.Typ\n\t}\n\tif v.Struct != nil {\n\t\treturn v.Struct.Name\n\t}\n\tpanic(\"no type for QueryValue: \" + v.Name)\n}\n\nfunc (v *QueryValue) DefineType() string {\n\tt := v.Type()\n\tif v.IsPointer() {\n\t\treturn \"*\" + t\n\t}\n\treturn t\n}\n\nfunc (v *QueryValue) ReturnName() string {\n\tif v.IsPointer() {\n\t\treturn \"&\" + escape(v.Name)\n\t}\n\treturn escape(v.Name)\n}\n\nfunc (v QueryValue) UniqueFields() []Field {\n\tseen := map[string]struct{}{}\n\tfields := make([]Field, 0, len(v.Struct.Fields))\n\n\tfor _, field := range v.Struct.Fields {\n\t\tif _, found := seen[field.Name]; found {\n\t\t\tcontinue\n\t\t}\n\t\tseen[field.Name] = struct{}{}\n\t\tfields = append(fields, field)\n\t}\n\n\treturn fields\n}\n\nfunc (v QueryValue) Params() string {\n\tif v.isEmpty() {\n\t\treturn \"\"\n\t}\n\tvar out []string\n\tif v.Struct == nil {\n\t\tif !v.Column.IsSqlcSlice && strings.HasPrefix(v.Typ, \"[]\") && v.Typ != \"[]byte\" && !v.SQLDriver.IsPGX() {\n\t\t\tout = append(out, \"pq.Array(\"+escape(v.Name)+\")\")\n\t\t} else {\n\t\t\tout = append(out, escape(v.Name))\n\t\t}\n\t} else {\n\t\tfor _, f := range v.Struct.Fields {\n\t\t\tif !f.HasSqlcSlice() && strings.HasPrefix(f.Type, \"[]\") && f.Type != \"[]byte\" && !v.SQLDriver.IsPGX() {\n\t\t\t\tout = append(out, \"pq.Array(\"+escape(v.VariableForField(f))+\")\")\n\t\t\t} else {\n\t\t\t\tout = append(out, escape(v.VariableForField(f)))\n\t\t\t}\n\t\t}\n\t}\n\tif len(out) <= 3 {\n\t\treturn strings.Join(out, \",\")\n\t}\n\tout = append(out, \"\")\n\treturn \"\\n\" + strings.Join(out, \",\\n\")\n}\n\nfunc (v QueryValue) ColumnNames() []string {\n\tif v.Struct == nil {\n\t\treturn []string{v.DBName}\n\t}\n\tnames := make([]string, len(v.Struct.Fields))\n\tfor i, f := range v.Struct.Fields {\n\t\tnames[i] = f.DBName\n\t}\n\treturn names\n}\n\nfunc (v QueryValue) ColumnNamesAsGoSlice() string {\n\tif v.Struct == nil {\n\t\treturn fmt.Sprintf(\"[]string{%q}\", v.DBName)\n\t}\n\tescapedNames := make([]string, len(v.Struct.Fields))\n\tfor i, f := range v.Struct.Fields {\n\t\tif f.Column != nil && f.Column.OriginalName != \"\" {\n\t\t\tescapedNames[i] = fmt.Sprintf(\"%q\", f.Column.OriginalName)\n\t\t} else {\n\t\t\tescapedNames[i] = fmt.Sprintf(\"%q\", f.DBName)\n\t\t}\n\t}\n\treturn \"[]string{\" + strings.Join(escapedNames, \", \") + \"}\"\n}\n\n// When true, we have to build the arguments to q.db.QueryContext in addition to\n// munging the SQL\nfunc (v QueryValue) HasSqlcSlices() bool {\n\tif v.Struct == nil {\n\t\treturn v.Column != nil && v.Column.IsSqlcSlice\n\t}\n\tfor _, v := range v.Struct.Fields {\n\t\tif v.Column.IsSqlcSlice {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\nfunc (v QueryValue) Scan() string {\n\tvar out []string\n\tif v.Struct == nil {\n\t\tif strings.HasPrefix(v.Typ, \"[]\") && v.Typ != \"[]byte\" && !v.SQLDriver.IsPGX() {\n\t\t\tout = append(out, \"pq.Array(&\"+v.Name+\")\")\n\t\t} else {\n\t\t\tout = append(out, \"&\"+v.Name)\n\t\t}\n\t} else {\n\t\tfor _, f := range v.Struct.Fields {\n\n\t\t\t// append any embedded fields\n\t\t\tif len(f.EmbedFields) > 0 {\n\t\t\t\tfor _, embed := range f.EmbedFields {\n\t\t\t\t\tif strings.HasPrefix(embed.Type, \"[]\") && embed.Type != \"[]byte\" && !v.SQLDriver.IsPGX() {\n\t\t\t\t\t\tout = append(out, \"pq.Array(&\"+v.Name+\".\"+f.Name+\".\"+embed.Name+\")\")\n\t\t\t\t\t} else {\n\t\t\t\t\t\tout = append(out, \"&\"+v.Name+\".\"+f.Name+\".\"+embed.Name)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tif strings.HasPrefix(f.Type, \"[]\") && f.Type != \"[]byte\" && !v.SQLDriver.IsPGX() {\n\t\t\t\tout = append(out, \"pq.Array(&\"+v.Name+\".\"+f.Name+\")\")\n\t\t\t} else {\n\t\t\t\tout = append(out, \"&\"+v.Name+\".\"+f.Name)\n\t\t\t}\n\t\t}\n\t}\n\tif len(out) <= 3 {\n\t\treturn strings.Join(out, \",\")\n\t}\n\tout = append(out, \"\")\n\treturn \"\\n\" + strings.Join(out, \",\\n\")\n}\n\n// Deprecated: This method does not respect the Emit field set on the\n// QueryValue. It's used by the go-sql-driver-mysql/copyfromCopy.tmpl and should\n// not be used other places.\nfunc (v QueryValue) CopyFromMySQLFields() []Field {\n\t// fmt.Printf(\"%#v\\n\", v)\n\tif v.Struct != nil {\n\t\treturn v.Struct.Fields\n\t}\n\treturn []Field{\n\t\t{\n\t\t\tName:   v.Name,\n\t\t\tDBName: v.DBName,\n\t\t\tType:   v.Typ,\n\t\t},\n\t}\n}\n\nfunc (v QueryValue) VariableForField(f Field) string {\n\tif !v.IsStruct() {\n\t\treturn v.Name\n\t}\n\tif !v.EmitStruct() {\n\t\treturn toLowerCase(f.Name)\n\t}\n\treturn v.Name + \".\" + f.Name\n}\n\n// A struct used to generate methods and fields on the Queries struct\ntype Query struct {\n\tCmd          string\n\tComments     []string\n\tMethodName   string\n\tFieldName    string\n\tConstantName string\n\tSQL          string\n\tSourceName   string\n\tRet          QueryValue\n\tArg          QueryValue\n\t// Used for :copyfrom\n\tTable *plugin.Identifier\n}\n\nfunc (q Query) hasRetType() bool {\n\tscanned := q.Cmd == metadata.CmdOne || q.Cmd == metadata.CmdMany ||\n\t\tq.Cmd == metadata.CmdBatchMany || q.Cmd == metadata.CmdBatchOne\n\treturn scanned && !q.Ret.isEmpty()\n}\n\nfunc (q Query) TableIdentifierAsGoSlice() string {\n\tescapedNames := make([]string, 0, 3)\n\tfor _, p := range []string{q.Table.Catalog, q.Table.Schema, q.Table.Name} {\n\t\tif p != \"\" {\n\t\t\tescapedNames = append(escapedNames, fmt.Sprintf(\"%q\", p))\n\t\t}\n\t}\n\treturn \"[]string{\" + strings.Join(escapedNames, \", \") + \"}\"\n}\n\nfunc (q Query) TableIdentifierForMySQL() string {\n\tescapedNames := make([]string, 0, 3)\n\tfor _, p := range []string{q.Table.Catalog, q.Table.Schema, q.Table.Name} {\n\t\tif p != \"\" {\n\t\t\tescapedNames = append(escapedNames, fmt.Sprintf(\"`%s`\", p))\n\t\t}\n\t}\n\treturn strings.Join(escapedNames, \".\")\n}\n"
  },
  {
    "path": "internal/codegen/golang/reserved.go",
    "content": "package golang\n\nfunc escape(s string) string {\n\tif IsReserved(s) {\n\t\treturn s + \"_\"\n\t}\n\treturn s\n}\n\nfunc IsReserved(s string) bool {\n\tswitch s {\n\tcase \"break\":\n\t\treturn true\n\tcase \"default\":\n\t\treturn true\n\tcase \"func\":\n\t\treturn true\n\tcase \"interface\":\n\t\treturn true\n\tcase \"select\":\n\t\treturn true\n\tcase \"case\":\n\t\treturn true\n\tcase \"defer\":\n\t\treturn true\n\tcase \"go\":\n\t\treturn true\n\tcase \"map\":\n\t\treturn true\n\tcase \"struct\":\n\t\treturn true\n\tcase \"chan\":\n\t\treturn true\n\tcase \"else\":\n\t\treturn true\n\tcase \"goto\":\n\t\treturn true\n\tcase \"package\":\n\t\treturn true\n\tcase \"switch\":\n\t\treturn true\n\tcase \"const\":\n\t\treturn true\n\tcase \"fallthrough\":\n\t\treturn true\n\tcase \"if\":\n\t\treturn true\n\tcase \"range\":\n\t\treturn true\n\tcase \"type\":\n\t\treturn true\n\tcase \"continue\":\n\t\treturn true\n\tcase \"for\":\n\t\treturn true\n\tcase \"import\":\n\t\treturn true\n\tcase \"return\":\n\t\treturn true\n\tcase \"var\":\n\t\treturn true\n\tcase \"q\":\n\t\treturn true\n\tdefault:\n\t\treturn false\n\t}\n}\n"
  },
  {
    "path": "internal/codegen/golang/result.go",
    "content": "package golang\n\nimport (\n\t\"bufio\"\n\t\"fmt\"\n\t\"sort\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/golang/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/sdk\"\n\t\"github.com/sqlc-dev/sqlc/internal/inflection\"\n\t\"github.com/sqlc-dev/sqlc/internal/metadata\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\nfunc buildEnums(req *plugin.GenerateRequest, options *opts.Options) []Enum {\n\tvar enums []Enum\n\tfor _, schema := range req.Catalog.Schemas {\n\t\tif schema.Name == \"pg_catalog\" || schema.Name == \"information_schema\" {\n\t\t\tcontinue\n\t\t}\n\t\tfor _, enum := range schema.Enums {\n\t\t\tvar enumName string\n\t\t\tif schema.Name == req.Catalog.DefaultSchema {\n\t\t\t\tenumName = enum.Name\n\t\t\t} else {\n\t\t\t\tenumName = schema.Name + \"_\" + enum.Name\n\t\t\t}\n\n\t\t\te := Enum{\n\t\t\t\tName:      StructName(enumName, options),\n\t\t\t\tComment:   enum.Comment,\n\t\t\t\tNameTags:  map[string]string{},\n\t\t\t\tValidTags: map[string]string{},\n\t\t\t}\n\t\t\tif options.EmitJsonTags {\n\t\t\t\te.NameTags[\"json\"] = JSONTagName(enumName, options)\n\t\t\t\te.ValidTags[\"json\"] = JSONTagName(\"valid\", options)\n\t\t\t}\n\n\t\t\tseen := make(map[string]struct{}, len(enum.Vals))\n\t\t\tfor i, v := range enum.Vals {\n\t\t\t\tvalue := EnumReplace(v)\n\t\t\t\tif _, found := seen[value]; found || value == \"\" {\n\t\t\t\t\tvalue = fmt.Sprintf(\"value_%d\", i)\n\t\t\t\t}\n\t\t\t\te.Constants = append(e.Constants, Constant{\n\t\t\t\t\tName:  StructName(enumName+\"_\"+value, options),\n\t\t\t\t\tValue: v,\n\t\t\t\t\tType:  e.Name,\n\t\t\t\t})\n\t\t\t\tseen[value] = struct{}{}\n\t\t\t}\n\t\t\tenums = append(enums, e)\n\t\t}\n\t}\n\tif len(enums) > 0 {\n\t\tsort.Slice(enums, func(i, j int) bool { return enums[i].Name < enums[j].Name })\n\t}\n\treturn enums\n}\n\nfunc buildStructs(req *plugin.GenerateRequest, options *opts.Options) []Struct {\n\tvar structs []Struct\n\tfor _, schema := range req.Catalog.Schemas {\n\t\tif schema.Name == \"pg_catalog\" || schema.Name == \"information_schema\" {\n\t\t\tcontinue\n\t\t}\n\t\tfor _, table := range schema.Tables {\n\t\t\tvar tableName string\n\t\t\tif schema.Name == req.Catalog.DefaultSchema {\n\t\t\t\ttableName = table.Rel.Name\n\t\t\t} else {\n\t\t\t\ttableName = schema.Name + \"_\" + table.Rel.Name\n\t\t\t}\n\t\t\tstructName := tableName\n\t\t\tif !options.EmitExactTableNames {\n\t\t\t\tstructName = inflection.Singular(inflection.SingularParams{\n\t\t\t\t\tName:       structName,\n\t\t\t\t\tExclusions: options.InflectionExcludeTableNames,\n\t\t\t\t})\n\t\t\t}\n\t\t\ts := Struct{\n\t\t\t\tTable:   &plugin.Identifier{Schema: schema.Name, Name: table.Rel.Name},\n\t\t\t\tName:    StructName(structName, options),\n\t\t\t\tComment: table.Comment,\n\t\t\t}\n\t\t\tfor _, column := range table.Columns {\n\t\t\t\ttags := map[string]string{}\n\t\t\t\tif options.EmitDbTags {\n\t\t\t\t\ttags[\"db\"] = column.Name\n\t\t\t\t}\n\t\t\t\tif options.EmitJsonTags {\n\t\t\t\t\ttags[\"json\"] = JSONTagName(column.Name, options)\n\t\t\t\t}\n\t\t\t\taddExtraGoStructTags(tags, req, options, column)\n\t\t\t\ts.Fields = append(s.Fields, Field{\n\t\t\t\t\tName:    StructName(column.Name, options),\n\t\t\t\t\tType:    goType(req, options, column),\n\t\t\t\t\tTags:    tags,\n\t\t\t\t\tComment: column.Comment,\n\t\t\t\t})\n\t\t\t}\n\t\t\tstructs = append(structs, s)\n\t\t}\n\t}\n\tif len(structs) > 0 {\n\t\tsort.Slice(structs, func(i, j int) bool { return structs[i].Name < structs[j].Name })\n\t}\n\treturn structs\n}\n\ntype goColumn struct {\n\tid int\n\t*plugin.Column\n\tembed *goEmbed\n}\n\ntype goEmbed struct {\n\tmodelType string\n\tmodelName string\n\tfields    []Field\n}\n\n// look through all the structs and attempt to find a matching one to embed\n// We need the name of the struct and its field names.\nfunc newGoEmbed(embed *plugin.Identifier, structs []Struct, defaultSchema string) *goEmbed {\n\tif embed == nil {\n\t\treturn nil\n\t}\n\n\tfor _, s := range structs {\n\t\tembedSchema := defaultSchema\n\t\tif embed.Schema != \"\" {\n\t\t\tembedSchema = embed.Schema\n\t\t}\n\n\t\t// compare the other attributes\n\t\tif embed.Catalog != s.Table.Catalog || embed.Name != s.Table.Name || embedSchema != s.Table.Schema {\n\t\t\tcontinue\n\t\t}\n\n\t\tfields := make([]Field, len(s.Fields))\n\t\tcopy(fields, s.Fields)\n\n\t\treturn &goEmbed{\n\t\t\tmodelType: s.Name,\n\t\t\tmodelName: s.Name,\n\t\t\tfields:    fields,\n\t\t}\n\t}\n\n\treturn nil\n}\n\nfunc columnName(c *plugin.Column, pos int) string {\n\tif c.Name != \"\" {\n\t\treturn c.Name\n\t}\n\treturn fmt.Sprintf(\"column_%d\", pos+1)\n}\n\nfunc paramName(p *plugin.Parameter) string {\n\tif p.Column.Name != \"\" {\n\t\treturn argName(p.Column.Name)\n\t}\n\treturn fmt.Sprintf(\"dollar_%d\", p.Number)\n}\n\nfunc argName(name string) string {\n\tout := \"\"\n\tfor i, p := range strings.Split(name, \"_\") {\n\t\tif i == 0 {\n\t\t\tout += strings.ToLower(p)\n\t\t} else if p == \"id\" {\n\t\t\tout += \"ID\"\n\t\t} else {\n\t\t\tout += strings.Title(p)\n\t\t}\n\t}\n\treturn out\n}\n\nfunc buildQueries(req *plugin.GenerateRequest, options *opts.Options, structs []Struct) ([]Query, error) {\n\tqs := make([]Query, 0, len(req.Queries))\n\tfor _, query := range req.Queries {\n\t\tif query.Name == \"\" {\n\t\t\tcontinue\n\t\t}\n\t\tif query.Cmd == \"\" {\n\t\t\tcontinue\n\t\t}\n\n\t\tvar constantName string\n\t\tif options.EmitExportedQueries {\n\t\t\tconstantName = sdk.Title(query.Name)\n\t\t} else {\n\t\t\tconstantName = sdk.LowerTitle(query.Name)\n\t\t}\n\n\t\tcomments := query.Comments\n\t\tif options.EmitSqlAsComment {\n\t\t\tif len(comments) == 0 {\n\t\t\t\tcomments = append(comments, query.Name)\n\t\t\t}\n\t\t\tcomments = append(comments, \" \")\n\t\t\tscanner := bufio.NewScanner(strings.NewReader(query.Text))\n\t\t\tfor scanner.Scan() {\n\t\t\t\tline := scanner.Text()\n\t\t\t\tcomments = append(comments, \"  \"+line)\n\t\t\t}\n\t\t\tif err := scanner.Err(); err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t}\n\n\t\tgq := Query{\n\t\t\tCmd:          query.Cmd,\n\t\t\tConstantName: constantName,\n\t\t\tFieldName:    sdk.LowerTitle(query.Name) + \"Stmt\",\n\t\t\tMethodName:   query.Name,\n\t\t\tSourceName:   query.Filename,\n\t\t\tSQL:          query.Text,\n\t\t\tComments:     comments,\n\t\t\tTable:        query.InsertIntoTable,\n\t\t}\n\t\tsqlpkg := parseDriver(options.SqlPackage)\n\n\t\tqpl := int(*options.QueryParameterLimit)\n\n\t\tif len(query.Params) == 1 && qpl != 0 {\n\t\t\tp := query.Params[0]\n\t\t\tgq.Arg = QueryValue{\n\t\t\t\tName:      escape(paramName(p)),\n\t\t\t\tDBName:    p.Column.GetName(),\n\t\t\t\tTyp:       goType(req, options, p.Column),\n\t\t\t\tSQLDriver: sqlpkg,\n\t\t\t\tColumn:    p.Column,\n\t\t\t}\n\t\t} else if len(query.Params) >= 1 {\n\t\t\tvar cols []goColumn\n\t\t\tfor _, p := range query.Params {\n\t\t\t\tcols = append(cols, goColumn{\n\t\t\t\t\tid:     int(p.Number),\n\t\t\t\t\tColumn: p.Column,\n\t\t\t\t})\n\t\t\t}\n\t\t\ts, err := columnsToStruct(req, options, gq.MethodName+\"Params\", cols, false)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tgq.Arg = QueryValue{\n\t\t\t\tEmit:        true,\n\t\t\t\tName:        \"arg\",\n\t\t\t\tStruct:      s,\n\t\t\t\tSQLDriver:   sqlpkg,\n\t\t\t\tEmitPointer: options.EmitParamsStructPointers,\n\t\t\t}\n\n\t\t\t// if query params is 2, and query params limit is 4 AND this is a copyfrom, we still want to emit the query's model\n\t\t\t// otherwise we end up with a copyfrom using a struct without the struct definition\n\t\t\tif len(query.Params) <= qpl && query.Cmd != \":copyfrom\" {\n\t\t\t\tgq.Arg.Emit = false\n\t\t\t}\n\t\t}\n\n\t\tif len(query.Columns) == 1 && query.Columns[0].EmbedTable == nil {\n\t\t\tc := query.Columns[0]\n\t\t\tname := columnName(c, 0)\n\t\t\tname = strings.Replace(name, \"$\", \"_\", -1)\n\t\t\tgq.Ret = QueryValue{\n\t\t\t\tName:      escape(name),\n\t\t\t\tDBName:    name,\n\t\t\t\tTyp:       goType(req, options, c),\n\t\t\t\tSQLDriver: sqlpkg,\n\t\t\t}\n\t\t} else if putOutColumns(query) {\n\t\t\tvar gs *Struct\n\t\t\tvar emit bool\n\n\t\t\tfor _, s := range structs {\n\t\t\t\tif len(s.Fields) != len(query.Columns) {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tsame := true\n\t\t\t\tfor i, f := range s.Fields {\n\t\t\t\t\tc := query.Columns[i]\n\t\t\t\t\tsameName := f.Name == StructName(columnName(c, i), options)\n\t\t\t\t\tsameType := f.Type == goType(req, options, c)\n\t\t\t\t\tsameTable := sdk.SameTableName(c.Table, s.Table, req.Catalog.DefaultSchema)\n\t\t\t\t\tif !sameName || !sameType || !sameTable {\n\t\t\t\t\t\tsame = false\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif same {\n\t\t\t\t\tgs = &s\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif gs == nil {\n\t\t\t\tvar columns []goColumn\n\t\t\t\tfor i, c := range query.Columns {\n\t\t\t\t\tcolumns = append(columns, goColumn{\n\t\t\t\t\t\tid:     i,\n\t\t\t\t\t\tColumn: c,\n\t\t\t\t\t\tembed:  newGoEmbed(c.EmbedTable, structs, req.Catalog.DefaultSchema),\n\t\t\t\t\t})\n\t\t\t\t}\n\t\t\t\tvar err error\n\t\t\t\tgs, err = columnsToStruct(req, options, gq.MethodName+\"Row\", columns, true)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\temit = true\n\t\t\t}\n\t\t\tgq.Ret = QueryValue{\n\t\t\t\tEmit:        emit,\n\t\t\t\tName:        \"i\",\n\t\t\t\tStruct:      gs,\n\t\t\t\tSQLDriver:   sqlpkg,\n\t\t\t\tEmitPointer: options.EmitResultStructPointers,\n\t\t\t}\n\t\t}\n\n\t\tqs = append(qs, gq)\n\t}\n\tsort.Slice(qs, func(i, j int) bool { return qs[i].MethodName < qs[j].MethodName })\n\treturn qs, nil\n}\n\nvar cmdReturnsData = map[string]struct{}{\n\tmetadata.CmdBatchMany: {},\n\tmetadata.CmdBatchOne:  {},\n\tmetadata.CmdMany:      {},\n\tmetadata.CmdOne:       {},\n}\n\nfunc putOutColumns(query *plugin.Query) bool {\n\t_, found := cmdReturnsData[query.Cmd]\n\treturn found\n}\n\n// It's possible that this method will generate duplicate JSON tag values\n//\n//\tColumns: count, count,   count_2\n//\t Fields: Count, Count_2, Count2\n//\n// JSON tags: count, count_2, count_2\n//\n// This is unlikely to happen, so don't fix it yet\nfunc columnsToStruct(req *plugin.GenerateRequest, options *opts.Options, name string, columns []goColumn, useID bool) (*Struct, error) {\n\tgs := Struct{\n\t\tName: name,\n\t}\n\tseen := map[string][]int{}\n\tsuffixes := map[int]int{}\n\tfor i, c := range columns {\n\t\tcolName := columnName(c.Column, i)\n\t\ttagName := colName\n\n\t\t// override col/tag with expected model name\n\t\tif c.embed != nil {\n\t\t\tcolName = c.embed.modelName\n\t\t\ttagName = SetCaseStyle(colName, \"snake\")\n\t\t}\n\n\t\tfieldName := StructName(colName, options)\n\t\tbaseFieldName := fieldName\n\t\t// Track suffixes by the ID of the column, so that columns referring to the same numbered parameter can be\n\t\t// reused.\n\t\tsuffix := 0\n\t\tif o, ok := suffixes[c.id]; ok && useID {\n\t\t\tsuffix = o\n\t\t} else if v := len(seen[fieldName]); v > 0 && !c.IsNamedParam {\n\t\t\tsuffix = v + 1\n\t\t}\n\t\tsuffixes[c.id] = suffix\n\t\tif suffix > 0 {\n\t\t\ttagName = fmt.Sprintf(\"%s_%d\", tagName, suffix)\n\t\t\tfieldName = fmt.Sprintf(\"%s_%d\", fieldName, suffix)\n\t\t}\n\t\ttags := map[string]string{}\n\t\tif options.EmitDbTags {\n\t\t\ttags[\"db\"] = tagName\n\t\t}\n\t\tif options.EmitJsonTags {\n\t\t\ttags[\"json\"] = JSONTagName(tagName, options)\n\t\t}\n\t\taddExtraGoStructTags(tags, req, options, c.Column)\n\t\tf := Field{\n\t\t\tName:   fieldName,\n\t\t\tDBName: colName,\n\t\t\tTags:   tags,\n\t\t\tColumn: c.Column,\n\t\t}\n\t\tif c.embed == nil {\n\t\t\tf.Type = goType(req, options, c.Column)\n\t\t} else {\n\t\t\tf.Type = c.embed.modelType\n\t\t\tf.EmbedFields = c.embed.fields\n\t\t}\n\n\t\tgs.Fields = append(gs.Fields, f)\n\t\tif _, found := seen[baseFieldName]; !found {\n\t\t\tseen[baseFieldName] = []int{i}\n\t\t} else {\n\t\t\tseen[baseFieldName] = append(seen[baseFieldName], i)\n\t\t}\n\t}\n\n\t// If a field does not have a known type, but another\n\t// field with the same name has a known type, assign\n\t// the known type to the field without a known type\n\tfor i, field := range gs.Fields {\n\t\tif len(seen[field.Name]) > 1 && field.Type == \"interface{}\" {\n\t\t\tfor _, j := range seen[field.Name] {\n\t\t\t\tif i == j {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\totherField := gs.Fields[j]\n\t\t\t\tif otherField.Type != field.Type {\n\t\t\t\t\tfield.Type = otherField.Type\n\t\t\t\t}\n\t\t\t\tgs.Fields[i] = field\n\t\t\t}\n\t\t}\n\t}\n\n\terr := checkIncompatibleFieldTypes(gs.Fields)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn &gs, nil\n}\n\nfunc checkIncompatibleFieldTypes(fields []Field) error {\n\tfieldTypes := map[string]string{}\n\tfor _, field := range fields {\n\t\tif fieldType, found := fieldTypes[field.Name]; !found {\n\t\t\tfieldTypes[field.Name] = field.Type\n\t\t} else if field.Type != fieldType {\n\t\t\treturn fmt.Errorf(\"named param %s has incompatible types: %s, %s\", field.Name, field.Type, fieldType)\n\t\t}\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "internal/codegen/golang/result_test.go",
    "content": "package golang\n\nimport (\n\t\"testing\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/metadata\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\nfunc TestPutOutColumns_ForZeroColumns(t *testing.T) {\n\ttests := []struct {\n\t\tcmd  string\n\t\twant bool\n\t}{\n\t\t{\n\t\t\tcmd:  metadata.CmdExec,\n\t\t\twant: false,\n\t\t},\n\t\t{\n\t\t\tcmd:  metadata.CmdExecResult,\n\t\t\twant: false,\n\t\t},\n\t\t{\n\t\t\tcmd:  metadata.CmdExecRows,\n\t\t\twant: false,\n\t\t},\n\t\t{\n\t\t\tcmd:  metadata.CmdExecLastId,\n\t\t\twant: false,\n\t\t},\n\t\t{\n\t\t\tcmd:  metadata.CmdMany,\n\t\t\twant: true,\n\t\t},\n\t\t{\n\t\t\tcmd:  metadata.CmdOne,\n\t\t\twant: true,\n\t\t},\n\t\t{\n\t\t\tcmd:  metadata.CmdCopyFrom,\n\t\t\twant: false,\n\t\t},\n\t\t{\n\t\t\tcmd:  metadata.CmdBatchExec,\n\t\t\twant: false,\n\t\t},\n\t\t{\n\t\t\tcmd:  metadata.CmdBatchMany,\n\t\t\twant: true,\n\t\t},\n\t\t{\n\t\t\tcmd:  metadata.CmdBatchOne,\n\t\t\twant: true,\n\t\t},\n\t}\n\tfor _, tc := range tests {\n\t\tt.Run(tc.cmd, func(t *testing.T) {\n\t\t\tquery := &plugin.Query{\n\t\t\t\tCmd:     tc.cmd,\n\t\t\t\tColumns: []*plugin.Column{},\n\t\t\t}\n\t\t\tgot := putOutColumns(query)\n\t\t\tif got != tc.want {\n\t\t\t\tt.Errorf(\"putOutColumns failed. want %v, got %v\", tc.want, got)\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc TestPutOutColumns_AlwaysTrueWhenQueryHasColumns(t *testing.T) {\n\tquery := &plugin.Query{\n\t\tCmd:     metadata.CmdMany,\n\t\tColumns: []*plugin.Column{{}},\n\t}\n\tif putOutColumns(query) != true {\n\t\tt.Error(\"should be true when we have columns\")\n\t}\n}\n"
  },
  {
    "path": "internal/codegen/golang/sqlite_type.go",
    "content": "package golang\n\nimport (\n\t\"log\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/golang/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/sdk\"\n\t\"github.com/sqlc-dev/sqlc/internal/debug\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\nfunc sqliteType(req *plugin.GenerateRequest, options *opts.Options, col *plugin.Column) string {\n\tdt := strings.ToLower(sdk.DataType(col.Type))\n\tnotNull := col.NotNull || col.IsArray\n\temitPointersForNull := options.EmitPointersForNullTypes\n\n\tswitch dt {\n\n\tcase \"int\", \"integer\", \"tinyint\", \"smallint\", \"mediumint\", \"bigint\", \"unsignedbigint\", \"int2\", \"int8\":\n\t\tif notNull {\n\t\t\treturn \"int64\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*int64\"\n\t\t}\n\t\treturn \"sql.NullInt64\"\n\n\tcase \"blob\":\n\t\treturn \"[]byte\"\n\n\tcase \"real\", \"double\", \"doubleprecision\", \"float\":\n\t\tif notNull {\n\t\t\treturn \"float64\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*float64\"\n\t\t}\n\t\treturn \"sql.NullFloat64\"\n\n\tcase \"boolean\", \"bool\":\n\t\tif notNull {\n\t\t\treturn \"bool\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*bool\"\n\t\t}\n\t\treturn \"sql.NullBool\"\n\n\tcase \"date\", \"datetime\", \"timestamp\":\n\t\tif notNull {\n\t\t\treturn \"time.Time\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*time.Time\"\n\t\t}\n\t\treturn \"sql.NullTime\"\n\n\tcase \"json\", \"jsonb\":\n\t\treturn \"json.RawMessage\"\n\n\tcase \"any\":\n\t\treturn \"interface{}\"\n\n\t}\n\n\tswitch {\n\n\tcase strings.HasPrefix(dt, \"character\"),\n\t\tstrings.HasPrefix(dt, \"varchar\"),\n\t\tstrings.HasPrefix(dt, \"varyingcharacter\"),\n\t\tstrings.HasPrefix(dt, \"nchar\"),\n\t\tstrings.HasPrefix(dt, \"nativecharacter\"),\n\t\tstrings.HasPrefix(dt, \"nvarchar\"),\n\t\tdt == \"text\",\n\t\tdt == \"clob\":\n\t\tif notNull {\n\t\t\treturn \"string\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*string\"\n\t\t}\n\t\treturn \"sql.NullString\"\n\n\tcase strings.HasPrefix(dt, \"decimal\"), dt == \"numeric\":\n\t\tif notNull {\n\t\t\treturn \"float64\"\n\t\t}\n\t\tif emitPointersForNull {\n\t\t\treturn \"*float64\"\n\t\t}\n\t\treturn \"sql.NullFloat64\"\n\n\tdefault:\n\t\tif debug.Active {\n\t\t\tlog.Printf(\"unknown SQLite type: %s\\n\", dt)\n\t\t}\n\n\t\treturn \"interface{}\"\n\n\t}\n}\n"
  },
  {
    "path": "internal/codegen/golang/struct.go",
    "content": "package golang\n\nimport (\n\t\"strings\"\n\t\"unicode\"\n\t\"unicode/utf8\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/codegen/golang/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\ntype Struct struct {\n\tTable   *plugin.Identifier\n\tName    string\n\tFields  []Field\n\tComment string\n}\n\nfunc StructName(name string, options *opts.Options) string {\n\tif rename := options.Rename[name]; rename != \"\" {\n\t\treturn rename\n\t}\n\tout := \"\"\n\tname = strings.Map(func(r rune) rune {\n\t\tif unicode.IsLetter(r) {\n\t\t\treturn r\n\t\t}\n\t\tif unicode.IsDigit(r) {\n\t\t\treturn r\n\t\t}\n\t\treturn rune('_')\n\t}, name)\n\n\tfor _, p := range strings.Split(name, \"_\") {\n\t\tif _, found := options.InitialismsMap[p]; found {\n\t\t\tout += strings.ToUpper(p)\n\t\t} else {\n\t\t\tout += strings.Title(p)\n\t\t}\n\t}\n\n\t// If a name has a digit as its first char, prepand an underscore to make it a valid Go name.\n\tr, _ := utf8.DecodeRuneInString(out)\n\tif unicode.IsDigit(r) {\n\t\treturn \"_\" + out\n\t} else {\n\t\treturn out\n\t}\n}\n"
  },
  {
    "path": "internal/codegen/golang/template.go",
    "content": "package golang\n\nimport \"embed\"\n\n//go:embed templates/*\n//go:embed templates/*/*\nvar templates embed.FS\n"
  },
  {
    "path": "internal/codegen/golang/templates/go-sql-driver-mysql/copyfromCopy.tmpl",
    "content": "{{define \"copyfromCodeGoSqlDriver\"}}\n{{range .GoQueries}}\n{{if eq .Cmd \":copyfrom\" }}\nvar readerHandlerSequenceFor{{.MethodName}} uint32 = 1\n\nfunc convertRowsFor{{.MethodName}}(w *io.PipeWriter, {{.Arg.SlicePair}}) {\n\te := mysqltsv.NewEncoder(w, {{ len .Arg.CopyFromMySQLFields }}, nil)\n\tfor _, row := range {{.Arg.Name}} {\n{{- with $arg := .Arg }}\n{{- range $arg.CopyFromMySQLFields}}\n{{- if eq .Type \"string\"}}\n\te.AppendString({{if $arg.Struct}}row.{{.Name}}{{else}}row{{end}})\n{{- else if or (eq .Type \"[]byte\") (eq .Type \"json.RawMessage\")}}\n\te.AppendBytes({{if $arg.Struct}}row.{{.Name}}{{else}}row{{end}})\n{{- else}}\n\te.AppendValue({{if $arg.Struct}}row.{{.Name}}{{else}}row{{end}})\n{{- end}}\n{{- end}}\n{{- end}}\n\t}\n\tw.CloseWithError(e.Close())\n}\n\n{{range .Comments}}//{{.}}\n{{end -}}\n// {{.MethodName}} uses MySQL's LOAD DATA LOCAL INFILE and is not atomic.\n//\n// Errors and duplicate keys are treated as warnings and insertion will\n// continue, even without an error for some cases.  Use this in a transaction\n// and use SHOW WARNINGS to check for any problems and roll back if you want to.\n//\n// Check the documentation for more information:\n// https://dev.mysql.com/doc/refman/8.0/en/load-data.html#load-data-error-handling\nfunc (q *Queries) {{.MethodName}}(ctx context.Context{{if $.EmitMethodsWithDBArgument}}, db DBTX{{end}}, {{.Arg.SlicePair}}) (int64, error) {\n\tpr, pw := io.Pipe()\n\tdefer pr.Close()\n\trh := fmt.Sprintf(\"{{.MethodName}}_%d\", atomic.AddUint32(&readerHandlerSequenceFor{{.MethodName}}, 1))\n\tmysql.RegisterReaderHandler(rh, func() io.Reader { return pr })\n\tdefer mysql.DeregisterReaderHandler(rh)\n\tgo convertRowsFor{{.MethodName}}(pw, {{.Arg.Name}})\n\t// The string interpolation is necessary because LOAD DATA INFILE requires\n\t// the file name to be given as a literal string.\n\tresult, err := {{if (not $.EmitMethodsWithDBArgument)}}q.{{end}}db.ExecContext(ctx, fmt.Sprintf(\"LOAD DATA LOCAL INFILE '%s' INTO TABLE {{.TableIdentifierForMySQL}} %s ({{range $index, $name := .Arg.ColumnNames}}{{if gt $index 0}}, {{end}}{{$name}}{{end}})\", \"Reader::\" + rh, mysqltsv.Escaping))\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected()\n}\n\n{{end}}\n{{end}}\n{{end}}\n"
  },
  {
    "path": "internal/codegen/golang/templates/pgx/batchCode.tmpl",
    "content": "{{define \"batchCodePgx\"}}\n\nvar (\n\tErrBatchAlreadyClosed = errors.New(\"batch already closed\")\n)\n\n{{range .GoQueries}}\n{{if eq (hasPrefix .Cmd \":batch\") true }}\nconst {{.ConstantName}} = {{$.Q}}-- name: {{.MethodName}} {{.Cmd}}\n{{escape .SQL}}\n{{$.Q}}\n\ntype {{.MethodName}}BatchResults struct {\n    br pgx.BatchResults\n    tot int\n    closed bool\n}\n\n{{if .Arg.Struct}}\ntype {{.Arg.Type}} struct { {{- range .Arg.Struct.Fields}}\n  {{.Name}} {{.Type}} {{if .Tag}}{{$.Q}}{{.Tag}}{{$.Q}}{{end}}\n  {{- end}}\n}\n{{end}}\n\n{{if .Ret.EmitStruct}}\ntype {{.Ret.Type}} struct { {{- range .Ret.Struct.Fields}}\n  {{.Name}} {{.Type}} {{if .Tag}}{{$.Q}}{{.Tag}}{{$.Q}}{{end}}\n  {{- end}}\n}\n{{end}}\n\n{{range .Comments}}//{{.}}\n{{end -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, {{ if $.EmitMethodsWithDBArgument}}db DBTX,{{end}} {{.Arg.SlicePair}}) *{{.MethodName}}BatchResults {\n    batch := &pgx.Batch{}\n    for _, a := range {{index .Arg.Name}} {\n        vals := []interface{}{\n        {{- if .Arg.Struct }}\n        {{- range .Arg.Struct.Fields }}\n            a.{{.Name}},\n        {{- end }}\n        {{- else }}\n            a,\n        {{- end }}\n        }\n        batch.Queue({{.ConstantName}}, vals...)\n    }\n    br := {{if not $.EmitMethodsWithDBArgument}}q.{{end}}db.SendBatch(ctx, batch)\n    return &{{.MethodName}}BatchResults{br,len({{.Arg.Name}}),false}\n}\n\n{{if eq .Cmd \":batchexec\"}}\nfunc (b *{{.MethodName}}BatchResults) Exec(f func(int, error)) {\n\tdefer b.br.Close()\n   for t := 0; t < b.tot; t++ {\n     if b.closed {\n       if f != nil {\n         f(t, ErrBatchAlreadyClosed)\n       }\n       continue\n     }\n     _, err := b.br.Exec()\n     if f != nil {\n        f(t, err)\n     }\n   }\n}\n{{end}}\n\n{{if eq .Cmd \":batchmany\"}}\nfunc (b *{{.MethodName}}BatchResults) Query(f func(int, []{{.Ret.DefineType}}, error)) {\n\tdefer b.br.Close()\n   for t := 0; t < b.tot; t++ {\n     {{- if $.EmitEmptySlices}}\n     items := []{{.Ret.DefineType}}{}\n     {{else}}\n     var items []{{.Ret.DefineType}}\n     {{end -}}\n     if b.closed {\n        if f != nil {\n          f(t, items, ErrBatchAlreadyClosed)\n        }\n        continue\n     }\n     err := func() error {\n       rows, err := b.br.Query()\n       if err != nil {\n         return err\n       }\n       defer rows.Close()\n       for rows.Next() {\n           var {{.Ret.Name}} {{.Ret.Type}}\n           if err := rows.Scan({{.Ret.Scan}}); err != nil {\n             return err\n           }\n           items = append(items, {{.Ret.ReturnName}})\n        }\n        return rows.Err()\n      }()\n      if f != nil {\n        f(t, items, err)\n      }\n   }\n}\n{{end}}\n\n{{if eq .Cmd \":batchone\"}}\nfunc (b *{{.MethodName}}BatchResults) QueryRow(f func(int, {{.Ret.DefineType}}, error)) {\n\tdefer b.br.Close()\n   for t := 0; t < b.tot; t++ {\n     var {{.Ret.Name}} {{.Ret.Type}}\n     if b.closed {\n        if f != nil {\n          f(t, {{if .Ret.IsPointer}}nil{{else}}{{.Ret.Name}}{{end}}, ErrBatchAlreadyClosed)\n        }\n        continue\n     }\n     row := b.br.QueryRow()\n\t  err := row.Scan({{.Ret.Scan}})\n     if f != nil {\n       f(t, {{.Ret.ReturnName}}, err)\n     }\n   }\n}\n{{end}}\n\nfunc (b *{{.MethodName}}BatchResults) Close() error {\n    b.closed = true\n    return b.br.Close()\n}\n{{end}}\n{{end}}\n{{end}}\n"
  },
  {
    "path": "internal/codegen/golang/templates/pgx/copyfromCopy.tmpl",
    "content": "{{define \"copyfromCodePgx\"}}\n{{range .GoQueries}}\n{{if eq .Cmd \":copyfrom\" }}\n// iteratorFor{{.MethodName}} implements pgx.CopyFromSource.\ntype iteratorFor{{.MethodName}} struct {\n\trows []{{.Arg.DefineType}}\n\tskippedFirstNextCall bool\n}\n\nfunc (r *iteratorFor{{.MethodName}}) Next() bool {\n\tif len(r.rows) == 0 {\n\t\treturn false\n\t}\n\tif !r.skippedFirstNextCall {\n\t\tr.skippedFirstNextCall = true\n\t\treturn true\n\t}\n\tr.rows = r.rows[1:]\n\treturn len(r.rows) > 0\n}\n\nfunc (r iteratorFor{{.MethodName}}) Values() ([]interface{}, error) {\n\treturn []interface{}{\n{{- if .Arg.Struct }}\n{{- range .Arg.Struct.Fields }}\n\t\tr.rows[0].{{.Name}},\n{{- end }}\n{{- else }}\n\t\tr.rows[0],\n{{- end }}\n\t}, nil\n}\n\nfunc (r iteratorFor{{.MethodName}}) Err() error {\n\treturn nil\n}\n\n{{range .Comments}}//{{.}}\n{{end -}}\n{{- if $.EmitMethodsWithDBArgument -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.SlicePair}}) (int64, error) {\n\treturn db.CopyFrom(ctx, {{.TableIdentifierAsGoSlice}}, {{.Arg.ColumnNamesAsGoSlice}}, &iteratorFor{{.MethodName}}{rows: {{.Arg.Name}}})\n{{- else -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, {{.Arg.SlicePair}}) (int64, error) {\n\treturn q.db.CopyFrom(ctx, {{.TableIdentifierAsGoSlice}}, {{.Arg.ColumnNamesAsGoSlice}}, &iteratorFor{{.MethodName}}{rows: {{.Arg.Name}}})\n{{- end}}\n}\n\n{{end}}\n{{end}}\n{{end}}\n"
  },
  {
    "path": "internal/codegen/golang/templates/pgx/dbCode.tmpl",
    "content": "{{define \"dbCodeTemplatePgx\"}}\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n{{- if .UsesCopyFrom }}\n\tCopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error)\n{{- end }}\n{{- if .UsesBatch }}\n\tSendBatch(context.Context, *pgx.Batch) pgx.BatchResults\n{{- end }}\n}\n\n{{ if .EmitMethodsWithDBArgument}}\nfunc New() *Queries {\n\treturn &Queries{}\n{{- else -}}\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n{{- end}}\n}\n\ntype Queries struct {\n    {{if not .EmitMethodsWithDBArgument}}\n\tdb DBTX\n    {{end}}\n}\n\n{{if not .EmitMethodsWithDBArgument}}\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n{{end}}\n{{end}}\n"
  },
  {
    "path": "internal/codegen/golang/templates/pgx/interfaceCode.tmpl",
    "content": "{{define \"interfaceCodePgx\"}}\n    type Querier interface {\n    {{- $dbtxParam := .EmitMethodsWithDBArgument -}}\n    {{- range .GoQueries}}\n        {{- if and (eq .Cmd \":one\") ($dbtxParam) }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) ({{.Ret.DefineType}}, error)\n        {{- else if eq .Cmd \":one\" }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) ({{.Ret.DefineType}}, error)\n        {{- end}}\n        {{- if and (eq .Cmd \":many\") ($dbtxParam) }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) ([]{{.Ret.DefineType}}, error)\n        {{- else if eq .Cmd \":many\" }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) ([]{{.Ret.DefineType}}, error)\n        {{- end}}\n        {{- if and (eq .Cmd \":exec\") ($dbtxParam) }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) error\n        {{- else if eq .Cmd \":exec\" }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) error\n        {{- end}}\n        {{- if and (eq .Cmd \":execrows\") ($dbtxParam) }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) (int64, error)\n        {{- else if eq .Cmd \":execrows\" }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) (int64, error)\n        {{- end}}\n        {{- if and (eq .Cmd \":execresult\") ($dbtxParam) }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) (pgconn.CommandTag, error)\n        {{- else if eq .Cmd \":execresult\" }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) (pgconn.CommandTag, error)\n        {{- end}}\n        {{- if and (eq .Cmd \":copyfrom\") ($dbtxParam) }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.SlicePair}}) (int64, error)\n        {{- else if eq .Cmd \":copyfrom\" }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, {{.Arg.SlicePair}}) (int64, error)\n        {{- end}}\n        {{- if and (or (eq .Cmd \":batchexec\") (eq .Cmd \":batchmany\") (eq .Cmd \":batchone\")) ($dbtxParam) }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.SlicePair}}) *{{.MethodName}}BatchResults\n        {{- else if or (eq .Cmd \":batchexec\") (eq .Cmd \":batchmany\") (eq .Cmd \":batchone\") }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, {{.Arg.SlicePair}}) *{{.MethodName}}BatchResults\n        {{- end}}\n\n    {{- end}}\n    }\n\n    var _ Querier = (*Queries)(nil)\n{{end}}\n"
  },
  {
    "path": "internal/codegen/golang/templates/pgx/queryCode.tmpl",
    "content": "{{define \"queryCodePgx\"}}\n{{range .GoQueries}}\n{{if $.OutputQuery .SourceName}}\n{{if and (ne .Cmd \":copyfrom\") (ne (hasPrefix .Cmd \":batch\") true)}}\nconst {{.ConstantName}} = {{$.Q}}-- name: {{.MethodName}} {{.Cmd}}\n{{escape .SQL}}\n{{$.Q}}\n{{end}}\n\n{{if ne (hasPrefix .Cmd \":batch\") true}}\n{{if .Arg.EmitStruct}}\ntype {{.Arg.Type}} struct { {{- range .Arg.Struct.Fields}}\n  {{.Name}} {{.Type}} {{if .Tag}}{{$.Q}}{{.Tag}}{{$.Q}}{{end}}\n  {{- end}}\n}\n{{end}}\n\n{{if .Ret.EmitStruct}}\ntype {{.Ret.Type}} struct { {{- range .Ret.Struct.Fields}}\n  {{.Name}} {{.Type}} {{if .Tag}}{{$.Q}}{{.Tag}}{{$.Q}}{{end}}\n  {{- end}}\n}\n{{end}}\n{{end}}\n\n{{if eq .Cmd \":one\"}}\n{{range .Comments}}//{{.}}\n{{end -}}\n{{- if $.EmitMethodsWithDBArgument -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) ({{.Ret.DefineType}}, error) {\n\trow := db.QueryRow(ctx, {{.ConstantName}}, {{.Arg.Params}})\n{{- else -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) ({{.Ret.DefineType}}, error) {\n\trow := q.db.QueryRow(ctx, {{.ConstantName}}, {{.Arg.Params}})\n{{- end}}\n\t{{- if or (ne .Arg.Pair .Ret.Pair) (ne .Arg.DefineType .Ret.DefineType) }}\n\tvar {{.Ret.Name}} {{.Ret.Type}}\n\t{{- end}}\n\terr := row.Scan({{.Ret.Scan}})\n\t{{- if $.WrapErrors}}\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query {{.MethodName}}: %w\", err)\n\t}\n\t{{- end}}\n\treturn {{.Ret.ReturnName}}, err\n}\n{{end}}\n\n{{if eq .Cmd \":many\"}}\n{{range .Comments}}//{{.}}\n{{end -}}\n{{- if $.EmitMethodsWithDBArgument -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) ([]{{.Ret.DefineType}}, error) {\n\trows, err := db.Query(ctx, {{.ConstantName}}, {{.Arg.Params}})\n{{- else -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) ([]{{.Ret.DefineType}}, error) {\n\trows, err := q.db.Query(ctx, {{.ConstantName}}, {{.Arg.Params}})\n{{- end}}\n\tif err != nil {\n\t\treturn nil, {{if $.WrapErrors}}fmt.Errorf(\"query {{.MethodName}}: %w\", err){{else}}err{{end}}\n\t}\n\tdefer rows.Close()\n\t{{- if $.EmitEmptySlices}}\n\titems := []{{.Ret.DefineType}}{}\n\t{{else}}\n\tvar items []{{.Ret.DefineType}}\n\t{{end -}}\n\tfor rows.Next() {\n\t\tvar {{.Ret.Name}} {{.Ret.Type}}\n\t\tif err := rows.Scan({{.Ret.Scan}}); err != nil {\n\t\t\treturn nil, {{if $.WrapErrors}}fmt.Errorf(\"query {{.MethodName}}: %w\", err){{else}}err{{end}}\n\t\t}\n\t\titems = append(items, {{.Ret.ReturnName}})\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, {{if $.WrapErrors}}fmt.Errorf(\"query {{.MethodName}}: %w\", err){{else}}err{{end}}\n\t}\n\treturn items, nil\n}\n{{end}}\n\n{{if eq .Cmd \":exec\"}}\n{{range .Comments}}//{{.}}\n{{end -}}\n{{- if $.EmitMethodsWithDBArgument -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) error {\n\t_, err := db.Exec(ctx, {{.ConstantName}}, {{.Arg.Params}})\n{{- else -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) error {\n\t_, err := q.db.Exec(ctx, {{.ConstantName}}, {{.Arg.Params}})\n{{- end}}\n\t{{- if $.WrapErrors }}\n\tif err != nil {\n\t\treturn fmt.Errorf(\"query {{.MethodName}}: %w\", err)\n\t}\n\treturn nil\n\t{{- else }}\n\treturn err\n\t{{- end }}\n}\n{{end}}\n\n{{if eq .Cmd \":execrows\"}}\n{{range .Comments}}//{{.}}\n{{end -}}\n{{if $.EmitMethodsWithDBArgument -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) (int64, error) {\n\tresult, err := db.Exec(ctx, {{.ConstantName}}, {{.Arg.Params}})\n{{- else -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) (int64, error) {\n\tresult, err := q.db.Exec(ctx, {{.ConstantName}}, {{.Arg.Params}})\n{{- end}}\n\tif err != nil {\n\t\treturn 0, {{if $.WrapErrors}}fmt.Errorf(\"query {{.MethodName}}: %w\", err){{else}}err{{end}}\n\t}\n\treturn result.RowsAffected(), nil\n}\n{{end}}\n\n{{if eq .Cmd \":execresult\"}}\n{{range .Comments}}//{{.}}\n{{end -}}\n{{- if $.EmitMethodsWithDBArgument -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) (pgconn.CommandTag, error) {\n\t{{queryRetval .}} db.Exec(ctx, {{.ConstantName}}, {{.Arg.Params}})\n{{- else -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) (pgconn.CommandTag, error) {\n\t{{queryRetval .}} q.db.Exec(ctx, {{.ConstantName}}, {{.Arg.Params}})\n{{- end}}\n\t{{- if $.WrapErrors}}\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query {{.MethodName}}: %w\", err)\n\t}\n\treturn result, err\n\t{{- end}}\n}\n{{end}}\n\n\n{{end}}\n{{end}}\n{{end}}\n"
  },
  {
    "path": "internal/codegen/golang/templates/stdlib/dbCode.tmpl",
    "content": "{{define \"dbCodeTemplateStd\"}}\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\n{{ if .EmitMethodsWithDBArgument}}\nfunc New() *Queries {\n\treturn &Queries{}\n{{- else -}}\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n{{- end}}\n}\n\n{{if .EmitPreparedQueries}}\nfunc Prepare(ctx context.Context, db DBTX) (*Queries, error) {\n\tq := Queries{db: db}\n\tvar err error\n\t{{- if eq (len .GoQueries) 0 }}\n\t_ = err\n\t{{- end }}\n\t{{- range .GoQueries }}\n\tif q.{{.FieldName}}, err = db.PrepareContext(ctx, {{.ConstantName}}); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query {{.MethodName}}: %w\", err)\n\t}\n\t{{- end}}\n\treturn &q, nil\n}\n\nfunc (q *Queries) Close() error {\n\tvar err error\n\t{{- range .GoQueries }}\n\tif q.{{.FieldName}} != nil {\n\t\tif cerr := q.{{.FieldName}}.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing {{.FieldName}}: %w\", cerr)\n\t\t}\n\t}\n\t{{- end}}\n\treturn err\n}\n\nfunc (q *Queries) exec(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) (sql.Result, error) {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).ExecContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.ExecContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.ExecContext(ctx, query, args...)\n\t}\n}\n\nfunc (q *Queries) query(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) (*sql.Rows, error) {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).QueryContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.QueryContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.QueryContext(ctx, query, args...)\n\t}\n}\n\nfunc (q *Queries) queryRow(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) (*sql.Row) {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).QueryRowContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.QueryRowContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.QueryRowContext(ctx, query, args...)\n\t}\n}\n{{end}}\n\ntype Queries struct {\n    {{- if not .EmitMethodsWithDBArgument}}\n\tdb DBTX\n    {{- end}}\n\n    {{- if .EmitPreparedQueries}}\n\ttx         *sql.Tx\n\t{{- range .GoQueries}}\n\t{{.FieldName}}  *sql.Stmt\n\t{{- end}}\n\t{{- end}}\n}\n\n{{if not .EmitMethodsWithDBArgument}}\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n     \t{{- if .EmitPreparedQueries}}\n\t\ttx: tx,\n\t\t{{- range .GoQueries}}\n\t\t{{.FieldName}}: q.{{.FieldName}},\n\t\t{{- end}}\n\t\t{{- end}}\n\t}\n}\n{{end}}\n{{end}}\n"
  },
  {
    "path": "internal/codegen/golang/templates/stdlib/interfaceCode.tmpl",
    "content": "{{define \"interfaceCodeStd\"}}\n    type Querier interface {\n    {{- $dbtxParam := .EmitMethodsWithDBArgument -}}\n    {{- range .GoQueries}}\n        {{- if and (eq .Cmd \":one\") ($dbtxParam) }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) ({{.Ret.DefineType}}, error)\n        {{- else if eq .Cmd \":one\"}}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) ({{.Ret.DefineType}}, error)\n        {{- end}}\n        {{- if and (eq .Cmd \":many\") ($dbtxParam) }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) ([]{{.Ret.DefineType}}, error)\n        {{- else if eq .Cmd \":many\"}}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) ([]{{.Ret.DefineType}}, error)\n        {{- end}}\n        {{- if and (eq .Cmd \":exec\") ($dbtxParam) }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) error\n        {{- else if eq .Cmd \":exec\"}}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) error\n        {{- end}}\n        {{- if and (eq .Cmd \":execrows\") ($dbtxParam) }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) (int64, error)\n        {{- else if eq .Cmd \":execrows\"}}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) (int64, error)\n        {{- end}}\n        {{- if and (eq .Cmd \":execlastid\") ($dbtxParam) }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) (int64, error)\n        {{- else if eq .Cmd \":execlastid\"}}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) (int64, error)\n        {{- end}}\n        {{- if and (eq .Cmd \":execresult\") ($dbtxParam) }}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, db DBTX, {{.Arg.Pair}}) (sql.Result, error)\n        {{- else if eq .Cmd \":execresult\"}}\n            {{range .Comments}}//{{.}}\n            {{end -}}\n            {{.MethodName}}(ctx context.Context, {{.Arg.Pair}}) (sql.Result, error)\n        {{- end}}\n    {{- end}}\n    }\n\n    var _ Querier = (*Queries)(nil)\n{{end}}\n"
  },
  {
    "path": "internal/codegen/golang/templates/stdlib/queryCode.tmpl",
    "content": "{{define \"queryCodeStd\"}}\n{{range .GoQueries}}\n{{if $.OutputQuery .SourceName}}\nconst {{.ConstantName}} = {{$.Q}}-- name: {{.MethodName}} {{.Cmd}}\n{{escape .SQL}}\n{{$.Q}}\n\n{{if .Arg.EmitStruct}}\ntype {{.Arg.Type}} struct { {{- range .Arg.UniqueFields}}\n  {{.Name}} {{.Type}} {{if .Tag}}{{$.Q}}{{.Tag}}{{$.Q}}{{end}}\n  {{- end}}\n}\n{{end}}\n\n{{if .Ret.EmitStruct}}\ntype {{.Ret.Type}} struct { {{- range .Ret.Struct.Fields}}\n  {{.Name}} {{.Type}} {{if .Tag}}{{$.Q}}{{.Tag}}{{$.Q}}{{end}}\n  {{- end}}\n}\n{{end}}\n\n{{if eq .Cmd \":one\"}}\n{{range .Comments}}//{{.}}\n{{end -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, {{ dbarg }} {{.Arg.Pair}}) ({{.Ret.DefineType}}, error) {\n    {{- template \"queryCodeStdExec\" . }}\n\t{{- if or (ne .Arg.Pair .Ret.Pair) (ne .Arg.DefineType .Ret.DefineType) }}\n\tvar {{.Ret.Name}} {{.Ret.Type}}\n\t{{- end}}\n\terr := row.Scan({{.Ret.Scan}})\n\t{{- if $.WrapErrors}}\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query {{.MethodName}}: %w\", err)\n\t}\n\t{{- end}}\n\treturn {{.Ret.ReturnName}}, err\n}\n{{end}}\n\n{{if eq .Cmd \":many\"}}\n{{range .Comments}}//{{.}}\n{{end -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, {{ dbarg }} {{.Arg.Pair}}) ([]{{.Ret.DefineType}}, error) {\n    {{- template \"queryCodeStdExec\" . }}\n    if err != nil {\n        return nil, {{if $.WrapErrors}}fmt.Errorf(\"query {{.MethodName}}: %w\", err){{else}}err{{end}}\n    }\n    defer rows.Close()\n    {{- if $.EmitEmptySlices}}\n    items := []{{.Ret.DefineType}}{}\n    {{else}}\n    var items []{{.Ret.DefineType}}\n    {{end -}}\n    for rows.Next() {\n        var {{.Ret.Name}} {{.Ret.Type}}\n        if err := rows.Scan({{.Ret.Scan}}); err != nil {\n            return nil, {{if $.WrapErrors}}fmt.Errorf(\"query {{.MethodName}}: %w\", err){{else}}err{{end}}\n        }\n        items = append(items, {{.Ret.ReturnName}})\n    }\n    if err := rows.Close(); err != nil {\n        return nil, {{if $.WrapErrors}}fmt.Errorf(\"query {{.MethodName}}: %w\", err){{else}}err{{end}}\n    }\n    if err := rows.Err(); err != nil {\n        return nil, {{if $.WrapErrors}}fmt.Errorf(\"query {{.MethodName}}: %w\", err){{else}}err{{end}}\n    }\n    return items, nil\n}\n{{end}}\n\n{{if eq .Cmd \":exec\"}}\n{{range .Comments}}//{{.}}\n{{end -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, {{ dbarg }} {{.Arg.Pair}}) error {\n    {{- template \"queryCodeStdExec\" . }}\n    {{- if $.WrapErrors}}\n    if err != nil {\n        err = fmt.Errorf(\"query {{.MethodName}}: %w\", err)\n    }\n    {{- end}}\n    return err\n}\n{{end}}\n\n{{if eq .Cmd \":execrows\"}}\n{{range .Comments}}//{{.}}\n{{end -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, {{ dbarg }} {{.Arg.Pair}}) (int64, error) {\n    {{- template \"queryCodeStdExec\" . }}\n    if err != nil {\n        return 0, {{if $.WrapErrors}}fmt.Errorf(\"query {{.MethodName}}: %w\", err){{else}}err{{end}}\n    }\n    return result.RowsAffected()\n}\n{{end}}\n\n{{if eq .Cmd \":execlastid\"}}\n{{range .Comments}}//{{.}}\n{{end -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, {{ dbarg }} {{.Arg.Pair}}) (int64, error) {\n    {{- template \"queryCodeStdExec\" . }}\n    if err != nil {\n        return 0, {{if $.WrapErrors}}fmt.Errorf(\"query {{.MethodName}}: %w\", err){{else}}err{{end}}\n    }\n    return result.LastInsertId()\n}\n{{end}}\n\n{{if eq .Cmd \":execresult\"}}\n{{range .Comments}}//{{.}}\n{{end -}}\nfunc (q *Queries) {{.MethodName}}(ctx context.Context, {{ dbarg }} {{.Arg.Pair}}) (sql.Result, error) {\n    {{- template \"queryCodeStdExec\" . }}\n    {{- if $.WrapErrors}}\n    if err != nil {\n        err = fmt.Errorf(\"query {{.MethodName}}: %w\", err)\n    }\n    return result, err\n    {{- end}}\n}\n{{end}}\n\n{{end}}\n{{end}}\n{{end}}\n\n{{define \"queryCodeStdExec\"}}\n    {{- if .Arg.HasSqlcSlices }}\n        query := {{.ConstantName}}\n        var queryParams []interface{}\n        {{- if .Arg.Struct }}\n            {{- $arg := .Arg }}\n            {{- range .Arg.Struct.Fields }}\n                {{- if .HasSqlcSlice }}\n                    if len({{$arg.VariableForField .}}) > 0 {\n                      for _, v := range {{$arg.VariableForField .}} {\n                        queryParams = append(queryParams, v)\n                      }\n                      query = strings.Replace(query, \"/*SLICE:{{.Column.Name}}*/?\", strings.Repeat(\",?\", len({{$arg.VariableForField .}}))[1:], 1)\n                    } else {\n                      query = strings.Replace(query, \"/*SLICE:{{.Column.Name}}*/?\", \"NULL\", 1)\n                    }\n                {{- else }}\n                  queryParams = append(queryParams, {{$arg.VariableForField .}})\n                {{- end }}\n            {{- end }}\n        {{- else }}\n            {{- /* Single argument parameter to this goroutine (they are not packed\n                in a struct), because .Arg.HasSqlcSlices further up above was true,\n                this section is 100% a slice (impossible to get here otherwise).\n            */}}\n            if len({{.Arg.Name}}) > 0 {\n              for _, v := range {{.Arg.Name}} {\n                queryParams = append(queryParams, v)\n              }\n              query = strings.Replace(query, \"/*SLICE:{{.Arg.Column.Name}}*/?\", strings.Repeat(\",?\", len({{.Arg.Name}}))[1:], 1)\n            } else {\n              query = strings.Replace(query, \"/*SLICE:{{.Arg.Column.Name}}*/?\", \"NULL\", 1)\n            }\n        {{- end }}\n        {{- if emitPreparedQueries }}\n        {{ queryRetval . }} {{ queryMethod . }}(ctx, nil, query, queryParams...)\n        {{- else}}\n        {{ queryRetval . }} {{ queryMethod . }}(ctx, query, queryParams...)\n        {{- end -}}\n    {{- else if emitPreparedQueries }}\n        {{- queryRetval . }} {{ queryMethod . }}(ctx, q.{{.FieldName}}, {{.ConstantName}}, {{.Arg.Params}})\n    {{- else}}\n        {{- queryRetval . }} {{ queryMethod . }}(ctx, {{.ConstantName}}, {{.Arg.Params}})\n    {{- end -}}\n{{end}}\n"
  },
  {
    "path": "internal/codegen/golang/templates/template.tmpl",
    "content": "{{define \"dbFile\"}}\n{{if .BuildTags}}\n//go:build {{.BuildTags}}\n\n{{end}}// Code generated by sqlc. DO NOT EDIT.\n{{if not .OmitSqlcVersion}}// versions:\n//   sqlc {{.SqlcVersion}}\n{{end}}\n\npackage {{.Package}}\n\n{{ if hasImports .SourceName }}\nimport (\n\t{{range imports .SourceName}}\n\t{{range .}}{{.}}\n\t{{end}}\n\t{{end}}\n)\n{{end}}\n\n{{template \"dbCode\" . }}\n{{end}}\n\n{{define \"dbCode\"}}\n\n{{if .SQLDriver.IsPGX }}\n\t{{- template \"dbCodeTemplatePgx\" .}}\n{{else}}\n\t{{- template \"dbCodeTemplateStd\" .}}\n{{end}}\n\n{{end}}\n\n{{define \"interfaceFile\"}}\n{{if .BuildTags}}\n//go:build {{.BuildTags}}\n\n{{end}}// Code generated by sqlc. DO NOT EDIT.\n{{if not .OmitSqlcVersion}}// versions:\n//   sqlc {{.SqlcVersion}}\n{{end}}\n\npackage {{.Package}}\n\n{{ if hasImports .SourceName }}\nimport (\n\t{{range imports .SourceName}}\n\t{{range .}}{{.}}\n\t{{end}}\n\t{{end}}\n)\n{{end}}\n\n{{template \"interfaceCode\" . }}\n{{end}}\n\n{{define \"interfaceCode\"}}\n\t{{if .SQLDriver.IsPGX }}\n\t\t{{- template \"interfaceCodePgx\" .}}\n\t{{else}}\n\t\t{{- template \"interfaceCodeStd\" .}}\n\t{{end}}\n{{end}}\n\n{{define \"modelsFile\"}}\n{{if .BuildTags}}\n//go:build {{.BuildTags}}\n\n{{end}}// Code generated by sqlc. DO NOT EDIT.\n{{if not .OmitSqlcVersion}}// versions:\n//   sqlc {{.SqlcVersion}}\n{{end}}\n\npackage {{.Package}}\n\n{{ if hasImports .SourceName }}\nimport (\n\t{{range imports .SourceName}}\n\t{{range .}}{{.}}\n\t{{end}}\n\t{{end}}\n)\n{{end}}\n\n{{template \"modelsCode\" . }}\n{{end}}\n\n{{define \"modelsCode\"}}\n{{range .Enums}}\n{{if .Comment}}{{comment .Comment}}{{end}}\ntype {{.Name}} string\n\nconst (\n\t{{- range .Constants}}\n\t{{.Name}} {{.Type}} = \"{{.Value}}\"\n\t{{- end}}\n)\n\nfunc (e *{{.Name}}) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = {{.Name}}(s)\n\tcase string:\n\t\t*e = {{.Name}}(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for {{.Name}}: %T\", src)\n\t}\n\treturn nil\n}\n\ntype Null{{.Name}} struct {\n\t{{.Name}} {{.Name}} {{if .NameTag}}{{$.Q}}{{.NameTag}}{{$.Q}}{{end}}\n  Valid  bool {{if .ValidTag}}{{$.Q}}{{.ValidTag}}{{$.Q}}{{end}} // Valid is true if {{.Name}} is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *Null{{.Name}}) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.{{.Name}}, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.{{.Name}}.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns Null{{.Name}}) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.{{.Name}}), nil\n}\n\n\n{{ if $.EmitEnumValidMethod }}\nfunc (e {{.Name}}) Valid() bool {\n  switch e {\n  case {{ range $idx, $name := .Constants }}{{ if ne $idx 0 }},{{ \"\\n\" }}{{ end }}{{ .Name }}{{ end }}:\n    return true\n  }\n  return false\n}\n{{ end }}\n\n{{ if $.EmitAllEnumValues }}\nfunc All{{ .Name }}Values() []{{ .Name }} {\n\treturn []{{ .Name }}{ {{ range .Constants}}{{ \"\\n\" }}{{ .Name }},{{ end }}\n\t}\n}\n{{ end }}\n{{end}}\n\n{{range .Structs}}\n{{if .Comment}}{{comment .Comment}}{{end}}\ntype {{.Name}} struct { {{- range .Fields}}\n  {{- if .Comment}}\n  {{comment .Comment}}{{else}}\n  {{- end}}\n  {{.Name}} {{.Type}} {{if .Tag}}{{$.Q}}{{.Tag}}{{$.Q}}{{end}}\n  {{- end}}\n}\n{{end}}\n{{end}}\n\n{{define \"queryFile\"}}\n{{if .BuildTags}}\n//go:build {{.BuildTags}}\n\n{{end}}// Code generated by sqlc. DO NOT EDIT.\n{{if not .OmitSqlcVersion}}// versions:\n//   sqlc {{.SqlcVersion}}\n{{end}}// source: {{.SourceName}}\n\npackage {{.Package}}\n\n{{ if hasImports .SourceName }}\nimport (\n\t{{range imports .SourceName}}\n\t{{range .}}{{.}}\n\t{{end}}\n\t{{end}}\n)\n{{end}}\n\n{{template \"queryCode\" . }}\n{{end}}\n\n{{define \"queryCode\"}}\n{{if .SQLDriver.IsPGX }}\n    {{- template \"queryCodePgx\" .}}\n{{else}}\n    {{- template \"queryCodeStd\" .}}\n{{end}}\n{{end}}\n\n{{define \"copyfromFile\"}}\n{{if .BuildTags}}\n//go:build {{.BuildTags}}\n\n{{end}}// Code generated by sqlc. DO NOT EDIT.\n{{if not .OmitSqlcVersion}}// versions:\n//   sqlc {{.SqlcVersion}}\n{{end}}// source: {{.SourceName}}\n\npackage {{.Package}}\n\n{{ if hasImports .SourceName }}\nimport (\n\t{{range imports .SourceName}}\n\t{{range .}}{{.}}\n\t{{end}}\n\t{{end}}\n)\n{{end}}\n\n{{template \"copyfromCode\" . }}\n{{end}}\n\n{{define \"copyfromCode\"}}\n{{if .SQLDriver.IsPGX }}\n    {{- template \"copyfromCodePgx\" .}}\n{{else if .SQLDriver.IsGoSQLDriverMySQL }}\n    {{- template \"copyfromCodeGoSqlDriver\" .}}\n{{end}}\n{{end}}\n\n{{define \"batchFile\"}}\n{{if .BuildTags}}\n//go:build {{.BuildTags}}\n\n{{end}}// Code generated by sqlc. DO NOT EDIT.\n{{if not .OmitSqlcVersion}}// versions:\n//   sqlc {{.SqlcVersion}}\n{{end}}// source: {{.SourceName}}\n\npackage {{.Package}}\n\n{{ if hasImports .SourceName }}\nimport (\n\t{{range imports .SourceName}}\n\t{{range .}}{{.}}\n\t{{end}}\n\t{{end}}\n)\n{{end}}\n\n{{template \"batchCode\" . }}\n{{end}}\n\n{{define \"batchCode\"}}\n{{if .SQLDriver.IsPGX }}\n    {{- template \"batchCodePgx\" .}}\n{{end}}\n{{end}}\n"
  },
  {
    "path": "internal/codegen/json/gen.go",
    "content": "package json\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\tejson \"encoding/json\"\n\t\"fmt\"\n\n\t\"google.golang.org/protobuf/encoding/protojson\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\nfunc parseOptions(req *plugin.GenerateRequest) (*opts, error) {\n\tif len(req.PluginOptions) == 0 {\n\t\treturn new(opts), nil\n\t}\n\n\tvar options *opts\n\tdec := ejson.NewDecoder(bytes.NewReader(req.PluginOptions))\n\tdec.DisallowUnknownFields()\n\tif err := dec.Decode(&options); err != nil {\n\t\treturn options, fmt.Errorf(\"unmarshalling options: %s\", err)\n\t}\n\treturn options, nil\n}\n\nfunc Generate(ctx context.Context, req *plugin.GenerateRequest) (*plugin.GenerateResponse, error) {\n\toptions, err := parseOptions(req)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tindent := \"  \"\n\tif options.Indent != \"\" {\n\t\tindent = options.Indent\n\t}\n\n\tfilename := \"codegen_request.json\"\n\tif options.Filename != \"\" {\n\t\tfilename = options.Filename\n\t}\n\n\t// The output of protojson has randomized whitespace\n\t// https://github.com/golang/protobuf/issues/1082\n\tm := &protojson.MarshalOptions{\n\t\tEmitUnpopulated: true,\n\t\tIndent:          \"\",\n\t\tUseProtoNames:   true,\n\t}\n\tdata, err := m.Marshal(req)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar rm ejson.RawMessage = data\n\tblob, err := ejson.MarshalIndent(rm, \"\", indent)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn &plugin.GenerateResponse{\n\t\tFiles: []*plugin.File{\n\t\t\t{\n\t\t\t\tName:     filename,\n\t\t\t\tContents: append(blob, '\\n'),\n\t\t\t},\n\t\t},\n\t}, nil\n}\n"
  },
  {
    "path": "internal/codegen/json/opts.go",
    "content": "package json\n\ntype opts struct {\n\tOut      string `json:\"out\"`\n\tIndent   string `json:\"indent,omitempty\"`\n\tFilename string `json:\"filename,omitempty\"`\n}\n"
  },
  {
    "path": "internal/codegen/sdk/sdk.go",
    "content": "package sdk\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/pattern\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\nfunc DataType(n *plugin.Identifier) string {\n\tif n.Schema != \"\" {\n\t\treturn n.Schema + \".\" + n.Name\n\t} else {\n\t\treturn n.Name\n\t}\n}\n\nfunc MatchString(pat, target string) bool {\n\tmatcher, err := pattern.MatchCompile(pat)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn matcher.MatchString(target)\n}\n\nfunc SameTableName(tableID, f *plugin.Identifier, defaultSchema string) bool {\n\tif tableID == nil {\n\t\treturn false\n\t}\n\tschema := tableID.Schema\n\tif tableID.Schema == \"\" {\n\t\tschema = defaultSchema\n\t}\n\treturn tableID.Catalog == f.Catalog && schema == f.Schema && tableID.Name == f.Name\n}\n"
  },
  {
    "path": "internal/codegen/sdk/utils.go",
    "content": "package sdk\n\nimport (\n\t\"strings\"\n\t\"unicode\"\n)\n\nfunc LowerTitle(s string) string {\n\tif s == \"\" {\n\t\treturn s\n\t}\n\n\ta := []rune(s)\n\ta[0] = unicode.ToLower(a[0])\n\treturn string(a)\n}\n\nfunc Title(s string) string {\n\treturn strings.Title(s)\n}\n\n// Go string literals cannot contain backtick. If a string contains\n// a backtick, replace it the following way:\n//\n// input:\n//\n//\tSELECT `group` FROM foo\n//\n// output:\n//\n//\tSELECT ` + \"`\" + `group` + \"`\" + ` FROM foo\n//\n// # The escaped string must be rendered inside an existing string literal\n//\n// A string cannot be escaped twice\nfunc EscapeBacktick(s string) string {\n\treturn strings.Replace(s, \"`\", \"`+\\\"`\\\"+`\", -1)\n}\n\nfunc DoubleSlashComment(s string) string {\n\treturn \"// \" + strings.ReplaceAll(s, \"\\n\", \"\\n// \")\n}\n"
  },
  {
    "path": "internal/codegen/sdk/utils_test.go",
    "content": "package sdk\n\nimport (\n\t\"testing\"\n)\n\nfunc TestLowerTitle(t *testing.T) {\n\n\t// empty\n\tif LowerTitle(\"\") != \"\" {\n\t\tt.Fatal(\"expected empty title to remain empty\")\n\t}\n\n\t// all lowercase\n\tif LowerTitle(\"lowercase\") != \"lowercase\" {\n\t\tt.Fatal(\"expected no changes when input is all lowercase\")\n\t}\n\n\t// all uppercase\n\tif LowerTitle(\"UPPERCASE\") != \"uPPERCASE\" {\n\t\tt.Fatal(\"expected first rune to be lower when input is all uppercase\")\n\t}\n\n\t// Title Case\n\tif LowerTitle(\"Title Case\") != \"title Case\" {\n\t\tt.Fatal(\"expected first rune to be lower when input is Title Case\")\n\t}\n}\n"
  },
  {
    "path": "internal/compiler/analyze.go",
    "content": "package compiler\n\nimport (\n\t\"sort\"\n\n\tanalyzer \"github.com/sqlc-dev/sqlc/internal/analysis\"\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/source\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/named\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/rewrite\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/validate\"\n)\n\ntype analysis struct {\n\tTable      *ast.TableName\n\tColumns    []*Column\n\tParameters []Parameter\n\tNamed      *named.ParamSet\n\tQuery      string\n}\n\nfunc convertTableName(id *analyzer.Identifier) *ast.TableName {\n\tif id == nil {\n\t\treturn nil\n\t}\n\treturn &ast.TableName{\n\t\tCatalog: id.Catalog,\n\t\tSchema:  id.Schema,\n\t\tName:    id.Name,\n\t}\n}\n\nfunc convertTypeName(id *analyzer.Identifier) *ast.TypeName {\n\tif id == nil {\n\t\treturn nil\n\t}\n\treturn &ast.TypeName{\n\t\tCatalog: id.Catalog,\n\t\tSchema:  id.Schema,\n\t\tName:    id.Name,\n\t}\n}\n\nfunc convertColumn(c *analyzer.Column) *Column {\n\tlength := int(c.Length)\n\treturn &Column{\n\t\tName:         c.Name,\n\t\tOriginalName: c.OriginalName,\n\t\tDataType:     c.DataType,\n\t\tNotNull:      c.NotNull,\n\t\tUnsigned:     c.Unsigned,\n\t\tIsArray:      c.IsArray,\n\t\tArrayDims:    int(c.ArrayDims),\n\t\tComment:      c.Comment,\n\t\tLength:       &length,\n\t\tIsNamedParam: c.IsNamedParam,\n\t\tIsFuncCall:   c.IsFuncCall,\n\t\tScope:        c.Scope,\n\t\tTable:        convertTableName(c.Table),\n\t\tTableAlias:   c.TableAlias,\n\t\tType:         convertTypeName(c.Type),\n\t\tEmbedTable:   convertTableName(c.EmbedTable),\n\t\tIsSqlcSlice:  c.IsSqlcSlice,\n\t}\n}\n\nfunc combineAnalysis(prev *analysis, a *analyzer.Analysis) *analysis {\n\tvar cols []*Column\n\tfor _, c := range a.Columns {\n\t\tcols = append(cols, convertColumn(c))\n\t}\n\tvar params []Parameter\n\tfor _, p := range a.Params {\n\t\tparams = append(params, Parameter{\n\t\t\tNumber: int(p.Number),\n\t\t\tColumn: convertColumn(p.Column),\n\t\t})\n\t}\n\tif len(prev.Columns) == len(cols) {\n\t\tfor i := range prev.Columns {\n\t\t\t// Only override column types if the analyzer provides a specific type\n\t\t\t// (not \"any\"), since the catalog-based inference may have better info\n\t\t\tif cols[i].DataType != \"any\" {\n\t\t\t\tprev.Columns[i].DataType = cols[i].DataType\n\t\t\t\tprev.Columns[i].IsArray = cols[i].IsArray\n\t\t\t\tprev.Columns[i].ArrayDims = cols[i].ArrayDims\n\t\t\t}\n\t\t}\n\t} else {\n\t\tembedding := false\n\t\tfor i := range prev.Columns {\n\t\t\tif prev.Columns[i].EmbedTable != nil {\n\t\t\t\tembedding = true\n\t\t\t}\n\t\t}\n\t\tif !embedding {\n\t\t\tprev.Columns = cols\n\t\t}\n\t}\n\tif len(prev.Parameters) == len(params) {\n\t\tfor i := range prev.Parameters {\n\t\t\t// Only override parameter types if the analyzer provides a specific type\n\t\t\t// (not \"any\"), since the catalog-based inference may have better info\n\t\t\tif params[i].Column.DataType != \"any\" {\n\t\t\t\tprev.Parameters[i].Column.DataType = params[i].Column.DataType\n\t\t\t\tprev.Parameters[i].Column.IsArray = params[i].Column.IsArray\n\t\t\t\tprev.Parameters[i].Column.ArrayDims = params[i].Column.ArrayDims\n\t\t\t}\n\t\t}\n\t} else {\n\t\tprev.Parameters = params\n\t}\n\treturn prev\n}\n\nfunc (c *Compiler) analyzeQuery(raw *ast.RawStmt, query string) (*analysis, error) {\n\treturn c._analyzeQuery(raw, query, true)\n}\n\nfunc (c *Compiler) inferQuery(raw *ast.RawStmt, query string) (*analysis, error) {\n\treturn c._analyzeQuery(raw, query, false)\n}\n\nfunc (c *Compiler) _analyzeQuery(raw *ast.RawStmt, query string, failfast bool) (*analysis, error) {\n\terrors := make([]error, 0)\n\tcheck := func(err error) error {\n\t\tif failfast {\n\t\t\treturn err\n\t\t}\n\t\tif err != nil {\n\t\t\terrors = append(errors, err)\n\t\t}\n\t\treturn nil\n\t}\n\n\tnumbers, dollar, err := validate.ParamRef(raw)\n\tif err := check(err); err != nil {\n\t\treturn nil, err\n\t}\n\n\traw, namedParams, edits := rewrite.NamedParameters(c.conf.Engine, raw, numbers, dollar)\n\n\tvar table *ast.TableName\n\tswitch n := raw.Stmt.(type) {\n\tcase *ast.InsertStmt:\n\t\tif err := check(validate.InsertStmt(n)); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tvar err error\n\t\ttable, err = ParseTableName(n.Relation)\n\t\tif err := check(err); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\tif err := check(validate.FuncCall(c.catalog, c.combo, raw)); err != nil {\n\t\treturn nil, err\n\t}\n\n\tif err := check(validate.In(c.catalog, raw)); err != nil {\n\t\treturn nil, err\n\t}\n\trvs := rangeVars(raw.Stmt)\n\trefs, errs := findParameters(raw.Stmt)\n\tif len(errs) > 0 {\n\t\tif failfast {\n\t\t\treturn nil, errs[0]\n\t\t}\n\t\terrors = append(errors, errs...)\n\t}\n\trefs = uniqueParamRefs(refs, dollar)\n\tif c.conf.Engine == config.EngineMySQL || !dollar {\n\t\tsort.Slice(refs, func(i, j int) bool { return refs[i].ref.Location < refs[j].ref.Location })\n\t} else {\n\t\tsort.Slice(refs, func(i, j int) bool { return refs[i].ref.Number < refs[j].ref.Number })\n\t}\n\traw, embeds := rewrite.Embeds(raw)\n\tqc, err := c.buildQueryCatalog(c.catalog, raw.Stmt, embeds)\n\tif err := check(err); err != nil {\n\t\treturn nil, err\n\t}\n\n\tparams, err := c.resolveCatalogRefs(qc, rvs, refs, namedParams, embeds)\n\tif err := check(err); err != nil {\n\t\treturn nil, err\n\t}\n\tcols, err := c.outputColumns(qc, raw.Stmt)\n\tif err := check(err); err != nil {\n\t\treturn nil, err\n\t}\n\n\texpandEdits, err := c.expand(qc, raw)\n\tif check(err); err != nil {\n\t\treturn nil, err\n\t}\n\tedits = append(edits, expandEdits...)\n\texpanded, err := source.Mutate(query, edits)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tvar rerr error\n\tif len(errors) > 0 {\n\t\trerr = errors[0]\n\t}\n\n\treturn &analysis{\n\t\tTable:      table,\n\t\tColumns:    cols,\n\t\tParameters: params,\n\t\tQuery:      expanded,\n\t\tNamed:      namedParams,\n\t}, rerr\n}\n"
  },
  {
    "path": "internal/compiler/compat.go",
    "content": "package compiler\n\nimport (\n\t\"fmt\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n)\n\n// This is mainly copy-pasted from internal/postgresql/parse.go\nfunc stringSlice(list *ast.List) []string {\n\titems := []string{}\n\tfor _, item := range list.Items {\n\t\tif n, ok := item.(*ast.String); ok {\n\t\t\titems = append(items, n.Str)\n\t\t}\n\t}\n\treturn items\n}\n\ntype Relation struct {\n\tCatalog string\n\tSchema  string\n\tName    string\n}\n\nfunc parseRelation(node ast.Node) (*Relation, error) {\n\tswitch n := node.(type) {\n\tcase *ast.Boolean:\n\t\tif n == nil {\n\t\t\treturn nil, fmt.Errorf(\"unexpected nil in %T node\", n)\n\t\t}\n\t\treturn &Relation{Name: \"bool\"}, nil\n\n\tcase *ast.List:\n\t\tif n == nil {\n\t\t\treturn nil, fmt.Errorf(\"unexpected nil in %T node\", n)\n\t\t}\n\t\tparts := stringSlice(n)\n\t\tswitch len(parts) {\n\t\tcase 1:\n\t\t\treturn &Relation{\n\t\t\t\tName: parts[0],\n\t\t\t}, nil\n\t\tcase 2:\n\t\t\treturn &Relation{\n\t\t\t\tSchema: parts[0],\n\t\t\t\tName:   parts[1],\n\t\t\t}, nil\n\t\tcase 3:\n\t\t\treturn &Relation{\n\t\t\t\tCatalog: parts[0],\n\t\t\t\tSchema:  parts[1],\n\t\t\t\tName:    parts[2],\n\t\t\t}, nil\n\t\tdefault:\n\t\t\treturn nil, fmt.Errorf(\"invalid name: %s\", astutils.Join(n, \".\"))\n\t\t}\n\n\tcase *ast.RangeVar:\n\t\tif n == nil {\n\t\t\treturn nil, fmt.Errorf(\"unexpected nil in %T node\", n)\n\t\t}\n\t\tname := Relation{}\n\t\tif n.Catalogname != nil {\n\t\t\tname.Catalog = *n.Catalogname\n\t\t}\n\t\tif n.Schemaname != nil {\n\t\t\tname.Schema = *n.Schemaname\n\t\t}\n\t\tif n.Relname != nil {\n\t\t\tname.Name = *n.Relname\n\t\t}\n\t\treturn &name, nil\n\n\tcase *ast.TypeName:\n\t\tif n == nil {\n\t\t\treturn nil, fmt.Errorf(\"unexpected nil in %T node\", n)\n\t\t}\n\t\tif n.Names != nil {\n\t\t\treturn parseRelation(n.Names)\n\t\t} else {\n\t\t\treturn &Relation{Name: n.Name}, nil\n\t\t}\n\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"unexpected node type: %T\", node)\n\t}\n}\n\nfunc ParseTableName(node ast.Node) (*ast.TableName, error) {\n\trel, err := parseRelation(node)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"parse table name: %w\", err)\n\t}\n\treturn &ast.TableName{\n\t\tCatalog: rel.Catalog,\n\t\tSchema:  rel.Schema,\n\t\tName:    rel.Name,\n\t}, nil\n}\n\nfunc ParseTypeName(node ast.Node) (*ast.TypeName, error) {\n\trel, err := parseRelation(node)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"parse type name: %w\", err)\n\t}\n\treturn &ast.TypeName{\n\t\tCatalog: rel.Catalog,\n\t\tSchema:  rel.Schema,\n\t\tName:    rel.Name,\n\t}, nil\n}\n\nfunc ParseRelationString(name string) (*Relation, error) {\n\tparts := strings.Split(name, \".\")\n\tswitch len(parts) {\n\tcase 1:\n\t\treturn &Relation{\n\t\t\tName: parts[0],\n\t\t}, nil\n\tcase 2:\n\t\treturn &Relation{\n\t\t\tSchema: parts[0],\n\t\t\tName:   parts[1],\n\t\t}, nil\n\tcase 3:\n\t\treturn &Relation{\n\t\t\tCatalog: parts[0],\n\t\t\tSchema:  parts[1],\n\t\t\tName:    parts[2],\n\t\t}, nil\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"invalid name: %s\", name)\n\t}\n}\n"
  },
  {
    "path": "internal/compiler/compile.go",
    "content": "package compiler\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/migrations\"\n\t\"github.com/sqlc-dev/sqlc/internal/multierr\"\n\t\"github.com/sqlc-dev/sqlc/internal/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/rpc\"\n\t\"github.com/sqlc-dev/sqlc/internal/source\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlpath\"\n)\n\n// TODO: Rename this interface Engine\ntype Parser interface {\n\tParse(io.Reader) ([]ast.Statement, error)\n\tCommentSyntax() source.CommentSyntax\n\tIsReservedKeyword(string) bool\n}\n\nfunc (c *Compiler) parseCatalog(schemas []string) error {\n\tfiles, err := sqlpath.Glob(schemas)\n\tif err != nil {\n\t\treturn err\n\t}\n\tmerr := multierr.New()\n\tfor _, filename := range files {\n\t\tblob, err := os.ReadFile(filename)\n\t\tif err != nil {\n\t\t\tmerr.Add(filename, \"\", 0, err)\n\t\t\tcontinue\n\t\t}\n\t\tcontents := migrations.RemoveRollbackStatements(string(blob))\n\t\tc.schema = append(c.schema, contents)\n\n\t\t// In database-only mode, we parse the schema to validate syntax\n\t\t// but don't update the catalog - the database will be the source of truth\n\t\tstmts, err := c.parser.Parse(strings.NewReader(contents))\n\t\tif err != nil {\n\t\t\tmerr.Add(filename, contents, 0, err)\n\t\t\tcontinue\n\t\t}\n\n\t\t// Skip catalog updates in database-only mode\n\t\tif c.databaseOnlyMode {\n\t\t\tcontinue\n\t\t}\n\n\t\tfor i := range stmts {\n\t\t\tif err := c.catalog.Update(stmts[i], c); err != nil {\n\t\t\t\tmerr.Add(filename, contents, stmts[i].Pos(), err)\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\t}\n\tif len(merr.Errs()) > 0 {\n\t\treturn merr\n\t}\n\treturn nil\n}\n\nfunc (c *Compiler) parseQueries(o opts.Parser) (*Result, error) {\n\tctx := context.Background()\n\n\t// In database-only mode, initialize the database connection before parsing queries\n\tif c.databaseOnlyMode && c.analyzer != nil {\n\t\tif err := c.analyzer.EnsureConn(ctx, c.schema); err != nil {\n\t\t\treturn nil, fmt.Errorf(\"failed to initialize database connection: %w\", err)\n\t\t}\n\t}\n\n\tvar q []*Query\n\tmerr := multierr.New()\n\tset := map[string]struct{}{}\n\tfiles, err := sqlpath.Glob(c.conf.Queries)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tfor _, filename := range files {\n\t\tblob, err := os.ReadFile(filename)\n\t\tif err != nil {\n\t\t\tmerr.Add(filename, \"\", 0, err)\n\t\t\tcontinue\n\t\t}\n\t\tsrc := string(blob)\n\t\tstmts, err := c.parser.Parse(strings.NewReader(src))\n\t\tif err != nil {\n\t\t\tmerr.Add(filename, src, 0, err)\n\t\t\tcontinue\n\t\t}\n\t\tfor _, stmt := range stmts {\n\t\t\tquery, err := c.parseQuery(stmt.Raw, src, o)\n\t\t\tif err != nil {\n\t\t\t\tvar e *sqlerr.Error\n\t\t\t\tloc := stmt.Raw.Pos()\n\t\t\t\tif errors.As(err, &e) && e.Location != 0 {\n\t\t\t\t\tloc = e.Location\n\t\t\t\t}\n\t\t\t\tmerr.Add(filename, src, loc, err)\n\t\t\t\t// If this rpc unauthenticated error bubbles up, then all future parsing/analysis will fail\n\t\t\t\tif errors.Is(err, rpc.ErrUnauthenticated) {\n\t\t\t\t\treturn nil, merr\n\t\t\t\t}\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif query == nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tquery.Metadata.Filename = filepath.Base(filename)\n\t\t\tqueryName := query.Metadata.Name\n\t\t\tif queryName != \"\" {\n\t\t\t\tif _, exists := set[queryName]; exists {\n\t\t\t\t\tmerr.Add(filename, src, stmt.Raw.Pos(), fmt.Errorf(\"duplicate query name: %s\", queryName))\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tset[queryName] = struct{}{}\n\t\t\t}\n\t\t\tq = append(q, query)\n\t\t}\n\t}\n\tif len(merr.Errs()) > 0 {\n\t\treturn nil, merr\n\t}\n\tif len(q) == 0 {\n\t\treturn nil, fmt.Errorf(\"no queries contained in paths %s\", strings.Join(c.conf.Queries, \",\"))\n\t}\n\n\treturn &Result{\n\t\tCatalog: c.catalog,\n\t\tQueries: q,\n\t}, nil\n}\n"
  },
  {
    "path": "internal/compiler/engine.go",
    "content": "package compiler\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/analyzer\"\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/dbmanager\"\n\t\"github.com/sqlc-dev/sqlc/internal/engine/dolphin\"\n\t\"github.com/sqlc-dev/sqlc/internal/engine/postgresql\"\n\tpganalyze \"github.com/sqlc-dev/sqlc/internal/engine/postgresql/analyzer\"\n\t\"github.com/sqlc-dev/sqlc/internal/engine/sqlite\"\n\tsqliteanalyze \"github.com/sqlc-dev/sqlc/internal/engine/sqlite/analyzer\"\n\t\"github.com/sqlc-dev/sqlc/internal/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n\t\"github.com/sqlc-dev/sqlc/internal/x/expander\"\n)\n\ntype Compiler struct {\n\tconf     config.SQL\n\tcombo    config.CombinedSettings\n\tcatalog  *catalog.Catalog\n\tparser   Parser\n\tresult   *Result\n\tanalyzer analyzer.Analyzer\n\tclient   dbmanager.Client\n\tselector selector\n\n\tschema []string\n\n\t// databaseOnlyMode indicates that the compiler should use database-only analysis\n\t// and skip building the internal catalog from schema files (analyzer.database: only)\n\tdatabaseOnlyMode bool\n\t// expander is used to expand SELECT * and RETURNING * in database-only mode\n\texpander *expander.Expander\n}\n\nfunc NewCompiler(conf config.SQL, combo config.CombinedSettings, parserOpts opts.Parser) (*Compiler, error) {\n\tc := &Compiler{conf: conf, combo: combo}\n\n\tif conf.Database != nil && conf.Database.Managed {\n\t\tclient := dbmanager.NewClient(combo.Global.Servers)\n\t\tc.client = client\n\t}\n\n\t// Check for database-only mode (analyzer.database: only)\n\t// This feature requires the analyzerv2 experiment to be enabled\n\tdatabaseOnlyMode := conf.Analyzer.Database.IsOnly() && parserOpts.Experiment.AnalyzerV2\n\n\tswitch conf.Engine {\n\tcase config.EngineSQLite:\n\t\tparser := sqlite.NewParser()\n\t\tc.parser = parser\n\t\tc.catalog = sqlite.NewCatalog()\n\t\tc.selector = newSQLiteSelector()\n\n\t\tif databaseOnlyMode {\n\t\t\t// Database-only mode requires a database connection\n\t\t\tif conf.Database == nil {\n\t\t\t\treturn nil, fmt.Errorf(\"analyzer.database: only requires database configuration\")\n\t\t\t}\n\t\t\tif conf.Database.URI == \"\" && !conf.Database.Managed {\n\t\t\t\treturn nil, fmt.Errorf(\"analyzer.database: only requires database.uri or database.managed\")\n\t\t\t}\n\t\t\tc.databaseOnlyMode = true\n\t\t\t// Create the SQLite analyzer (implements Analyzer interface)\n\t\t\tsqliteAnalyzer := sqliteanalyze.New(*conf.Database)\n\t\t\tc.analyzer = analyzer.Cached(sqliteAnalyzer, combo.Global, *conf.Database)\n\t\t\t// Create the expander using the analyzer as the column getter\n\t\t\tc.expander = expander.New(c.analyzer, parser, parser)\n\t\t} else if conf.Database != nil {\n\t\t\tif conf.Analyzer.Database.IsEnabled() {\n\t\t\t\tc.analyzer = analyzer.Cached(\n\t\t\t\t\tsqliteanalyze.New(*conf.Database),\n\t\t\t\t\tcombo.Global,\n\t\t\t\t\t*conf.Database,\n\t\t\t\t)\n\t\t\t}\n\t\t}\n\tcase config.EngineMySQL:\n\t\tc.parser = dolphin.NewParser()\n\t\tc.catalog = dolphin.NewCatalog()\n\t\tc.selector = newDefaultSelector()\n\tcase config.EnginePostgreSQL:\n\t\tparser := postgresql.NewParser()\n\t\tc.parser = parser\n\t\tc.catalog = postgresql.NewCatalog()\n\t\tc.selector = newDefaultSelector()\n\n\t\tif databaseOnlyMode {\n\t\t\t// Database-only mode requires a database connection\n\t\t\tif conf.Database == nil {\n\t\t\t\treturn nil, fmt.Errorf(\"analyzer.database: only requires database configuration\")\n\t\t\t}\n\t\t\tif conf.Database.URI == \"\" && !conf.Database.Managed {\n\t\t\t\treturn nil, fmt.Errorf(\"analyzer.database: only requires database.uri or database.managed\")\n\t\t\t}\n\t\t\tc.databaseOnlyMode = true\n\t\t\t// Create the PostgreSQL analyzer (implements Analyzer interface)\n\t\t\tpgAnalyzer := pganalyze.New(c.client, *conf.Database)\n\t\t\tc.analyzer = analyzer.Cached(pgAnalyzer, combo.Global, *conf.Database)\n\t\t\t// Create the expander using the analyzer as the column getter\n\t\t\tc.expander = expander.New(c.analyzer, parser, parser)\n\t\t} else if conf.Database != nil {\n\t\t\tif conf.Analyzer.Database.IsEnabled() {\n\t\t\t\tc.analyzer = analyzer.Cached(\n\t\t\t\t\tpganalyze.New(c.client, *conf.Database),\n\t\t\t\t\tcombo.Global,\n\t\t\t\t\t*conf.Database,\n\t\t\t\t)\n\t\t\t}\n\t\t}\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"unknown engine: %s\", conf.Engine)\n\t}\n\treturn c, nil\n}\n\nfunc (c *Compiler) Catalog() *catalog.Catalog {\n\treturn c.catalog\n}\n\nfunc (c *Compiler) ParseCatalog(schema []string) error {\n\treturn c.parseCatalog(schema)\n}\n\nfunc (c *Compiler) ParseQueries(queries []string, o opts.Parser) error {\n\tr, err := c.parseQueries(o)\n\tif err != nil {\n\t\treturn err\n\t}\n\tc.result = r\n\treturn nil\n}\n\nfunc (c *Compiler) Result() *Result {\n\treturn c.result\n}\n\nfunc (c *Compiler) Close(ctx context.Context) {\n\tif c.analyzer != nil {\n\t\tc.analyzer.Close(ctx)\n\t}\n\tif c.client != nil {\n\t\tc.client.Close(ctx)\n\t}\n}\n"
  },
  {
    "path": "internal/compiler/expand.go",
    "content": "package compiler\n\nimport (\n\t\"fmt\"\n\t\"regexp\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/source\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n)\n\nfunc (c *Compiler) expand(qc *QueryCatalog, raw *ast.RawStmt) ([]source.Edit, error) {\n\t// Return early if there are no A_Star nodes to expand\n\tstars := astutils.Search(raw, func(node ast.Node) bool {\n\t\t_, ok := node.(*ast.A_Star)\n\t\treturn ok\n\t})\n\tif len(stars.Items) == 0 {\n\t\treturn nil, nil\n\t}\n\tlist := astutils.Search(raw, func(node ast.Node) bool {\n\t\tswitch node.(type) {\n\t\tcase *ast.DeleteStmt:\n\t\tcase *ast.InsertStmt:\n\t\tcase *ast.SelectStmt:\n\t\tcase *ast.UpdateStmt:\n\t\tdefault:\n\t\t\treturn false\n\t\t}\n\t\treturn true\n\t})\n\tif len(list.Items) == 0 {\n\t\treturn nil, nil\n\t}\n\tvar edits []source.Edit\n\tfor _, item := range list.Items {\n\t\tedit, err := c.expandStmt(qc, raw, item)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tedits = append(edits, edit...)\n\t}\n\treturn edits, nil\n}\n\nvar validPostgresIdent = regexp.MustCompile(`^[a-z_][a-z0-9_$]*$`)\n\nfunc (c *Compiler) quoteIdent(ident string) string {\n\tif c.parser.IsReservedKeyword(ident) {\n\t\treturn c.quote(ident)\n\t}\n\t// SQL identifiers and key words must begin with a letter (a-z, but also\n\t// letters with diacritical marks and non-Latin letters) or an underscore\n\t// (_). Subsequent characters in an identifier or key word can be letters,\n\t// underscores, digits (0-9), or dollar signs ($).\n\t//\n\t// https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS\n\tif c.conf.Engine == config.EnginePostgreSQL {\n\t\t// camelCase means the column is also camelCase\n\t\tif strings.ToLower(ident) != ident {\n\t\t\treturn c.quote(ident)\n\t\t}\n\t\tif !validPostgresIdent.MatchString(strings.ToLower(ident)) {\n\t\t\treturn c.quote(ident)\n\t\t}\n\t}\n\treturn ident\n}\n\nfunc (c *Compiler) quote(x string) string {\n\tswitch c.conf.Engine {\n\tcase config.EngineMySQL:\n\t\treturn \"`\" + x + \"`\"\n\tdefault:\n\t\treturn \"\\\"\" + x + \"\\\"\"\n\t}\n}\n\nfunc (c *Compiler) expandStmt(qc *QueryCatalog, raw *ast.RawStmt, node ast.Node) ([]source.Edit, error) {\n\ttables, err := c.sourceTables(qc, node)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tvar targets *ast.List\n\tswitch n := node.(type) {\n\tcase *ast.DeleteStmt:\n\t\ttargets = n.ReturningList\n\tcase *ast.InsertStmt:\n\t\ttargets = n.ReturningList\n\tcase *ast.SelectStmt:\n\t\ttargets = n.TargetList\n\tcase *ast.UpdateStmt:\n\t\ttargets = n.ReturningList\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"outputColumns: unsupported node type: %T\", n)\n\t}\n\n\tvar edits []source.Edit\n\tfor _, target := range targets.Items {\n\t\tres, ok := target.(*ast.ResTarget)\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\t\tref, ok := res.Val.(*ast.ColumnRef)\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\t\tif !hasStarRef(ref) {\n\t\t\tcontinue\n\t\t}\n\t\tvar parts, cols []string\n\t\tfor _, f := range ref.Fields.Items {\n\t\t\tswitch field := f.(type) {\n\t\t\tcase *ast.String:\n\t\t\t\tparts = append(parts, field.Str)\n\t\t\tcase *ast.A_Star:\n\t\t\t\tparts = append(parts, \"*\")\n\t\t\tdefault:\n\t\t\t\treturn nil, fmt.Errorf(\"unknown field in ColumnRef: %T\", f)\n\t\t\t}\n\t\t}\n\t\tscope := astutils.Join(ref.Fields, \".\")\n\t\tcounts := map[string]int{}\n\t\tif scope == \"\" {\n\t\t\tfor _, t := range tables {\n\t\t\t\tfor _, c := range t.Columns {\n\t\t\t\t\tcounts[c.Name] += 1\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tfor _, t := range tables {\n\t\t\tif scope != \"\" && scope != t.Rel.Name {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\ttableName := c.quoteIdent(t.Rel.Name)\n\t\t\tscopeName := c.quoteIdent(scope)\n\t\t\tfor _, column := range t.Columns {\n\t\t\t\tcname := column.Name\n\t\t\t\tif res.Name != nil {\n\t\t\t\t\tcname = *res.Name\n\t\t\t\t}\n\t\t\t\tcname = c.quoteIdent(cname)\n\t\t\t\tif scope != \"\" {\n\t\t\t\t\tcname = scopeName + \".\" + cname\n\t\t\t\t}\n\t\t\t\tif counts[cname] > 1 {\n\t\t\t\t\tcname = tableName + \".\" + cname\n\t\t\t\t}\n\n\t\t\t\t// This is important for SQLite in particular which needs to\n\t\t\t\t// wrap jsonb column values with `json(colname)` so they're in a\n\t\t\t\t// publicly usable format (i.e. not jsonb).\n\t\t\t\tcname = c.selector.ColumnExpr(cname, column)\n\t\t\t\tcols = append(cols, cname)\n\t\t\t}\n\t\t}\n\t\tvar old []string\n\t\tfor _, p := range parts {\n\t\t\tif p == \"*\" {\n\t\t\t\told = append(old, p)\n\t\t\t} else {\n\t\t\t\told = append(old, c.quoteIdent(p))\n\t\t\t}\n\t\t}\n\n\t\tvar oldString string\n\t\tvar oldFunc func(string) int\n\n\t\t// use the sqlc.embed string instead\n\t\tif embed, ok := qc.embeds.Find(ref); ok {\n\t\t\toldString = embed.Orig()\n\t\t} else {\n\t\t\toldFunc = func(s string) int {\n\t\t\t\tlength := 0\n\t\t\t\tfor i, o := range old {\n\t\t\t\t\tif hasSeparator := i > 0; hasSeparator {\n\t\t\t\t\t\tlength++\n\t\t\t\t\t}\n\t\t\t\t\tif strings.HasPrefix(s[length:], o) {\n\t\t\t\t\t\tlength += len(o)\n\t\t\t\t\t} else if quoted := c.quote(o); strings.HasPrefix(s[length:], quoted) {\n\t\t\t\t\t\tlength += len(quoted)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tlength += len(o)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn length\n\t\t\t}\n\t\t}\n\n\t\tedits = append(edits, source.Edit{\n\t\t\tLocation: res.Location - raw.StmtLocation,\n\t\t\tOld:      oldString,\n\t\t\tOldFunc:  oldFunc,\n\t\t\tNew:      strings.Join(cols, \", \"),\n\t\t})\n\t}\n\n\treturn edits, nil\n}\n"
  },
  {
    "path": "internal/compiler/find_params.go",
    "content": "package compiler\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n)\n\nfunc findParameters(root ast.Node) ([]paramRef, []error) {\n\trefs := make([]paramRef, 0)\n\terrors := make([]error, 0)\n\tv := paramSearch{seen: make(map[int]struct{}), refs: &refs, errs: &errors}\n\tastutils.Walk(v, root)\n\tif len(*v.errs) > 0 {\n\t\treturn refs, *v.errs\n\t} else {\n\t\treturn refs, nil\n\t}\n}\n\ntype paramRef struct {\n\tparent ast.Node\n\trv     *ast.RangeVar\n\tref    *ast.ParamRef\n\tname   string // Named parameter support\n}\n\ntype paramSearch struct {\n\tparent   ast.Node\n\trangeVar *ast.RangeVar\n\trefs     *[]paramRef\n\tseen     map[int]struct{}\n\terrs     *[]error\n\n\t// XXX: Gross state hack for limit\n\tlimitCount  ast.Node\n\tlimitOffset ast.Node\n}\n\ntype limitCount struct {\n}\n\nfunc (l *limitCount) Pos() int {\n\treturn 0\n}\n\ntype limitOffset struct {\n}\n\nfunc (l *limitOffset) Pos() int {\n\treturn 0\n}\n\nfunc (p paramSearch) Visit(node ast.Node) astutils.Visitor {\n\tswitch n := node.(type) {\n\n\tcase *ast.A_Expr:\n\t\tp.parent = node\n\n\tcase *ast.BetweenExpr:\n\t\tp.parent = node\n\n\tcase *ast.CallStmt:\n\t\tp.parent = n.FuncCall\n\n\tcase *ast.DeleteStmt:\n\t\tif n.LimitCount != nil {\n\t\t\tp.limitCount = n.LimitCount\n\t\t}\n\n\tcase *ast.FuncCall:\n\t\tp.parent = node\n\n\tcase *ast.InsertStmt:\n\t\tif s, ok := n.SelectStmt.(*ast.SelectStmt); ok {\n\t\t\tfor i, item := range s.TargetList.Items {\n\t\t\t\ttarget, ok := item.(*ast.ResTarget)\n\t\t\t\tif !ok {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tref, ok := target.Val.(*ast.ParamRef)\n\t\t\t\tif !ok {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif len(n.Cols.Items) <= i {\n\t\t\t\t\t*p.errs = append(*p.errs, fmt.Errorf(\"INSERT has more expressions than target columns\"))\n\t\t\t\t\treturn p\n\t\t\t\t}\n\t\t\t\t*p.refs = append(*p.refs, paramRef{parent: n.Cols.Items[i], ref: ref, rv: n.Relation})\n\t\t\t\tp.seen[ref.Location] = struct{}{}\n\t\t\t}\n\t\t\tfor _, item := range s.ValuesLists.Items {\n\t\t\t\tvl, ok := item.(*ast.List)\n\t\t\t\tif !ok {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tfor i, v := range vl.Items {\n\t\t\t\t\tref, ok := v.(*ast.ParamRef)\n\t\t\t\t\tif !ok {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tif len(n.Cols.Items) <= i {\n\t\t\t\t\t\t*p.errs = append(*p.errs, fmt.Errorf(\"INSERT has more expressions than target columns\"))\n\t\t\t\t\t\treturn p\n\t\t\t\t\t}\n\t\t\t\t\t*p.refs = append(*p.refs, paramRef{parent: n.Cols.Items[i], ref: ref, rv: n.Relation})\n\t\t\t\t\tp.seen[ref.Location] = struct{}{}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\tcase *ast.UpdateStmt:\n\t\tfor _, item := range n.TargetList.Items {\n\t\t\ttarget, ok := item.(*ast.ResTarget)\n\t\t\tif !ok {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tref, ok := target.Val.(*ast.ParamRef)\n\t\t\tif !ok {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tfor _, relation := range n.Relations.Items {\n\t\t\t\trv, ok := relation.(*ast.RangeVar)\n\t\t\t\tif !ok {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\t*p.refs = append(*p.refs, paramRef{parent: target, ref: ref, rv: rv})\n\t\t\t}\n\t\t\tp.seen[ref.Location] = struct{}{}\n\t\t}\n\t\tif n.LimitCount != nil {\n\t\t\tp.limitCount = n.LimitCount\n\t\t}\n\n\tcase *ast.RangeVar:\n\t\tp.rangeVar = n\n\n\tcase *ast.ResTarget:\n\t\tp.parent = node\n\n\tcase *ast.SelectStmt:\n\t\tif n.LimitCount != nil {\n\t\t\tp.limitCount = n.LimitCount\n\t\t}\n\t\tif n.LimitOffset != nil {\n\t\t\tp.limitOffset = n.LimitOffset\n\t\t}\n\n\tcase *ast.TypeCast:\n\t\tp.parent = node\n\n\tcase *ast.ParamRef:\n\t\tparent := p.parent\n\n\t\tif count, ok := p.limitCount.(*ast.ParamRef); ok {\n\t\t\tif n.Number == count.Number {\n\t\t\t\tparent = &limitCount{}\n\t\t\t}\n\t\t}\n\n\t\tif offset, ok := p.limitOffset.(*ast.ParamRef); ok {\n\t\t\tif n.Number == offset.Number {\n\t\t\t\tparent = &limitOffset{}\n\t\t\t}\n\t\t}\n\t\tif _, found := p.seen[n.Location]; found {\n\t\t\tbreak\n\t\t}\n\n\t\t// Special, terrible case for *ast.MultiAssignRef\n\t\tset := true\n\t\tif res, ok := parent.(*ast.ResTarget); ok {\n\t\t\tif multi, ok := res.Val.(*ast.MultiAssignRef); ok {\n\t\t\t\tset = false\n\t\t\t\tif row, ok := multi.Source.(*ast.RowExpr); ok {\n\t\t\t\t\tfor i, arg := range row.Args.Items {\n\t\t\t\t\t\tif ref, ok := arg.(*ast.ParamRef); ok {\n\t\t\t\t\t\t\tif multi.Colno == i+1 && ref.Number == n.Number {\n\t\t\t\t\t\t\t\tset = true\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif set {\n\t\t\t*p.refs = append(*p.refs, paramRef{parent: parent, ref: n, rv: p.rangeVar})\n\t\t\tp.seen[n.Location] = struct{}{}\n\t\t}\n\t\treturn nil\n\n\tcase *ast.In:\n\t\tif n.Sel == nil {\n\t\t\tp.parent = node\n\t\t} else {\n\t\t\tif sel, ok := n.Sel.(*ast.SelectStmt); ok && sel.FromClause != nil && len(sel.FromClause.Items) > 0 {\n\t\t\t\tfrom := sel.FromClause\n\t\t\t\tif schema, ok := from.Items[0].(*ast.RangeVar); ok && schema != nil {\n\t\t\t\t\tp.rangeVar = &ast.RangeVar{\n\t\t\t\t\t\tCatalogname: schema.Catalogname,\n\t\t\t\t\t\tSchemaname:  schema.Schemaname,\n\t\t\t\t\t\tRelname:     schema.Relname,\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif _, ok := n.Expr.(*ast.ParamRef); ok {\n\t\t\tp.Visit(n.Expr)\n\t\t}\n\t}\n\treturn p\n}\n"
  },
  {
    "path": "internal/compiler/output_columns.go",
    "content": "package compiler\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/lang\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\n// OutputColumns determines which columns a statement will output\nfunc (c *Compiler) OutputColumns(stmt ast.Node) ([]*catalog.Column, error) {\n\tqc, err := c.buildQueryCatalog(c.catalog, stmt, nil)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tcols, err := c.outputColumns(qc, stmt)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tcatCols := make([]*catalog.Column, 0, len(cols))\n\tfor _, col := range cols {\n\t\tcatCols = append(catCols, &catalog.Column{\n\t\t\tName:       col.Name,\n\t\t\tType:       ast.TypeName{Name: col.DataType},\n\t\t\tIsNotNull:  col.NotNull,\n\t\t\tIsUnsigned: col.Unsigned,\n\t\t\tIsArray:    col.IsArray,\n\t\t\tArrayDims:  col.ArrayDims,\n\t\t\tComment:    col.Comment,\n\t\t\tLength:     col.Length,\n\t\t})\n\t}\n\treturn catCols, nil\n}\n\nfunc hasStarRef(cf *ast.ColumnRef) bool {\n\tfor _, item := range cf.Fields.Items {\n\t\tif _, ok := item.(*ast.A_Star); ok {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\n// Compute the output columns for a statement.\n//\n// Return an error if column references are ambiguous\n// Return an error if column references don't exist\nfunc (c *Compiler) outputColumns(qc *QueryCatalog, node ast.Node) ([]*Column, error) {\n\ttables, err := c.sourceTables(qc, node)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\ttargets := &ast.List{}\n\tswitch n := node.(type) {\n\tcase *ast.DeleteStmt:\n\t\ttargets = n.ReturningList\n\tcase *ast.InsertStmt:\n\t\ttargets = n.ReturningList\n\tcase *ast.SelectStmt:\n\t\ttargets = n.TargetList\n\t\tisUnion := len(targets.Items) == 0 && n.Larg != nil\n\n\t\tif n.GroupClause != nil {\n\t\t\tfor _, item := range n.GroupClause.Items {\n\t\t\t\tif err := findColumnForNode(item, tables, targets); err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tvalidateOrderBy := true\n\t\tif c.conf.StrictOrderBy != nil {\n\t\t\tvalidateOrderBy = *c.conf.StrictOrderBy\n\t\t}\n\t\tif !isUnion && validateOrderBy {\n\t\t\tif n.SortClause != nil {\n\t\t\t\tfor _, item := range n.SortClause.Items {\n\t\t\t\t\tsb, ok := item.(*ast.SortBy)\n\t\t\t\t\tif !ok {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tif err := findColumnForNode(sb.Node, tables, targets); err != nil {\n\t\t\t\t\t\treturn nil, fmt.Errorf(\"%v: if you want to skip this validation, set 'strict_order_by' to false\", err)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif n.WindowClause != nil {\n\t\t\t\tfor _, item := range n.WindowClause.Items {\n\t\t\t\t\tsb, ok := item.(*ast.List)\n\t\t\t\t\tif !ok {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tfor _, single := range sb.Items {\n\t\t\t\t\t\tcaseExpr, ok := single.(*ast.CaseExpr)\n\t\t\t\t\t\tif !ok {\n\t\t\t\t\t\t\tcontinue\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif err := findColumnForNode(caseExpr.Xpr, tables, targets); err != nil {\n\t\t\t\t\t\t\treturn nil, fmt.Errorf(\"%v: if you want to skip this validation, set 'strict_order_by' to false\", err)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// For UNION queries, targets is empty and we need to look for the\n\t\t// columns in Largs.\n\t\tif isUnion {\n\t\t\treturn c.outputColumns(qc, n.Larg)\n\t\t}\n\tcase *ast.UpdateStmt:\n\t\ttargets = n.ReturningList\n\t}\n\n\tvar cols []*Column\n\n\tfor _, target := range targets.Items {\n\t\tres, ok := target.(*ast.ResTarget)\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\t\tswitch n := res.Val.(type) {\n\n\t\tcase *ast.A_Const:\n\t\t\tname := \"\"\n\t\t\tif res.Name != nil {\n\t\t\t\tname = *res.Name\n\t\t\t}\n\t\t\tswitch n.Val.(type) {\n\t\t\tcase *ast.String:\n\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"text\", NotNull: true})\n\t\t\tcase *ast.Integer:\n\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"int\", NotNull: true})\n\t\t\tcase *ast.Float:\n\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"float\", NotNull: true})\n\t\t\tcase *ast.Boolean:\n\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"bool\", NotNull: true})\n\t\t\tdefault:\n\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"any\", NotNull: false})\n\t\t\t}\n\n\t\tcase *ast.A_Expr:\n\t\t\tname := \"\"\n\t\t\tif res.Name != nil {\n\t\t\t\tname = *res.Name\n\t\t\t}\n\t\t\tswitch op := astutils.Join(n.Name, \"\"); {\n\t\t\tcase lang.IsComparisonOperator(op):\n\t\t\t\t// TODO: Generate a name for these operations\n\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"bool\", NotNull: true})\n\t\t\tcase lang.IsMathematicalOperator(op):\n\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"int\", NotNull: true})\n\t\t\tdefault:\n\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"any\", NotNull: false})\n\t\t\t}\n\n\t\tcase *ast.BoolExpr:\n\t\t\tname := \"\"\n\t\t\tif res.Name != nil {\n\t\t\t\tname = *res.Name\n\t\t\t}\n\t\t\tnotNull := false\n\t\t\tif len(n.Args.Items) == 1 {\n\t\t\t\tswitch n.Boolop {\n\t\t\t\tcase ast.BoolExprTypeIsNull, ast.BoolExprTypeIsNotNull:\n\t\t\t\t\tnotNull = true\n\t\t\t\tcase ast.BoolExprTypeNot:\n\t\t\t\t\tsublink, ok := n.Args.Items[0].(*ast.SubLink)\n\t\t\t\t\tif ok && sublink.SubLinkType == ast.EXISTS_SUBLINK {\n\t\t\t\t\t\tnotNull = true\n\t\t\t\t\t\tif name == \"\" {\n\t\t\t\t\t\t\tname = \"not_exists\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tcols = append(cols, &Column{Name: name, DataType: \"bool\", NotNull: notNull})\n\n\t\tcase *ast.CaseExpr:\n\t\t\tname := \"\"\n\t\t\tif res.Name != nil {\n\t\t\t\tname = *res.Name\n\t\t\t}\n\t\t\t// TODO: The TypeCase and A_Const code has been copied from below. Instead, we\n\t\t\t// need a recurse function to get the type of a node.\n\t\t\tif tc, ok := n.Defresult.(*ast.TypeCast); ok {\n\t\t\t\tif tc.TypeName == nil {\n\t\t\t\t\treturn nil, errors.New(\"no type name type cast\")\n\t\t\t\t}\n\t\t\t\tname := \"\"\n\t\t\t\tif ref, ok := tc.Arg.(*ast.ColumnRef); ok {\n\t\t\t\t\tname = astutils.Join(ref.Fields, \"_\")\n\t\t\t\t}\n\t\t\t\tif res.Name != nil {\n\t\t\t\t\tname = *res.Name\n\t\t\t\t}\n\t\t\t\t// TODO Validate column names\n\t\t\t\tcol := toColumn(tc.TypeName)\n\t\t\t\tcol.Name = name\n\t\t\t\tcols = append(cols, col)\n\t\t\t} else if aconst, ok := n.Defresult.(*ast.A_Const); ok {\n\t\t\t\tswitch aconst.Val.(type) {\n\t\t\t\tcase *ast.String:\n\t\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"text\", NotNull: true})\n\t\t\t\tcase *ast.Integer:\n\t\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"int\", NotNull: true})\n\t\t\t\tcase *ast.Float:\n\t\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"float\", NotNull: true})\n\t\t\t\tcase *ast.Boolean:\n\t\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"bool\", NotNull: true})\n\t\t\t\tdefault:\n\t\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"any\", NotNull: false})\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"any\", NotNull: false})\n\t\t\t}\n\n\t\tcase *ast.CoalesceExpr:\n\t\t\tname := \"coalesce\"\n\t\t\tif res.Name != nil {\n\t\t\t\tname = *res.Name\n\t\t\t}\n\t\t\tvar firstColumn *Column\n\t\t\tvar shouldNotBeNull bool\n\t\t\tfor _, arg := range n.Args.Items {\n\t\t\t\tif _, ok := arg.(*ast.A_Const); ok {\n\t\t\t\t\tshouldNotBeNull = true\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif ref, ok := arg.(*ast.ColumnRef); ok {\n\t\t\t\t\tcolumns, err := outputColumnRefs(res, tables, ref)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn nil, err\n\t\t\t\t\t}\n\t\t\t\t\tfor _, c := range columns {\n\t\t\t\t\t\tif firstColumn == nil {\n\t\t\t\t\t\t\tfirstColumn = c\n\t\t\t\t\t\t}\n\t\t\t\t\t\tshouldNotBeNull = shouldNotBeNull || c.NotNull\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif firstColumn != nil {\n\t\t\t\tfirstColumn.NotNull = shouldNotBeNull\n\t\t\t\tfirstColumn.skipTableRequiredCheck = true\n\t\t\t\tcols = append(cols, firstColumn)\n\t\t\t} else {\n\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"any\", NotNull: false})\n\t\t\t}\n\n\t\tcase *ast.ColumnRef:\n\t\t\tif hasStarRef(n) {\n\n\t\t\t\t// add a column with a reference to an embedded table\n\t\t\t\tif embed, ok := qc.embeds.Find(n); ok {\n\t\t\t\t\tcols = append(cols, &Column{\n\t\t\t\t\t\tName:       embed.Table.Name,\n\t\t\t\t\t\tEmbedTable: embed.Table,\n\t\t\t\t\t})\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\t// TODO: This code is copied in func expand()\n\t\t\t\tfor _, t := range tables {\n\t\t\t\t\tscope := astutils.Join(n.Fields, \".\")\n\t\t\t\t\tif scope != \"\" && scope != t.Rel.Name {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tfor _, c := range t.Columns {\n\t\t\t\t\t\tcname := c.Name\n\t\t\t\t\t\tif res.Name != nil {\n\t\t\t\t\t\t\tcname = *res.Name\n\t\t\t\t\t\t}\n\t\t\t\t\t\tcols = append(cols, &Column{\n\t\t\t\t\t\t\tName:         cname,\n\t\t\t\t\t\t\tOriginalName: c.Name,\n\t\t\t\t\t\t\tType:         c.Type,\n\t\t\t\t\t\t\tScope:        scope,\n\t\t\t\t\t\t\tTable:        c.Table,\n\t\t\t\t\t\t\tTableAlias:   t.Rel.Name,\n\t\t\t\t\t\t\tDataType:     c.DataType,\n\t\t\t\t\t\t\tNotNull:      c.NotNull,\n\t\t\t\t\t\t\tUnsigned:     c.Unsigned,\n\t\t\t\t\t\t\tIsArray:      c.IsArray,\n\t\t\t\t\t\t\tArrayDims:    c.ArrayDims,\n\t\t\t\t\t\t\tLength:       c.Length,\n\t\t\t\t\t\t})\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tcolumns, err := outputColumnRefs(res, tables, n)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tcols = append(cols, columns...)\n\n\t\tcase *ast.FuncCall:\n\t\t\trel := n.Func\n\t\t\tname := rel.Name\n\t\t\tif res.Name != nil {\n\t\t\t\tname = *res.Name\n\t\t\t}\n\t\t\tfun, err := qc.catalog.ResolveFuncCall(n)\n\t\t\tif err == nil {\n\t\t\t\tcols = append(cols, &Column{\n\t\t\t\t\tName:       name,\n\t\t\t\t\tDataType:   dataType(fun.ReturnType),\n\t\t\t\t\tNotNull:    !fun.ReturnTypeNullable,\n\t\t\t\t\tIsFuncCall: true,\n\t\t\t\t})\n\t\t\t} else {\n\t\t\t\tcols = append(cols, &Column{\n\t\t\t\t\tName:       name,\n\t\t\t\t\tDataType:   \"any\",\n\t\t\t\t\tIsFuncCall: true,\n\t\t\t\t})\n\t\t\t}\n\n\t\tcase *ast.SubLink:\n\t\t\tname := \"exists\"\n\t\t\tif res.Name != nil {\n\t\t\t\tname = *res.Name\n\t\t\t}\n\t\t\tswitch n.SubLinkType {\n\t\t\tcase ast.EXISTS_SUBLINK:\n\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"bool\", NotNull: true})\n\t\t\tcase ast.EXPR_SUBLINK:\n\t\t\t\tsubcols, err := c.outputColumns(qc, n.Subselect)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tfirst := subcols[0]\n\t\t\t\tif res.Name != nil {\n\t\t\t\t\tfirst.Name = *res.Name\n\t\t\t\t}\n\t\t\t\tcols = append(cols, first)\n\t\t\tdefault:\n\t\t\t\tcols = append(cols, &Column{Name: name, DataType: \"any\", NotNull: false})\n\t\t\t}\n\n\t\tcase *ast.TypeCast:\n\t\t\tif n.TypeName == nil {\n\t\t\t\treturn nil, errors.New(\"no type name type cast\")\n\t\t\t}\n\t\t\tname := \"\"\n\t\t\tif ref, ok := n.Arg.(*ast.ColumnRef); ok {\n\t\t\t\tname = astutils.Join(ref.Fields, \"_\")\n\t\t\t}\n\t\t\tif res.Name != nil {\n\t\t\t\tname = *res.Name\n\t\t\t}\n\t\t\t// TODO Validate column names\n\t\t\tcol := toColumn(n.TypeName)\n\t\t\tcol.Name = name\n\t\t\t// TODO Add correct, real type inference\n\t\t\tif constant, ok := n.Arg.(*ast.A_Const); ok {\n\t\t\t\tif _, ok := constant.Val.(*ast.Null); ok {\n\t\t\t\t\tcol.NotNull = false\n\t\t\t\t}\n\t\t\t}\n\t\t\tcols = append(cols, col)\n\n\t\tcase *ast.SelectStmt:\n\t\t\tsubcols, err := c.outputColumns(qc, n)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tfirst := subcols[0]\n\t\t\tif res.Name != nil {\n\t\t\t\tfirst.Name = *res.Name\n\t\t\t}\n\t\t\tcols = append(cols, first)\n\n\t\tdefault:\n\t\t\tname := \"\"\n\t\t\tif res.Name != nil {\n\t\t\t\tname = *res.Name\n\t\t\t}\n\t\t\tcols = append(cols, &Column{Name: name, DataType: \"any\", NotNull: false})\n\n\t\t}\n\t}\n\n\tif n, ok := node.(*ast.SelectStmt); ok {\n\t\tfor _, col := range cols {\n\t\t\tif !col.NotNull || col.Table == nil || col.skipTableRequiredCheck {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tfor _, f := range n.FromClause.Items {\n\t\t\t\tres := isTableRequired(f, col, tableRequired)\n\t\t\t\tif res != tableNotFound {\n\t\t\t\t\tcol.NotNull = res == tableRequired\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn cols, nil\n}\n\nconst (\n\ttableNotFound = iota\n\ttableRequired\n\ttableOptional\n)\n\nfunc isTableRequired(n ast.Node, col *Column, prior int) int {\n\tswitch n := n.(type) {\n\tcase *ast.RangeVar:\n\t\ttableMatch := *n.Relname == col.Table.Name\n\t\taliasMatch := true\n\t\tif n.Alias != nil && col.TableAlias != \"\" {\n\t\t\taliasMatch = *n.Alias.Aliasname == col.TableAlias\n\t\t}\n\t\tif aliasMatch && tableMatch {\n\t\t\treturn prior\n\t\t}\n\tcase *ast.JoinExpr:\n\t\thelper := func(l, r int) int {\n\t\t\tif res := isTableRequired(n.Larg, col, l); res != tableNotFound {\n\t\t\t\treturn res\n\t\t\t}\n\t\t\tif res := isTableRequired(n.Rarg, col, r); res != tableNotFound {\n\t\t\t\treturn res\n\t\t\t}\n\t\t\treturn tableNotFound\n\t\t}\n\t\tswitch n.Jointype {\n\t\tcase ast.JoinTypeLeft:\n\t\t\treturn helper(tableRequired, tableOptional)\n\t\tcase ast.JoinTypeRight:\n\t\t\treturn helper(tableOptional, tableRequired)\n\t\tcase ast.JoinTypeFull:\n\t\t\treturn helper(tableOptional, tableOptional)\n\t\tcase ast.JoinTypeInner:\n\t\t\treturn helper(tableRequired, tableRequired)\n\t\t}\n\tcase *ast.List:\n\t\tfor _, item := range n.Items {\n\t\t\tif res := isTableRequired(item, col, prior); res != tableNotFound {\n\t\t\t\treturn res\n\t\t\t}\n\t\t}\n\t}\n\n\treturn tableNotFound\n}\n\ntype tableVisitor struct {\n\tlist ast.List\n}\n\nfunc (r *tableVisitor) Visit(n ast.Node) astutils.Visitor {\n\tswitch n.(type) {\n\tcase *ast.RangeVar, *ast.RangeFunction:\n\t\tr.list.Items = append(r.list.Items, n)\n\t\treturn r\n\tcase *ast.RangeSubselect:\n\t\tr.list.Items = append(r.list.Items, n)\n\t\treturn nil\n\tdefault:\n\t\treturn r\n\t}\n}\n\n// Compute the output columns for a statement.\n//\n// Return an error if column references are ambiguous\n// Return an error if column references don't exist\n// Return an error if a table is referenced twice\n// Return an error if an unknown column is referenced\nfunc (c *Compiler) sourceTables(qc *QueryCatalog, node ast.Node) ([]*Table, error) {\n\tlist := &ast.List{}\n\tswitch n := node.(type) {\n\tcase *ast.DeleteStmt:\n\t\tif n.Relations != nil {\n\t\t\tlist = n.Relations\n\t\t} else if n.FromClause != nil {\n\t\t\t// Multi-table DELETE: walk FromClause to find tables\n\t\t\tvar tv tableVisitor\n\t\t\tastutils.Walk(&tv, n.FromClause)\n\t\t\tlist = &tv.list\n\t\t}\n\tcase *ast.InsertStmt:\n\t\tlist = &ast.List{\n\t\t\tItems: []ast.Node{n.Relation},\n\t\t}\n\tcase *ast.SelectStmt:\n\t\tvar tv tableVisitor\n\t\tastutils.Walk(&tv, n.FromClause)\n\t\tlist = &tv.list\n\tcase *ast.TruncateStmt:\n\t\tlist = astutils.Search(n.Relations, func(node ast.Node) bool {\n\t\t\t_, ok := node.(*ast.RangeVar)\n\t\t\treturn ok\n\t\t})\n\tcase *ast.RefreshMatViewStmt:\n\t\tlist = astutils.Search(n.Relation, func(node ast.Node) bool {\n\t\t\t_, ok := node.(*ast.RangeVar)\n\t\t\treturn ok\n\t\t})\n\tcase *ast.UpdateStmt:\n\t\tvar tv tableVisitor\n\t\tastutils.Walk(&tv, n.FromClause)\n\t\tastutils.Walk(&tv, n.Relations)\n\t\tlist = &tv.list\n\t}\n\n\tvar tables []*Table\n\tfor _, item := range list.Items {\n\t\titem := item\n\t\tswitch n := item.(type) {\n\n\t\tcase *ast.RangeFunction:\n\t\t\tvar funcCall *ast.FuncCall\n\t\t\tswitch f := n.Functions.Items[0].(type) {\n\t\t\tcase *ast.List:\n\t\t\t\tswitch fi := f.Items[0].(type) {\n\t\t\t\tcase *ast.FuncCall:\n\t\t\t\t\tfuncCall = fi\n\t\t\t\tcase *ast.SQLValueFunction:\n\t\t\t\t\tcontinue // TODO handle this correctly\n\t\t\t\tdefault:\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\tcase *ast.FuncCall:\n\t\t\t\tfuncCall = f\n\t\t\tdefault:\n\t\t\t\treturn nil, fmt.Errorf(\"sourceTables: unsupported function call type %T\", n.Functions.Items[0])\n\t\t\t}\n\n\t\t\t// If the function or table can't be found, don't error out.  There\n\t\t\t// are many queries that depend on functions unknown to sqlc.\n\t\t\tfn, err := qc.GetFunc(funcCall.Func)\n\t\t\tif err != nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tvar table *Table\n\t\t\tif fn.ReturnType != nil {\n\t\t\t\ttable, err = qc.GetTable(&ast.TableName{\n\t\t\t\t\tCatalog: fn.ReturnType.Catalog,\n\t\t\t\t\tSchema:  fn.ReturnType.Schema,\n\t\t\t\t\tName:    fn.ReturnType.Name,\n\t\t\t\t})\n\t\t\t}\n\t\t\tif table == nil || err != nil {\n\t\t\t\tif n.Alias != nil && len(n.Alias.Colnames.Items) > 0 {\n\t\t\t\t\ttable = &Table{}\n\t\t\t\t\tfor _, colName := range n.Alias.Colnames.Items {\n\t\t\t\t\t\ttable.Columns = append(table.Columns, &Column{\n\t\t\t\t\t\t\tName:     colName.(*ast.String).Str,\n\t\t\t\t\t\t\tDataType: \"any\",\n\t\t\t\t\t\t})\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tcolName := fn.Rel.Name\n\t\t\t\t\tif n.Alias != nil {\n\t\t\t\t\t\tcolName = *n.Alias.Aliasname\n\t\t\t\t\t}\n\t\t\t\t\ttable = &Table{\n\t\t\t\t\t\tRel: &ast.TableName{\n\t\t\t\t\t\t\tCatalog: fn.Rel.Catalog,\n\t\t\t\t\t\t\tSchema:  fn.Rel.Schema,\n\t\t\t\t\t\t\tName:    fn.Rel.Name,\n\t\t\t\t\t\t},\n\t\t\t\t\t}\n\t\t\t\t\tif len(fn.Outs) > 0 {\n\t\t\t\t\t\tfor _, arg := range fn.Outs {\n\t\t\t\t\t\t\ttable.Columns = append(table.Columns, &Column{\n\t\t\t\t\t\t\t\tName:     arg.Name,\n\t\t\t\t\t\t\t\tDataType: arg.Type.Name,\n\t\t\t\t\t\t\t})\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif fn.ReturnType != nil {\n\t\t\t\t\t\ttable.Columns = []*Column{\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tName:     colName,\n\t\t\t\t\t\t\t\tDataType: fn.ReturnType.Name,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif n.Alias != nil {\n\t\t\t\ttable.Rel = &ast.TableName{\n\t\t\t\t\tName: *n.Alias.Aliasname,\n\t\t\t\t}\n\t\t\t}\n\t\t\ttables = append(tables, table)\n\n\t\tcase *ast.RangeSubselect:\n\t\t\tcols, err := c.outputColumns(qc, n.Subquery)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\n\t\t\tvar tableName string\n\t\t\tif n.Alias != nil {\n\t\t\t\ttableName = *n.Alias.Aliasname\n\t\t\t}\n\n\t\t\ttables = append(tables, &Table{\n\t\t\t\tRel: &ast.TableName{\n\t\t\t\t\tName: tableName,\n\t\t\t\t},\n\t\t\t\tColumns: cols,\n\t\t\t})\n\n\t\tcase *ast.RangeVar:\n\t\t\tfqn, err := ParseTableName(n)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tif qc == nil {\n\t\t\t\treturn nil, fmt.Errorf(\"query catalog is empty\")\n\t\t\t}\n\t\t\ttable, cerr := qc.GetTable(fqn)\n\t\t\tif cerr != nil {\n\t\t\t\t// TODO: Update error location\n\t\t\t\t// cerr.Location = n.Location\n\t\t\t\t// return nil, *cerr\n\t\t\t\treturn nil, cerr\n\t\t\t}\n\t\t\tif n.Alias != nil {\n\t\t\t\ttable.Rel = &ast.TableName{\n\t\t\t\t\tCatalog: table.Rel.Catalog,\n\t\t\t\t\tSchema:  table.Rel.Schema,\n\t\t\t\t\tName:    *n.Alias.Aliasname,\n\t\t\t\t}\n\t\t\t}\n\t\t\ttables = append(tables, table)\n\n\t\tdefault:\n\t\t\treturn nil, fmt.Errorf(\"sourceTable: unsupported list item type: %T\", n)\n\t\t}\n\t}\n\treturn tables, nil\n}\n\nfunc outputColumnRefs(res *ast.ResTarget, tables []*Table, node *ast.ColumnRef) ([]*Column, error) {\n\tparts := stringSlice(node.Fields)\n\tvar schema, name, alias string\n\tswitch {\n\tcase len(parts) == 1:\n\t\tname = parts[0]\n\tcase len(parts) == 2:\n\t\talias = parts[0]\n\t\tname = parts[1]\n\tcase len(parts) == 3:\n\t\tschema = parts[0]\n\t\talias = parts[1]\n\t\tname = parts[2]\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"unknown number of fields: %d\", len(parts))\n\t}\n\tvar cols []*Column\n\tvar found int\n\tfor _, t := range tables {\n\t\tif schema != \"\" && t.Rel.Schema != schema {\n\t\t\tcontinue\n\t\t}\n\t\tif alias != \"\" && t.Rel.Name != alias {\n\t\t\tcontinue\n\t\t}\n\t\tfor _, c := range t.Columns {\n\n\t\t\tif c.Name == name {\n\t\t\t\tfound += 1\n\t\t\t\tcname := c.Name\n\t\t\t\tif res.Name != nil {\n\t\t\t\t\tcname = *res.Name\n\t\t\t\t}\n\t\t\t\tcols = append(cols, &Column{\n\t\t\t\t\tName:         cname,\n\t\t\t\t\tType:         c.Type,\n\t\t\t\t\tTable:        c.Table,\n\t\t\t\t\tTableAlias:   alias,\n\t\t\t\t\tDataType:     c.DataType,\n\t\t\t\t\tNotNull:      c.NotNull,\n\t\t\t\t\tUnsigned:     c.Unsigned,\n\t\t\t\t\tIsArray:      c.IsArray,\n\t\t\t\t\tArrayDims:    c.ArrayDims,\n\t\t\t\t\tLength:       c.Length,\n\t\t\t\t\tEmbedTable:   c.EmbedTable,\n\t\t\t\t\tOriginalName: c.Name,\n\t\t\t\t})\n\t\t\t}\n\t\t}\n\t}\n\tif found == 0 {\n\t\treturn nil, &sqlerr.Error{\n\t\t\tCode:     \"42703\",\n\t\t\tMessage:  fmt.Sprintf(\"column %q does not exist\", name),\n\t\t\tLocation: res.Location,\n\t\t}\n\t}\n\tif found > 1 {\n\t\treturn nil, &sqlerr.Error{\n\t\t\tCode:     \"42703\",\n\t\t\tMessage:  fmt.Sprintf(\"column reference %q is ambiguous\", name),\n\t\t\tLocation: res.Location,\n\t\t}\n\t}\n\treturn cols, nil\n}\n\nfunc findColumnForNode(item ast.Node, tables []*Table, targetList *ast.List) error {\n\tref, ok := item.(*ast.ColumnRef)\n\tif !ok {\n\t\treturn nil\n\t}\n\treturn findColumnForRef(ref, tables, targetList)\n}\n\nfunc findColumnForRef(ref *ast.ColumnRef, tables []*Table, targetList *ast.List) error {\n\tparts := stringSlice(ref.Fields)\n\tvar alias, name string\n\tif len(parts) == 1 {\n\t\tname = parts[0]\n\t} else if len(parts) == 2 {\n\t\talias = parts[0]\n\t\tname = parts[1]\n\t}\n\n\tvar found int\n\tfor _, t := range tables {\n\t\tif alias != \"\" && t.Rel.Name != alias {\n\t\t\tcontinue\n\t\t}\n\n\t\t// Find matching column\n\t\tfor _, c := range t.Columns {\n\t\t\tif c.Name == name {\n\t\t\t\tfound++\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\n\t// Find matching alias if necessary\n\tif found == 0 {\n\t\tfor _, c := range targetList.Items {\n\t\t\tresTarget, ok := c.(*ast.ResTarget)\n\t\t\tif !ok {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif resTarget.Name != nil && *resTarget.Name == name {\n\t\t\t\tfound++\n\t\t\t}\n\t\t}\n\t}\n\n\tif found == 0 {\n\t\treturn &sqlerr.Error{\n\t\t\tCode:     \"42703\",\n\t\t\tMessage:  fmt.Sprintf(\"column reference %q not found\", name),\n\t\t\tLocation: ref.Location,\n\t\t}\n\t}\n\tif found > 1 {\n\t\treturn &sqlerr.Error{\n\t\t\tCode:     \"42703\",\n\t\t\tMessage:  fmt.Sprintf(\"column reference %q is ambiguous\", name),\n\t\t\tLocation: ref.Location,\n\t\t}\n\t}\n\n\treturn nil\n}\n"
  },
  {
    "path": "internal/compiler/parse.go",
    "content": "package compiler\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/debug\"\n\t\"github.com/sqlc-dev/sqlc/internal/metadata\"\n\t\"github.com/sqlc-dev/sqlc/internal/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/source\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/validate\"\n)\n\nfunc (c *Compiler) parseQuery(stmt ast.Node, src string, o opts.Parser) (*Query, error) {\n\tctx := context.Background()\n\n\tif o.Debug.DumpAST {\n\t\tdebug.Dump(stmt)\n\t}\n\n\t// validate sqlc-specific syntax\n\tif err := validate.SqlcFunctions(stmt); err != nil {\n\t\treturn nil, err\n\t}\n\n\t// rewrite queries to remove sqlc.* functions\n\n\traw, ok := stmt.(*ast.RawStmt)\n\tif !ok {\n\t\treturn nil, errors.New(\"node is not a statement\")\n\t}\n\trawSQL, err := source.Pluck(src, raw.StmtLocation, raw.StmtLen)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif rawSQL == \"\" {\n\t\treturn nil, errors.New(\"missing semicolon at end of file\")\n\t}\n\n\tname, cmd, err := metadata.ParseQueryNameAndType(rawSQL, metadata.CommentSyntax(c.parser.CommentSyntax()))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tif name == \"\" {\n\t\treturn nil, nil\n\t}\n\n\tif err := validate.Cmd(raw.Stmt, name, cmd); err != nil {\n\t\treturn nil, err\n\t}\n\n\tmd := metadata.Metadata{\n\t\tName: name,\n\t\tCmd:  cmd,\n\t}\n\n\t// TODO eventually can use this for name and type/cmd parsing too\n\tcleanedComments, err := source.CleanedComments(rawSQL, c.parser.CommentSyntax())\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tmd.Params, md.Flags, md.RuleSkiplist, err = metadata.ParseCommentFlags(cleanedComments)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tvar anlys *analysis\n\tif c.databaseOnlyMode && c.expander != nil {\n\t\t// In database-only mode, use the expander for star expansion\n\t\t// and rely entirely on the database analyzer for type resolution\n\t\texpandedQuery, err := c.expander.Expand(ctx, rawSQL)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"star expansion failed: %w\", err)\n\t\t}\n\n\t\t// Parse named parameters from the expanded query\n\t\texpandedStmts, err := c.parser.Parse(strings.NewReader(expandedQuery))\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"parsing expanded query failed: %w\", err)\n\t\t}\n\t\tif len(expandedStmts) == 0 {\n\t\t\treturn nil, errors.New(\"no statements in expanded query\")\n\t\t}\n\t\texpandedRaw := expandedStmts[0].Raw\n\n\t\t// Use the analyzer to get type information from the database\n\t\tresult, err := c.analyzer.Analyze(ctx, expandedRaw, expandedQuery, c.schema, nil)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\t// Convert the analyzer result to the internal analysis format\n\t\tvar cols []*Column\n\t\tfor _, col := range result.Columns {\n\t\t\tcols = append(cols, convertColumn(col))\n\t\t}\n\t\tvar params []Parameter\n\t\tfor _, p := range result.Params {\n\t\t\tparams = append(params, Parameter{\n\t\t\t\tNumber: int(p.Number),\n\t\t\t\tColumn: convertColumn(p.Column),\n\t\t\t})\n\t\t}\n\n\t\t// Determine the insert table if applicable\n\t\tvar table *ast.TableName\n\t\tif insert, ok := expandedRaw.Stmt.(*ast.InsertStmt); ok {\n\t\t\ttable, _ = ParseTableName(insert.Relation)\n\t\t}\n\n\t\tanlys = &analysis{\n\t\t\tTable:      table,\n\t\t\tColumns:    cols,\n\t\t\tParameters: params,\n\t\t\tQuery:      expandedQuery,\n\t\t}\n\t} else if c.analyzer != nil {\n\t\tinference, _ := c.inferQuery(raw, rawSQL)\n\t\tif inference == nil {\n\t\t\tinference = &analysis{}\n\t\t}\n\t\tif inference.Query == \"\" {\n\t\t\tinference.Query = rawSQL\n\t\t}\n\n\t\tresult, err := c.analyzer.Analyze(ctx, raw, inference.Query, c.schema, inference.Named)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\t// If the query uses star expansion, verify that it was edited. If not,\n\t\t// return an error.\n\t\tstars := astutils.Search(raw, func(node ast.Node) bool {\n\t\t\t_, ok := node.(*ast.A_Star)\n\t\t\treturn ok\n\t\t})\n\t\thasStars := len(stars.Items) > 0\n\t\tunchanged := inference.Query == rawSQL\n\t\tif unchanged && hasStars {\n\t\t\treturn nil, fmt.Errorf(\"star expansion failed for query\")\n\t\t}\n\n\t\t// FOOTGUN: combineAnalysis mutates inference\n\t\tanlys = combineAnalysis(inference, result)\n\t} else {\n\t\tanlys, err = c.analyzeQuery(raw, rawSQL)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t}\n\n\texpanded := anlys.Query\n\n\t// If the query string was edited, make sure the syntax is valid\n\tif expanded != rawSQL {\n\t\tif _, err := c.parser.Parse(strings.NewReader(expanded)); err != nil {\n\t\t\treturn nil, fmt.Errorf(\"edited query syntax is invalid: %w\", err)\n\t\t}\n\t}\n\n\ttrimmed, comments, err := source.StripComments(expanded)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tmd.Comments = comments\n\n\treturn &Query{\n\t\tRawStmt:         raw,\n\t\tMetadata:        md,\n\t\tParams:          anlys.Parameters,\n\t\tColumns:         anlys.Columns,\n\t\tSQL:             trimmed,\n\t\tInsertIntoTable: anlys.Table,\n\t}, nil\n}\n\nfunc rangeVars(root ast.Node) []*ast.RangeVar {\n\tvar vars []*ast.RangeVar\n\tfind := astutils.VisitorFunc(func(node ast.Node) {\n\t\tswitch n := node.(type) {\n\t\tcase *ast.RangeVar:\n\t\t\tvars = append(vars, n)\n\t\t}\n\t})\n\tastutils.Walk(find, root)\n\treturn vars\n}\n\nfunc uniqueParamRefs(in []paramRef, dollar bool) []paramRef {\n\tm := make(map[int]bool, len(in))\n\to := make([]paramRef, 0, len(in))\n\tfor _, v := range in {\n\t\tif !m[v.ref.Number] {\n\t\t\tm[v.ref.Number] = true\n\t\t\tif v.ref.Number != 0 {\n\t\t\t\to = append(o, v)\n\t\t\t}\n\t\t}\n\t}\n\tif !dollar {\n\t\tstart := 1\n\t\tfor _, v := range in {\n\t\t\tif v.ref.Number == 0 {\n\t\t\t\tfor m[start] {\n\t\t\t\t\tstart++\n\t\t\t\t}\n\t\t\t\tv.ref.Number = start\n\t\t\t\to = append(o, v)\n\t\t\t}\n\t\t}\n\t}\n\treturn o\n}\n"
  },
  {
    "path": "internal/compiler/query.go",
    "content": "package compiler\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/metadata\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\ntype Function struct {\n\tRel        *ast.FuncName\n\tReturnType *ast.TypeName\n\tOuts       []*catalog.Argument\n}\n\ntype Table struct {\n\tRel     *ast.TableName\n\tColumns []*Column\n}\n\ntype Column struct {\n\tName         string\n\tOriginalName string\n\tDataType     string\n\tNotNull      bool\n\tUnsigned     bool\n\tIsArray      bool\n\tArrayDims    int\n\tComment      string\n\tLength       *int\n\tIsNamedParam bool\n\tIsFuncCall   bool\n\n\t// XXX: Figure out what PostgreSQL calls `foo.id`\n\tScope      string\n\tTable      *ast.TableName\n\tTableAlias string\n\tType       *ast.TypeName\n\tEmbedTable *ast.TableName\n\n\tIsSqlcSlice bool // is this sqlc.slice()\n\n\tskipTableRequiredCheck bool\n}\n\ntype Query struct {\n\tSQL      string\n\tMetadata metadata.Metadata\n\tColumns  []*Column\n\tParams   []Parameter\n\n\t// Needed for CopyFrom\n\tInsertIntoTable *ast.TableName\n\n\t// Needed for vet\n\tRawStmt *ast.RawStmt\n}\n\ntype Parameter struct {\n\tNumber int\n\tColumn *Column\n}\n"
  },
  {
    "path": "internal/compiler/query_catalog.go",
    "content": "package compiler\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/rewrite\"\n)\n\ntype QueryCatalog struct {\n\tcatalog *catalog.Catalog\n\tctes    map[string]*Table\n\tembeds  rewrite.EmbedSet\n}\n\nfunc (comp *Compiler) buildQueryCatalog(c *catalog.Catalog, node ast.Node, embeds rewrite.EmbedSet) (*QueryCatalog, error) {\n\tvar with *ast.WithClause\n\tswitch n := node.(type) {\n\tcase *ast.DeleteStmt:\n\t\twith = n.WithClause\n\tcase *ast.InsertStmt:\n\t\twith = n.WithClause\n\tcase *ast.UpdateStmt:\n\t\twith = n.WithClause\n\tcase *ast.SelectStmt:\n\t\twith = n.WithClause\n\tdefault:\n\t\twith = nil\n\t}\n\tqc := &QueryCatalog{catalog: c, ctes: map[string]*Table{}, embeds: embeds}\n\tif with != nil {\n\t\tfor _, item := range with.Ctes.Items {\n\t\t\tif cte, ok := item.(*ast.CommonTableExpr); ok {\n\t\t\t\tcols, err := comp.outputColumns(qc, cte.Ctequery)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tvar names []string\n\t\t\t\tif cte.Aliascolnames != nil {\n\t\t\t\t\tfor _, item := range cte.Aliascolnames.Items {\n\t\t\t\t\t\tif val, ok := item.(*ast.String); ok {\n\t\t\t\t\t\t\tnames = append(names, val.Str)\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tnames = append(names, \"\")\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\trel := &ast.TableName{Name: *cte.Ctename}\n\t\t\t\tfor i := range cols {\n\t\t\t\t\tcols[i].Table = rel\n\t\t\t\t\tif len(names) > i {\n\t\t\t\t\t\tcols[i].Name = names[i]\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tqc.ctes[*cte.Ctename] = &Table{\n\t\t\t\t\tRel:     rel,\n\t\t\t\t\tColumns: cols,\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn qc, nil\n}\n\nfunc ConvertColumn(rel *ast.TableName, c *catalog.Column) *Column {\n\treturn &Column{\n\t\tTable:     rel,\n\t\tName:      c.Name,\n\t\tDataType:  dataType(&c.Type),\n\t\tNotNull:   c.IsNotNull,\n\t\tUnsigned:  c.IsUnsigned,\n\t\tIsArray:   c.IsArray,\n\t\tArrayDims: c.ArrayDims,\n\t\tType:      &c.Type,\n\t\tLength:    c.Length,\n\t}\n}\n\nfunc (qc QueryCatalog) GetTable(rel *ast.TableName) (*Table, error) {\n\tcte, exists := qc.ctes[rel.Name]\n\tif exists {\n\t\treturn &Table{Rel: rel, Columns: cte.Columns}, nil\n\t}\n\tsrc, err := qc.catalog.GetTable(rel)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvar cols []*Column\n\tfor _, c := range src.Columns {\n\t\tcols = append(cols, ConvertColumn(rel, c))\n\t}\n\treturn &Table{Rel: rel, Columns: cols}, nil\n}\n\nfunc (qc QueryCatalog) GetFunc(rel *ast.FuncName) (*Function, error) {\n\tfuncs, err := qc.catalog.ListFuncsByName(rel)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tif len(funcs) == 0 {\n\t\treturn nil, fmt.Errorf(\"function not found: %s\", rel.Name)\n\t}\n\treturn &Function{\n\t\tRel:        rel,\n\t\tOuts:       funcs[0].OutArgs(),\n\t\tReturnType: funcs[0].ReturnType,\n\t}, nil\n}\n"
  },
  {
    "path": "internal/compiler/resolve.go",
    "content": "package compiler\n\nimport (\n\t\"fmt\"\n\t\"log/slog\"\n\t\"strconv\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/named\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/rewrite\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\nfunc dataType(n *ast.TypeName) string {\n\tif n.Schema != \"\" {\n\t\treturn n.Schema + \".\" + n.Name\n\t} else {\n\t\treturn n.Name\n\t}\n}\n\nfunc (comp *Compiler) resolveCatalogRefs(qc *QueryCatalog, rvs []*ast.RangeVar, args []paramRef, params *named.ParamSet, embeds rewrite.EmbedSet) ([]Parameter, error) {\n\tc := comp.catalog\n\n\taliasMap := map[string]*ast.TableName{}\n\t// TODO: Deprecate defaultTable\n\tvar defaultTable *ast.TableName\n\tvar tables []*ast.TableName\n\n\ttypeMap := map[string]map[string]map[string]*catalog.Column{}\n\tindexTable := func(table catalog.Table) error {\n\t\ttables = append(tables, table.Rel)\n\t\tif defaultTable == nil {\n\t\t\tdefaultTable = table.Rel\n\t\t}\n\t\tschema := table.Rel.Schema\n\t\tif schema == \"\" {\n\t\t\tschema = c.DefaultSchema\n\t\t}\n\t\tif _, exists := typeMap[schema]; !exists {\n\t\t\ttypeMap[schema] = map[string]map[string]*catalog.Column{}\n\t\t}\n\t\ttypeMap[schema][table.Rel.Name] = map[string]*catalog.Column{}\n\t\tfor _, c := range table.Columns {\n\t\t\tcc := c\n\t\t\ttypeMap[schema][table.Rel.Name][c.Name] = cc\n\t\t}\n\t\treturn nil\n\t}\n\n\tfor _, rv := range rvs {\n\t\tif rv.Relname == nil {\n\t\t\tcontinue\n\t\t}\n\t\tfqn, err := ParseTableName(rv)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif _, found := aliasMap[fqn.Name]; found {\n\t\t\tcontinue\n\t\t}\n\t\ttable, err := c.GetTable(fqn)\n\t\tif err != nil {\n\t\t\tif qc == nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\t// If the table name doesn't exist, first check if it's a CTE\n\t\t\tif _, qcerr := qc.GetTable(fqn); qcerr != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\terr = indexTable(table)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif rv.Alias != nil {\n\t\t\taliasMap[*rv.Alias.Aliasname] = fqn\n\t\t}\n\t}\n\n\t// resolve a table for an embed\n\tfor _, embed := range embeds {\n\t\ttable, err := c.GetTable(embed.Table)\n\t\tif err == nil {\n\t\t\tembed.Table = table.Rel\n\t\t\tcontinue\n\t\t}\n\n\t\tif alias, ok := aliasMap[embed.Table.Name]; ok {\n\t\t\tembed.Table = alias\n\t\t\tcontinue\n\t\t}\n\n\t\treturn nil, fmt.Errorf(\"unable to resolve table with %q: %w\", embed.Orig(), err)\n\t}\n\n\tvar a []Parameter\n\n\taddUnknownParam := func(ref paramRef) {\n\t\tdefaultP := named.NewInferredParam(ref.name, false)\n\t\tp, isNamed := params.FetchMerge(ref.ref.Number, defaultP)\n\t\ta = append(a, Parameter{\n\t\t\tNumber: ref.ref.Number,\n\t\t\tColumn: &Column{\n\t\t\t\tName:         p.Name(),\n\t\t\t\tDataType:     \"any\",\n\t\t\t\tIsNamedParam: isNamed,\n\t\t\t},\n\t\t})\n\t}\n\n\tfor _, ref := range args {\n\t\tswitch n := ref.parent.(type) {\n\n\t\tcase *limitOffset:\n\t\t\tdefaultP := named.NewInferredParam(\"offset\", true)\n\t\t\tp, isNamed := params.FetchMerge(ref.ref.Number, defaultP)\n\t\t\ta = append(a, Parameter{\n\t\t\t\tNumber: ref.ref.Number,\n\t\t\t\tColumn: &Column{\n\t\t\t\t\tName:         p.Name(),\n\t\t\t\t\tDataType:     \"integer\",\n\t\t\t\t\tNotNull:      p.NotNull(),\n\t\t\t\t\tIsNamedParam: isNamed,\n\t\t\t\t},\n\t\t\t})\n\n\t\tcase *limitCount:\n\t\t\tdefaultP := named.NewInferredParam(\"limit\", true)\n\t\t\tp, isNamed := params.FetchMerge(ref.ref.Number, defaultP)\n\t\t\ta = append(a, Parameter{\n\t\t\t\tNumber: ref.ref.Number,\n\t\t\t\tColumn: &Column{\n\t\t\t\t\tName:         p.Name(),\n\t\t\t\t\tDataType:     \"integer\",\n\t\t\t\t\tNotNull:      p.NotNull(),\n\t\t\t\t\tIsNamedParam: isNamed,\n\t\t\t\t},\n\t\t\t})\n\n\t\tcase *ast.A_Expr:\n\t\t\t// TODO: While this works for a wide range of simple expressions,\n\t\t\t// more complicated expressions will cause this logic to fail.\n\t\t\tlist := astutils.Search(n.Lexpr, func(node ast.Node) bool {\n\t\t\t\t_, ok := node.(*ast.ColumnRef)\n\t\t\t\treturn ok\n\t\t\t})\n\t\t\tif len(list.Items) == 0 {\n\t\t\t\tlist = astutils.Search(n.Rexpr, func(node ast.Node) bool {\n\t\t\t\t\t_, ok := node.(*ast.ColumnRef)\n\t\t\t\t\treturn ok\n\t\t\t\t})\n\t\t\t}\n\n\t\t\tif len(list.Items) == 0 {\n\t\t\t\t// TODO: Move this to database-specific engine package\n\t\t\t\tdataType := \"any\"\n\t\t\t\tif astutils.Join(n.Name, \".\") == \"||\" {\n\t\t\t\t\tdataType = \"text\"\n\t\t\t\t}\n\n\t\t\t\tdefaultP := named.NewParam(\"\")\n\t\t\t\tp, isNamed := params.FetchMerge(ref.ref.Number, defaultP)\n\t\t\t\ta = append(a, Parameter{\n\t\t\t\t\tNumber: ref.ref.Number,\n\t\t\t\t\tColumn: &Column{\n\t\t\t\t\t\tName:         p.Name(),\n\t\t\t\t\t\tDataType:     dataType,\n\t\t\t\t\t\tIsNamedParam: isNamed,\n\t\t\t\t\t\tNotNull:      p.NotNull(),\n\t\t\t\t\t\tIsSqlcSlice:  p.IsSqlcSlice(),\n\t\t\t\t\t},\n\t\t\t\t})\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tswitch node := list.Items[0].(type) {\n\t\t\tcase *ast.ColumnRef:\n\t\t\t\titems := stringSlice(node.Fields)\n\t\t\t\tvar key, alias string\n\t\t\t\tswitch len(items) {\n\t\t\t\tcase 1:\n\t\t\t\t\tkey = items[0]\n\t\t\t\tcase 2:\n\t\t\t\t\talias = items[0]\n\t\t\t\t\tkey = items[1]\n\t\t\t\tcase 3:\n\t\t\t\t\t// schema := items[0]\n\t\t\t\t\talias = items[1]\n\t\t\t\t\tkey = items[2]\n\t\t\t\tdefault:\n\t\t\t\t\tpanic(\"too many field items: \" + strconv.Itoa(len(items)))\n\t\t\t\t}\n\n\t\t\t\tsearch := tables\n\t\t\t\tif alias != \"\" {\n\t\t\t\t\tif original, ok := aliasMap[alias]; ok {\n\t\t\t\t\t\tsearch = []*ast.TableName{original}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tvar located bool\n\t\t\t\t\t\tfor _, fqn := range tables {\n\t\t\t\t\t\t\tif fqn.Name == alias {\n\t\t\t\t\t\t\t\tlocated = true\n\t\t\t\t\t\t\t\tsearch = []*ast.TableName{fqn}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif !located {\n\t\t\t\t\t\t\treturn nil, &sqlerr.Error{\n\t\t\t\t\t\t\t\tCode:     \"42703\",\n\t\t\t\t\t\t\t\tMessage:  fmt.Sprintf(\"table alias %q does not exist\", alias),\n\t\t\t\t\t\t\t\tLocation: node.Location,\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tvar found int\n\t\t\t\tfor _, table := range search {\n\t\t\t\t\tschema := table.Schema\n\t\t\t\t\tif schema == \"\" {\n\t\t\t\t\t\tschema = c.DefaultSchema\n\t\t\t\t\t}\n\t\t\t\t\tif c, ok := typeMap[schema][table.Name][key]; ok {\n\t\t\t\t\t\tfound += 1\n\t\t\t\t\t\tif ref.name != \"\" {\n\t\t\t\t\t\t\tkey = ref.name\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tdefaultP := named.NewInferredParam(key, c.IsNotNull)\n\t\t\t\t\t\tp, isNamed := params.FetchMerge(ref.ref.Number, defaultP)\n\t\t\t\t\t\ta = append(a, Parameter{\n\t\t\t\t\t\t\tNumber: ref.ref.Number,\n\t\t\t\t\t\t\tColumn: &Column{\n\t\t\t\t\t\t\t\tName:         p.Name(),\n\t\t\t\t\t\t\t\tOriginalName: c.Name,\n\t\t\t\t\t\t\t\tDataType:     dataType(&c.Type),\n\t\t\t\t\t\t\t\tNotNull:      p.NotNull(),\n\t\t\t\t\t\t\t\tUnsigned:     c.IsUnsigned,\n\t\t\t\t\t\t\t\tIsArray:      c.IsArray,\n\t\t\t\t\t\t\t\tArrayDims:    c.ArrayDims,\n\t\t\t\t\t\t\t\tLength:       c.Length,\n\t\t\t\t\t\t\t\tTable:        table,\n\t\t\t\t\t\t\t\tIsNamedParam: isNamed,\n\t\t\t\t\t\t\t\tIsSqlcSlice:  p.IsSqlcSlice(),\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t})\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif found == 0 {\n\t\t\t\t\treturn nil, &sqlerr.Error{\n\t\t\t\t\t\tCode:     \"42703\",\n\t\t\t\t\t\tMessage:  fmt.Sprintf(\"column %q does not exist\", key),\n\t\t\t\t\t\tLocation: node.Location,\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif found > 1 {\n\t\t\t\t\treturn nil, &sqlerr.Error{\n\t\t\t\t\t\tCode:     \"42703\",\n\t\t\t\t\t\tMessage:  fmt.Sprintf(\"column reference %q is ambiguous\", key),\n\t\t\t\t\t\tLocation: node.Location,\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase *ast.BetweenExpr:\n\t\t\tif n == nil || n.Expr == nil || n.Left == nil || n.Right == nil {\n\t\t\t\tfmt.Println(\"ast.BetweenExpr is nil\")\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tvar key string\n\t\t\tif ref, ok := n.Expr.(*ast.ColumnRef); ok {\n\t\t\t\titemsCount := len(ref.Fields.Items)\n\t\t\t\tif str, ok := ref.Fields.Items[itemsCount-1].(*ast.String); ok {\n\t\t\t\t\tkey = str.Str\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor _, table := range tables {\n\t\t\t\tschema := table.Schema\n\t\t\t\tif schema == \"\" {\n\t\t\t\t\tschema = c.DefaultSchema\n\t\t\t\t}\n\n\t\t\t\tif c, ok := typeMap[schema][table.Name][key]; ok {\n\t\t\t\t\tdefaultP := named.NewInferredParam(key, c.IsNotNull)\n\t\t\t\t\tp, isNamed := params.FetchMerge(ref.ref.Number, defaultP)\n\t\t\t\t\tvar namePrefix string\n\t\t\t\t\tif !isNamed {\n\t\t\t\t\t\tif ref.ref == n.Left {\n\t\t\t\t\t\t\tnamePrefix = \"from_\"\n\t\t\t\t\t\t} else if ref.ref == n.Right {\n\t\t\t\t\t\t\tnamePrefix = \"to_\"\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\ta = append(a, Parameter{\n\t\t\t\t\t\tNumber: ref.ref.Number,\n\t\t\t\t\t\tColumn: &Column{\n\t\t\t\t\t\t\tName:         namePrefix + p.Name(),\n\t\t\t\t\t\t\tDataType:     dataType(&c.Type),\n\t\t\t\t\t\t\tNotNull:      p.NotNull(),\n\t\t\t\t\t\t\tUnsigned:     c.IsUnsigned,\n\t\t\t\t\t\t\tIsArray:      c.IsArray,\n\t\t\t\t\t\t\tArrayDims:    c.ArrayDims,\n\t\t\t\t\t\t\tTable:        table,\n\t\t\t\t\t\t\tIsNamedParam: isNamed,\n\t\t\t\t\t\t\tIsSqlcSlice:  p.IsSqlcSlice(),\n\t\t\t\t\t\t},\n\t\t\t\t\t})\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase *ast.FuncCall:\n\t\t\tfun, err := c.ResolveFuncCall(n)\n\t\t\tif err != nil {\n\t\t\t\t// Synthesize a function on the fly to avoid returning with an error\n\t\t\t\t// for an unknown Postgres function (e.g. defined in an extension)\n\t\t\t\tvar args []*catalog.Argument\n\t\t\t\tfor range n.Args.Items {\n\t\t\t\t\targs = append(args, &catalog.Argument{\n\t\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\t})\n\t\t\t\t}\n\t\t\t\tfun = &catalog.Function{\n\t\t\t\t\tName:       n.Func.Name,\n\t\t\t\t\tArgs:       args,\n\t\t\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tvar added bool\n\t\t\tfor i, item := range n.Args.Items {\n\t\t\t\tfuncName := fun.Name\n\t\t\t\tvar argName string\n\t\t\t\tswitch inode := item.(type) {\n\t\t\t\tcase *ast.ParamRef:\n\t\t\t\t\tif inode.Number != ref.ref.Number {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\tcase *ast.TypeCast:\n\t\t\t\t\tpr, ok := inode.Arg.(*ast.ParamRef)\n\t\t\t\t\tif !ok {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tif pr.Number != ref.ref.Number {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\tcase *ast.NamedArgExpr:\n\t\t\t\t\tpr, ok := inode.Arg.(*ast.ParamRef)\n\t\t\t\t\tif !ok {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tif pr.Number != ref.ref.Number {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tif inode.Name != nil {\n\t\t\t\t\t\targName = *inode.Name\n\t\t\t\t\t}\n\t\t\t\tdefault:\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\tif fun.Args == nil {\n\t\t\t\t\tdefaultName := funcName\n\t\t\t\t\tif argName != \"\" {\n\t\t\t\t\t\tdefaultName = argName\n\t\t\t\t\t}\n\n\t\t\t\t\tdefaultP := named.NewInferredParam(defaultName, false)\n\t\t\t\t\tp, isNamed := params.FetchMerge(ref.ref.Number, defaultP)\n\t\t\t\t\tadded = true\n\t\t\t\t\ta = append(a, Parameter{\n\t\t\t\t\t\tNumber: ref.ref.Number,\n\t\t\t\t\t\tColumn: &Column{\n\t\t\t\t\t\t\tName:         p.Name(),\n\t\t\t\t\t\t\tDataType:     \"any\",\n\t\t\t\t\t\t\tIsNamedParam: isNamed,\n\t\t\t\t\t\t\tNotNull:      p.NotNull(),\n\t\t\t\t\t\t\tIsSqlcSlice:  p.IsSqlcSlice(),\n\t\t\t\t\t\t},\n\t\t\t\t\t})\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\tvar paramName string\n\t\t\t\tvar paramType *ast.TypeName\n\n\t\t\t\tif argName == \"\" {\n\t\t\t\t\tif i < len(fun.Args) {\n\t\t\t\t\t\tparamName = fun.Args[i].Name\n\t\t\t\t\t\tparamType = fun.Args[i].Type\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tparamName = argName\n\t\t\t\t\tfor _, arg := range fun.Args {\n\t\t\t\t\t\tif arg.Name == argName {\n\t\t\t\t\t\t\tparamType = arg.Type\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif paramType == nil {\n\t\t\t\t\t\tpanic(fmt.Sprintf(\"named argument %s has no type\", paramName))\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif paramName == \"\" {\n\t\t\t\t\tparamName = funcName\n\t\t\t\t}\n\t\t\t\tif paramType == nil {\n\t\t\t\t\tparamType = &ast.TypeName{Name: \"\"}\n\t\t\t\t}\n\n\t\t\t\tdefaultP := named.NewInferredParam(paramName, true)\n\t\t\t\tp, isNamed := params.FetchMerge(ref.ref.Number, defaultP)\n\t\t\t\tadded = true\n\t\t\t\ta = append(a, Parameter{\n\t\t\t\t\tNumber: ref.ref.Number,\n\t\t\t\t\tColumn: &Column{\n\t\t\t\t\t\tName:         p.Name(),\n\t\t\t\t\t\tDataType:     dataType(paramType),\n\t\t\t\t\t\tNotNull:      p.NotNull(),\n\t\t\t\t\t\tIsNamedParam: isNamed,\n\t\t\t\t\t\tIsSqlcSlice:  p.IsSqlcSlice(),\n\t\t\t\t\t},\n\t\t\t\t})\n\t\t\t}\n\n\t\t\tif fun.ReturnType == nil {\n\t\t\t\tif !added {\n\t\t\t\t\taddUnknownParam(ref)\n\t\t\t\t}\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\ttable, err := c.GetTable(&ast.TableName{\n\t\t\t\tCatalog: fun.ReturnType.Catalog,\n\t\t\t\tSchema:  fun.ReturnType.Schema,\n\t\t\t\tName:    fun.ReturnType.Name,\n\t\t\t})\n\t\t\tif err != nil {\n\t\t\t\tif !added {\n\t\t\t\t\taddUnknownParam(ref)\n\t\t\t\t}\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\terr = indexTable(table)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\n\t\tcase *ast.ResTarget:\n\t\t\tif n.Name == nil {\n\t\t\t\treturn nil, fmt.Errorf(\"*ast.ResTarget has nil name\")\n\t\t\t}\n\t\t\tkey := *n.Name\n\n\t\t\tvar schema, rel string\n\t\t\t// TODO: Deprecate defaultTable\n\t\t\tif defaultTable != nil {\n\t\t\t\tschema = defaultTable.Schema\n\t\t\t\trel = defaultTable.Name\n\t\t\t}\n\t\t\tif ref.rv != nil {\n\t\t\t\tfqn, err := ParseTableName(ref.rv)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tschema = fqn.Schema\n\t\t\t\trel = fqn.Name\n\t\t\t}\n\t\t\tif schema == \"\" {\n\t\t\t\tschema = c.DefaultSchema\n\t\t\t}\n\n\t\t\ttableMap, ok := typeMap[schema][rel]\n\t\t\tif !ok {\n\t\t\t\treturn nil, sqlerr.RelationNotFound(rel)\n\t\t\t}\n\n\t\t\tif c, ok := tableMap[key]; ok {\n\t\t\t\tdefaultP := named.NewInferredParam(key, c.IsNotNull)\n\t\t\t\tp, isNamed := params.FetchMerge(ref.ref.Number, defaultP)\n\t\t\t\ta = append(a, Parameter{\n\t\t\t\t\tNumber: ref.ref.Number,\n\t\t\t\t\tColumn: &Column{\n\t\t\t\t\t\tName:         p.Name(),\n\t\t\t\t\t\tOriginalName: c.Name,\n\t\t\t\t\t\tDataType:     dataType(&c.Type),\n\t\t\t\t\t\tNotNull:      p.NotNull(),\n\t\t\t\t\t\tUnsigned:     c.IsUnsigned,\n\t\t\t\t\t\tIsArray:      c.IsArray,\n\t\t\t\t\t\tArrayDims:    c.ArrayDims,\n\t\t\t\t\t\tTable:        &ast.TableName{Schema: schema, Name: rel},\n\t\t\t\t\t\tLength:       c.Length,\n\t\t\t\t\t\tIsNamedParam: isNamed,\n\t\t\t\t\t\tIsSqlcSlice:  p.IsSqlcSlice(),\n\t\t\t\t\t},\n\t\t\t\t})\n\t\t\t} else {\n\t\t\t\treturn nil, &sqlerr.Error{\n\t\t\t\t\tCode:     \"42703\",\n\t\t\t\t\tMessage:  fmt.Sprintf(\"column %q does not exist\", key),\n\t\t\t\t\tLocation: n.Location,\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase *ast.TypeCast:\n\t\t\tif n.TypeName == nil {\n\t\t\t\treturn nil, fmt.Errorf(\"*ast.TypeCast has nil type name\")\n\t\t\t}\n\t\t\tcol := toColumn(n.TypeName)\n\t\t\tdefaultP := named.NewInferredParam(col.Name, col.NotNull)\n\t\t\tp, _ := params.FetchMerge(ref.ref.Number, defaultP)\n\n\t\t\tcol.Name = p.Name()\n\t\t\tcol.NotNull = p.NotNull()\n\t\t\ta = append(a, Parameter{\n\t\t\t\tNumber: ref.ref.Number,\n\t\t\t\tColumn: col,\n\t\t\t})\n\n\t\tcase *ast.ParamRef:\n\t\t\ta = append(a, Parameter{Number: ref.ref.Number})\n\n\t\tcase *ast.In:\n\t\t\tif n == nil || n.List == nil {\n\t\t\t\tfmt.Println(\"ast.In is nil\")\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tnumber := 0\n\t\t\tif pr, ok := n.List[0].(*ast.ParamRef); ok {\n\t\t\t\tnumber = pr.Number\n\t\t\t}\n\n\t\t\tlocation := 0\n\t\t\tvar key, alias string\n\t\t\tvar items []string\n\n\t\t\tif left, ok := n.Expr.(*ast.ColumnRef); ok {\n\t\t\t\tlocation = left.Location\n\t\t\t\titems = stringSlice(left.Fields)\n\t\t\t} else if left, ok := n.Expr.(*ast.ParamRef); ok {\n\t\t\t\tif len(n.List) <= 0 {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif right, ok := n.List[0].(*ast.ColumnRef); ok {\n\t\t\t\t\tlocation = left.Location\n\t\t\t\t\titems = stringSlice(right.Fields)\n\t\t\t\t} else {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tswitch len(items) {\n\t\t\tcase 1:\n\t\t\t\tkey = items[0]\n\t\t\tcase 2:\n\t\t\t\talias = items[0]\n\t\t\t\tkey = items[1]\n\t\t\tdefault:\n\t\t\t\tpanic(\"too many field items: \" + strconv.Itoa(len(items)))\n\t\t\t}\n\n\t\t\tvar found int\n\t\t\tif n.Sel == nil {\n\t\t\t\tsearch := tables\n\t\t\t\tif alias != \"\" {\n\t\t\t\t\tif original, ok := aliasMap[alias]; ok {\n\t\t\t\t\t\tsearch = []*ast.TableName{original}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tfor _, fqn := range tables {\n\t\t\t\t\t\t\tif fqn.Name == alias {\n\t\t\t\t\t\t\t\tsearch = []*ast.TableName{fqn}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tfor _, table := range search {\n\t\t\t\t\tschema := table.Schema\n\t\t\t\t\tif schema == \"\" {\n\t\t\t\t\t\tschema = c.DefaultSchema\n\t\t\t\t\t}\n\t\t\t\t\tif c, ok := typeMap[schema][table.Name][key]; ok {\n\t\t\t\t\t\tfound += 1\n\t\t\t\t\t\tif ref.name != \"\" {\n\t\t\t\t\t\t\tkey = ref.name\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdefaultP := named.NewInferredParam(key, c.IsNotNull)\n\t\t\t\t\t\tp, isNamed := params.FetchMerge(ref.ref.Number, defaultP)\n\t\t\t\t\t\ta = append(a, Parameter{\n\t\t\t\t\t\t\tNumber: number,\n\t\t\t\t\t\t\tColumn: &Column{\n\t\t\t\t\t\t\t\tName:         p.Name(),\n\t\t\t\t\t\t\t\tOriginalName: c.Name,\n\t\t\t\t\t\t\t\tDataType:     dataType(&c.Type),\n\t\t\t\t\t\t\t\tNotNull:      c.IsNotNull,\n\t\t\t\t\t\t\t\tUnsigned:     c.IsUnsigned,\n\t\t\t\t\t\t\t\tIsArray:      c.IsArray,\n\t\t\t\t\t\t\t\tArrayDims:    c.ArrayDims,\n\t\t\t\t\t\t\t\tTable:        table,\n\t\t\t\t\t\t\t\tIsNamedParam: isNamed,\n\t\t\t\t\t\t\t\tIsSqlcSlice:  p.IsSqlcSlice(),\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t})\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif found == 0 {\n\t\t\t\treturn nil, &sqlerr.Error{\n\t\t\t\t\tCode:     \"42703\",\n\t\t\t\t\tMessage:  fmt.Sprintf(\"396: column %q does not exist\", key),\n\t\t\t\t\tLocation: location,\n\t\t\t\t}\n\t\t\t}\n\t\t\tif found > 1 {\n\t\t\t\treturn nil, &sqlerr.Error{\n\t\t\t\t\tCode:     \"42703\",\n\t\t\t\t\tMessage:  fmt.Sprintf(\"in same name column reference %q is ambiguous\", key),\n\t\t\t\t\tLocation: location,\n\t\t\t\t}\n\t\t\t}\n\n\t\tdefault:\n\t\t\tslog.Debug(\"unsupported reference type\", \"type\", fmt.Sprintf(\"%T\", n))\n\t\t\taddUnknownParam(ref)\n\t\t}\n\t}\n\treturn a, nil\n}\n"
  },
  {
    "path": "internal/compiler/result.go",
    "content": "package compiler\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\ntype Result struct {\n\tCatalog *catalog.Catalog\n\tQueries []*Query\n}\n"
  },
  {
    "path": "internal/compiler/selector.go",
    "content": "package compiler\n\n// selector is an interface used by a compiler for generating expressions for\n// output columns in a `SELECT ...` or `RETURNING ...` statement.\n//\n// This interface is exclusively needed at the moment for SQLite, which must\n// wrap output `jsonb` columns with a `json(column_name)` invocation so that a\n// publicly consumable format (i.e. not jsonb) is returned.\ntype selector interface {\n\t// ColumnExpr generates output to be used in a `SELECT ...` or `RETURNING\n\t// ...` statement based on input column name and metadata.\n\tColumnExpr(name string, column *Column) string\n}\n\n// defaultSelector is a selector implementation that does the simpliest possible\n// pass through when generating column expressions. Its use is suitable for all\n// database engines not requiring additional customization.\ntype defaultSelector struct{}\n\nfunc newDefaultSelector() *defaultSelector {\n\treturn &defaultSelector{}\n}\n\nfunc (s *defaultSelector) ColumnExpr(name string, column *Column) string {\n\treturn name\n}\n\ntype sqliteSelector struct{}\n\nfunc newSQLiteSelector() *sqliteSelector {\n\treturn &sqliteSelector{}\n}\n\nfunc (s *sqliteSelector) ColumnExpr(name string, column *Column) string {\n\t// Under SQLite, neither json nor jsonb are real data types, and rather just\n\t// of type blob, so database drivers just return whatever raw binary is\n\t// stored as values. This is a problem for jsonb, which is considered an\n\t// internal format to SQLite and no attempt should be made to parse it\n\t// outside of the database itself. For jsonb columns in SQLite, wrap values\n\t// in `json(col)` to coerce the internal binary format to JSON parsable by\n\t// the user-space application.\n\tif column.DataType == \"jsonb\" {\n\t\treturn \"json(\" + name + \")\"\n\t}\n\treturn name\n}\n"
  },
  {
    "path": "internal/compiler/selector_test.go",
    "content": "package compiler\n\nimport \"testing\"\n\nfunc TestSelector(t *testing.T) {\n\tt.Parallel()\n\n\tselectorExpectColumnExpr := func(t *testing.T, selector selector, expected, name string, column *Column) {\n\t\tif actual := selector.ColumnExpr(name, column); expected != actual {\n\t\t\tt.Errorf(\"Expected %v, got %v for data type %v\", expected, actual, column.DataType)\n\t\t}\n\t}\n\n\tt.Run(\"DefaultSelectorColumnExpr\", func(t *testing.T) {\n\t\tt.Parallel()\n\n\t\tselector := newDefaultSelector()\n\n\t\tselectorExpectColumnExpr(t, selector, \"my_column\", \"my_column\", &Column{DataType: \"integer\"})\n\t\tselectorExpectColumnExpr(t, selector, \"my_column\", \"my_column\", &Column{DataType: \"json\"})\n\t\tselectorExpectColumnExpr(t, selector, \"my_column\", \"my_column\", &Column{DataType: \"jsonb\"})\n\t\tselectorExpectColumnExpr(t, selector, \"my_column\", \"my_column\", &Column{DataType: \"text\"})\n\t})\n\n\tt.Run(\"SQLiteSelectorColumnExpr\", func(t *testing.T) {\n\t\tt.Parallel()\n\n\t\tselector := newSQLiteSelector()\n\n\t\tselectorExpectColumnExpr(t, selector, \"my_column\", \"my_column\", &Column{DataType: \"integer\"})\n\t\tselectorExpectColumnExpr(t, selector, \"my_column\", \"my_column\", &Column{DataType: \"json\"})\n\t\tselectorExpectColumnExpr(t, selector, \"json(my_column)\", \"my_column\", &Column{DataType: \"jsonb\"})\n\t\tselectorExpectColumnExpr(t, selector, \"my_column\", \"my_column\", &Column{DataType: \"text\"})\n\t})\n}\n"
  },
  {
    "path": "internal/compiler/to_column.go",
    "content": "package compiler\n\nimport (\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n)\n\nfunc arrayDims(n *ast.TypeName) int {\n\tif n == nil || n.ArrayBounds == nil {\n\t\treturn 0\n\t}\n\treturn len(n.ArrayBounds.Items)\n}\n\nfunc toColumn(n *ast.TypeName) *Column {\n\tif n == nil {\n\t\tpanic(\"can't build column for nil type name\")\n\t}\n\ttyp, err := ParseTypeName(n)\n\tif err != nil {\n\t\tpanic(\"toColumn: \" + err.Error())\n\t}\n\tarrayDims := arrayDims(n)\n\treturn &Column{\n\t\tType:      typ,\n\t\tDataType:  strings.TrimPrefix(astutils.Join(n.Names, \".\"), \".\"),\n\t\tNotNull:   true, // XXX: How do we know if this should be null?\n\t\tIsArray:   arrayDims > 0,\n\t\tArrayDims: arrayDims,\n\t}\n}\n"
  },
  {
    "path": "internal/config/config.go",
    "content": "package config\n\nimport (\n\t\"bytes\"\n\t\"encoding/json\"\n\t\"errors\"\n\t\"io\"\n\n\t\"gopkg.in/yaml.v3\"\n\n\tgolang \"github.com/sqlc-dev/sqlc/internal/codegen/golang/opts\"\n)\n\ntype versionSetting struct {\n\tNumber string `json:\"version\" yaml:\"version\"`\n}\n\ntype Engine string\n\ntype Paths []string\n\nfunc (p *Paths) UnmarshalJSON(data []byte) error {\n\tif string(data[0]) == `[` {\n\t\tvar out []string\n\t\tif err := json.Unmarshal(data, &out); err != nil {\n\t\t\treturn nil\n\t\t}\n\t\t*p = Paths(out)\n\t\treturn nil\n\t}\n\tvar out string\n\tif err := json.Unmarshal(data, &out); err != nil {\n\t\treturn nil\n\t}\n\t*p = Paths([]string{out})\n\treturn nil\n}\n\nfunc (p *Paths) UnmarshalYAML(unmarshal func(interface{}) error) error {\n\tout := []string{}\n\tif sliceErr := unmarshal(&out); sliceErr != nil {\n\t\tvar ele string\n\t\tif strErr := unmarshal(&ele); strErr != nil {\n\t\t\treturn strErr\n\t\t}\n\t\tout = []string{ele}\n\t}\n\n\t*p = Paths(out)\n\treturn nil\n}\n\nconst (\n\tEngineMySQL      Engine = \"mysql\"\n\tEnginePostgreSQL Engine = \"postgresql\"\n\tEngineSQLite     Engine = \"sqlite\"\n)\n\ntype Config struct {\n\tVersion   string               `json:\"version\" yaml:\"version\"`\n\tCloud     Cloud                `json:\"cloud\" yaml:\"cloud\"`\n\tServers   []Server             `json:\"servers\" yaml:\"servers\"`\n\tSQL       []SQL                `json:\"sql\" yaml:\"sql\"`\n\tOverrides Overrides            `json:\"overrides,omitempty\" yaml:\"overrides\"`\n\tPlugins   []Plugin             `json:\"plugins\" yaml:\"plugins\"`\n\tRules     []Rule               `json:\"rules\" yaml:\"rules\"`\n\tOptions   map[string]yaml.Node `json:\"options\" yaml:\"options\"`\n}\n\ntype Server struct {\n\tName   string `json:\"name,omitempty\" yaml:\"name\"`\n\tEngine Engine `json:\"engine,omitempty\" yaml:\"engine\"`\n\tURI    string `json:\"uri\" yaml:\"uri\"`\n}\n\ntype Database struct {\n\tURI     string `json:\"uri\" yaml:\"uri\"`\n\tManaged bool   `json:\"managed\" yaml:\"managed\"`\n}\n\ntype Cloud struct {\n\tOrganization string `json:\"organization\" yaml:\"organization\"`\n\tProject      string `json:\"project\" yaml:\"project\"`\n\tHostname     string `json:\"hostname\" yaml:\"hostname\"`\n\tAuthToken    string `json:\"-\" yaml:\"-\"`\n}\n\ntype Plugin struct {\n\tName    string   `json:\"name\" yaml:\"name\"`\n\tEnv     []string `json:\"env\" yaml:\"env\"`\n\tProcess *struct {\n\t\tCmd    string `json:\"cmd\" yaml:\"cmd\"`\n\t\tFormat string `json:\"format\" yaml:\"format\"`\n\t} `json:\"process\" yaml:\"process\"`\n\tWASM *struct {\n\t\tURL    string `json:\"url\" yaml:\"url\"`\n\t\tSHA256 string `json:\"sha256\" yaml:\"sha256\"`\n\t} `json:\"wasm\" yaml:\"wasm\"`\n}\n\ntype Rule struct {\n\tName string `json:\"name\" yaml:\"name\"`\n\tRule string `json:\"rule\" yaml:\"rule\"`\n\tMsg  string `json:\"message\" yaml:\"message\"`\n}\n\ntype Overrides struct {\n\tGo *golang.GlobalOptions `json:\"go,omitempty\" yaml:\"go\"`\n}\n\ntype SQL struct {\n\tName                 string    `json:\"name\" yaml:\"name\"`\n\tEngine               Engine    `json:\"engine,omitempty\" yaml:\"engine\"`\n\tSchema               Paths     `json:\"schema\" yaml:\"schema\"`\n\tQueries              Paths     `json:\"queries\" yaml:\"queries\"`\n\tDatabase             *Database `json:\"database\" yaml:\"database\"`\n\tStrictFunctionChecks bool      `json:\"strict_function_checks\" yaml:\"strict_function_checks\"`\n\tStrictOrderBy        *bool     `json:\"strict_order_by\" yaml:\"strict_order_by\"`\n\tGen                  SQLGen    `json:\"gen\" yaml:\"gen\"`\n\tCodegen              []Codegen `json:\"codegen\" yaml:\"codegen\"`\n\tRules                []string  `json:\"rules\" yaml:\"rules\"`\n\tAnalyzer             Analyzer  `json:\"analyzer\" yaml:\"analyzer\"`\n}\n\n// AnalyzerDatabase represents the database analyzer setting.\n// It can be a boolean (true/false) or the string \"only\" for database-only mode.\ntype AnalyzerDatabase struct {\n\tvalue   *bool  // nil means not set, true/false for boolean values\n\tisOnly  bool   // true when set to \"only\"\n}\n\n// IsEnabled returns true if the database analyzer should be used.\n// Returns true for both `true` and `\"only\"` settings.\nfunc (a AnalyzerDatabase) IsEnabled() bool {\n\tif a.isOnly {\n\t\treturn true\n\t}\n\treturn a.value == nil || *a.value\n}\n\n// IsOnly returns true if the analyzer is set to \"only\" mode.\nfunc (a AnalyzerDatabase) IsOnly() bool {\n\treturn a.isOnly\n}\n\nfunc (a *AnalyzerDatabase) UnmarshalJSON(data []byte) error {\n\t// Try to unmarshal as boolean first\n\tvar b bool\n\tif err := json.Unmarshal(data, &b); err == nil {\n\t\ta.value = &b\n\t\ta.isOnly = false\n\t\treturn nil\n\t}\n\n\t// Try to unmarshal as string\n\tvar s string\n\tif err := json.Unmarshal(data, &s); err == nil {\n\t\tif s == \"only\" {\n\t\t\ta.isOnly = true\n\t\t\ta.value = nil\n\t\t\treturn nil\n\t\t}\n\t\treturn errors.New(\"analyzer.database must be true, false, or \\\"only\\\"\")\n\t}\n\n\treturn errors.New(\"analyzer.database must be true, false, or \\\"only\\\"\")\n}\n\nfunc (a *AnalyzerDatabase) UnmarshalYAML(unmarshal func(interface{}) error) error {\n\t// Try to unmarshal as boolean first\n\tvar b bool\n\tif err := unmarshal(&b); err == nil {\n\t\ta.value = &b\n\t\ta.isOnly = false\n\t\treturn nil\n\t}\n\n\t// Try to unmarshal as string\n\tvar s string\n\tif err := unmarshal(&s); err == nil {\n\t\tif s == \"only\" {\n\t\t\ta.isOnly = true\n\t\t\ta.value = nil\n\t\t\treturn nil\n\t\t}\n\t\treturn errors.New(\"analyzer.database must be true, false, or \\\"only\\\"\")\n\t}\n\n\treturn errors.New(\"analyzer.database must be true, false, or \\\"only\\\"\")\n}\n\ntype Analyzer struct {\n\tDatabase AnalyzerDatabase `json:\"database\" yaml:\"database\"`\n}\n\n// TODO: Figure out a better name for this\ntype Codegen struct {\n\tOut     string    `json:\"out\" yaml:\"out\"`\n\tPlugin  string    `json:\"plugin\" yaml:\"plugin\"`\n\tOptions yaml.Node `json:\"options\" yaml:\"options\"`\n}\n\ntype SQLGen struct {\n\tGo   *golang.Options `json:\"go,omitempty\" yaml:\"go\"`\n\tJSON *SQLJSON        `json:\"json,omitempty\" yaml:\"json\"`\n}\n\ntype SQLJSON struct {\n\tOut      string `json:\"out\" yaml:\"out\"`\n\tIndent   string `json:\"indent,omitempty\" yaml:\"indent\"`\n\tFilename string `json:\"filename,omitempty\" yaml:\"filename\"`\n}\n\nvar ErrMissingEngine = errors.New(\"unknown engine\")\nvar ErrMissingVersion = errors.New(\"no version number\")\nvar ErrNoOutPath = errors.New(\"no output path\")\nvar ErrNoPackagePath = errors.New(\"missing package path\")\nvar ErrNoPackages = errors.New(\"no packages\")\nvar ErrNoQuerierType = errors.New(\"no querier emit type enabled\")\nvar ErrUnknownEngine = errors.New(\"invalid engine\")\nvar ErrUnknownVersion = errors.New(\"invalid version number\")\n\nvar ErrPluginBuiltin = errors.New(\"a built-in plugin with that name already exists\")\nvar ErrPluginNoName = errors.New(\"missing plugin name\")\nvar ErrPluginExists = errors.New(\"a plugin with that name already exists\")\nvar ErrPluginNotFound = errors.New(\"no plugin found\")\nvar ErrPluginNoType = errors.New(\"plugin: field `process` or `wasm` required\")\nvar ErrPluginBothTypes = errors.New(\"plugin: `process` and `wasm` cannot both be defined\")\nvar ErrPluginProcessNoCmd = errors.New(\"plugin: missing process command\")\n\nvar ErrInvalidDatabase = errors.New(\"database must be managed or have a non-empty URI\")\nvar ErrManagedDatabaseNoProject = errors.New(`managed databases require a cloud project\n\nIf you don't have a project, you can create one from the sqlc Cloud\ndashboard at https://dashboard.sqlc.dev/. If you have a project, ensure\nyou've set its id as the value of the \"project\" field within the \"cloud\"\nsection of your sqlc configuration. The id will look similar to\n\"01HA8TWGMYPHK0V2GGMB3R2TP9\".`)\nvar ErrManagedDatabaseNoAuthToken = errors.New(`managed databases require an auth token\n\nIf you don't have an auth token, you can create one from the sqlc Cloud\ndashboard at https://dashboard.sqlc.dev/. If you have an auth token, ensure\nyou've set it as the value of the SQLC_AUTH_TOKEN environment variable.`)\n\nfunc ParseConfig(rd io.Reader) (Config, error) {\n\tvar buf bytes.Buffer\n\tvar config Config\n\tvar version versionSetting\n\n\tver := io.TeeReader(rd, &buf)\n\tdec := yaml.NewDecoder(ver)\n\tif err := dec.Decode(&version); err != nil {\n\t\treturn config, err\n\t}\n\tif version.Number == \"\" {\n\t\treturn config, ErrMissingVersion\n\t}\n\tvar err error\n\tswitch version.Number {\n\tcase \"1\":\n\t\tconfig, err = v1ParseConfig(&buf)\n\t\tif err != nil {\n\t\t\treturn config, err\n\t\t}\n\tcase \"2\":\n\t\tconfig, err = v2ParseConfig(&buf)\n\t\tif err != nil {\n\t\t\treturn config, err\n\t\t}\n\tdefault:\n\t\treturn config, ErrUnknownVersion\n\t}\n\terr = config.addEnvVars()\n\tif err != nil {\n\t\treturn config, err\n\t}\n\treturn config, nil\n}\n\ntype CombinedSettings struct {\n\tGlobal  Config\n\tPackage SQL\n\tGo      golang.Options\n\tJSON    SQLJSON\n\n\t// TODO: Combine these into a more usable type\n\tCodegen Codegen\n}\n\nfunc Combine(conf Config, pkg SQL) CombinedSettings {\n\tcs := CombinedSettings{\n\t\tGlobal:  conf,\n\t\tPackage: pkg,\n\t}\n\tif pkg.Gen.Go != nil {\n\t\tcs.Go = *pkg.Gen.Go\n\t}\n\tif pkg.Gen.JSON != nil {\n\t\tcs.JSON = *pkg.Gen.JSON\n\t}\n\treturn cs\n}\n"
  },
  {
    "path": "internal/config/config_test.go",
    "content": "package config\n\nimport (\n\t\"strings\"\n\t\"testing\"\n\n\t\"github.com/google/go-cmp/cmp\"\n)\n\nconst missingVersion = `{\n}`\n\nconst missingPackages = `{\n  \"version\": \"1\"\n}`\n\nconst unknownVersion = `{\n  \"version\": \"foo\"\n}`\n\nconst unknownFields = `{\n  \"version\": \"1\",\n  \"foo\": \"bar\"\n}`\n\nfunc TestBadConfigs(t *testing.T) {\n\tfor _, test := range []struct {\n\t\tname string\n\t\terr  string\n\t\tjson string\n\t}{\n\t\t{\n\t\t\t\"missing version\",\n\t\t\t\"no version number\",\n\t\t\tmissingVersion,\n\t\t},\n\t\t{\n\t\t\t\"missing packages\",\n\t\t\t\"no packages\",\n\t\t\tmissingPackages,\n\t\t},\n\t\t{\n\t\t\t\"unknown version\",\n\t\t\t\"invalid version number\",\n\t\t\tunknownVersion,\n\t\t},\n\t\t{\n\t\t\t\"unknown fields\",\n\t\t\t`yaml: unmarshal errors:\n  line 3: field foo not found in type config.V1GenerateSettings`,\n\t\t\tunknownFields,\n\t\t},\n\t} {\n\t\ttt := test\n\t\tt.Run(tt.name, func(t *testing.T) {\n\t\t\t_, err := ParseConfig(strings.NewReader(tt.json))\n\t\t\tif err == nil {\n\t\t\t\tt.Fatalf(\"expected err; got nil\")\n\t\t\t}\n\t\t\tif diff := cmp.Diff(err.Error(), tt.err); diff != \"\" {\n\t\t\t\tt.Errorf(\"differed (-want +got):\\n%s\", diff)\n\t\t\t}\n\t\t})\n\t}\n}\n\nconst validConfigOne = `{\n  \"version\": \"1\"\n  \"packages\": []\n}`\n\nfunc FuzzConfig(f *testing.F) {\n\tf.Add(validConfigOne)\n\tf.Fuzz(func(t *testing.T, orig string) {\n\t\tParseConfig(strings.NewReader(orig))\n\t})\n}\n\nfunc TestInvalidConfig(t *testing.T) {\n\terr := Validate(&Config{\n\t\tSQL: []SQL{{\n\t\t\tDatabase: &Database{\n\t\t\t\tURI:     \"\",\n\t\t\t\tManaged: false,\n\t\t\t},\n\t\t}},\n\t})\n\tif err == nil {\n\t\tt.Errorf(\"expected err; got nil\")\n\t}\n}\n"
  },
  {
    "path": "internal/config/convert/convert.go",
    "content": "package convert\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"strconv\"\n\n\t\"gopkg.in/yaml.v3\"\n)\n\nfunc gen(n *yaml.Node) (interface{}, error) {\n\tswitch n.Kind {\n\n\tcase yaml.MappingNode:\n\t\tnn := map[string]interface{}{}\n\t\tfor i, _ := range n.Content {\n\t\t\tif i%2 == 0 {\n\t\t\t\tk := n.Content[i]\n\t\t\t\tv, err := gen(n.Content[i+1])\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\t\t\t\tnn[k.Value] = v\n\t\t\t}\n\t\t}\n\t\treturn nn, nil\n\n\tcase yaml.SequenceNode:\n\t\tnn := []interface{}{}\n\t\tfor i, _ := range n.Content {\n\t\t\tv, err := gen(n.Content[i])\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tnn = append(nn, v)\n\t\t}\n\t\treturn nn, nil\n\n\tcase yaml.ScalarNode:\n\t\tswitch n.Tag {\n\n\t\tcase \"!!bool\":\n\t\t\treturn strconv.ParseBool(n.Value)\n\n\t\tcase \"!!float\":\n\t\t\treturn strconv.ParseFloat(n.Value, 64)\n\n\t\tcase \"!!int\":\n\t\t\treturn strconv.Atoi(n.Value)\n\n\t\tcase \"!!null\":\n\t\t\treturn nil, nil\n\n\t\tcase \"!!str\":\n\t\t\treturn n.Value, nil\n\n\t\tdefault:\n\t\t\treturn n.Value, nil\n\n\t\t}\n\n\tcase yaml.AliasNode:\n\t\treturn gen(n.Alias)\n\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"unknown yaml value: %s (%s)\", n.Value, n.Tag)\n\n\t}\n}\n\nfunc YAMLtoJSON(n yaml.Node) ([]byte, error) {\n\tif n.Kind == 0 {\n\t\treturn []byte{}, nil\n\t}\n\tiface, err := gen(&n)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tblob, err := json.Marshal(iface)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn blob, nil\n}\n"
  },
  {
    "path": "internal/config/convert/convert_test.go",
    "content": "package convert\n\nimport (\n\t\"testing\"\n\n\t\"gopkg.in/yaml.v3\"\n)\n\nconst anchor = `\nsql:\n  - schema: query.sql\n    queries: query.sql\n    engine: postgresql\n    codegen:\n      - out: gateway/src/gateway/services/organization\n        plugin: py\n        options: &base-options\n          query_parameter_limit: 1\n          package: gateway\n          output_models_file_name: null\n          emit_module: true\n          emit_generators: false\n          emit_async: true\n\n  - schema: query.sql\n    queries: query.sql\n    engine: postgresql\n    codegen:\n      - out: gateway/src/gateway/services/project\n        plugin: py\n        options: *base-options\n`\n\ntype config struct {\n\tSQL yaml.Node `yaml:\"sql\"`\n}\n\nfunc TestAlias(t *testing.T) {\n\tvar a config\n\terr := yaml.Unmarshal([]byte(anchor), &a)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif _, err := gen(&a.SQL); err != nil {\n\t\tt.Fatal(err)\n\t}\n}\n"
  },
  {
    "path": "internal/config/env.go",
    "content": "package config\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"strings\"\n)\n\nfunc (c *Config) addEnvVars() error {\n\tauthToken := os.Getenv(\"SQLC_AUTH_TOKEN\")\n\tif authToken != \"\" && !strings.HasPrefix(authToken, \"sqlc_\") {\n\t\treturn fmt.Errorf(\"$SQLC_AUTH_TOKEN doesn't start with \\\"sqlc_\\\"\")\n\t}\n\tc.Cloud.AuthToken = authToken\n\n\treturn nil\n}\n"
  },
  {
    "path": "internal/config/v_one.go",
    "content": "package config\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\t\"path/filepath\"\n\n\tyaml \"gopkg.in/yaml.v3\"\n\n\tgolang \"github.com/sqlc-dev/sqlc/internal/codegen/golang/opts\"\n)\n\ntype V1GenerateSettings struct {\n\tVersion   string              `json:\"version\" yaml:\"version\"`\n\tCloud     Cloud               `json:\"cloud\" yaml:\"cloud\"`\n\tPackages  []v1PackageSettings `json:\"packages\" yaml:\"packages\"`\n\tOverrides []golang.Override   `json:\"overrides,omitempty\" yaml:\"overrides,omitempty\"`\n\tRename    map[string]string   `json:\"rename,omitempty\" yaml:\"rename,omitempty\"`\n\tRules     []Rule              `json:\"rules\" yaml:\"rules\"`\n}\n\ntype v1PackageSettings struct {\n\tName                      string            `json:\"name\" yaml:\"name\"`\n\tEngine                    Engine            `json:\"engine,omitempty\" yaml:\"engine\"`\n\tDatabase                  *Database         `json:\"database,omitempty\" yaml:\"database\"`\n\tAnalyzer                  Analyzer          `json:\"analyzer\" yaml:\"analyzer\"`\n\tPath                      string            `json:\"path\" yaml:\"path\"`\n\tSchema                    Paths             `json:\"schema\" yaml:\"schema\"`\n\tQueries                   Paths             `json:\"queries\" yaml:\"queries\"`\n\tEmitInterface             bool              `json:\"emit_interface\" yaml:\"emit_interface\"`\n\tEmitJSONTags              bool              `json:\"emit_json_tags\" yaml:\"emit_json_tags\"`\n\tJsonTagsIDUppercase       bool              `json:\"json_tags_id_uppercase\" yaml:\"json_tags_id_uppercase\"`\n\tEmitDBTags                bool              `json:\"emit_db_tags\" yaml:\"emit_db_tags\"`\n\tEmitPreparedQueries       bool              `json:\"emit_prepared_queries\" yaml:\"emit_prepared_queries\"`\n\tEmitExactTableNames       bool              `json:\"emit_exact_table_names,omitempty\" yaml:\"emit_exact_table_names\"`\n\tEmitEmptySlices           bool              `json:\"emit_empty_slices,omitempty\" yaml:\"emit_empty_slices\"`\n\tEmitExportedQueries       bool              `json:\"emit_exported_queries,omitempty\" yaml:\"emit_exported_queries\"`\n\tEmitResultStructPointers  bool              `json:\"emit_result_struct_pointers\" yaml:\"emit_result_struct_pointers\"`\n\tEmitParamsStructPointers  bool              `json:\"emit_params_struct_pointers\" yaml:\"emit_params_struct_pointers\"`\n\tEmitMethodsWithDBArgument bool              `json:\"emit_methods_with_db_argument\" yaml:\"emit_methods_with_db_argument\"`\n\tEmitPointersForNullTypes  bool              `json:\"emit_pointers_for_null_types\" yaml:\"emit_pointers_for_null_types\"`\n\tEmitEnumValidMethod       bool              `json:\"emit_enum_valid_method,omitempty\" yaml:\"emit_enum_valid_method\"`\n\tEmitAllEnumValues         bool              `json:\"emit_all_enum_values,omitempty\" yaml:\"emit_all_enum_values\"`\n\tEmitSqlAsComment          bool              `json:\"emit_sql_as_comment,omitempty\" yaml:\"emit_sql_as_comment\"`\n\tJSONTagsCaseStyle         string            `json:\"json_tags_case_style,omitempty\" yaml:\"json_tags_case_style\"`\n\tSQLPackage                string            `json:\"sql_package\" yaml:\"sql_package\"`\n\tSQLDriver                 string            `json:\"sql_driver\" yaml:\"sql_driver\"`\n\tOverrides                 []golang.Override `json:\"overrides\" yaml:\"overrides\"`\n\tOutputBatchFileName       string            `json:\"output_batch_file_name,omitempty\" yaml:\"output_batch_file_name\"`\n\tOutputDBFileName          string            `json:\"output_db_file_name,omitempty\" yaml:\"output_db_file_name\"`\n\tOutputModelsFileName      string            `json:\"output_models_file_name,omitempty\" yaml:\"output_models_file_name\"`\n\tOutputQuerierFileName     string            `json:\"output_querier_file_name,omitempty\" yaml:\"output_querier_file_name\"`\n\tOutputCopyFromFileName    string            `json:\"output_copyfrom_file_name,omitempty\" yaml:\"output_copyfrom_file_name\"`\n\tOutputFilesSuffix         string            `json:\"output_files_suffix,omitempty\" yaml:\"output_files_suffix\"`\n\tStrictFunctionChecks      bool              `json:\"strict_function_checks\" yaml:\"strict_function_checks\"`\n\tStrictOrderBy             *bool             `json:\"strict_order_by\" yaml:\"strict_order_by\"`\n\tQueryParameterLimit       *int32            `json:\"query_parameter_limit,omitempty\" yaml:\"query_parameter_limit\"`\n\tOmitSqlcVersion           bool              `json:\"omit_sqlc_version,omitempty\" yaml:\"omit_sqlc_version\"`\n\tOmitUnusedStructs         bool              `json:\"omit_unused_structs,omitempty\" yaml:\"omit_unused_structs\"`\n\tRules                     []string          `json:\"rules\" yaml:\"rules\"`\n\tBuildTags                 string            `json:\"build_tags,omitempty\" yaml:\"build_tags\"`\n}\n\nfunc v1ParseConfig(rd io.Reader) (Config, error) {\n\tdec := yaml.NewDecoder(rd)\n\tdec.KnownFields(true)\n\tvar settings V1GenerateSettings\n\tvar config Config\n\tif err := dec.Decode(&settings); err != nil {\n\t\treturn config, err\n\t}\n\tif settings.Version == \"\" {\n\t\treturn config, ErrMissingVersion\n\t}\n\tif settings.Version != \"1\" {\n\t\treturn config, ErrUnknownVersion\n\t}\n\tif len(settings.Packages) == 0 {\n\t\treturn config, ErrNoPackages\n\t}\n\tif err := settings.ValidateGlobalOverrides(); err != nil {\n\t\treturn config, err\n\t}\n\tfor j := range settings.Packages {\n\t\tif settings.Packages[j].Path == \"\" {\n\t\t\treturn config, ErrNoPackagePath\n\t\t}\n\n\t\tif settings.Packages[j].Name == \"\" {\n\t\t\tsettings.Packages[j].Name = filepath.Base(settings.Packages[j].Path)\n\t\t}\n\n\t\tif settings.Packages[j].Engine == \"\" {\n\t\t\tsettings.Packages[j].Engine = EnginePostgreSQL\n\t\t}\n\t}\n\n\treturn settings.Translate(), nil\n}\n\nfunc (c *V1GenerateSettings) ValidateGlobalOverrides() error {\n\tengines := map[Engine]struct{}{}\n\tfor _, pkg := range c.Packages {\n\t\tif _, ok := engines[pkg.Engine]; !ok {\n\t\t\tengines[pkg.Engine] = struct{}{}\n\t\t}\n\t}\n\n\tusesMultipleEngines := len(engines) > 1\n\tfor _, oride := range c.Overrides {\n\t\tif usesMultipleEngines && oride.Engine == \"\" {\n\t\t\treturn fmt.Errorf(`the \"engine\" field is required for global type overrides because your configuration uses multiple database engines`)\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (c *V1GenerateSettings) Translate() Config {\n\tconf := Config{\n\t\tVersion: c.Version,\n\t\tCloud:   c.Cloud,\n\t\tRules:   c.Rules,\n\t}\n\n\tfor _, pkg := range c.Packages {\n\t\tif pkg.StrictOrderBy == nil {\n\t\t\tdefaultValue := true\n\t\t\tpkg.StrictOrderBy = &defaultValue\n\t\t}\n\t\tconf.SQL = append(conf.SQL, SQL{\n\t\t\tName:     pkg.Name,\n\t\t\tEngine:   pkg.Engine,\n\t\t\tDatabase: pkg.Database,\n\t\t\tSchema:   pkg.Schema,\n\t\t\tQueries:  pkg.Queries,\n\t\t\tRules:    pkg.Rules,\n\t\t\tAnalyzer: pkg.Analyzer,\n\t\t\tGen: SQLGen{\n\t\t\t\tGo: &golang.Options{\n\t\t\t\t\tEmitInterface:             pkg.EmitInterface,\n\t\t\t\t\tEmitJsonTags:              pkg.EmitJSONTags,\n\t\t\t\t\tJsonTagsIdUppercase:       pkg.JsonTagsIDUppercase,\n\t\t\t\t\tEmitDbTags:                pkg.EmitDBTags,\n\t\t\t\t\tEmitPreparedQueries:       pkg.EmitPreparedQueries,\n\t\t\t\t\tEmitExactTableNames:       pkg.EmitExactTableNames,\n\t\t\t\t\tEmitEmptySlices:           pkg.EmitEmptySlices,\n\t\t\t\t\tEmitExportedQueries:       pkg.EmitExportedQueries,\n\t\t\t\t\tEmitResultStructPointers:  pkg.EmitResultStructPointers,\n\t\t\t\t\tEmitParamsStructPointers:  pkg.EmitParamsStructPointers,\n\t\t\t\t\tEmitMethodsWithDbArgument: pkg.EmitMethodsWithDBArgument,\n\t\t\t\t\tEmitPointersForNullTypes:  pkg.EmitPointersForNullTypes,\n\t\t\t\t\tEmitEnumValidMethod:       pkg.EmitEnumValidMethod,\n\t\t\t\t\tEmitAllEnumValues:         pkg.EmitAllEnumValues,\n\t\t\t\t\tEmitSqlAsComment:          pkg.EmitSqlAsComment,\n\t\t\t\t\tPackage:                   pkg.Name,\n\t\t\t\t\tOut:                       pkg.Path,\n\t\t\t\t\tSqlPackage:                pkg.SQLPackage,\n\t\t\t\t\tSqlDriver:                 pkg.SQLDriver,\n\t\t\t\t\tOverrides:                 pkg.Overrides,\n\t\t\t\t\tJsonTagsCaseStyle:         pkg.JSONTagsCaseStyle,\n\t\t\t\t\tOutputBatchFileName:       pkg.OutputBatchFileName,\n\t\t\t\t\tOutputDbFileName:          pkg.OutputDBFileName,\n\t\t\t\t\tOutputModelsFileName:      pkg.OutputModelsFileName,\n\t\t\t\t\tOutputQuerierFileName:     pkg.OutputQuerierFileName,\n\t\t\t\t\tOutputCopyfromFileName:    pkg.OutputCopyFromFileName,\n\t\t\t\t\tOutputFilesSuffix:         pkg.OutputFilesSuffix,\n\t\t\t\t\tQueryParameterLimit:       pkg.QueryParameterLimit,\n\t\t\t\t\tOmitSqlcVersion:           pkg.OmitSqlcVersion,\n\t\t\t\t\tOmitUnusedStructs:         pkg.OmitUnusedStructs,\n\t\t\t\t\tBuildTags:                 pkg.BuildTags,\n\t\t\t\t},\n\t\t\t},\n\t\t\tStrictFunctionChecks: pkg.StrictFunctionChecks,\n\t\t\tStrictOrderBy:        pkg.StrictOrderBy,\n\t\t})\n\t}\n\n\tif len(c.Overrides) > 0 || len(c.Rename) > 0 {\n\t\tconf.Overrides.Go = &golang.GlobalOptions{\n\t\t\tOverrides: c.Overrides,\n\t\t\tRename:    c.Rename,\n\t\t}\n\t}\n\n\treturn conf\n}\n"
  },
  {
    "path": "internal/config/v_one.json",
    "content": "{\n    \"$schema\": \"http://json-schema.org/draft-07/schema\",\n    \"type\": \"object\",\n    \"required\": [\n        \"version\"\n    ],\n    \"properties\": {\n        \"version\": {\n            \"const\": \"1\"\n        },\n        \"cloud\": {\n            \"type\": \"object\",\n            \"properties\": {\n                \"organization\": {\n                    \"type\": \"string\"\n                },\n                \"project\": {\n                    \"type\": \"string\"\n                },\n                \"hostname\": {\n                    \"type\": \"string\"\n                }\n            }\n        },\n        \"packages\": {\n            \"type\": \"array\",\n            \"minItems\": 1,\n            \"items\": {\n                \"type\": \"object\",\n                \"required\": [\n                    \"engine\"\n                ],\n                \"properties\": {\n                    \"engine\": {\n                        \"enum\": [\n                            \"postgresql\",\n                            \"mysql\",\n                            \"sqlite\"\n                        ]\n                    },\n                    \"schema\": {\n                        \"oneOf\": [\n                            {\n                                \"type\": \"string\"\n                            },\n                            {\n                                \"type\": \"array\",\n                                \"items\": {\n                                    \"type\": \"string\"\n                                }\n                            }\n                        ]\n                    },\n                    \"queries\": {\n                        \"oneOf\": [\n                            {\n                                \"type\": \"string\"\n                            },\n                            {\n                                \"type\": \"array\",\n                                \"items\": {\n                                    \"type\": \"string\"\n                                }\n                            }\n                        ]\n                    },\n                    \"database\": {\n                        \"type\": \"object\",\n                        \"properties\": {\n                            \"uri\": {\n                                \"type\": \"string\"\n                            },\n                            \"managed\": {\n                                \"type\": \"boolean\"\n                            }\n                        }\n                    },\n                    \"analyzer\": {\n                        \"type\": \"object\",\n                        \"properties\": {\n                            \"database\": {\n                                \"oneOf\": [\n                                    {\"type\": \"boolean\"},\n                                    {\"const\": \"only\"}\n                                ]\n                            }\n                        }\n                    },\n                    \"strict_function_checks\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"strict_order_by\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"emit_interface\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"emit_json_tags\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"json_tags_id_uppercase\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"emit_db_tags\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"emit_prepared_queries\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"emit_exact_table_names\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"emit_empty_slices\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"emit_exported_queries\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"emit_result_struct_pointers\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"emit_params_struct_pointers\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"emit_methods_with_db_argument\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"emit_pointers_for_null_types\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"emit_enum_valid_method\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"emit_all_enum_values\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"emit_sql_as_comment\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"build_tags\": {\n                        \"type\": \"string\"\n                    },\n                    \"json_tags_case_style\": {\n                        \"type\": \"string\"\n                    },\n                    \"package\": {\n                        \"type\": \"string\"\n                    },\n                    \"out\": {\n                        \"type\": \"string\"\n                    },\n                    \"overrides\": {\n                        \"type\": \"array\",\n                        \"items\": {\n                            \"type\": \"object\",\n                            \"properties\": {\n                                \"go_type\": {\n                                    \"oneOf\": [\n                                        {\n                                            \"type\": \"object\",\n                                            \"properties\": {\n                                                \"import\": {\n                                                    \"type\": \"string\"\n                                                },\n                                                \"package\": {\n                                                    \"type\": \"string\"\n                                                },\n                                                \"type\": {\n                                                    \"type\": \"string\"\n                                                },\n                                                \"pointer\": {\n                                                    \"type\": \"boolean\"\n                                                },\n                                                \"slice\": {\n                                                    \"type\": \"boolean\"\n                                                },\n                                                \"spec\": {\n                                                    \"type\": \"string\"\n                                                },\n                                                \"builtin\": {\n                                                    \"type\": \"boolean\"\n                                                }\n                                            }\n                                        },\n                                        {\n                                            \"type\": \"string\"\n                                        }\n                                    ]\n                                },\n                                \"go_struct_tag\": {\n                                    \"type\": \"string\"\n                                },\n                                \"db_type\": {\n                                    \"type\": \"string\"\n                                },\n                                \"engine\": {\n                                    \"enum\": [\n                                        \"postgresql\",\n                                        \"mysql\",\n                                        \"sqlite\"\n                                    ]\n                                },\n                                \"nullable\": {\n                                    \"type\": \"boolean\"\n                                },\n                                \"unsigned\": {\n                                    \"type\": \"boolean\"\n                                },\n                                \"column\": {\n                                    \"type\": \"string\"\n                                }\n                            }\n                        }\n                    },\n                    \"sql_package\": {\n                        \"type\": \"string\"\n                    },\n                    \"sql_driver\": {\n                        \"type\": \"string\"\n                    },\n                    \"output_batch_file_name\": {\n                        \"type\": \"string\"\n                    },\n                    \"output_db_file_name\": {\n                        \"type\": \"string\"\n                    },\n                    \"output_models_file_name\": {\n                        \"type\": \"string\"\n                    },\n                    \"output_querier_file_name\": {\n                        \"type\": \"string\"\n                    },\n                    \"output_copyfrom_file_name\": {\n                        \"type\": \"string\"\n                    },\n                    \"output_files_suffix\": {\n                        \"type\": \"string\"\n                    },\n                    \"inflection_exclude_table_names\": {\n                        \"type\": \"array\",\n                        \"items\": {\n                            \"type\": \"string\"\n                        }\n                    },\n                    \"query_parameter_limit\": {\n                        \"type\": \"integer\"\n                    },\n                    \"omit_unused_structs\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"rules\": {\n                        \"type\": \"array\",\n                        \"items\": {\n                            \"type\": \"string\"\n                        }\n                    }\n                }\n            }\n        },\n        \"overrides\": {\n            \"type\": \"array\",\n            \"items\": {\n                \"type\": \"object\",\n                \"properties\": {\n                    \"go_type\": {\n                        \"oneOf\": [\n                            {\n                                \"type\": \"object\",\n                                \"properties\": {\n                                    \"import\": {\n                                        \"type\": \"string\"\n                                    },\n                                    \"package\": {\n                                        \"type\": \"string\"\n                                    },\n                                    \"type\": {\n                                        \"type\": \"string\"\n                                    },\n                                    \"pointer\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"slice\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"spec\": {\n                                        \"type\": \"string\"\n                                    },\n                                    \"builtin\": {\n                                        \"type\": \"boolean\"\n                                    }\n                                }\n                            },\n                            {\n                                \"type\": \"string\"\n                            }\n                        ]\n                    },\n                    \"go_struct_tag\": {\n                        \"type\": \"string\"\n                    },\n                    \"db_type\": {\n                        \"type\": \"string\"\n                    },\n                    \"engine\": {\n                        \"enum\": [\n                            \"postgresql\",\n                            \"mysql\",\n                            \"sqlite\"\n                        ]\n                    },\n                    \"nullable\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"unsigned\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"column\": {\n                        \"type\": \"string\"\n                    }\n                }\n            }\n        }\n    },\n    \"rename\": {\n        \"type\": \"object\",\n        \"patternProperties\": {\n            \".*\": {\n                \"type\": \"string\"\n            }\n        }\n    },\n    \"rules\": {\n        \"type\": \"array\",\n        \"items\": {\n            \"type\": \"object\",\n            \"properties\": {\n                \"name\": {\n                    \"type\": \"string\"\n                },\n                \"rule\": {\n                    \"type\": \"string\"\n                },\n                \"message\": {\n                    \"type\": \"string\"\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "internal/config/v_two.go",
    "content": "package config\n\nimport (\n\t\"fmt\"\n\t\"io\"\n\n\tyaml \"gopkg.in/yaml.v3\"\n)\n\nfunc v2ParseConfig(rd io.Reader) (Config, error) {\n\tdec := yaml.NewDecoder(rd)\n\tdec.KnownFields(true)\n\tvar conf Config\n\tif err := dec.Decode(&conf); err != nil {\n\t\treturn conf, err\n\t}\n\tif conf.Version == \"\" {\n\t\treturn conf, ErrMissingVersion\n\t}\n\tif conf.Version != \"2\" {\n\t\treturn conf, ErrUnknownVersion\n\t}\n\tif len(conf.SQL) == 0 {\n\t\treturn conf, ErrNoPackages\n\t}\n\tif err := conf.validateGlobalOverrides(); err != nil {\n\t\treturn conf, err\n\t}\n\t// TODO: Store built-in plugins somewhere else\n\tbuiltins := map[string]struct{}{\n\t\t\"go\":   {},\n\t\t\"json\": {},\n\t}\n\tplugins := map[string]struct{}{}\n\tfor i := range conf.Plugins {\n\t\tif conf.Plugins[i].Name == \"\" {\n\t\t\treturn conf, ErrPluginNoName\n\t\t}\n\t\tif _, ok := builtins[conf.Plugins[i].Name]; ok {\n\t\t\treturn conf, ErrPluginBuiltin\n\t\t}\n\t\tif _, ok := plugins[conf.Plugins[i].Name]; ok {\n\t\t\treturn conf, ErrPluginExists\n\t\t}\n\t\tif conf.Plugins[i].Process == nil && conf.Plugins[i].WASM == nil {\n\t\t\treturn conf, ErrPluginNoType\n\t\t}\n\t\tif conf.Plugins[i].Process != nil && conf.Plugins[i].WASM != nil {\n\t\t\treturn conf, ErrPluginBothTypes\n\t\t}\n\t\tif conf.Plugins[i].Process != nil {\n\t\t\tif conf.Plugins[i].Process.Cmd == \"\" {\n\t\t\t\treturn conf, ErrPluginProcessNoCmd\n\t\t\t}\n\t\t}\n\t\tplugins[conf.Plugins[i].Name] = struct{}{}\n\t}\n\tfor j := range conf.SQL {\n\t\tif conf.SQL[j].Engine == \"\" {\n\t\t\treturn conf, ErrMissingEngine\n\t\t}\n\t\tif conf.SQL[j].Gen.Go != nil {\n\t\t\tif conf.SQL[j].Gen.Go.Out == \"\" {\n\t\t\t\treturn conf, ErrNoPackagePath\n\t\t\t}\n\t\t}\n\t\tif conf.SQL[j].Gen.JSON != nil {\n\t\t\tif conf.SQL[j].Gen.JSON.Out == \"\" {\n\t\t\t\treturn conf, ErrNoOutPath\n\t\t\t}\n\t\t}\n\t\tfor _, cg := range conf.SQL[j].Codegen {\n\t\t\tif cg.Plugin == \"\" {\n\t\t\t\treturn conf, ErrPluginNoName\n\t\t\t}\n\t\t\tif cg.Out == \"\" {\n\t\t\t\treturn conf, ErrNoOutPath\n\t\t\t}\n\t\t\t// TODO: Allow the use of built-in codegen from here\n\t\t\tif _, ok := plugins[cg.Plugin]; !ok {\n\t\t\t\treturn conf, ErrPluginNotFound\n\t\t\t}\n\t\t}\n\t\tif conf.SQL[j].StrictOrderBy == nil {\n\t\t\tdefaultValidate := true\n\t\t\tconf.SQL[j].StrictOrderBy = &defaultValidate\n\t\t}\n\t}\n\treturn conf, nil\n}\n\nfunc (c *Config) validateGlobalOverrides() error {\n\tengines := map[Engine]struct{}{}\n\tfor _, pkg := range c.SQL {\n\t\tif _, ok := engines[pkg.Engine]; !ok {\n\t\t\tengines[pkg.Engine] = struct{}{}\n\t\t}\n\t}\n\tif c.Overrides.Go == nil {\n\t\treturn nil\n\t}\n\tusesMultipleEngines := len(engines) > 1\n\tfor _, oride := range c.Overrides.Go.Overrides {\n\t\tif usesMultipleEngines && oride.Engine == \"\" {\n\t\t\treturn fmt.Errorf(`the \"engine\" field is required for global type overrides because your configuration uses multiple database engines`)\n\t\t}\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "internal/config/v_two.json",
    "content": "{\n    \"$schema\": \"http://json-schema.org/draft-07/schema\",\n    \"type\": \"object\",\n    \"required\": [\n        \"version\"\n    ],\n    \"properties\": {\n        \"version\": {\n            \"const\": \"2\"\n        },\n        \"cloud\": {\n            \"type\": \"object\",\n            \"properties\": {\n                \"organization\": {\n                    \"type\": \"string\"\n                },\n                \"project\": {\n                    \"type\": \"string\"\n                },\n                \"hostname\": {\n                    \"type\": \"string\"\n                }\n            }\n        },\n        \"sql\": {\n            \"type\": \"array\",\n            \"minItems\": 1,\n            \"items\": {\n                \"type\": \"object\",\n                \"required\": [\n                    \"engine\"\n                ],\n                \"properties\": {\n                    \"name\": {\n                        \"type\": \"string\"\n                    },\n                    \"engine\": {\n                        \"enum\": [\n                            \"postgresql\",\n                            \"mysql\",\n                            \"sqlite\"\n                        ]\n                    },\n                    \"schema\": {\n                        \"oneOf\": [\n                            {\n                                \"type\": \"string\"\n                            },\n                            {\n                                \"type\": \"array\",\n                                \"items\": {\n                                    \"type\": \"string\"\n                                }\n                            }\n                        ]\n                    },\n                    \"queries\": {\n                        \"oneOf\": [\n                            {\n                                \"type\": \"string\"\n                            },\n                            {\n                                \"type\": \"array\",\n                                \"items\": {\n                                    \"type\": \"string\"\n                                }\n                            }\n                        ]\n                    },\n                    \"database\": {\n                        \"type\": \"object\",\n                        \"properties\": {\n                            \"uri\": {\n                                \"type\": \"string\"\n                            },\n                            \"managed\": {\n                                \"type\": \"boolean\"\n                            }\n                        }\n                    },\n                    \"analyzer\": {\n                        \"type\": \"object\",\n                        \"properties\": {\n                            \"database\": {\n                                \"oneOf\": [\n                                    {\"type\": \"boolean\"},\n                                    {\"const\": \"only\"}\n                                ]\n                            }\n                        }\n                    },\n                    \"strict_function_checks\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"strict_order_by\": {\n                        \"type\": \"boolean\"\n                    },\n                    \"gen\": {\n                        \"type\": \"object\",\n                        \"properties\": {\n                            \"go\": {\n                                \"type\": \"object\",\n                                \"properties\": {\n                                    \"emit_interface\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"emit_json_tags\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"json_tags_id_uppercase\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"emit_db_tags\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"emit_prepared_queries\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"emit_exact_table_names\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"emit_empty_slices\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"emit_exported_queries\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"emit_result_struct_pointers\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"emit_params_struct_pointers\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"emit_methods_with_db_argument\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"emit_pointers_for_null_types\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"emit_enum_valid_method\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"emit_all_enum_values\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"emit_sql_as_comment\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"build_tags\": {\n                                        \"type\": \"string\"\n                                    },\n                                    \"json_tags_case_style\": {\n                                        \"type\": \"string\"\n                                    },\n                                    \"package\": {\n                                        \"type\": \"string\"\n                                    },\n                                    \"out\": {\n                                        \"type\": \"string\"\n                                    },\n                                    \"overrides\": {\n                                        \"type\": \"array\",\n                                        \"items\": {\n                                            \"type\": \"object\",\n                                            \"properties\": {\n                                                \"go_type\": {\n                                                    \"oneOf\": [\n                                                        {\n                                                            \"type\": \"object\",\n                                                            \"properties\": {\n                                                                \"import\": {\n                                                                    \"type\": \"string\"\n                                                                },\n                                                                \"package\": {\n                                                                    \"type\": \"string\"\n                                                                },\n                                                                \"type\": {\n                                                                    \"type\": \"string\"\n                                                                },\n                                                                \"pointer\": {\n                                                                    \"type\": \"boolean\"\n                                                                },\n                                                                \"slice\": {\n                                                                    \"type\": \"boolean\"\n                                                                },\n                                                                \"spec\": {\n                                                                    \"type\": \"string\"\n                                                                },\n                                                                \"builtin\": {\n                                                                    \"type\": \"boolean\"\n                                                                }\n                                                            }\n                                                        },\n                                                        {\n                                                            \"type\": \"string\"\n                                                        }\n                                                    ]\n                                                },\n                                                \"go_struct_tag\": {\n                                                    \"type\": \"string\"\n                                                },\n                                                \"db_type\": {\n                                                    \"type\": \"string\"\n                                                },\n                                                \"engine\": {\n                                                    \"enum\": [\n                                                        \"postgresql\",\n                                                        \"mysql\",\n                                                        \"sqlite\"\n                                                    ]\n                                                },\n                                                \"nullable\": {\n                                                    \"type\": \"boolean\"\n                                                },\n                                                \"unsigned\": {\n                                                    \"type\": \"boolean\"\n                                                },\n                                                \"column\": {\n                                                    \"type\": \"string\"\n                                                }\n                                            }\n                                        }\n                                    }\n                                },\n                                \"rename\": {\n                                    \"type\": \"object\",\n                                    \"patternProperties\": {\n                                        \".*\": {\n                                            \"type\": \"string\"\n                                        }\n                                    }\n                                },\n                                \"sql_package\": {\n                                    \"type\": \"string\"\n                                },\n                                \"sql_driver\": {\n                                    \"type\": \"string\"\n                                },\n                                \"output_batch_file_name\": {\n                                    \"type\": \"string\"\n                                },\n                                \"output_db_file_name\": {\n                                    \"type\": \"string\"\n                                },\n                                \"output_models_file_name\": {\n                                    \"type\": \"string\"\n                                },\n                                \"output_querier_file_name\": {\n                                    \"type\": \"string\"\n                                },\n                                \"output_copyfrom_file_name\": {\n                                    \"type\": \"string\"\n                                },\n                                \"output_files_suffix\": {\n                                    \"type\": \"string\"\n                                },\n                                \"inflection_exclude_table_names\": {\n                                    \"type\": \"array\",\n                                    \"items\": {\n                                        \"type\": \"string\"\n                                    }\n                                },\n                                \"query_parameter_limit\": {\n                                    \"type\": \"integer\"\n                                },\n                                \"omit_unused_structs\": {\n                                    \"type\": \"boolean\"\n                                }\n                            },\n                            \"json\": {\n                                \"type\": \"object\",\n                                \"properties\": {\n                                    \"out\": {\n                                        \"type\": \"string\"\n                                    },\n                                    \"indent\": {\n                                        \"type\": \"string\"\n                                    },\n                                    \"filename\": {\n                                        \"type\": \"string\"\n                                    }\n                                }\n                            }\n                        }\n                    },\n                    \"codegen\": {\n                        \"type\": \"array\",\n                        \"items\": {\n                            \"type\": \"object\",\n                            \"properties\": {\n                                \"out\": {\n                                    \"type\": \"string\"\n                                },\n                                \"plugin\": {\n                                    \"type\": \"string\"\n                                },\n                                \"options\": {\n                                    \"type\": \"object\"\n                                }\n                            }\n                        }\n                    },\n                    \"rules\": {\n                        \"type\": \"array\",\n                        \"items\": {\n                            \"type\": \"string\"\n                        }\n                    }\n                }\n            }\n        },\n        \"overrides\": {\n            \"type\": \"object\",\n            \"properties\": {\n                \"go\": {\n                    \"type\": \"object\",\n                    \"properties\": {\n                        \"overrides\": {\n                            \"type\": \"array\",\n                            \"items\": {\n                                \"type\": \"object\",\n                                \"properties\": {\n                                    \"go_type\": {\n                                        \"oneOf\": [\n                                            {\n                                                \"type\": \"object\",\n                                                \"properties\": {\n                                                    \"import\": {\n                                                        \"type\": \"string\"\n                                                    },\n                                                    \"package\": {\n                                                        \"type\": \"string\"\n                                                    },\n                                                    \"type\": {\n                                                        \"type\": \"string\"\n                                                    },\n                                                    \"pointer\": {\n                                                        \"type\": \"boolean\"\n                                                    },\n                                                    \"slice\": {\n                                                        \"type\": \"boolean\"\n                                                    },\n                                                    \"spec\": {\n                                                        \"type\": \"string\"\n                                                    },\n                                                    \"builtin\": {\n                                                        \"type\": \"boolean\"\n                                                    }\n                                                }\n                                            },\n                                            {\n                                                \"type\": \"string\"\n                                            }\n                                        ]\n                                    },\n                                    \"go_struct_tag\": {\n                                        \"type\": \"string\"\n                                    },\n                                    \"db_type\": {\n                                        \"type\": \"string\"\n                                    },\n                                    \"engine\": {\n                                        \"enum\": [\n                                            \"postgresql\",\n                                            \"mysql\",\n                                            \"sqlite\"\n                                        ]\n                                    },\n                                    \"nullable\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"unsigned\": {\n                                        \"type\": \"boolean\"\n                                    },\n                                    \"column\": {\n                                        \"type\": \"string\"\n                                    }\n                                }\n                            }\n                        },\n                        \"rename\": {\n                            \"type\": \"object\",\n                            \"patternProperties\": {\n                                \".*\": {\n                                    \"type\": \"string\"\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n        },\n        \"plugins\": {\n            \"type\": \"array\",\n            \"items\": {\n                \"type\": \"object\",\n                \"required\": [\n                    \"name\"\n                ],\n                \"properties\": {\n                    \"name\": {\n                        \"type\": \"string\",\n                        \"minLength\": 1\n                    },\n                    \"env\": {\n                        \"type\": \"array\",\n                        \"items\": {\n                            \"type\": \"string\"\n                        }\n                    },\n                    \"process\": {\n                        \"type\": \"object\",\n                        \"properties\": {\n                            \"cmd\": {\n                                \"type\": \"string\"\n                            }\n                        }\n                    },\n                    \"wasm\": {\n                        \"type\": \"object\",\n                        \"properties\": {\n                            \"url\": {\n                                \"type\": \"string\"\n                            },\n                            \"sha256\": {\n                                \"type\": \"string\"\n                            }\n                        }\n                    }\n                }\n            }\n        },\n        \"rules\": {\n            \"type\": \"array\",\n            \"items\": {\n                \"type\": \"object\",\n                \"properties\": {\n                    \"name\": {\n                        \"type\": \"string\"\n                    },\n                    \"rule\": {\n                        \"type\": \"string\"\n                    },\n                    \"message\": {\n                        \"type\": \"string\"\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "internal/config/validate.go",
    "content": "package config\n\nfunc Validate(c *Config) error {\n\tfor _, sql := range c.SQL {\n\t\tif sql.Database != nil {\n\t\t\tif sql.Database.URI == \"\" && !sql.Database.Managed {\n\t\t\t\treturn ErrInvalidDatabase\n\t\t\t}\n\t\t}\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "internal/constants/query.go",
    "content": "package constants\n\n// Flags\nconst (\n\tQueryFlagParam          = \"@param\"\n\tQueryFlagSqlcVetDisable = \"@sqlc-vet-disable\"\n)\n\n// Rules\nconst (\n\tQueryRuleDbPrepare = \"sqlc/db-prepare\"\n)\n"
  },
  {
    "path": "internal/dbmanager/client.go",
    "content": "package dbmanager\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"hash/fnv\"\n\t\"io\"\n\t\"net/url\"\n\t\"strings\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"golang.org/x/sync/singleflight\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/pgx/poolcache\"\n\t\"github.com/sqlc-dev/sqlc/internal/shfmt\"\n)\n\ntype CreateDatabaseRequest struct {\n\tEngine     string\n\tMigrations []string\n\tPrefix     string\n}\n\ntype CreateDatabaseResponse struct {\n\tUri string\n}\n\ntype Client interface {\n\tCreateDatabase(context.Context, *CreateDatabaseRequest) (*CreateDatabaseResponse, error)\n\tClose(context.Context)\n}\n\nvar flight singleflight.Group\n\ntype ManagedClient struct {\n\tcache    *poolcache.Cache\n\treplacer *shfmt.Replacer\n\tservers  []config.Server\n}\n\nfunc dbid(migrations []string) string {\n\th := fnv.New64()\n\tfor _, query := range migrations {\n\t\tio.WriteString(h, query)\n\t}\n\treturn fmt.Sprintf(\"%x\", h.Sum(nil))\n}\n\nfunc (m *ManagedClient) CreateDatabase(ctx context.Context, req *CreateDatabaseRequest) (*CreateDatabaseResponse, error) {\n\thash := dbid(req.Migrations)\n\tprefix := req.Prefix\n\tif prefix == \"\" {\n\t\tprefix = \"sqlc_managed\"\n\t}\n\tname := fmt.Sprintf(\"%s_%s\", prefix, hash)\n\n\tengine := config.Engine(req.Engine)\n\tswitch engine {\n\tcase config.EngineMySQL:\n\t\t// pass\n\tcase config.EnginePostgreSQL:\n\t\t// pass\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"unsupported engine: %s\", engine)\n\t}\n\n\tvar base string\n\tfor _, server := range m.servers {\n\t\tif server.Engine == engine {\n\t\t\tbase = server.URI\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif strings.TrimSpace(base) == \"\" {\n\t\treturn nil, fmt.Errorf(\"no PostgreSQL database server found\")\n\t}\n\n\tserverUri := m.replacer.Replace(base)\n\tpool, err := m.cache.Open(ctx, serverUri)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\turi, err := url.Parse(serverUri)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\turi.Path = \"/\" + name\n\n\tkey := uri.String()\n\t_, err, _ = flight.Do(key, func() (interface{}, error) {\n\t\t// TODO: Use a parameterized query\n\t\trow := pool.QueryRow(ctx,\n\t\t\tfmt.Sprintf(`SELECT datname FROM pg_database WHERE datname = '%s'`, name))\n\n\t\tvar datname string\n\t\tif err := row.Scan(&datname); err == nil {\n\t\t\treturn nil, nil\n\t\t}\n\n\t\tif _, err := pool.Exec(ctx, fmt.Sprintf(`CREATE DATABASE \"%s\"`, name)); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\tconn, err := pgx.Connect(ctx, uri.String())\n\t\tif err != nil {\n\t\t\tpool.Exec(ctx, fmt.Sprintf(`DROP DATABASE IF EXISTS \"%s\" WITH (FORCE)`, name))\n\t\t\treturn nil, fmt.Errorf(\"connect %s: %s\", name, err)\n\t\t}\n\t\tdefer conn.Close(ctx)\n\n\t\tvar migrationErr error\n\t\tfor _, q := range req.Migrations {\n\t\t\tif len(strings.TrimSpace(q)) == 0 {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif _, err := conn.Exec(ctx, q); err != nil {\n\t\t\t\tmigrationErr = fmt.Errorf(\"%s: %s\", q, err)\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\tif migrationErr != nil {\n\t\t\tpool.Exec(ctx, fmt.Sprintf(`DROP DATABASE IF EXISTS \"%s\" WITH (FORCE)`, name))\n\t\t\treturn nil, migrationErr\n\t\t}\n\n\t\treturn nil, nil\n\t})\n\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn &CreateDatabaseResponse{Uri: key}, err\n}\n\nfunc (m *ManagedClient) Close(ctx context.Context) {\n\tm.cache.Close()\n}\n\nfunc NewClient(servers []config.Server) *ManagedClient {\n\treturn &ManagedClient{\n\t\tcache:    poolcache.New(),\n\t\tservers:  servers,\n\t\treplacer: shfmt.NewReplacer(nil),\n\t}\n}\n"
  },
  {
    "path": "internal/debug/dump.go",
    "content": "package debug\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"os\"\n\n\t\"github.com/davecgh/go-spew/spew\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/opts\"\n)\n\nvar Active bool\nvar Debug opts.Debug\n\nfunc init() {\n\tActive = os.Getenv(\"SQLCDEBUG\") != \"\"\n\tif Active {\n\t\tDebug = opts.DebugFromEnv()\n\t}\n}\n\nfunc Dump(n ...interface{}) {\n\tif Active {\n\t\tspew.Dump(n)\n\t}\n}\n\nfunc DumpAsJSON(a any) {\n\tif Active {\n\t\tout, _ := json.MarshalIndent(a, \"\", \"  \")\n\t\tfmt.Printf(\"%s\\n\", out)\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/CLAUDE.md",
    "content": "# End-to-End Tests - Native Database Setup\n\nThis document describes how to set up MySQL and PostgreSQL for running end-to-end tests in environments without Docker, particularly when using an HTTP proxy.\n\n## Overview\n\nThe end-to-end tests support three methods for connecting to databases:\n\n1. **Environment Variables**: Set `POSTGRESQL_SERVER_URI` and `MYSQL_SERVER_URI` directly\n2. **Docker**: Automatically starts containers via the docker package\n3. **Native Installation**: Starts existing database services on Linux\n\n## Installing Databases with HTTP Proxy\n\nIn environments where DNS doesn't work directly but an HTTP proxy is available (e.g., some CI environments), you need to configure apt to use the proxy before installing packages.\n\n### Configure apt Proxy\n\n```bash\n# Check if HTTP_PROXY is set\necho $HTTP_PROXY\n\n# Configure apt to use the proxy\nsudo tee /etc/apt/apt.conf.d/99proxy << EOF\nAcquire::http::Proxy \"$HTTP_PROXY\";\nAcquire::https::Proxy \"$HTTPS_PROXY\";\nEOF\n\n# Update package lists\nsudo apt-get update -qq\n```\n\n### Install PostgreSQL\n\n```bash\n# Install PostgreSQL\nsudo DEBIAN_FRONTEND=noninteractive apt-get install -y postgresql postgresql-contrib\n\n# Start the service\nsudo service postgresql start\n\n# Set password for postgres user\nsudo -u postgres psql -c \"ALTER USER postgres PASSWORD 'postgres';\"\n\n# Configure pg_hba.conf for password authentication\n# Find the hba_file location:\nsudo -u postgres psql -t -c \"SHOW hba_file;\"\n\n# Add md5 authentication for localhost (add to the beginning of pg_hba.conf):\n# host    all             all             127.0.0.1/32            md5\n\n# Reload PostgreSQL\nsudo service postgresql reload\n```\n\n### Install MySQL\n\n```bash\n# Pre-configure MySQL root password\necho \"mysql-server mysql-server/root_password password mysecretpassword\" | sudo debconf-set-selections\necho \"mysql-server mysql-server/root_password_again password mysecretpassword\" | sudo debconf-set-selections\n\n# Install MySQL\nsudo DEBIAN_FRONTEND=noninteractive apt-get install -y mysql-server\n\n# Start the service\nsudo service mysql start\n\n# Verify connection\nmysql -uroot -pmysecretpassword -e \"SELECT 1;\"\n```\n\n## Expected Database Credentials\n\nThe native database support expects the following credentials:\n\n### PostgreSQL\n- **URI**: `postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable`\n- **User**: `postgres`\n- **Password**: `postgres`\n- **Port**: `5432`\n\n### MySQL\n- **URI**: `root:mysecretpassword@tcp(localhost:3306)/mysql?multiStatements=true&parseTime=true`\n- **User**: `root`\n- **Password**: `mysecretpassword`\n- **Port**: `3306`\n\n## Running Tests\n\n```bash\n# Run end-to-end tests\ngo test -v -run TestReplay -timeout 20m ./internal/endtoend/...\n\n# With verbose logging\ngo test -v -run TestReplay -timeout 20m ./internal/endtoend/... 2>&1 | tee test.log\n```\n\n## Troubleshooting\n\n### apt-get times out or fails\n- Ensure HTTP proxy is configured in `/etc/apt/apt.conf.d/99proxy`\n- Check that the proxy URL is correct: `echo $HTTP_PROXY`\n- Try running `sudo apt-get update` first to verify connectivity\n\n### MySQL connection refused\n- Check if MySQL is running: `sudo service mysql status`\n- Verify the password: `mysql -uroot -pmysecretpassword -e \"SELECT 1;\"`\n- Check if MySQL is listening on TCP: `netstat -tlnp | grep 3306`\n\n### PostgreSQL authentication failed\n- Verify pg_hba.conf has md5 authentication for localhost\n- Check password: `PGPASSWORD=postgres psql -h localhost -U postgres -c \"SELECT 1;\"`\n- Reload PostgreSQL after config changes: `sudo service postgresql reload`\n\n### DNS resolution fails\nThis is expected in some environments. Configure apt proxy as shown above.\n"
  },
  {
    "path": "internal/endtoend/case_test.go",
    "content": "package main\n\nimport (\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"runtime\"\n\t\"strings\"\n\t\"testing\"\n)\n\ntype Testcase struct {\n\tName       string\n\tPath       string\n\tConfigName string\n\tStderr     []byte\n\tExec       *Exec\n}\n\ntype ExecMeta struct {\n\tInvalidSchema bool `json:\"invalid_schema\"`\n}\n\ntype Exec struct {\n\tCommand  string            `json:\"command\"`\n\tContexts []string          `json:\"contexts\"`\n\tProcess  string            `json:\"process\"`\n\tOS       []string          `json:\"os\"`\n\tEnv      map[string]string `json:\"env\"`\n\tMeta     ExecMeta          `json:\"meta\"`\n}\n\nfunc parseStderr(t *testing.T, dir, testctx string) []byte {\n\tt.Helper()\n\tpaths := []string{\n\t\tfilepath.Join(dir, \"stderr\", fmt.Sprintf(\"%s.txt\", testctx)),\n\t\tfilepath.Join(dir, fmt.Sprintf(\"stderr_%s.txt\", runtime.GOOS)),\n\t\tfilepath.Join(dir, \"stderr.txt\"),\n\t}\n\tfor _, path := range paths {\n\t\tif _, err := os.Stat(path); !os.IsNotExist(err) {\n\t\t\tblob, err := os.ReadFile(path)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\treturn blob\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc parseExec(t *testing.T, dir string) *Exec {\n\tt.Helper()\n\tpath := filepath.Join(dir, \"exec.json\")\n\tif _, err := os.Stat(path); os.IsNotExist(err) {\n\t\treturn nil\n\t}\n\tvar e Exec\n\tblob, err := os.ReadFile(path)\n\tif err != nil {\n\t\tt.Fatalf(\"%s: %s\", path, err)\n\t}\n\tif err := json.Unmarshal(blob, &e); err != nil {\n\t\tt.Fatalf(\"%s: %s\", path, err)\n\t}\n\tif e.Command == \"\" {\n\t\te.Command = \"generate\"\n\t}\n\treturn &e\n}\n\nfunc FindTests(t *testing.T, root, testctx string) []*Testcase {\n\tvar tcs []*Testcase\n\terr := filepath.Walk(root, func(path string, info os.FileInfo, err error) error {\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif info.Name() == \"sqlc.json\" || info.Name() == \"sqlc.yaml\" || info.Name() == \"sqlc.yml\" {\n\t\t\tdir := filepath.Dir(path)\n\t\t\ttcs = append(tcs, &Testcase{\n\t\t\t\tPath:       dir,\n\t\t\t\tName:       strings.TrimPrefix(dir, root+string(filepath.Separator)),\n\t\t\t\tConfigName: info.Name(),\n\t\t\t\tStderr:     parseStderr(t, dir, testctx),\n\t\t\t\tExec:       parseExec(t, dir),\n\t\t\t})\n\t\t\treturn filepath.SkipDir\n\t\t}\n\t\treturn nil\n\t})\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\treturn tcs\n}\n"
  },
  {
    "path": "internal/endtoend/ddl_test.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"testing\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/local\"\n)\n\nfunc TestValidSchema(t *testing.T) {\n\tfor _, replay := range FindTests(t, \"testdata\", \"base\") {\n\t\treplay := replay // https://golang.org/doc/faq#closures_and_goroutines\n\n\t\tif replay.Exec != nil {\n\t\t\tif replay.Exec.Meta.InvalidSchema {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\n\t\tfile := filepath.Join(replay.Path, replay.ConfigName)\n\t\trd, err := os.Open(file)\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\n\t\tconf, err := config.ParseConfig(rd)\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\n\t\tfor j, pkg := range conf.SQL {\n\t\t\tj, pkg := j, pkg\n\t\t\tswitch pkg.Engine {\n\t\t\tcase config.EnginePostgreSQL:\n\t\t\t\t// pass\n\t\t\tcase config.EngineMySQL:\n\t\t\t\t// pass\n\t\t\tdefault:\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tt.Run(fmt.Sprintf(\"endtoend-%s-%d\", file, j), func(t *testing.T) {\n\t\t\t\tt.Parallel()\n\n\t\t\t\tvar schema []string\n\t\t\t\tfor _, path := range pkg.Schema {\n\t\t\t\t\tschema = append(schema, filepath.Join(filepath.Dir(file), path))\n\t\t\t\t}\n\n\t\t\t\tswitch pkg.Engine {\n\t\t\t\tcase config.EnginePostgreSQL:\n\t\t\t\t\tlocal.PostgreSQL(t, schema)\n\t\t\t\tcase config.EngineMySQL:\n\t\t\t\t\tlocal.MySQL(t, schema)\n\t\t\t\t}\n\t\t\t})\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/endtoend_test.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"os\"\n\tosexec \"os/exec\"\n\t\"path/filepath\"\n\t\"runtime\"\n\t\"slices\"\n\t\"strings\"\n\t\"testing\"\n\n\t\"github.com/google/go-cmp/cmp\"\n\t\"github.com/google/go-cmp/cmp/cmpopts\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/cmd\"\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/docker\"\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/native\"\n)\n\nfunc lineEndings() cmp.Option {\n\treturn cmp.Transformer(\"LineEndings\", func(in string) string {\n\t\t// Replace Windows new lines with Unix newlines\n\t\treturn strings.Replace(in, \"\\r\\n\", \"\\n\", -1)\n\t})\n}\n\nfunc stderrTransformer() cmp.Option {\n\treturn cmp.Transformer(\"Stderr\", func(in string) string {\n\t\ts := strings.Replace(in, \"\\r\", \"\", -1)\n\t\treturn strings.Replace(s, \"\\\\\", \"/\", -1)\n\t})\n}\n\nfunc TestExamples(t *testing.T) {\n\tt.Parallel()\n\tctx := context.Background()\n\n\texamples, err := filepath.Abs(filepath.Join(\"..\", \"..\", \"examples\"))\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tfiles, err := os.ReadDir(examples)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tfor _, replay := range files {\n\t\tif !replay.IsDir() {\n\t\t\tcontinue\n\t\t}\n\t\ttc := replay.Name()\n\t\tt.Run(tc, func(t *testing.T) {\n\t\t\tt.Parallel()\n\t\t\tpath := filepath.Join(examples, tc)\n\t\t\tvar stderr bytes.Buffer\n\t\t\topts := &cmd.Options{\n\t\t\t\tEnv:    cmd.Env{},\n\t\t\t\tStderr: &stderr,\n\t\t\t}\n\t\t\toutput, err := cmd.Generate(ctx, path, \"\", opts)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatalf(\"sqlc generate failed: %s\", stderr.String())\n\t\t\t}\n\t\t\tcmpDirectory(t, path, output)\n\t\t})\n\t}\n}\n\nfunc BenchmarkExamples(b *testing.B) {\n\tctx := context.Background()\n\texamples, err := filepath.Abs(filepath.Join(\"..\", \"..\", \"examples\"))\n\tif err != nil {\n\t\tb.Fatal(err)\n\t}\n\tfiles, err := os.ReadDir(examples)\n\tif err != nil {\n\t\tb.Fatal(err)\n\t}\n\tfor _, replay := range files {\n\t\tif !replay.IsDir() {\n\t\t\tcontinue\n\t\t}\n\t\ttc := replay.Name()\n\t\tb.Run(tc, func(b *testing.B) {\n\t\t\tpath := filepath.Join(examples, tc)\n\t\t\tfor i := 0; i < b.N; i++ {\n\t\t\t\tvar stderr bytes.Buffer\n\t\t\t\topts := &cmd.Options{\n\t\t\t\t\tEnv:    cmd.Env{},\n\t\t\t\t\tStderr: &stderr,\n\t\t\t\t}\n\t\t\t\tcmd.Generate(ctx, path, \"\", opts)\n\t\t\t}\n\t\t})\n\t}\n}\n\ntype textContext struct {\n\tMutate  func(*testing.T, string) func(*config.Config)\n\tEnabled func() bool\n}\n\nfunc TestReplay(t *testing.T) {\n\t// Ensure that this environment variable is always set to true when running\n\t// end-to-end tests\n\tos.Setenv(\"SQLC_DUMMY_VALUE\", \"true\")\n\n\t// t.Parallel()\n\tctx := context.Background()\n\n\tvar mysqlURI, postgresURI string\n\n\t// First, check environment variables\n\tif uri := os.Getenv(\"POSTGRESQL_SERVER_URI\"); uri != \"\" {\n\t\tpostgresURI = uri\n\t}\n\tif uri := os.Getenv(\"MYSQL_SERVER_URI\"); uri != \"\" {\n\t\tmysqlURI = uri\n\t}\n\n\t// Try Docker for any missing databases\n\tif postgresURI == \"\" || mysqlURI == \"\" {\n\t\tif err := docker.Installed(); err == nil {\n\t\t\tif postgresURI == \"\" {\n\t\t\t\thost, err := docker.StartPostgreSQLServer(ctx)\n\t\t\t\tif err != nil {\n\t\t\t\t\tt.Logf(\"docker postgresql startup failed: %s\", err)\n\t\t\t\t} else {\n\t\t\t\t\tpostgresURI = host\n\t\t\t\t}\n\t\t\t}\n\t\t\tif mysqlURI == \"\" {\n\t\t\t\thost, err := docker.StartMySQLServer(ctx)\n\t\t\t\tif err != nil {\n\t\t\t\t\tt.Logf(\"docker mysql startup failed: %s\", err)\n\t\t\t\t} else {\n\t\t\t\t\tmysqlURI = host\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Try native installation for any missing databases (Linux only)\n\tif postgresURI == \"\" || mysqlURI == \"\" {\n\t\tif err := native.Supported(); err == nil {\n\t\t\tif postgresURI == \"\" {\n\t\t\t\thost, err := native.StartPostgreSQLServer(ctx)\n\t\t\t\tif err != nil {\n\t\t\t\t\tt.Logf(\"native postgresql startup failed: %s\", err)\n\t\t\t\t} else {\n\t\t\t\t\tpostgresURI = host\n\t\t\t\t}\n\t\t\t}\n\t\t\tif mysqlURI == \"\" {\n\t\t\t\thost, err := native.StartMySQLServer(ctx)\n\t\t\t\tif err != nil {\n\t\t\t\t\tt.Logf(\"native mysql startup failed: %s\", err)\n\t\t\t\t} else {\n\t\t\t\t\tmysqlURI = host\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Log which databases are available\n\tt.Logf(\"PostgreSQL available: %v (URI: %s)\", postgresURI != \"\", postgresURI)\n\tt.Logf(\"MySQL available: %v (URI: %s)\", mysqlURI != \"\", mysqlURI)\n\n\tcontexts := map[string]textContext{\n\t\t\"base\": {\n\t\t\tMutate:  func(t *testing.T, path string) func(*config.Config) { return func(c *config.Config) {} },\n\t\t\tEnabled: func() bool { return true },\n\t\t},\n\t\t\"managed-db\": {\n\t\t\tMutate: func(t *testing.T, path string) func(*config.Config) {\n\t\t\t\treturn func(c *config.Config) {\n\t\t\t\t\t// Add all servers - tests will fail if database isn't available\n\t\t\t\t\tc.Servers = []config.Server{\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tName:   \"postgres\",\n\t\t\t\t\t\t\tEngine: config.EnginePostgreSQL,\n\t\t\t\t\t\t\tURI:    postgresURI,\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tName:   \"mysql\",\n\t\t\t\t\t\t\tEngine: config.EngineMySQL,\n\t\t\t\t\t\t\tURI:    mysqlURI,\n\t\t\t\t\t\t},\n\t\t\t\t\t}\n\n\t\t\t\t\tfor i := range c.SQL {\n\t\t\t\t\t\tswitch c.SQL[i].Engine {\n\t\t\t\t\t\tcase config.EnginePostgreSQL:\n\t\t\t\t\t\t\tc.SQL[i].Database = &config.Database{\n\t\t\t\t\t\t\t\tManaged: true,\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\tcase config.EngineMySQL:\n\t\t\t\t\t\t\tc.SQL[i].Database = &config.Database{\n\t\t\t\t\t\t\t\tManaged: true,\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\tcase config.EngineSQLite:\n\t\t\t\t\t\t\tc.SQL[i].Database = &config.Database{\n\t\t\t\t\t\t\t\tManaged: true,\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\t// pass\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\tEnabled: func() bool {\n\t\t\t\t// Enabled if at least one database URI is available\n\t\t\t\treturn postgresURI != \"\" || mysqlURI != \"\"\n\t\t\t},\n\t\t},\n\t}\n\n\tfor name, testctx := range contexts {\n\t\tname := name\n\t\ttestctx := testctx\n\n\t\tif !testctx.Enabled() {\n\t\t\tcontinue\n\t\t}\n\n\t\tfor _, replay := range FindTests(t, \"testdata\", name) {\n\t\t\ttc := replay\n\t\t\tt.Run(filepath.Join(name, tc.Name), func(t *testing.T) {\n\t\t\t\tvar stderr bytes.Buffer\n\t\t\t\tvar output map[string]string\n\t\t\t\tvar err error\n\n\t\t\t\tpath, _ := filepath.Abs(tc.Path)\n\t\t\t\targs := tc.Exec\n\t\t\t\tif args == nil {\n\t\t\t\t\targs = &Exec{Command: \"generate\"}\n\t\t\t\t}\n\t\t\t\texpected := string(tc.Stderr)\n\n\t\t\t\tif args.Process != \"\" {\n\t\t\t\t\t_, err := osexec.LookPath(args.Process)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tt.Skipf(\"executable not found: %s %s\", args.Process, err)\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif len(args.Contexts) > 0 {\n\t\t\t\t\tif !slices.Contains(args.Contexts, name) {\n\t\t\t\t\t\tt.Skipf(\"unsupported context: %s\", name)\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif len(args.OS) > 0 {\n\t\t\t\t\tif !slices.Contains(args.OS, runtime.GOOS) {\n\t\t\t\t\t\tt.Skipf(\"unsupported os: %s\", runtime.GOOS)\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\topts := cmd.Options{\n\t\t\t\t\tEnv: cmd.Env{\n\t\t\t\t\t\tDebug:      opts.DebugFromString(args.Env[\"SQLCDEBUG\"]),\n\t\t\t\t\t\tExperiment: opts.ExperimentFromString(args.Env[\"SQLCEXPERIMENT\"]),\n\t\t\t\t\t\tNoRemote:   true,\n\t\t\t\t\t},\n\t\t\t\t\tStderr:       &stderr,\n\t\t\t\t\tMutateConfig: testctx.Mutate(t, path),\n\t\t\t\t}\n\n\t\t\t\tswitch args.Command {\n\t\t\t\tcase \"diff\":\n\t\t\t\t\terr = cmd.Diff(ctx, path, \"\", &opts)\n\t\t\t\tcase \"generate\":\n\t\t\t\t\toutput, err = cmd.Generate(ctx, path, \"\", &opts)\n\t\t\t\t\tif err == nil {\n\t\t\t\t\t\tcmpDirectory(t, path, output)\n\t\t\t\t\t}\n\t\t\t\tcase \"vet\":\n\t\t\t\t\terr = cmd.Vet(ctx, path, \"\", &opts)\n\t\t\t\tdefault:\n\t\t\t\t\tt.Fatalf(\"unknown command\")\n\t\t\t\t}\n\n\t\t\t\tif len(expected) == 0 && err != nil {\n\t\t\t\t\tt.Fatalf(\"sqlc %s failed: %s\", args.Command, stderr.String())\n\t\t\t\t}\n\n\t\t\t\tdiff := cmp.Diff(\n\t\t\t\t\tstrings.TrimSpace(expected),\n\t\t\t\t\tstrings.TrimSpace(stderr.String()),\n\t\t\t\t\tstderrTransformer(),\n\t\t\t\t)\n\t\t\t\tif diff != \"\" {\n\t\t\t\t\tt.Fatalf(\"stderr differed (-want +got):\\n%s\", diff)\n\t\t\t\t}\n\t\t\t})\n\t\t}\n\t}\n}\n\nfunc cmpDirectory(t *testing.T, dir string, actual map[string]string) {\n\texpected := map[string]string{}\n\tvar ff = func(path string, file os.FileInfo, err error) error {\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif file.IsDir() {\n\t\t\treturn nil\n\t\t}\n\t\tif !strings.HasSuffix(path, \".go\") && !strings.HasSuffix(path, \".kt\") && !strings.HasSuffix(path, \".py\") && !strings.HasSuffix(path, \".json\") && !strings.HasSuffix(path, \".txt\") {\n\t\t\treturn nil\n\t\t}\n\t\t// TODO: Figure out a better way to ignore certain files\n\t\tif strings.HasSuffix(path, \".txt\") && filepath.Base(path) != \"hello.txt\" {\n\t\t\treturn nil\n\t\t}\n\t\tif filepath.Base(path) == \"sqlc.json\" {\n\t\t\treturn nil\n\t\t}\n\t\tif filepath.Base(path) == \"exec.json\" {\n\t\t\treturn nil\n\t\t}\n\t\tif strings.Contains(path, \"/kotlin/build\") {\n\t\t\treturn nil\n\t\t}\n\t\tif strings.HasSuffix(path, \"_test.go\") || strings.Contains(path, \"src/test/\") {\n\t\t\treturn nil\n\t\t}\n\t\tif strings.Contains(path, \"/python/.venv\") || strings.Contains(path, \"/python/src/tests/\") ||\n\t\t\tstrings.HasSuffix(path, \"__init__.py\") || strings.Contains(path, \"/python/src/dbtest/\") ||\n\t\t\tstrings.Contains(path, \"/python/.mypy_cache\") {\n\t\t\treturn nil\n\t\t}\n\t\tblob, err := os.ReadFile(path)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\texpected[path] = string(blob)\n\t\treturn nil\n\t}\n\tif err := filepath.Walk(dir, ff); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\topts := []cmp.Option{\n\t\tcmpopts.EquateEmpty(),\n\t\tlineEndings(),\n\t}\n\n\tif !cmp.Equal(expected, actual, opts...) {\n\t\tt.Errorf(\"%s contents differ\", dir)\n\t\tfor name, contents := range expected {\n\t\t\tname := name\n\t\t\tif actual[name] == \"\" {\n\t\t\t\tt.Errorf(\"%s is empty\", name)\n\t\t\t\treturn\n\t\t\t}\n\t\t\tif diff := cmp.Diff(contents, actual[name], opts...); diff != \"\" {\n\t\t\t\tt.Errorf(\"%s differed (-want +got):\\n%s\", name, diff)\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunc BenchmarkReplay(b *testing.B) {\n\tctx := context.Background()\n\tvar dirs []string\n\terr := filepath.Walk(\"testdata\", func(path string, info os.FileInfo, err error) error {\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif info.Name() == \"sqlc.json\" || info.Name() == \"sqlc.yaml\" || info.Name() == \"sqlc.yml\" {\n\t\t\tdirs = append(dirs, filepath.Dir(path))\n\t\t\treturn filepath.SkipDir\n\t\t}\n\t\treturn nil\n\t})\n\tif err != nil {\n\t\tb.Fatal(err)\n\t}\n\tfor _, replay := range dirs {\n\t\ttc := replay\n\t\tb.Run(tc, func(b *testing.B) {\n\t\t\tpath, _ := filepath.Abs(tc)\n\t\t\tfor i := 0; i < b.N; i++ {\n\t\t\t\tvar stderr bytes.Buffer\n\t\t\t\topts := &cmd.Options{\n\t\t\t\t\tEnv:    cmd.Env{},\n\t\t\t\t\tStderr: &stderr,\n\t\t\t\t}\n\t\t\t\tcmd.Generate(ctx, path, \"\", opts)\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/fmt_test.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"fmt\"\n\t\"io\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"testing\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/debug\"\n\t\"github.com/sqlc-dev/sqlc/internal/engine/dolphin\"\n\t\"github.com/sqlc-dev/sqlc/internal/engine/postgresql\"\n\t\"github.com/sqlc-dev/sqlc/internal/engine/sqlite\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/format\"\n)\n\n// sqlParser is an interface for SQL parsers\ntype sqlParser interface {\n\tParse(r io.Reader) ([]ast.Statement, error)\n}\n\n// sqlFormatter is an interface for formatters\ntype sqlFormatter interface {\n\tformat.Dialect\n}\n\nfunc TestFormat(t *testing.T) {\n\tt.Parallel()\n\tfor _, tc := range FindTests(t, \"testdata\", \"base\") {\n\t\ttc := tc\n\t\tt.Run(tc.Name, func(t *testing.T) {\n\t\t\t// Parse the config file to determine the engine\n\t\t\tconfigPath := filepath.Join(tc.Path, tc.ConfigName)\n\t\t\tconfigFile, err := os.Open(configPath)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\tconf, err := config.ParseConfig(configFile)\n\t\t\tconfigFile.Close()\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\t// Skip if there are no SQL packages configured\n\t\t\tif len(conf.SQL) == 0 {\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tengine := conf.SQL[0].Engine\n\n\t\t\t// Select the appropriate parser and fingerprint function based on engine\n\t\t\tvar parse sqlParser\n\t\t\tvar formatter sqlFormatter\n\t\t\tvar fingerprint func(string) (string, error)\n\n\t\t\tswitch engine {\n\t\t\tcase config.EnginePostgreSQL:\n\t\t\t\tpgParser := postgresql.NewParser()\n\t\t\t\tparse = pgParser\n\t\t\t\tformatter = pgParser\n\t\t\t\tfingerprint = postgresql.Fingerprint\n\t\t\tcase config.EngineMySQL:\n\t\t\t\tmysqlParser := dolphin.NewParser()\n\t\t\t\tparse = mysqlParser\n\t\t\t\tformatter = mysqlParser\n\t\t\t\t// For MySQL, we use a \"round-trip\" fingerprint: parse the SQL, format it,\n\t\t\t\t// and return the formatted string. This tests that our formatting produces\n\t\t\t\t// valid SQL that parses to the same AST structure.\n\t\t\t\tfingerprint = func(sql string) (string, error) {\n\t\t\t\t\tstmts, err := mysqlParser.Parse(strings.NewReader(sql))\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn \"\", err\n\t\t\t\t\t}\n\t\t\t\t\tif len(stmts) == 0 {\n\t\t\t\t\t\treturn \"\", nil\n\t\t\t\t\t}\n\t\t\t\t\treturn ast.Format(stmts[0].Raw, mysqlParser), nil\n\t\t\t\t}\n\t\t\tcase config.EngineSQLite:\n\t\t\t\tsqliteParser := sqlite.NewParser()\n\t\t\t\tparse = sqliteParser\n\t\t\t\tformatter = sqliteParser\n\t\t\t\t// For SQLite, we use the same \"round-trip\" fingerprint strategy as MySQL:\n\t\t\t\t// parse the SQL, format it, and return the formatted string.\n\t\t\t\tfingerprint = func(sql string) (string, error) {\n\t\t\t\t\tstmts, err := sqliteParser.Parse(strings.NewReader(sql))\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn \"\", err\n\t\t\t\t\t}\n\t\t\t\t\tif len(stmts) == 0 {\n\t\t\t\t\t\treturn \"\", nil\n\t\t\t\t\t}\n\t\t\t\t\treturn strings.ToLower(ast.Format(stmts[0].Raw, sqliteParser)), nil\n\t\t\t\t}\n\t\t\tdefault:\n\t\t\t\t// Skip unsupported engines\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\t// Find query files from config\n\t\t\tvar queryFiles []string\n\t\t\tfor _, sql := range conf.SQL {\n\t\t\t\tfor _, q := range sql.Queries {\n\t\t\t\t\tqueryPath := filepath.Join(tc.Path, q)\n\t\t\t\t\tinfo, err := os.Stat(queryPath)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tif info.IsDir() {\n\t\t\t\t\t\t// If it's a directory, glob for .sql files\n\t\t\t\t\t\tmatches, err := filepath.Glob(filepath.Join(queryPath, \"*.sql\"))\n\t\t\t\t\t\tif err != nil {\n\t\t\t\t\t\t\tcontinue\n\t\t\t\t\t\t}\n\t\t\t\t\t\tqueryFiles = append(queryFiles, matches...)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tqueryFiles = append(queryFiles, queryPath)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif len(queryFiles) == 0 {\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tfor _, queryFile := range queryFiles {\n\t\t\t\tif _, err := os.Stat(queryFile); os.IsNotExist(err) {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\tcontents, err := os.ReadFile(queryFile)\n\t\t\t\tif err != nil {\n\t\t\t\t\tt.Fatal(err)\n\t\t\t\t}\n\n\t\t\t\t// Parse the entire file to get proper statement boundaries\n\t\t\t\tstmts, err := parse.Parse(bytes.NewReader(contents))\n\t\t\t\tif err != nil {\n\t\t\t\t\t// Skip files with parse errors (e.g., syntax_errors test cases)\n\t\t\t\t\treturn\n\t\t\t\t}\n\n\t\t\t\tfor i, stmt := range stmts {\n\t\t\t\t\tstmt := stmt\n\t\t\t\t\tt.Run(fmt.Sprintf(\"%d\", i), func(t *testing.T) {\n\t\t\t\t\t\t// Extract the original query text using statement location and length\n\t\t\t\t\t\tstart := stmt.Raw.StmtLocation\n\t\t\t\t\t\tlength := stmt.Raw.StmtLen\n\t\t\t\t\t\tif length == 0 {\n\t\t\t\t\t\t\t// If StmtLen is 0, it means the statement goes to the end of the input\n\t\t\t\t\t\t\tlength = len(contents) - start\n\t\t\t\t\t\t}\n\t\t\t\t\t\tquery := strings.TrimSpace(string(contents[start : start+length]))\n\n\t\t\t\t\t\texpected, err := fingerprint(query)\n\t\t\t\t\t\tif err != nil {\n\t\t\t\t\t\t\tt.Fatal(err)\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tif false {\n\t\t\t\t\t\t\tr, err := postgresql.Parse(query)\n\t\t\t\t\t\t\tdebug.Dump(r, err)\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tout := ast.Format(stmt.Raw, formatter)\n\t\t\t\t\t\tactual, err := fingerprint(out)\n\t\t\t\t\t\tif err != nil {\n\t\t\t\t\t\t\tt.Error(err)\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif expected != actual {\n\t\t\t\t\t\t\tdebug.Dump(stmt.Raw)\n\t\t\t\t\t\t\tt.Errorf(\"- %s\", expected)\n\t\t\t\t\t\t\tt.Errorf(\"- %s\", query)\n\t\t\t\t\t\t\tt.Errorf(\"+ %s\", actual)\n\t\t\t\t\t\t\tt.Errorf(\"+ %s\", out)\n\t\t\t\t\t\t}\n\t\t\t\t\t})\n\t\t\t\t}\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/json_schema_test.go",
    "content": "package main\n\nimport (\n\t\"encoding/json\"\n\t\"io/fs\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"testing\"\n\n\t\"github.com/xeipuuv/gojsonschema\"\n)\n\ntype conf struct {\n\tVersion string `json:\"version\"`\n}\n\nfunc loadSchema(t *testing.T, path string) *gojsonschema.Schema {\n\tt.Helper()\n\n\tschemaBytes, err := os.ReadFile(path)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tloader := gojsonschema.NewStringLoader(string(schemaBytes))\n\tschema, err := gojsonschema.NewSchema(loader)\n\tif err != nil {\n\t\tt.Fatalf(\"invalid schema: %s\", err)\n\t}\n\treturn schema\n}\n\nfunc TestJsonSchema(t *testing.T) {\n\tt.Parallel()\n\n\tschemaOne := loadSchema(t, filepath.Join(\"..\", \"config\", \"v_one.json\"))\n\tschemaTwo := loadSchema(t, filepath.Join(\"..\", \"config\", \"v_two.json\"))\n\n\tsrcs := []string{\n\t\tfilepath.Join(\"..\", \"..\", \"examples\"),\n\t\tfilepath.Join(\"testdata\"),\n\t}\n\n\tfor _, dir := range srcs {\n\t\terr := filepath.WalkDir(dir, func(path string, d fs.DirEntry, err error) error {\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif filepath.Base(path) != \"sqlc.json\" {\n\t\t\t\treturn nil\n\t\t\t}\n\t\t\tt.Run(path, func(t *testing.T) {\n\t\t\t\tt.Parallel()\n\t\t\t\tcontents, err := os.ReadFile(path)\n\t\t\t\tif err != nil {\n\t\t\t\t\tt.Fatal(err)\n\t\t\t\t}\n\t\t\t\tvar c conf\n\t\t\t\tif err := json.Unmarshal(contents, &c); err != nil {\n\t\t\t\t\tt.Fatal(err)\n\t\t\t\t}\n\t\t\t\tl := gojsonschema.NewStringLoader(string(contents))\n\t\t\t\tswitch c.Version {\n\t\t\t\tcase \"1\":\n\t\t\t\t\tif _, err := schemaOne.Validate(l); err != nil {\n\t\t\t\t\t\tt.Fatal(err)\n\t\t\t\t\t}\n\t\t\t\tcase \"2\":\n\t\t\t\t\tif _, err := schemaTwo.Validate(l); err != nil {\n\t\t\t\t\t\tt.Fatal(err)\n\t\t\t\t\t}\n\t\t\t\tdefault:\n\t\t\t\t\tt.Fatalf(\"unknown schema version: %s\", c.Version)\n\t\t\t\t}\n\t\t\t})\n\t\t\treturn nil\n\t\t})\n\t\tif err != nil {\n\t\t\tt.Error(err)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_cte/postgresql/stdlib/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"],\n  \"env\": {\n    \"SQLCEXPERIMENT\": \"analyzerv2\"\n  }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_cte/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_cte/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Product struct {\n\tID    int32\n\tName  string\n\tPrice string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_cte/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getProductStats = `-- name: GetProductStats :one\nWITH product_stats AS (\n    SELECT COUNT(*) as total, AVG(price) as avg_price FROM products\n)\nSELECT total, avg_price FROM product_stats\n`\n\ntype GetProductStatsRow struct {\n\tTotal    int64\n\tAvgPrice string\n}\n\nfunc (q *Queries) GetProductStats(ctx context.Context) (GetProductStatsRow, error) {\n\trow := q.db.QueryRowContext(ctx, getProductStats)\n\tvar i GetProductStatsRow\n\terr := row.Scan(&i.Total, &i.AvgPrice)\n\treturn i, err\n}\n\nconst listExpensiveProducts = `-- name: ListExpensiveProducts :many\nWITH expensive AS (\n    SELECT id, name, price FROM products WHERE price > 100\n)\nSELECT id, name, price FROM expensive\n`\n\ntype ListExpensiveProductsRow struct {\n\tID    int32\n\tName  string\n\tPrice string\n}\n\nfunc (q *Queries) ListExpensiveProducts(ctx context.Context) ([]ListExpensiveProductsRow, error) {\n\trows, err := q.db.QueryContext(ctx, listExpensiveProducts)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListExpensiveProductsRow\n\tfor rows.Next() {\n\t\tvar i ListExpensiveProductsRow\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Price); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_cte/postgresql/stdlib/query.sql",
    "content": "-- name: ListExpensiveProducts :many\nWITH expensive AS (\n    SELECT * FROM products WHERE price > 100\n)\nSELECT * FROM expensive;\n\n-- name: GetProductStats :one\nWITH product_stats AS (\n    SELECT COUNT(*) as total, AVG(price) as avg_price FROM products\n)\nSELECT * FROM product_stats;\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_cte/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE products (\n    id SERIAL PRIMARY KEY,\n    name TEXT NOT NULL,\n    price NUMERIC(10,2) NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_cte/postgresql/stdlib/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: postgresql\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    database:\n      managed: true\n    analyzer:\n      database: \"only\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_enum/postgresql/stdlib/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"],\n  \"env\": {\n    \"SQLCEXPERIMENT\": \"analyzerv2\"\n  }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_enum/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_enum/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype Status string\n\nconst (\n\tStatusPending   Status = \"pending\"\n\tStatusActive    Status = \"active\"\n\tStatusCompleted Status = \"completed\"\n)\n\nfunc (e *Status) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Status(s)\n\tcase string:\n\t\t*e = Status(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Status: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullStatus struct {\n\tStatus Status\n\tValid  bool // Valid is true if Status is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullStatus) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Status, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Status.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullStatus) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Status), nil\n}\n\ntype Task struct {\n\tID     int32\n\tTitle  string\n\tStatus Status\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_enum/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst createTask = `-- name: CreateTask :one\nINSERT INTO tasks (title, status) VALUES ($1, $2) RETURNING id, title, status\n`\n\ntype CreateTaskParams struct {\n\tTitle  string\n\tStatus Status\n}\n\nfunc (q *Queries) CreateTask(ctx context.Context, arg CreateTaskParams) (Task, error) {\n\trow := q.db.QueryRowContext(ctx, createTask, arg.Title, arg.Status)\n\tvar i Task\n\terr := row.Scan(&i.ID, &i.Title, &i.Status)\n\treturn i, err\n}\n\nconst getTasksByStatus = `-- name: GetTasksByStatus :many\nSELECT id, title, status FROM tasks WHERE status = $1\n`\n\nfunc (q *Queries) GetTasksByStatus(ctx context.Context, status Status) ([]Task, error) {\n\trows, err := q.db.QueryContext(ctx, getTasksByStatus, status)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Task\n\tfor rows.Next() {\n\t\tvar i Task\n\t\tif err := rows.Scan(&i.ID, &i.Title, &i.Status); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listTasks = `-- name: ListTasks :many\nSELECT id, title, status FROM tasks\n`\n\nfunc (q *Queries) ListTasks(ctx context.Context) ([]Task, error) {\n\trows, err := q.db.QueryContext(ctx, listTasks)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Task\n\tfor rows.Next() {\n\t\tvar i Task\n\t\tif err := rows.Scan(&i.ID, &i.Title, &i.Status); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_enum/postgresql/stdlib/query.sql",
    "content": "-- name: ListTasks :many\nSELECT * FROM tasks;\n\n-- name: GetTasksByStatus :many\nSELECT * FROM tasks WHERE status = $1;\n\n-- name: CreateTask :one\nINSERT INTO tasks (title, status) VALUES ($1, $2) RETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_enum/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('pending', 'active', 'completed');\n\nCREATE TABLE tasks (\n    id SERIAL PRIMARY KEY,\n    title TEXT NOT NULL,\n    status status NOT NULL DEFAULT 'pending'\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_enum/postgresql/stdlib/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: postgresql\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    database:\n      managed: true\n    analyzer:\n      database: \"only\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_sqlite/sqlite/stdlib/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"],\n  \"env\": {\n    \"SQLCEXPERIMENT\": \"analyzerv2\"\n  }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_sqlite/sqlite/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_sqlite/sqlite/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_sqlite/sqlite/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (name, bio) VALUES (?, ?) RETURNING id, name, bio\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, createAuthor, arg.Name, arg.Bio)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM authors WHERE id = ?\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio FROM authors\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_sqlite/sqlite/stdlib/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors WHERE id = ?;\n\n-- name: ListAuthors :many\nSELECT * FROM authors;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (name, bio) VALUES (?, ?) RETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_sqlite/sqlite/stdlib/schema.sql",
    "content": "CREATE TABLE authors (\n    id INTEGER PRIMARY KEY,\n    name TEXT NOT NULL,\n    bio TEXT\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_sqlite/sqlite/stdlib/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: sqlite\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    database:\n      managed: true\n    analyzer:\n      database: \"only\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_star_expansion/postgresql/stdlib/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"],\n  \"env\": {\n    \"SQLCEXPERIMENT\": \"analyzerv2\"\n  }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_star_expansion/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_star_expansion/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int32\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_star_expansion/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (name, bio) VALUES ($1, $2) RETURNING id, name, bio\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, createAuthor, arg.Name, arg.Bio)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst deleteAuthor = `-- name: DeleteAuthor :one\nDELETE FROM authors WHERE id = $1 RETURNING id, name, bio\n`\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, id int32) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, deleteAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM authors WHERE id = $1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int32) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio FROM authors\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst updateAuthor = `-- name: UpdateAuthor :one\nUPDATE authors SET name = $1, bio = $2 WHERE id = $3 RETURNING id, name, bio\n`\n\ntype UpdateAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n\tID   int32\n}\n\nfunc (q *Queries) UpdateAuthor(ctx context.Context, arg UpdateAuthorParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, updateAuthor, arg.Name, arg.Bio, arg.ID)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_star_expansion/postgresql/stdlib/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT * FROM authors;\n\n-- name: GetAuthor :one\nSELECT * FROM authors WHERE id = $1;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (name, bio) VALUES ($1, $2) RETURNING *;\n\n-- name: UpdateAuthor :one\nUPDATE authors SET name = $1, bio = $2 WHERE id = $3 RETURNING *;\n\n-- name: DeleteAuthor :one\nDELETE FROM authors WHERE id = $1 RETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_star_expansion/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE authors (\n    id SERIAL PRIMARY KEY,\n    name TEXT NOT NULL,\n    bio TEXT\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/accurate_star_expansion/postgresql/stdlib/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: postgresql\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    database:\n      managed: true\n    analyzer:\n      database: \"only\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID uint64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst aliasBar = `-- name: AliasBar :exec\nDELETE FROM bar b\nWHERE b.id = ?\n`\n\nfunc (q *Queries) AliasBar(ctx context.Context, id uint64) error {\n\t_, err := q.db.ExecContext(ctx, aliasBar, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/mysql/query.sql",
    "content": "-- name: AliasBar :exec\nDELETE FROM bar b\nWHERE b.id = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/mysql/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst aliasBar = `-- name: AliasBar :exec\nDELETE FROM bar b\nWHERE b.id = $1\n`\n\nfunc (q *Queries) AliasBar(ctx context.Context, id int32) error {\n\t_, err := q.db.Exec(ctx, aliasBar, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/pgx/v4/query.sql",
    "content": "-- name: AliasBar :exec\nDELETE FROM bar b\nWHERE b.id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst aliasBar = `-- name: AliasBar :exec\nDELETE FROM bar b\nWHERE b.id = $1\n`\n\nfunc (q *Queries) AliasBar(ctx context.Context, id int32) error {\n\t_, err := q.db.Exec(ctx, aliasBar, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/pgx/v5/query.sql",
    "content": "-- name: AliasBar :exec\nDELETE FROM bar b\nWHERE b.id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst aliasBar = `-- name: AliasBar :exec\nDELETE FROM bar b\nWHERE b.id = $1\n`\n\nfunc (q *Queries) AliasBar(ctx context.Context, id int32) error {\n\t_, err := q.db.ExecContext(ctx, aliasBar, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/stdlib/query.sql",
    "content": "-- name: AliasBar :exec\nDELETE FROM bar b\nWHERE b.id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);"
  },
  {
    "path": "internal/endtoend/testdata/alias/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst aliasBar = `-- name: AliasBar :exec\nDELETE FROM bar AS b\nWHERE b.id = ?\n`\n\nfunc (q *Queries) AliasBar(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, aliasBar, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/sqlite/query.sql",
    "content": "-- name: AliasBar :exec\nDELETE FROM bar AS b\nWHERE b.id = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/sqlite/schema.sql",
    "content": "CREATE TABLE bar (id integer NOT NULL PRIMARY KEY AUTOINCREMENT);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/alias/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/any/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/any/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/any/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst any = `-- name: Any :many\nSELECT id\nFROM bar\nWHERE id = ANY($1::bigint[])\n`\n\nfunc (q *Queries) Any(ctx context.Context, dollar_1 []int64) ([]int64, error) {\n\trows, err := q.db.Query(ctx, any, dollar_1)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar id int64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/any/pgx/v4/query.sql",
    "content": "-- name: Any :many\nSELECT id\nFROM bar\nWHERE id = ANY($1::bigint[]);\n"
  },
  {
    "path": "internal/endtoend/testdata/any/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id bigserial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/any/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/any/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/any/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/any/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst any = `-- name: Any :many\nSELECT id\nFROM bar\nWHERE id = ANY($1::bigint[])\n`\n\nfunc (q *Queries) Any(ctx context.Context, dollar_1 []int64) ([]int64, error) {\n\trows, err := q.db.Query(ctx, any, dollar_1)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar id int64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/any/pgx/v5/query.sql",
    "content": "-- name: Any :many\nSELECT id\nFROM bar\nWHERE id = ANY($1::bigint[]);\n"
  },
  {
    "path": "internal/endtoend/testdata/any/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id bigserial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/any/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/any/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/any/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/any/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/lib/pq\"\n)\n\nconst any = `-- name: Any :many\nSELECT id\nFROM bar\nWHERE id = ANY($1::bigint[])\n`\n\nfunc (q *Queries) Any(ctx context.Context, dollar_1 []int64) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, any, pq.Array(dollar_1))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar id int64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/any/stdlib/query.sql",
    "content": "-- name: Any :many\nSELECT id\nFROM bar\nWHERE id = ANY($1::bigint[]);\n"
  },
  {
    "path": "internal/endtoend/testdata/any/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id bigserial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/any/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst in = `-- name: In :many\nSELECT id\nFROM bar\nWHERE id IN ($1, $2)\n`\n\ntype InParams struct {\n\tID   int32\n\tID_2 int32\n}\n\nfunc (q *Queries) In(ctx context.Context, arg InParams) ([]int32, error) {\n\trows, err := q.db.Query(ctx, in, arg.ID, arg.ID_2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/pgx/v4/query.sql",
    "content": "-- name: In :many\nSELECT *\nFROM bar\nWHERE id IN ($1, $2);\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst in = `-- name: In :many\nSELECT id\nFROM bar\nWHERE id IN ($1, $2)\n`\n\ntype InParams struct {\n\tID   int32\n\tID_2 int32\n}\n\nfunc (q *Queries) In(ctx context.Context, arg InParams) ([]int32, error) {\n\trows, err := q.db.Query(ctx, in, arg.ID, arg.ID_2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/pgx/v5/query.sql",
    "content": "-- name: In :many\nSELECT *\nFROM bar\nWHERE id IN ($1, $2);\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst in = `-- name: In :many\nSELECT id\nFROM bar\nWHERE id IN ($1, $2)\n`\n\ntype InParams struct {\n\tID   int32\n\tID_2 int32\n}\n\nfunc (q *Queries) In(ctx context.Context, arg InParams) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, in, arg.ID, arg.ID_2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/stdlib/query.sql",
    "content": "-- name: In :many\nSELECT *\nFROM bar\nWHERE id IN ($1, $2);\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/array_in/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tTags []string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst textArray = `-- name: TextArray :many\nSELECT tags FROM bar\n`\n\nfunc (q *Queries) TextArray(ctx context.Context) ([][]string, error) {\n\trows, err := q.db.Query(ctx, textArray)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items [][]string\n\tfor rows.Next() {\n\t\tvar tags []string\n\t\tif err := rows.Scan(&tags); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, tags)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/pgx/v4/query.sql",
    "content": "-- name: TextArray :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (tags text[] not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tTags []string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst textArray = `-- name: TextArray :many\nSELECT tags FROM bar\n`\n\nfunc (q *Queries) TextArray(ctx context.Context) ([][]string, error) {\n\trows, err := q.db.Query(ctx, textArray)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items [][]string\n\tfor rows.Next() {\n\t\tvar tags []string\n\t\tif err := rows.Scan(&tags); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, tags)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/pgx/v5/query.sql",
    "content": "-- name: TextArray :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (tags text[] not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tTags []string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/lib/pq\"\n)\n\nconst textArray = `-- name: TextArray :many\nSELECT tags FROM bar\n`\n\nfunc (q *Queries) TextArray(ctx context.Context) ([][]string, error) {\n\trows, err := q.db.QueryContext(ctx, textArray)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items [][]string\n\tfor rows.Next() {\n\t\tvar tags []string\n\t\tif err := rows.Scan(pq.Array(&tags)); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, tags)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/stdlib/query.sql",
    "content": "-- name: TextArray :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/stdlib/schema.sql",
    "content": "CREATE TABLE bar (tags text[] not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID   string\n\tInfo []string\n}\n\ntype Foo struct {\n\tID  string\n\tBar string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst joinTextArray = `-- name: JoinTextArray :many\nSELECT bar.info\nFROM foo\nJOIN bar ON foo.bar = bar.id\n`\n\nfunc (q *Queries) JoinTextArray(ctx context.Context) ([][]string, error) {\n\trows, err := q.db.Query(ctx, joinTextArray)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items [][]string\n\tfor rows.Next() {\n\t\tvar info []string\n\t\tif err := rows.Scan(&info); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, info)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/pgx/v4/query.sql",
    "content": "-- name: JoinTextArray :many\nSELECT bar.info\nFROM foo\nJOIN bar ON foo.bar = bar.id;\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (id text not null, bar text not null);\nCREATE TABLE bar (id text not null, info text[] not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID   string\n\tInfo []string\n}\n\ntype Foo struct {\n\tID  string\n\tBar string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst joinTextArray = `-- name: JoinTextArray :many\nSELECT bar.info\nFROM foo\nJOIN bar ON foo.bar = bar.id\n`\n\nfunc (q *Queries) JoinTextArray(ctx context.Context) ([][]string, error) {\n\trows, err := q.db.Query(ctx, joinTextArray)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items [][]string\n\tfor rows.Next() {\n\t\tvar info []string\n\t\tif err := rows.Scan(&info); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, info)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/pgx/v5/query.sql",
    "content": "-- name: JoinTextArray :many\nSELECT bar.info\nFROM foo\nJOIN bar ON foo.bar = bar.id;\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (id text not null, bar text not null);\nCREATE TABLE bar (id text not null, info text[] not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID   string\n\tInfo []string\n}\n\ntype Foo struct {\n\tID  string\n\tBar string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/lib/pq\"\n)\n\nconst joinTextArray = `-- name: JoinTextArray :many\nSELECT bar.info\nFROM foo\nJOIN bar ON foo.bar = bar.id\n`\n\nfunc (q *Queries) JoinTextArray(ctx context.Context) ([][]string, error) {\n\trows, err := q.db.QueryContext(ctx, joinTextArray)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items [][]string\n\tfor rows.Next() {\n\t\tvar info []string\n\t\tif err := rows.Scan(pq.Array(&info)); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, info)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/stdlib/query.sql",
    "content": "-- name: JoinTextArray :many\nSELECT bar.info\nFROM foo\nJOIN bar ON foo.bar = bar.id;\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/stdlib/schema.sql",
    "content": "CREATE TABLE foo (id text not null, bar text not null);\nCREATE TABLE bar (id text not null, info text[] not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/array_text_join/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/bad_config/engine/query.sql",
    "content": "-- name: Test :exec\nSELECT 1;"
  },
  {
    "path": "internal/endtoend/testdata/bad_config/engine/sqlc.yaml",
    "content": "version: 2\nsql:\n- queries: query.sql\n  schema: query.sql\n  engine: \"bad_engine\"\n  gen:\n    go:\n      out: \"db\""
  },
  {
    "path": "internal/endtoend/testdata/bad_config/engine/stderr.txt",
    "content": "error creating compiler: unknown engine: bad_engine"
  },
  {
    "path": "internal/endtoend/testdata/batch/postgresql/pgx/v4/go/batch.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: batch.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"errors\"\n\n\t\"github.com/jackc/pgx/v4\"\n)\n\nvar (\n\tErrBatchAlreadyClosed = errors.New(\"batch already closed\")\n)\n\nconst getValues = `-- name: GetValues :batchmany\nSELECT a, b\nFROM myschema.foo\nWHERE b = $1\n`\n\ntype GetValuesBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\nfunc (q *Queries) GetValues(ctx context.Context, b []sql.NullInt32) *GetValuesBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range b {\n\t\tvals := []interface{}{\n\t\t\ta,\n\t\t}\n\t\tbatch.Queue(getValues, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &GetValuesBatchResults{br, len(b), false}\n}\n\nfunc (b *GetValuesBatchResults) Query(f func(int, []MyschemaFoo, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tvar items []MyschemaFoo\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, items, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\terr := func() error {\n\t\t\trows, err := b.br.Query()\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tdefer rows.Close()\n\t\t\tfor rows.Next() {\n\t\t\t\tvar i MyschemaFoo\n\t\t\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\titems = append(items, i)\n\t\t\t}\n\t\t\treturn rows.Err()\n\t\t}()\n\t\tif f != nil {\n\t\t\tf(t, items, err)\n\t\t}\n\t}\n}\n\nfunc (b *GetValuesBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n\nconst insertValues = `-- name: InsertValues :batchone\nINSERT INTO myschema.foo (a, b)\nVALUES ($1, $2)\nRETURNING a\n`\n\ntype InsertValuesBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\ntype InsertValuesParams struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesParams) *InsertValuesBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range arg {\n\t\tvals := []interface{}{\n\t\t\ta.A,\n\t\t\ta.B,\n\t\t}\n\t\tbatch.Queue(insertValues, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &InsertValuesBatchResults{br, len(arg), false}\n}\n\nfunc (b *InsertValuesBatchResults) QueryRow(f func(int, sql.NullString, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tvar a sql.NullString\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, a, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\trow := b.br.QueryRow()\n\t\terr := row.Scan(&a)\n\t\tif f != nil {\n\t\t\tf(t, a, err)\n\t\t}\n\t}\n}\n\nfunc (b *InsertValuesBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n\nconst updateValues = `-- name: UpdateValues :batchexec\nUPDATE myschema.foo SET a = $1, b = $2\n`\n\ntype UpdateValuesBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\ntype UpdateValuesParams struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n\nfunc (q *Queries) UpdateValues(ctx context.Context, arg []UpdateValuesParams) *UpdateValuesBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range arg {\n\t\tvals := []interface{}{\n\t\t\ta.A,\n\t\t\ta.B,\n\t\t}\n\t\tbatch.Queue(updateValues, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &UpdateValuesBatchResults{br, len(arg), false}\n}\n\nfunc (b *UpdateValuesBatchResults) Exec(f func(int, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\t_, err := b.br.Exec()\n\t\tif f != nil {\n\t\t\tf(t, err)\n\t\t}\n\t}\n}\n\nfunc (b *UpdateValuesBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tSendBatch(context.Context, *pgx.Batch) pgx.BatchResults\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype MyschemaFoo struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/batch/postgresql/pgx/v4/query.sql",
    "content": "-- name: InsertValues :batchone\nINSERT INTO myschema.foo (a, b)\nVALUES ($1, $2)\nRETURNING a;\n\n-- name: GetValues :batchmany\nSELECT *\nFROM myschema.foo\nWHERE b = $1;\n\n-- name: UpdateValues :batchexec\nUPDATE myschema.foo SET a = $1, b = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/batch/postgresql/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA myschema;\nCREATE TABLE myschema.foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/batch/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch/postgresql/pgx/v5/go/batch.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: batch.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"errors\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nvar (\n\tErrBatchAlreadyClosed = errors.New(\"batch already closed\")\n)\n\nconst getValues = `-- name: GetValues :batchmany\nSELECT a, b\nFROM myschema.foo\nWHERE b = $1\n`\n\ntype GetValuesBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\nfunc (q *Queries) GetValues(ctx context.Context, b []pgtype.Int4) *GetValuesBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range b {\n\t\tvals := []interface{}{\n\t\t\ta,\n\t\t}\n\t\tbatch.Queue(getValues, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &GetValuesBatchResults{br, len(b), false}\n}\n\nfunc (b *GetValuesBatchResults) Query(f func(int, []MyschemaFoo, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tvar items []MyschemaFoo\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, items, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\terr := func() error {\n\t\t\trows, err := b.br.Query()\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tdefer rows.Close()\n\t\t\tfor rows.Next() {\n\t\t\t\tvar i MyschemaFoo\n\t\t\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\titems = append(items, i)\n\t\t\t}\n\t\t\treturn rows.Err()\n\t\t}()\n\t\tif f != nil {\n\t\t\tf(t, items, err)\n\t\t}\n\t}\n}\n\nfunc (b *GetValuesBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n\nconst insertValues = `-- name: InsertValues :batchone\nINSERT INTO myschema.foo (a, b)\nVALUES ($1, $2)\nRETURNING a\n`\n\ntype InsertValuesBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\ntype InsertValuesParams struct {\n\tA pgtype.Text\n\tB pgtype.Int4\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesParams) *InsertValuesBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range arg {\n\t\tvals := []interface{}{\n\t\t\ta.A,\n\t\t\ta.B,\n\t\t}\n\t\tbatch.Queue(insertValues, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &InsertValuesBatchResults{br, len(arg), false}\n}\n\nfunc (b *InsertValuesBatchResults) QueryRow(f func(int, pgtype.Text, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tvar a pgtype.Text\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, a, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\trow := b.br.QueryRow()\n\t\terr := row.Scan(&a)\n\t\tif f != nil {\n\t\t\tf(t, a, err)\n\t\t}\n\t}\n}\n\nfunc (b *InsertValuesBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n\nconst updateValues = `-- name: UpdateValues :batchexec\nUPDATE myschema.foo SET a = $1, b = $2\n`\n\ntype UpdateValuesBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\ntype UpdateValuesParams struct {\n\tA pgtype.Text\n\tB pgtype.Int4\n}\n\nfunc (q *Queries) UpdateValues(ctx context.Context, arg []UpdateValuesParams) *UpdateValuesBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range arg {\n\t\tvals := []interface{}{\n\t\t\ta.A,\n\t\t\ta.B,\n\t\t}\n\t\tbatch.Queue(updateValues, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &UpdateValuesBatchResults{br, len(arg), false}\n}\n\nfunc (b *UpdateValuesBatchResults) Exec(f func(int, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\t_, err := b.br.Exec()\n\t\tif f != nil {\n\t\t\tf(t, err)\n\t\t}\n\t}\n}\n\nfunc (b *UpdateValuesBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tSendBatch(context.Context, *pgx.Batch) pgx.BatchResults\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype MyschemaFoo struct {\n\tA pgtype.Text\n\tB pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/batch/postgresql/pgx/v5/query.sql",
    "content": "-- name: InsertValues :batchone\nINSERT INTO myschema.foo (a, b)\nVALUES ($1, $2)\nRETURNING a;\n\n-- name: GetValues :batchmany\nSELECT *\nFROM myschema.foo\nWHERE b = $1;\n\n-- name: UpdateValues :batchexec\nUPDATE myschema.foo SET a = $1, b = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/batch/postgresql/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA myschema;\nCREATE TABLE myschema.foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/batch/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_imports/postgresql/pgx/v4/go/batch.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: batch.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"errors\"\n\n\t\"github.com/jackc/pgx/v4\"\n)\n\nvar (\n\tErrBatchAlreadyClosed = errors.New(\"batch already closed\")\n)\n\nconst getValues = `-- name: GetValues :batchmany\nSELECT a, b\nFROM myschema.foo\nWHERE b = $1\n`\n\ntype GetValuesBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\nfunc (q *Queries) GetValues(ctx context.Context, b []sql.NullInt32) *GetValuesBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range b {\n\t\tvals := []interface{}{\n\t\t\ta,\n\t\t}\n\t\tbatch.Queue(getValues, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &GetValuesBatchResults{br, len(b), false}\n}\n\nfunc (b *GetValuesBatchResults) Query(f func(int, []MyschemaFoo, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tvar items []MyschemaFoo\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, items, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\terr := func() error {\n\t\t\trows, err := b.br.Query()\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tdefer rows.Close()\n\t\t\tfor rows.Next() {\n\t\t\t\tvar i MyschemaFoo\n\t\t\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\titems = append(items, i)\n\t\t\t}\n\t\t\treturn rows.Err()\n\t\t}()\n\t\tif f != nil {\n\t\t\tf(t, items, err)\n\t\t}\n\t}\n}\n\nfunc (b *GetValuesBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n\nconst insertValues = `-- name: InsertValues :batchone\nINSERT INTO myschema.foo (a, b)\nVALUES ($1, $2)\nRETURNING a\n`\n\ntype InsertValuesBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\ntype InsertValuesParams struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesParams) *InsertValuesBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range arg {\n\t\tvals := []interface{}{\n\t\t\ta.A,\n\t\t\ta.B,\n\t\t}\n\t\tbatch.Queue(insertValues, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &InsertValuesBatchResults{br, len(arg), false}\n}\n\nfunc (b *InsertValuesBatchResults) QueryRow(f func(int, sql.NullString, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tvar a sql.NullString\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, a, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\trow := b.br.QueryRow()\n\t\terr := row.Scan(&a)\n\t\tif f != nil {\n\t\t\tf(t, a, err)\n\t\t}\n\t}\n}\n\nfunc (b *InsertValuesBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_imports/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tSendBatch(context.Context, *pgx.Batch) pgx.BatchResults\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_imports/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype MyschemaFoo struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_imports/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst updateValues = `-- name: UpdateValues :exec\nUPDATE myschema.foo SET a = $1, b = $2\n`\n\ntype UpdateValuesParams struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n\nfunc (q *Queries) UpdateValues(ctx context.Context, arg UpdateValuesParams) error {\n\t_, err := q.db.Exec(ctx, updateValues, arg.A, arg.B)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_imports/postgresql/pgx/v4/query.sql",
    "content": "-- name: InsertValues :batchone\nINSERT INTO myschema.foo (a, b)\nVALUES ($1, $2)\nRETURNING a;\n\n-- name: GetValues :batchmany\nSELECT *\nFROM myschema.foo\nWHERE b = $1;\n\n-- name: UpdateValues :exec\nUPDATE myschema.foo SET a = $1, b = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_imports/postgresql/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA myschema;\nCREATE TABLE myschema.foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_imports/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_imports/postgresql/pgx/v5/go/batch.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: batch.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"errors\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nvar (\n\tErrBatchAlreadyClosed = errors.New(\"batch already closed\")\n)\n\nconst getValues = `-- name: GetValues :batchmany\nSELECT a, b\nFROM myschema.foo\nWHERE b = $1\n`\n\ntype GetValuesBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\nfunc (q *Queries) GetValues(ctx context.Context, b []pgtype.Int4) *GetValuesBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range b {\n\t\tvals := []interface{}{\n\t\t\ta,\n\t\t}\n\t\tbatch.Queue(getValues, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &GetValuesBatchResults{br, len(b), false}\n}\n\nfunc (b *GetValuesBatchResults) Query(f func(int, []MyschemaFoo, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tvar items []MyschemaFoo\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, items, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\terr := func() error {\n\t\t\trows, err := b.br.Query()\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tdefer rows.Close()\n\t\t\tfor rows.Next() {\n\t\t\t\tvar i MyschemaFoo\n\t\t\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\titems = append(items, i)\n\t\t\t}\n\t\t\treturn rows.Err()\n\t\t}()\n\t\tif f != nil {\n\t\t\tf(t, items, err)\n\t\t}\n\t}\n}\n\nfunc (b *GetValuesBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n\nconst insertValues = `-- name: InsertValues :batchone\nINSERT INTO myschema.foo (a, b)\nVALUES ($1, $2)\nRETURNING a\n`\n\ntype InsertValuesBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\ntype InsertValuesParams struct {\n\tA pgtype.Text\n\tB pgtype.Int4\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesParams) *InsertValuesBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range arg {\n\t\tvals := []interface{}{\n\t\t\ta.A,\n\t\t\ta.B,\n\t\t}\n\t\tbatch.Queue(insertValues, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &InsertValuesBatchResults{br, len(arg), false}\n}\n\nfunc (b *InsertValuesBatchResults) QueryRow(f func(int, pgtype.Text, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tvar a pgtype.Text\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, a, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\trow := b.br.QueryRow()\n\t\terr := row.Scan(&a)\n\t\tif f != nil {\n\t\t\tf(t, a, err)\n\t\t}\n\t}\n}\n\nfunc (b *InsertValuesBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_imports/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tSendBatch(context.Context, *pgx.Batch) pgx.BatchResults\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_imports/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype MyschemaFoo struct {\n\tA pgtype.Text\n\tB pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_imports/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst updateValues = `-- name: UpdateValues :exec\nUPDATE myschema.foo SET a = $1, b = $2\n`\n\ntype UpdateValuesParams struct {\n\tA pgtype.Text\n\tB pgtype.Int4\n}\n\nfunc (q *Queries) UpdateValues(ctx context.Context, arg UpdateValuesParams) error {\n\t_, err := q.db.Exec(ctx, updateValues, arg.A, arg.B)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_imports/postgresql/pgx/v5/query.sql",
    "content": "-- name: InsertValues :batchone\nINSERT INTO myschema.foo (a, b)\nVALUES ($1, $2)\nRETURNING a;\n\n-- name: GetValues :batchmany\nSELECT *\nFROM myschema.foo\nWHERE b = $1;\n\n-- name: UpdateValues :exec\nUPDATE myschema.foo SET a = $1, b = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_imports/postgresql/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA myschema;\nCREATE TABLE myschema.foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_imports/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_limit/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/3185\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_limit/postgresql/pgx/go/batch.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: batch.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"errors\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nvar (\n\tErrBatchAlreadyClosed = errors.New(\"batch already closed\")\n)\n\nconst createAuthors = `-- name: CreateAuthors :batchexec\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  $1, $2\n)\n`\n\ntype CreateAuthorsBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\ntype CreateAuthorsParams struct {\n\tName string\n\tBio  pgtype.Text\n}\n\nfunc (q *Queries) CreateAuthors(ctx context.Context, arg []CreateAuthorsParams) *CreateAuthorsBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range arg {\n\t\tvals := []interface{}{\n\t\t\ta.Name,\n\t\t\ta.Bio,\n\t\t}\n\t\tbatch.Queue(createAuthors, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &CreateAuthorsBatchResults{br, len(arg), false}\n}\n\nfunc (b *CreateAuthorsBatchResults) Exec(f func(int, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\t_, err := b.br.Exec()\n\t\tif f != nil {\n\t\t\tf(t, err)\n\t\t}\n\t}\n}\n\nfunc (b *CreateAuthorsBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_limit/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tSendBatch(context.Context, *pgx.Batch) pgx.BatchResults\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_limit/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_limit/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_limit/postgresql/pgx/query.sql",
    "content": "-- name: CreateAuthors :batchexec\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  $1, $2\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_limit/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_limit/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n        query_parameter_limit: 2\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_type/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/2152\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_type/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_type/postgresql/pgx/go/batch.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: batch.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"errors\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nvar (\n\tErrBatchAlreadyClosed = errors.New(\"batch already closed\")\n)\n\nconst insertMappping = `-- name: InsertMappping :batchexec\nWITH\n    table1\n        AS (\n            SELECT\n                version\n            FROM\n                solar_commcard_mapping\n            WHERE\n                \"deviceId\" = $1\n            ORDER BY\n                \"updatedAt\" DESC\n            LIMIT\n                1\n        )\nINSERT\nINTO\n    solar_commcard_mapping\n        (\"deviceId\", version, sn, \"updatedAt\")\nSELECT\n    $1, $2::text, $3, $4\nWHERE\n    NOT\n        EXISTS(\n            SELECT\n                version\n            FROM\n                table1\n            WHERE\n                table1.version = $2::text\n        )\n    OR NOT EXISTS(SELECT version FROM table1)\n`\n\ntype InsertMapppingBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\ntype InsertMapppingParams struct {\n\tDeviceId  int64\n\tVersion   string\n\tSn        string\n\tUpdatedAt pgtype.Timestamptz\n}\n\nfunc (q *Queries) InsertMappping(ctx context.Context, arg []InsertMapppingParams) *InsertMapppingBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range arg {\n\t\tvals := []interface{}{\n\t\t\ta.DeviceId,\n\t\t\ta.Version,\n\t\t\ta.Sn,\n\t\t\ta.UpdatedAt,\n\t\t}\n\t\tbatch.Queue(insertMappping, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &InsertMapppingBatchResults{br, len(arg), false}\n}\n\nfunc (b *InsertMapppingBatchResults) Exec(f func(int, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\t_, err := b.br.Exec()\n\t\tif f != nil {\n\t\t\tf(t, err)\n\t\t}\n\t}\n}\n\nfunc (b *InsertMapppingBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_type/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tSendBatch(context.Context, *pgx.Batch) pgx.BatchResults\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_type/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype SolarCommcardMapping struct {\n\tID        int64\n\tDeviceId  int64\n\tVersion   string\n\tSn        string\n\tCreatedAt pgtype.Timestamptz\n\tUpdatedAt pgtype.Timestamptz\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_type/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_type/postgresql/pgx/query.sql",
    "content": "-- name: InsertMappping :batchexec\nWITH\n    table1\n        AS (\n            SELECT\n                version\n            FROM\n                solar_commcard_mapping\n            WHERE\n                \"deviceId\" = $1\n            ORDER BY\n                \"updatedAt\" DESC\n            LIMIT\n                1\n        )\nINSERT\nINTO\n    solar_commcard_mapping\n        (\"deviceId\", version, sn, \"updatedAt\")\nSELECT\n    $1, @version::text, $3, $4\nWHERE\n    NOT\n        EXISTS(\n            SELECT\n                *\n            FROM\n                table1\n            WHERE\n                table1.version = @version::text\n        )\n    OR NOT EXISTS(SELECT * FROM table1);\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_type/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE public.solar_commcard_mapping (\n    id\n        INT8 NOT NULL,\n    \"deviceId\"\n        INT8 NOT NULL,\n    version\n        VARCHAR(32) DEFAULT ''::VARCHAR NOT NULL,\n    sn\n        VARCHAR(32) DEFAULT ''::VARCHAR NOT NULL,\n    \"createdAt\"\n        TIMESTAMPTZ DEFAULT now(),\n    \"updatedAt\"\n        TIMESTAMPTZ DEFAULT now()\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/batch_parameter_type/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/between_args/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/between_args/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Product struct {\n\tID    int64\n\tName  string\n\tPrice int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/between_args/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getBetweenPrices = `-- name: GetBetweenPrices :many\nSELECT  id, name, price\nFROM    products\nWHERE   price BETWEEN ? AND ?\n`\n\ntype GetBetweenPricesParams struct {\n\tFromPrice int32\n\tToPrice   int32\n}\n\nfunc (q *Queries) GetBetweenPrices(ctx context.Context, arg GetBetweenPricesParams) ([]Product, error) {\n\trows, err := q.db.QueryContext(ctx, getBetweenPrices, arg.FromPrice, arg.ToPrice)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Product\n\tfor rows.Next() {\n\t\tvar i Product\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Price); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getBetweenPricesNamed = `-- name: GetBetweenPricesNamed :many\nSELECT  id, name, price\nFROM    products\nWHERE   price BETWEEN ? AND ?\n`\n\ntype GetBetweenPricesNamedParams struct {\n\tMinPrice int32\n\tMaxPrice int32\n}\n\nfunc (q *Queries) GetBetweenPricesNamed(ctx context.Context, arg GetBetweenPricesNamedParams) ([]Product, error) {\n\trows, err := q.db.QueryContext(ctx, getBetweenPricesNamed, arg.MinPrice, arg.MaxPrice)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Product\n\tfor rows.Next() {\n\t\tvar i Product\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Price); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getBetweenPricesTable = `-- name: GetBetweenPricesTable :many\nSELECT  id, name, price\nFROM    products\nWHERE   products.price BETWEEN ? AND ?\n`\n\ntype GetBetweenPricesTableParams struct {\n\tFromPrice int32\n\tToPrice   int32\n}\n\nfunc (q *Queries) GetBetweenPricesTable(ctx context.Context, arg GetBetweenPricesTableParams) ([]Product, error) {\n\trows, err := q.db.QueryContext(ctx, getBetweenPricesTable, arg.FromPrice, arg.ToPrice)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Product\n\tfor rows.Next() {\n\t\tvar i Product\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Price); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getBetweenPricesTableAlias = `-- name: GetBetweenPricesTableAlias :many\nSELECT  id, name, price\nFROM    products as p\nWHERE   p.price BETWEEN ? AND ?\n`\n\ntype GetBetweenPricesTableAliasParams struct {\n\tFromPrice int32\n\tToPrice   int32\n}\n\nfunc (q *Queries) GetBetweenPricesTableAlias(ctx context.Context, arg GetBetweenPricesTableAliasParams) ([]Product, error) {\n\trows, err := q.db.QueryContext(ctx, getBetweenPricesTableAlias, arg.FromPrice, arg.ToPrice)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Product\n\tfor rows.Next() {\n\t\tvar i Product\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Price); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/between_args/mysql/query.sql",
    "content": "-- name: GetBetweenPrices :many\nSELECT  *\nFROM    products\nWHERE   price BETWEEN ? AND ?;\n\n-- name: GetBetweenPricesTable :many\nSELECT  *\nFROM    products\nWHERE   products.price BETWEEN ? AND ?;\n\n-- name: GetBetweenPricesTableAlias :many\nSELECT  *\nFROM    products as p\nWHERE   p.price BETWEEN ? AND ?;\n\n-- name: GetBetweenPricesNamed :many\nSELECT  *\nFROM    products\nWHERE   price BETWEEN sqlc.arg(min_price) AND sqlc.arg(max_price);\n"
  },
  {
    "path": "internal/endtoend/testdata/between_args/mysql/schema.sql",
    "content": "CREATE TABLE products (\n    id          BIGINT  NOT NULL AUTO_INCREMENT,\n    name        TEXT    NOT NULL,\n    price       INT     NOT NULL,\n    PRIMARY KEY (id)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/between_args/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t  \t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/between_args/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/between_args/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Product struct {\n\tName  string\n\tPrice int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/between_args/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getBetweenPrices = `-- name: GetBetweenPrices :many\nSELECT  name, price\nFROM    products\nWHERE   price BETWEEN ? AND ?\n`\n\ntype GetBetweenPricesParams struct {\n\tFromPrice int64\n\tToPrice   int64\n}\n\nfunc (q *Queries) GetBetweenPrices(ctx context.Context, arg GetBetweenPricesParams) ([]Product, error) {\n\trows, err := q.db.QueryContext(ctx, getBetweenPrices, arg.FromPrice, arg.ToPrice)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Product\n\tfor rows.Next() {\n\t\tvar i Product\n\t\tif err := rows.Scan(&i.Name, &i.Price); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getBetweenPricesTable = `-- name: GetBetweenPricesTable :many\nSELECT  name, price\nFROM    products\nWHERE   products.price BETWEEN ? AND ?\n`\n\ntype GetBetweenPricesTableParams struct {\n\tFromPrice int64\n\tToPrice   int64\n}\n\nfunc (q *Queries) GetBetweenPricesTable(ctx context.Context, arg GetBetweenPricesTableParams) ([]Product, error) {\n\trows, err := q.db.QueryContext(ctx, getBetweenPricesTable, arg.FromPrice, arg.ToPrice)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Product\n\tfor rows.Next() {\n\t\tvar i Product\n\t\tif err := rows.Scan(&i.Name, &i.Price); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getBetweenPricesTableAlias = `-- name: GetBetweenPricesTableAlias :many\nSELECT  name, price\nFROM    products as p\nWHERE   p.price BETWEEN ? AND ?\n`\n\ntype GetBetweenPricesTableAliasParams struct {\n\tFromPrice int64\n\tToPrice   int64\n}\n\nfunc (q *Queries) GetBetweenPricesTableAlias(ctx context.Context, arg GetBetweenPricesTableAliasParams) ([]Product, error) {\n\trows, err := q.db.QueryContext(ctx, getBetweenPricesTableAlias, arg.FromPrice, arg.ToPrice)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Product\n\tfor rows.Next() {\n\t\tvar i Product\n\t\tif err := rows.Scan(&i.Name, &i.Price); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/between_args/sqlite/query.sql",
    "content": "-- name: GetBetweenPrices :many\nSELECT  *\nFROM    products\nWHERE   price BETWEEN ? AND ?;\n\n-- name: GetBetweenPricesTable :many\nSELECT  *\nFROM    products\nWHERE   products.price BETWEEN ? AND ?;\n\n-- name: GetBetweenPricesTableAlias :many\nSELECT  *\nFROM    products as p\nWHERE   p.price BETWEEN ? AND ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/between_args/sqlite/schema.sql",
    "content": "CREATE TABLE products (\n    name        TEXT    NOT NULL,\n    price       INT     NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/between_args/sqlite/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"sqlite\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t  \t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/bit_string/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/bit_string/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgtype\"\n)\n\ntype TestTable struct {\n\tVBitNull    pgtype.Varbit\n\tVVarbitNull pgtype.Varbit\n\tVBit        pgtype.Varbit\n\tVVarbit     pgtype.Varbit\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/bit_string/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectTest = `-- name: SelectTest :many\nSELECT v_bit_null, v_varbit_null, v_bit, v_varbit\nfrom test_table\n`\n\nfunc (q *Queries) SelectTest(ctx context.Context) ([]TestTable, error) {\n\trows, err := q.db.Query(ctx, selectTest)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []TestTable\n\tfor rows.Next() {\n\t\tvar i TestTable\n\t\tif err := rows.Scan(\n\t\t\t&i.VBitNull,\n\t\t\t&i.VVarbitNull,\n\t\t\t&i.VBit,\n\t\t\t&i.VVarbit,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/bit_string/pgx/v4/query.sql",
    "content": "-- name: SelectTest :many\nSELECT *\nfrom test_table;\n"
  },
  {
    "path": "internal/endtoend/testdata/bit_string/pgx/v4/schema.sql",
    "content": "CREATE TABLE test_table\n(\n    v_bit_null     bit(3),\n    v_varbit_null  bit varying(3),\n    v_bit          bit(3)             not null,\n    v_varbit       bit varying(3)     not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/bit_string/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/bit_string/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/bit_string/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype TestTable struct {\n\tVBitNull    pgtype.Bits\n\tVVarbitNull pgtype.Bits\n\tVBit        pgtype.Bits\n\tVVarbit     pgtype.Bits\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/bit_string/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectTest = `-- name: SelectTest :many\nSELECT v_bit_null, v_varbit_null, v_bit, v_varbit\nfrom test_table\n`\n\nfunc (q *Queries) SelectTest(ctx context.Context) ([]TestTable, error) {\n\trows, err := q.db.Query(ctx, selectTest)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []TestTable\n\tfor rows.Next() {\n\t\tvar i TestTable\n\t\tif err := rows.Scan(\n\t\t\t&i.VBitNull,\n\t\t\t&i.VVarbitNull,\n\t\t\t&i.VBit,\n\t\t\t&i.VVarbit,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/bit_string/pgx/v5/query.sql",
    "content": "-- name: SelectTest :many\nSELECT *\nfrom test_table;\n"
  },
  {
    "path": "internal/endtoend/testdata/bit_string/pgx/v5/schema.sql",
    "content": "CREATE TABLE test_table\n(\n    v_bit_null     bit(3),\n    v_varbit_null  bit varying(3),\n    v_bit          bit(3)             not null,\n    v_varbit       bit varying(3)     not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/bit_string/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/build_tags/postgresql/stdlib/go/db.go",
    "content": "//go:build some_tag\n\n// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/build_tags/postgresql/stdlib/go/models.go",
    "content": "//go:build some_tag\n\n// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/build_tags/postgresql/stdlib/go/querier.go",
    "content": "//go:build some_tag\n\n// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tCreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error)\n\tDeleteAuthor(ctx context.Context, id int64) error\n\tGetAuthor(ctx context.Context, id int64) (Author, error)\n\tListAuthors(ctx context.Context) ([]Author, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/build_tags/postgresql/stdlib/go/query.sql.go",
    "content": "//go:build some_tag\n\n// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING id, name, bio\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, createAuthor, arg.Name, arg.Bio)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst deleteAuthor = `-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthor, id)\n\treturn err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio FROM authors\nORDER BY name\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/build_tags/postgresql/stdlib/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/build_tags/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/build_tags/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"authors\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"omit_unused_structs\": true,\n      \"emit_interface\": true,\n      \"build_tags\": \"some_tag\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/postgresql/exec.json",
    "content": "{\n    \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst abs = `-- name: Abs :one\nSELECT abs(-17.4)\n`\n\nfunc (q *Queries) Abs(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, abs)\n\tvar abs int64\n\terr := row.Scan(&abs)\n\treturn abs, err\n}\n\nconst cbrt = `-- name: Cbrt :one\nSELECT cbrt(27.0)\n`\n\nfunc (q *Queries) Cbrt(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, cbrt)\n\tvar cbrt float64\n\terr := row.Scan(&cbrt)\n\treturn cbrt, err\n}\n\nconst ceil = `-- name: Ceil :one\nSELECT ceil(-42.8)\n`\n\nfunc (q *Queries) Ceil(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, ceil)\n\tvar ceil float64\n\terr := row.Scan(&ceil)\n\treturn ceil, err\n}\n\nconst ceiling = `-- name: Ceiling :one\nSELECT ceiling(-95.3)\n`\n\nfunc (q *Queries) Ceiling(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, ceiling)\n\tvar ceiling float64\n\terr := row.Scan(&ceiling)\n\treturn ceiling, err\n}\n\nconst degrees = `-- name: Degrees :one\nSELECT degrees(0.5)\n`\n\nfunc (q *Queries) Degrees(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, degrees)\n\tvar degrees float64\n\terr := row.Scan(&degrees)\n\treturn degrees, err\n}\n\nconst div = `-- name: Div :one\nSELECT div(9,4)\n`\n\nfunc (q *Queries) Div(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, div)\n\tvar div string\n\terr := row.Scan(&div)\n\treturn div, err\n}\n\nconst exp = `-- name: Exp :one\nSELECT exp(1.0)\n`\n\nfunc (q *Queries) Exp(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, exp)\n\tvar exp float64\n\terr := row.Scan(&exp)\n\treturn exp, err\n}\n\nconst floor = `-- name: Floor :one\nSELECT floor(-42.8)\n`\n\nfunc (q *Queries) Floor(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, floor)\n\tvar floor float64\n\terr := row.Scan(&floor)\n\treturn floor, err\n}\n\nconst ln = `-- name: Ln :one\nSELECT ln(2.0)\n`\n\nfunc (q *Queries) Ln(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, ln)\n\tvar ln float64\n\terr := row.Scan(&ln)\n\treturn ln, err\n}\n\nconst log = `-- name: Log :one\nSELECT log(100.0)\n`\n\nfunc (q *Queries) Log(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, log)\n\tvar log float64\n\terr := row.Scan(&log)\n\treturn log, err\n}\n\nconst logs = `-- name: Logs :one\nSELECT log(2.0, 64.0)\n`\n\nfunc (q *Queries) Logs(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, logs)\n\tvar log string\n\terr := row.Scan(&log)\n\treturn log, err\n}\n\nconst mod = `-- name: Mod :one\nSELECT mod(9,4)\n`\n\nfunc (q *Queries) Mod(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, mod)\n\tvar mod int64\n\terr := row.Scan(&mod)\n\treturn mod, err\n}\n\nconst pi = `-- name: Pi :one\nSELECT pi()\n`\n\nfunc (q *Queries) Pi(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, pi)\n\tvar pi float64\n\terr := row.Scan(&pi)\n\treturn pi, err\n}\n\nconst power = `-- name: Power :one\nSELECT power(9.0, 3.0)\n`\n\nfunc (q *Queries) Power(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, power)\n\tvar power float64\n\terr := row.Scan(&power)\n\treturn power, err\n}\n\nconst radians = `-- name: Radians :one\nSELECT radians(45.0)\n`\n\nfunc (q *Queries) Radians(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, radians)\n\tvar radians float64\n\terr := row.Scan(&radians)\n\treturn radians, err\n}\n\nconst round = `-- name: Round :one\nSELECT round(42.4)\n`\n\nfunc (q *Queries) Round(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, round)\n\tvar round float64\n\terr := row.Scan(&round)\n\treturn round, err\n}\n\nconst rounds = `-- name: Rounds :one\nSELECT round(42.4382, 2)\n`\n\nfunc (q *Queries) Rounds(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, rounds)\n\tvar round string\n\terr := row.Scan(&round)\n\treturn round, err\n}\n\nconst scale = `-- name: Scale :one\nSELECT scale(8.41)\n`\n\nfunc (q *Queries) Scale(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, scale)\n\tvar scale int32\n\terr := row.Scan(&scale)\n\treturn scale, err\n}\n\nconst sign = `-- name: Sign :one\nSELECT sign(-8.4)\n`\n\nfunc (q *Queries) Sign(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, sign)\n\tvar sign float64\n\terr := row.Scan(&sign)\n\treturn sign, err\n}\n\nconst sqrt = `-- name: Sqrt :one\nSELECT sqrt(2.0)\n`\n\nfunc (q *Queries) Sqrt(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, sqrt)\n\tvar sqrt float64\n\terr := row.Scan(&sqrt)\n\treturn sqrt, err\n}\n\nconst trunc = `-- name: Trunc :one\nSELECT trunc(42.8)\n`\n\nfunc (q *Queries) Trunc(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, trunc)\n\tvar trunc float64\n\terr := row.Scan(&trunc)\n\treturn trunc, err\n}\n\nconst truncs = `-- name: Truncs :one\nSELECT trunc(42.4382, 2)\n`\n\nfunc (q *Queries) Truncs(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, truncs)\n\tvar trunc string\n\terr := row.Scan(&trunc)\n\treturn trunc, err\n}\n\nconst widthBucketNumerics = `-- name: WidthBucketNumerics :one\nSELECT width_bucket(5.35, 0.024, 10.06, 5)\n`\n\nfunc (q *Queries) WidthBucketNumerics(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, widthBucketNumerics)\n\tvar width_bucket int32\n\terr := row.Scan(&width_bucket)\n\treturn width_bucket, err\n}\n\nconst widthBucketTimestamps = `-- name: WidthBucketTimestamps :one\nSELECT width_bucket(now(), array['yesterday', 'today', 'tomorrow']::timestamptz[])\n`\n\nfunc (q *Queries) WidthBucketTimestamps(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, widthBucketTimestamps)\n\tvar width_bucket int32\n\terr := row.Scan(&width_bucket)\n\treturn width_bucket, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/postgresql/query.sql",
    "content": "-- name: Abs :one\nSELECT abs(-17.4);\n-- name: Cbrt :one\nSELECT cbrt(27.0);\n-- name: Ceil :one\nSELECT ceil(-42.8);\n-- name: Ceiling :one\nSELECT ceiling(-95.3);\n-- name: Degrees :one\nSELECT degrees(0.5);\n-- name: Div :one\nSELECT div(9,4);\n-- name: Exp :one\nSELECT exp(1.0);\n-- name: Floor :one\nSELECT floor(-42.8);\n-- name: Ln :one\nSELECT ln(2.0);\n-- name: Log :one\nSELECT log(100.0);\n-- name: Logs :one\nSELECT log(2.0, 64.0);\n-- name: Mod :one\nSELECT mod(9,4);\n-- name: Pi :one\nSELECT pi();\n-- name: Power :one\nSELECT power(9.0, 3.0);\n-- name: Radians :one\nSELECT radians(45.0);\n-- name: Round :one\nSELECT round(42.4);\n-- name: Rounds :one\nSELECT round(42.4382, 2);\n-- name: Scale :one\nSELECT scale(8.41);\n-- name: Sign :one\nSELECT sign(-8.4);\n-- name: Sqrt :one\nSELECT sqrt(2.0);\n-- name: Trunc :one\nSELECT trunc(42.8);\n-- name: Truncs :one\nSELECT trunc(42.4382, 2);\n-- name: WidthBucketNumerics :one\nSELECT width_bucket(5.35, 0.024, 10.06, 5);\n-- name: WidthBucketTimestamps :one\nSELECT width_bucket(now(), array['yesterday', 'today', 'tomorrow']::timestamptz[]);\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/postgresql/schema.sql",
    "content": "create schema if not exists sqlc;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/sqlite/go/aggfunc.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: aggfunc.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getAvg = `-- name: GetAvg :one\nSELECT avg(int_val) FROM test\n`\n\nfunc (q *Queries) GetAvg(ctx context.Context) (sql.NullFloat64, error) {\n\trow := q.db.QueryRowContext(ctx, getAvg)\n\tvar avg sql.NullFloat64\n\terr := row.Scan(&avg)\n\treturn avg, err\n}\n\nconst getCount = `-- name: GetCount :one\nSELECT count(*) FROM test\n`\n\nfunc (q *Queries) GetCount(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getCount)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n\nconst getCountId = `-- name: GetCountId :one\nSELECT count(id) FROM test\n`\n\nfunc (q *Queries) GetCountId(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getCountId)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n\nconst getGroupConcatInt = `-- name: GetGroupConcatInt :one\nSELECT group_concat(int_val) FROM test\n`\n\nfunc (q *Queries) GetGroupConcatInt(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getGroupConcatInt)\n\tvar group_concat string\n\terr := row.Scan(&group_concat)\n\treturn group_concat, err\n}\n\nconst getGroupConcatInt2 = `-- name: GetGroupConcatInt2 :one\nSELECT group_concat(1, ':') FROM test\n`\n\nfunc (q *Queries) GetGroupConcatInt2(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getGroupConcatInt2)\n\tvar group_concat string\n\terr := row.Scan(&group_concat)\n\treturn group_concat, err\n}\n\nconst getGroupConcatText = `-- name: GetGroupConcatText :one\nSELECT group_concat(text_val) FROM test\n`\n\nfunc (q *Queries) GetGroupConcatText(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getGroupConcatText)\n\tvar group_concat string\n\terr := row.Scan(&group_concat)\n\treturn group_concat, err\n}\n\nconst getGroupConcatText2 = `-- name: GetGroupConcatText2 :one\nSELECT group_concat(text_val, ':') FROM test\n`\n\nfunc (q *Queries) GetGroupConcatText2(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getGroupConcatText2)\n\tvar group_concat string\n\terr := row.Scan(&group_concat)\n\treturn group_concat, err\n}\n\nconst getMaxInt = `-- name: GetMaxInt :one\nSELECT max(int_val) FROM test\n`\n\nfunc (q *Queries) GetMaxInt(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, getMaxInt)\n\tvar max interface{}\n\terr := row.Scan(&max)\n\treturn max, err\n}\n\nconst getMaxText = `-- name: GetMaxText :one\nSELECT max(text_val) FROM test\n`\n\nfunc (q *Queries) GetMaxText(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, getMaxText)\n\tvar max interface{}\n\terr := row.Scan(&max)\n\treturn max, err\n}\n\nconst getMinInt = `-- name: GetMinInt :one\nSELECT min(int_val) FROM test\n`\n\nfunc (q *Queries) GetMinInt(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, getMinInt)\n\tvar min interface{}\n\terr := row.Scan(&min)\n\treturn min, err\n}\n\nconst getMinText = `-- name: GetMinText :one\nSELECT min(text_val) FROM test\n`\n\nfunc (q *Queries) GetMinText(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, getMinText)\n\tvar min interface{}\n\terr := row.Scan(&min)\n\treturn min, err\n}\n\nconst getSumInt = `-- name: GetSumInt :one\nSELECT sum(int_val) FROM test\n`\n\nfunc (q *Queries) GetSumInt(ctx context.Context) (sql.NullFloat64, error) {\n\trow := q.db.QueryRowContext(ctx, getSumInt)\n\tvar sum sql.NullFloat64\n\terr := row.Scan(&sum)\n\treturn sum, err\n}\n\nconst getSumText = `-- name: GetSumText :one\nSELECT sum(text_val) FROM test\n`\n\nfunc (q *Queries) GetSumText(ctx context.Context) (sql.NullFloat64, error) {\n\trow := q.db.QueryRowContext(ctx, getSumText)\n\tvar sum sql.NullFloat64\n\terr := row.Scan(&sum)\n\treturn sum, err\n}\n\nconst getTotalInt = `-- name: GetTotalInt :one\nSELECT total(int_val) FROM test\n`\n\nfunc (q *Queries) GetTotalInt(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getTotalInt)\n\tvar total float64\n\terr := row.Scan(&total)\n\treturn total, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/sqlite/go/mathfunc.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: mathfunc.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAcos = `-- name: GetAcos :one\nselect acos(1.0)\n`\n\nfunc (q *Queries) GetAcos(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getAcos)\n\tvar acos float64\n\terr := row.Scan(&acos)\n\treturn acos, err\n}\n\nconst getAcosh = `-- name: GetAcosh :one\nselect acosh(1.0)\n`\n\nfunc (q *Queries) GetAcosh(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getAcosh)\n\tvar acosh float64\n\terr := row.Scan(&acosh)\n\treturn acosh, err\n}\n\nconst getAsin = `-- name: GetAsin :one\nselect asin(1.0)\n`\n\nfunc (q *Queries) GetAsin(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getAsin)\n\tvar asin float64\n\terr := row.Scan(&asin)\n\treturn asin, err\n}\n\nconst getAsinh = `-- name: GetAsinh :one\nselect asinh(1.0)\n`\n\nfunc (q *Queries) GetAsinh(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getAsinh)\n\tvar asinh float64\n\terr := row.Scan(&asinh)\n\treturn asinh, err\n}\n\nconst getAtan = `-- name: GetAtan :one\nselect atan(1.0)\n`\n\nfunc (q *Queries) GetAtan(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getAtan)\n\tvar atan float64\n\terr := row.Scan(&atan)\n\treturn atan, err\n}\n\nconst getAtan2 = `-- name: GetAtan2 :one\nselect atan2(1.0, 0.5)\n`\n\nfunc (q *Queries) GetAtan2(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getAtan2)\n\tvar atan2 float64\n\terr := row.Scan(&atan2)\n\treturn atan2, err\n}\n\nconst getAtanh = `-- name: GetAtanh :one\nselect atanh(1.0)\n`\n\nfunc (q *Queries) GetAtanh(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getAtanh)\n\tvar atanh float64\n\terr := row.Scan(&atanh)\n\treturn atanh, err\n}\n\nconst getCeil = `-- name: GetCeil :one\nselect ceil(1.0)\n`\n\nfunc (q *Queries) GetCeil(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getCeil)\n\tvar ceil int64\n\terr := row.Scan(&ceil)\n\treturn ceil, err\n}\n\nconst getCeilin = `-- name: GetCeilin :one\nselect ceiling(1.0)\n`\n\nfunc (q *Queries) GetCeilin(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getCeilin)\n\tvar ceiling int64\n\terr := row.Scan(&ceiling)\n\treturn ceiling, err\n}\n\nconst getCos = `-- name: GetCos :one\nselect cos(1.0)\n`\n\nfunc (q *Queries) GetCos(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getCos)\n\tvar cos float64\n\terr := row.Scan(&cos)\n\treturn cos, err\n}\n\nconst getCosh = `-- name: GetCosh :one\nselect cosh(1.0)\n`\n\nfunc (q *Queries) GetCosh(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getCosh)\n\tvar cosh float64\n\terr := row.Scan(&cosh)\n\treturn cosh, err\n}\n\nconst getDegrees = `-- name: GetDegrees :one\nselect degrees(1.0)\n`\n\nfunc (q *Queries) GetDegrees(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getDegrees)\n\tvar degrees float64\n\terr := row.Scan(&degrees)\n\treturn degrees, err\n}\n\nconst getExp = `-- name: GetExp :one\nselect exp(1.0)\n`\n\nfunc (q *Queries) GetExp(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getExp)\n\tvar exp float64\n\terr := row.Scan(&exp)\n\treturn exp, err\n}\n\nconst getFloor = `-- name: GetFloor :one\nselect floor(1.0)\n`\n\nfunc (q *Queries) GetFloor(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getFloor)\n\tvar floor int64\n\terr := row.Scan(&floor)\n\treturn floor, err\n}\n\nconst getLn = `-- name: GetLn :one\nselect ln(1.0)\n`\n\nfunc (q *Queries) GetLn(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getLn)\n\tvar ln float64\n\terr := row.Scan(&ln)\n\treturn ln, err\n}\n\nconst getLog = `-- name: GetLog :one\nselect log(1.0)\n`\n\nfunc (q *Queries) GetLog(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getLog)\n\tvar log float64\n\terr := row.Scan(&log)\n\treturn log, err\n}\n\nconst getLog10 = `-- name: GetLog10 :one\nselect log10(1.0)\n`\n\nfunc (q *Queries) GetLog10(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getLog10)\n\tvar log10 float64\n\terr := row.Scan(&log10)\n\treturn log10, err\n}\n\nconst getLog2 = `-- name: GetLog2 :one\nselect log2(1.0)\n`\n\nfunc (q *Queries) GetLog2(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getLog2)\n\tvar log2 float64\n\terr := row.Scan(&log2)\n\treturn log2, err\n}\n\nconst getLogBase = `-- name: GetLogBase :one\nselect log(1.0, 2.0)\n`\n\nfunc (q *Queries) GetLogBase(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getLogBase)\n\tvar log float64\n\terr := row.Scan(&log)\n\treturn log, err\n}\n\nconst getMod = `-- name: GetMod :one\nselect mod(1, 2)\n`\n\nfunc (q *Queries) GetMod(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getMod)\n\tvar mod float64\n\terr := row.Scan(&mod)\n\treturn mod, err\n}\n\nconst getPi = `-- name: GetPi :one\nselect pi()\n`\n\nfunc (q *Queries) GetPi(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getPi)\n\tvar pi float64\n\terr := row.Scan(&pi)\n\treturn pi, err\n}\n\nconst getPow = `-- name: GetPow :one\nselect pow(1, 2)\n`\n\nfunc (q *Queries) GetPow(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getPow)\n\tvar pow float64\n\terr := row.Scan(&pow)\n\treturn pow, err\n}\n\nconst getPower = `-- name: GetPower :one\nselect power(1, 2)\n`\n\nfunc (q *Queries) GetPower(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getPower)\n\tvar power float64\n\terr := row.Scan(&power)\n\treturn power, err\n}\n\nconst getRadians = `-- name: GetRadians :one\nselect radians(1)\n`\n\nfunc (q *Queries) GetRadians(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getRadians)\n\tvar radians float64\n\terr := row.Scan(&radians)\n\treturn radians, err\n}\n\nconst getSin = `-- name: GetSin :one\nselect sin(1.0)\n`\n\nfunc (q *Queries) GetSin(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getSin)\n\tvar sin float64\n\terr := row.Scan(&sin)\n\treturn sin, err\n}\n\nconst getSinh = `-- name: GetSinh :one\nselect sinh(1.0)\n`\n\nfunc (q *Queries) GetSinh(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getSinh)\n\tvar sinh float64\n\terr := row.Scan(&sinh)\n\treturn sinh, err\n}\n\nconst getSqrt = `-- name: GetSqrt :one\nselect sqrt(1.0)\n`\n\nfunc (q *Queries) GetSqrt(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getSqrt)\n\tvar sqrt float64\n\terr := row.Scan(&sqrt)\n\treturn sqrt, err\n}\n\nconst getTan = `-- name: GetTan :one\nselect tan(1.0)\n`\n\nfunc (q *Queries) GetTan(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getTan)\n\tvar tan float64\n\terr := row.Scan(&tan)\n\treturn tan, err\n}\n\nconst getTrunc = `-- name: GetTrunc :one\nselect trunc(1.0)\n`\n\nfunc (q *Queries) GetTrunc(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getTrunc)\n\tvar trunc int64\n\terr := row.Scan(&trunc)\n\treturn trunc, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Test struct {\n\tID      int64\n\tIntVal  int64\n\tTextVal string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/sqlite/go/scalarfunc.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: scalarfunc.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getAbs = `-- name: GetAbs :one\nSELECT abs(int_val) FROM test\n`\n\nfunc (q *Queries) GetAbs(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getAbs)\n\tvar abs float64\n\terr := row.Scan(&abs)\n\treturn abs, err\n}\n\nconst getChanges = `-- name: GetChanges :one\nSELECT changes()\n`\n\nfunc (q *Queries) GetChanges(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getChanges)\n\tvar changes int64\n\terr := row.Scan(&changes)\n\treturn changes, err\n}\n\nconst getChar1 = `-- name: GetChar1 :one\nSELECT char(65)\n`\n\nfunc (q *Queries) GetChar1(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getChar1)\n\tvar char string\n\terr := row.Scan(&char)\n\treturn char, err\n}\n\nconst getChar3 = `-- name: GetChar3 :one\nSELECT char(65, 66, 67)\n`\n\nfunc (q *Queries) GetChar3(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getChar3)\n\tvar char string\n\terr := row.Scan(&char)\n\treturn char, err\n}\n\nconst getCoalesce = `-- name: GetCoalesce :one\nSELECT coalesce(NULL, 1, 'test')\n`\n\nfunc (q *Queries) GetCoalesce(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, getCoalesce)\n\tvar coalesce interface{}\n\terr := row.Scan(&coalesce)\n\treturn coalesce, err\n}\n\nconst getFormat = `-- name: GetFormat :one\nSELECT format('Hello %s', 'world')\n`\n\nfunc (q *Queries) GetFormat(ctx context.Context) (sql.NullString, error) {\n\trow := q.db.QueryRowContext(ctx, getFormat)\n\tvar format sql.NullString\n\terr := row.Scan(&format)\n\treturn format, err\n}\n\nconst getGlob = `-- name: GetGlob :one\nSELECT glob('a*c', 'abc')\n`\n\nfunc (q *Queries) GetGlob(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getGlob)\n\tvar glob int64\n\terr := row.Scan(&glob)\n\treturn glob, err\n}\n\nconst getHex = `-- name: GetHex :one\nSELECT hex(123456)\n`\n\nfunc (q *Queries) GetHex(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getHex)\n\tvar hex string\n\terr := row.Scan(&hex)\n\treturn hex, err\n}\n\nconst getIfnull = `-- name: GetIfnull :one\nSELECT ifnull(1, 2)\n`\n\nfunc (q *Queries) GetIfnull(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, getIfnull)\n\tvar ifnull interface{}\n\terr := row.Scan(&ifnull)\n\treturn ifnull, err\n}\n\nconst getIif = `-- name: GetIif :one\nSELECT iif(1, 2, 3)\n`\n\nfunc (q *Queries) GetIif(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, getIif)\n\tvar iif interface{}\n\terr := row.Scan(&iif)\n\treturn iif, err\n}\n\nconst getInstr = `-- name: GetInstr :one\nSELECT instr('hello', 'l')\n`\n\nfunc (q *Queries) GetInstr(ctx context.Context) (sql.NullInt64, error) {\n\trow := q.db.QueryRowContext(ctx, getInstr)\n\tvar instr sql.NullInt64\n\terr := row.Scan(&instr)\n\treturn instr, err\n}\n\nconst getLastInsertRowID = `-- name: GetLastInsertRowID :one\nSELECT last_insert_rowid()\n`\n\nfunc (q *Queries) GetLastInsertRowID(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getLastInsertRowID)\n\tvar last_insert_rowid int64\n\terr := row.Scan(&last_insert_rowid)\n\treturn last_insert_rowid, err\n}\n\nconst getLength = `-- name: GetLength :one\nSELECT length('12345')\n`\n\nfunc (q *Queries) GetLength(ctx context.Context) (sql.NullInt64, error) {\n\trow := q.db.QueryRowContext(ctx, getLength)\n\tvar length sql.NullInt64\n\terr := row.Scan(&length)\n\treturn length, err\n}\n\nconst getLike2 = `-- name: GetLike2 :one\nSELECT like('%bc%', 'abcd')\n`\n\nfunc (q *Queries) GetLike2(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getLike2)\n\tvar like int64\n\terr := row.Scan(&like)\n\treturn like, err\n}\n\nconst getLike3 = `-- name: GetLike3 :one\nSELECT like('$%1%', '%100', '$')\n`\n\nfunc (q *Queries) GetLike3(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getLike3)\n\tvar like int64\n\terr := row.Scan(&like)\n\treturn like, err\n}\n\nconst getLikelihood = `-- name: GetLikelihood :one\nSELECT likelihood('12345', 0.5)\n`\n\nfunc (q *Queries) GetLikelihood(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, getLikelihood)\n\tvar likelihood interface{}\n\terr := row.Scan(&likelihood)\n\treturn likelihood, err\n}\n\nconst getLikely = `-- name: GetLikely :one\nSELECT likely('12345')\n`\n\nfunc (q *Queries) GetLikely(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, getLikely)\n\tvar likely interface{}\n\terr := row.Scan(&likely)\n\treturn likely, err\n}\n\nconst getLower = `-- name: GetLower :one\nSELECT lower('ABCDE')\n`\n\nfunc (q *Queries) GetLower(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getLower)\n\tvar lower string\n\terr := row.Scan(&lower)\n\treturn lower, err\n}\n\nconst getLtrim = `-- name: GetLtrim :one\nSELECT ltrim(' ABCDE')\n`\n\nfunc (q *Queries) GetLtrim(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getLtrim)\n\tvar ltrim string\n\terr := row.Scan(&ltrim)\n\treturn ltrim, err\n}\n\nconst getLtrim2 = `-- name: GetLtrim2 :one\nSELECT ltrim(':ABCDE', ':')\n`\n\nfunc (q *Queries) GetLtrim2(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getLtrim2)\n\tvar ltrim string\n\terr := row.Scan(&ltrim)\n\treturn ltrim, err\n}\n\nconst getMax3 = `-- name: GetMax3 :one\nSELECT max(1, 3, 2)\n`\n\nfunc (q *Queries) GetMax3(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, getMax3)\n\tvar max interface{}\n\terr := row.Scan(&max)\n\treturn max, err\n}\n\nconst getMin3 = `-- name: GetMin3 :one\nSELECT min(1, 3, 2)\n`\n\nfunc (q *Queries) GetMin3(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, getMin3)\n\tvar min interface{}\n\terr := row.Scan(&min)\n\treturn min, err\n}\n\nconst getNullif = `-- name: GetNullif :one\nSELECT nullif(1, 2)\n`\n\nfunc (q *Queries) GetNullif(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, getNullif)\n\tvar nullif interface{}\n\terr := row.Scan(&nullif)\n\treturn nullif, err\n}\n\nconst getPrintf = `-- name: GetPrintf :one\nSELECT printf('Hello %s', 'world')\n`\n\nfunc (q *Queries) GetPrintf(ctx context.Context) (sql.NullString, error) {\n\trow := q.db.QueryRowContext(ctx, getPrintf)\n\tvar printf sql.NullString\n\terr := row.Scan(&printf)\n\treturn printf, err\n}\n\nconst getQuote = `-- name: GetQuote :one\nSELECT quote(1)\n`\n\nfunc (q *Queries) GetQuote(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getQuote)\n\tvar quote string\n\terr := row.Scan(&quote)\n\treturn quote, err\n}\n\nconst getRandom = `-- name: GetRandom :one\nSELECT random()\n`\n\nfunc (q *Queries) GetRandom(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, getRandom)\n\tvar random interface{}\n\terr := row.Scan(&random)\n\treturn random, err\n}\n\nconst getRandomBlob = `-- name: GetRandomBlob :one\nSELECT randomblob(16)\n`\n\nfunc (q *Queries) GetRandomBlob(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, getRandomBlob)\n\tvar randomblob interface{}\n\terr := row.Scan(&randomblob)\n\treturn randomblob, err\n}\n\nconst getReplace = `-- name: GetReplace :one\nSELECT replace('abc', 'bc', 'df')\n`\n\nfunc (q *Queries) GetReplace(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getReplace)\n\tvar replace string\n\terr := row.Scan(&replace)\n\treturn replace, err\n}\n\nconst getRound = `-- name: GetRound :one\nSELECT round(1.1)\n`\n\nfunc (q *Queries) GetRound(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getRound)\n\tvar round float64\n\terr := row.Scan(&round)\n\treturn round, err\n}\n\nconst getRound2 = `-- name: GetRound2 :one\nSELECT round(1.1, 2)\n`\n\nfunc (q *Queries) GetRound2(ctx context.Context) (float64, error) {\n\trow := q.db.QueryRowContext(ctx, getRound2)\n\tvar round float64\n\terr := row.Scan(&round)\n\treturn round, err\n}\n\nconst getRtrim = `-- name: GetRtrim :one\nSELECT rtrim('ABCDE ')\n`\n\nfunc (q *Queries) GetRtrim(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getRtrim)\n\tvar rtrim string\n\terr := row.Scan(&rtrim)\n\treturn rtrim, err\n}\n\nconst getRtrim2 = `-- name: GetRtrim2 :one\nSELECT rtrim('ABCDE:', ':')\n`\n\nfunc (q *Queries) GetRtrim2(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getRtrim2)\n\tvar rtrim string\n\terr := row.Scan(&rtrim)\n\treturn rtrim, err\n}\n\nconst getSQLiteCompileOptionGet = `-- name: GetSQLiteCompileOptionGet :one\nSELECT sqlite_compileoption_get(1)\n`\n\nfunc (q *Queries) GetSQLiteCompileOptionGet(ctx context.Context) (sql.NullString, error) {\n\trow := q.db.QueryRowContext(ctx, getSQLiteCompileOptionGet)\n\tvar sqlite_compileoption_get sql.NullString\n\terr := row.Scan(&sqlite_compileoption_get)\n\treturn sqlite_compileoption_get, err\n}\n\nconst getSQLiteCompileOptionUsed = `-- name: GetSQLiteCompileOptionUsed :one\nSELECT sqlite_compileoption_used(1)\n`\n\nfunc (q *Queries) GetSQLiteCompileOptionUsed(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getSQLiteCompileOptionUsed)\n\tvar sqlite_compileoption_used int64\n\terr := row.Scan(&sqlite_compileoption_used)\n\treturn sqlite_compileoption_used, err\n}\n\nconst getSQLiteSourceID = `-- name: GetSQLiteSourceID :one\nSELECT sqlite_source_id()\n`\n\nfunc (q *Queries) GetSQLiteSourceID(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getSQLiteSourceID)\n\tvar sqlite_source_id string\n\terr := row.Scan(&sqlite_source_id)\n\treturn sqlite_source_id, err\n}\n\nconst getSQLiteVersion = `-- name: GetSQLiteVersion :one\nSELECT sqlite_version()\n`\n\nfunc (q *Queries) GetSQLiteVersion(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getSQLiteVersion)\n\tvar sqlite_version string\n\terr := row.Scan(&sqlite_version)\n\treturn sqlite_version, err\n}\n\nconst getSign = `-- name: GetSign :one\nSELECT sign(1)\n`\n\nfunc (q *Queries) GetSign(ctx context.Context) (sql.NullInt64, error) {\n\trow := q.db.QueryRowContext(ctx, getSign)\n\tvar sign sql.NullInt64\n\terr := row.Scan(&sign)\n\treturn sign, err\n}\n\nconst getSoundex = `-- name: GetSoundex :one\nSELECT soundex('abc')\n`\n\nfunc (q *Queries) GetSoundex(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getSoundex)\n\tvar soundex string\n\terr := row.Scan(&soundex)\n\treturn soundex, err\n}\n\nconst getSubstr2 = `-- name: GetSubstr2 :one\nSELECT substr('abcdef', 2)\n`\n\nfunc (q *Queries) GetSubstr2(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getSubstr2)\n\tvar substr string\n\terr := row.Scan(&substr)\n\treturn substr, err\n}\n\nconst getSubstr3 = `-- name: GetSubstr3 :one\nSELECT substr('abcdef', 1, 2)\n`\n\nfunc (q *Queries) GetSubstr3(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getSubstr3)\n\tvar substr string\n\terr := row.Scan(&substr)\n\treturn substr, err\n}\n\nconst getSubstring2 = `-- name: GetSubstring2 :one\nSELECT substring('abcdef', 1)\n`\n\nfunc (q *Queries) GetSubstring2(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getSubstring2)\n\tvar substring string\n\terr := row.Scan(&substring)\n\treturn substring, err\n}\n\nconst getSusbstring3 = `-- name: GetSusbstring3 :one\nSELECT substring('abcdef', 1, 2)\n`\n\nfunc (q *Queries) GetSusbstring3(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getSusbstring3)\n\tvar substring string\n\terr := row.Scan(&substring)\n\treturn substring, err\n}\n\nconst getTotalChanges = `-- name: GetTotalChanges :one\nSELECT total_changes()\n`\n\nfunc (q *Queries) GetTotalChanges(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getTotalChanges)\n\tvar total_changes int64\n\terr := row.Scan(&total_changes)\n\treturn total_changes, err\n}\n\nconst getTrim = `-- name: GetTrim :one\nSELECT trim(' ABCDE ')\n`\n\nfunc (q *Queries) GetTrim(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getTrim)\n\tvar trim string\n\terr := row.Scan(&trim)\n\treturn trim, err\n}\n\nconst getTrim2 = `-- name: GetTrim2 :one\nSELECT trim(':ABCDE:', ':')\n`\n\nfunc (q *Queries) GetTrim2(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getTrim2)\n\tvar trim string\n\terr := row.Scan(&trim)\n\treturn trim, err\n}\n\nconst getTypeof = `-- name: GetTypeof :one\nSELECT typeof('ABCDE')\n`\n\nfunc (q *Queries) GetTypeof(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getTypeof)\n\tvar typeof string\n\terr := row.Scan(&typeof)\n\treturn typeof, err\n}\n\nconst getUnicode = `-- name: GetUnicode :one\nSELECT unicode('A')\n`\n\nfunc (q *Queries) GetUnicode(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getUnicode)\n\tvar unicode int64\n\terr := row.Scan(&unicode)\n\treturn unicode, err\n}\n\nconst getUnlikely = `-- name: GetUnlikely :one\nSELECT unlikely('12345')\n`\n\nfunc (q *Queries) GetUnlikely(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, getUnlikely)\n\tvar unlikely interface{}\n\terr := row.Scan(&unlikely)\n\treturn unlikely, err\n}\n\nconst getUpper = `-- name: GetUpper :one\nSELECT upper('abcde')\n`\n\nfunc (q *Queries) GetUpper(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getUpper)\n\tvar upper string\n\terr := row.Scan(&upper)\n\treturn upper, err\n}\n\nconst getZeroblob = `-- name: GetZeroblob :one\nSELECT zeroblob(16)\n`\n\nfunc (q *Queries) GetZeroblob(ctx context.Context) ([]byte, error) {\n\trow := q.db.QueryRowContext(ctx, getZeroblob)\n\tvar zeroblob []byte\n\terr := row.Scan(&zeroblob)\n\treturn zeroblob, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/sqlite/queries/aggfunc.sql",
    "content": "-- name: GetAvg :one\nSELECT avg(int_val) FROM test;\n\n-- name: GetCount :one\nSELECT count(*) FROM test;\n\n-- name: GetCountId :one\nSELECT count(id) FROM test;\n\n-- name: GetGroupConcatInt :one\nSELECT group_concat(int_val) FROM test;\n\n-- name: GetGroupConcatInt2 :one\nSELECT group_concat(1, ':') FROM test;\n\n-- name: GetGroupConcatText :one\nSELECT group_concat(text_val) FROM test;\n\n-- name: GetGroupConcatText2 :one\nSELECT group_concat(text_val, ':') FROM test;\n\n-- name: GetMaxInt :one\nSELECT max(int_val) FROM test;\n\n-- name: GetMaxText :one\nSELECT max(text_val) FROM test;\n\n-- name: GetMinInt :one\nSELECT min(int_val) FROM test;\n\n-- name: GetMinText :one\nSELECT min(text_val) FROM test;\n\n-- name: GetSumInt :one\nSELECT sum(int_val) FROM test;\n\n-- name: GetSumText :one\nSELECT sum(text_val) FROM test;\n\n-- name: GetTotalInt :one\nSELECT total(int_val) FROM test;\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/sqlite/queries/mathfunc.sql",
    "content": "-- name: GetAcos :one\nselect acos(1.0);\n\n-- name: GetAcosh :one\nselect acosh(1.0);\n\n-- name: GetAsin :one\nselect asin(1.0);\n\n-- name: GetAsinh :one\nselect asinh(1.0);\n\n-- name: GetAtan :one\nselect atan(1.0);\n\n-- name: GetAtan2 :one\nselect atan2(1.0, 0.5);\n\n-- name: GetAtanh :one\nselect atanh(1.0);\n\n-- name: GetCeil :one\nselect ceil(1.0);\n\n-- name: GetCeilin :one\nselect ceiling(1.0);\n\n-- name: GetCos :one\nselect cos(1.0);\n\n-- name: GetCosh :one\nselect cosh(1.0);\n\n-- name: GetDegrees :one\nselect degrees(1.0);\n\n-- name: GetExp :one\nselect exp(1.0);\n\n-- name: GetFloor :one\nselect floor(1.0);\n\n-- name: GetLn :one\nselect ln(1.0);\n\n-- name: GetLog :one\nselect log(1.0);\n\n-- name: GetLog10 :one\nselect log10(1.0);\n\n-- name: GetLogBase :one\nselect log(1.0, 2.0);\n\n-- name: GetLog2 :one\nselect log2(1.0);\n\n-- name: GetMod :one\nselect mod(1, 2);\n\n-- name: GetPi :one\nselect pi();\n\n-- name: GetPow :one\nselect pow(1, 2);\n\n-- name: GetPower :one\nselect power(1, 2);\n\n-- name: GetRadians :one\nselect radians(1);\n\n-- name: GetSin :one\nselect sin(1.0);\n\n-- name: GetSinh :one\nselect sinh(1.0);\n\n-- name: GetSqrt :one\nselect sqrt(1.0);\n\n-- name: GetTan :one\nselect tan(1.0);\n\n-- name: GetTrunc :one\nselect trunc(1.0);\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/sqlite/queries/scalarfunc.sql",
    "content": "-- name: GetAbs :one\nSELECT abs(int_val) FROM test;\n\n-- name: GetChanges :one\nSELECT changes();\n\n-- name: GetChar1 :one\nSELECT char(65);\n\n-- name: GetChar3 :one\nSELECT char(65, 66, 67);\n\n-- name: GetCoalesce :one\nSELECT coalesce(NULL, 1, 'test');\n\n-- name: GetFormat :one\nSELECT format('Hello %s', 'world');\n\n-- name: GetGlob :one\nSELECT glob('a*c', 'abc');\n\n-- name: GetHex :one\nSELECT hex(123456);\n\n-- name: GetIfnull :one\nSELECT ifnull(1, 2);\n\n-- name: GetIif :one\nSELECT iif(1, 2, 3);\n\n-- name: GetLastInsertRowID :one\nSELECT last_insert_rowid();\n\n-- name: GetInstr :one\nSELECT instr('hello', 'l');\n\n-- name: GetLength :one\nSELECT length('12345');\n\n-- name: GetLike2 :one\nSELECT like('%bc%', 'abcd');\n\n-- name: GetLike3 :one\nSELECT like('$%1%', '%100', '$');\n\n-- name: GetLikelihood :one\nSELECT likelihood('12345', 0.5);\n\n-- name: GetLikely :one\nSELECT likely('12345');\n\n-- name: GetLower :one\nSELECT lower('ABCDE');\n\n-- name: GetLtrim :one\nSELECT ltrim(' ABCDE');\n\n-- name: GetLtrim2 :one\nSELECT ltrim(':ABCDE', ':');\n\n-- name: GetMax3 :one\nSELECT max(1, 3, 2);\n\n-- name: GetMin3 :one\nSELECT min(1, 3, 2);\n\n-- name: GetNullif :one\nSELECT nullif(1, 2);\n\n-- name: GetPrintf :one\nSELECT printf('Hello %s', 'world');\n\n-- name: GetQuote :one\nSELECT quote(1);\n\n-- name: GetRandom :one\nSELECT random();\n\n-- name: GetRandomBlob :one\nSELECT randomblob(16);\n\n-- name: GetRound :one\nSELECT round(1.1);\n\n-- name: GetRound2 :one\nSELECT round(1.1, 2);\n\n-- name: GetReplace :one\nSELECT replace('abc', 'bc', 'df');\n\n-- name: GetRtrim :one\nSELECT rtrim('ABCDE ');\n\n-- name: GetRtrim2 :one\nSELECT rtrim('ABCDE:', ':');\n\n-- name: GetSign :one\nSELECT sign(1);\n\n-- name: GetSoundex :one\nSELECT soundex('abc');\n\n-- name: GetSQLiteCompileOptionGet :one\nSELECT sqlite_compileoption_get(1);\n\n-- name: GetSQLiteCompileOptionUsed :one\nSELECT sqlite_compileoption_used(1);\n\n-- name: GetSQLiteSourceID :one\nSELECT sqlite_source_id();\n\n-- name: GetSQLiteVersion :one\nSELECT sqlite_version();\n\n-- name: GetSubstr3 :one\nSELECT substr('abcdef', 1, 2);\n\n-- name: GetSubstr2 :one\nSELECT substr('abcdef', 2);\n\n-- name: GetSusbstring3 :one\nSELECT substring('abcdef', 1, 2);\n\n-- name: GetSubstring2 :one\nSELECT substring('abcdef', 1);\n\n-- name: GetTotalChanges :one\nSELECT total_changes();\n\n-- name: GetTrim :one\nSELECT trim(' ABCDE ');\n\n-- name: GetTrim2 :one\nSELECT trim(':ABCDE:', ':');\n\n-- name: GetTypeof :one\nSELECT typeof('ABCDE');\n\n-- name: GetUnicode :one\nSELECT unicode('A');\n\n-- name: GetUnlikely :one\nSELECT unlikely('12345');\n\n-- name: GetUpper :one\nSELECT upper('abcde');\n\n-- name: GetZeroblob :one\nSELECT zeroblob(16);\n"
  },
  {
    "path": "internal/endtoend/testdata/builtins/sqlite/schema.sql",
    "content": "CREATE TABLE test (\n  id integer NOT NULL PRIMARY KEY AUTOINCREMENT,\n  int_val integer NOT NULL,\n  text_val text NOT NULL\n);\n "
  },
  {
    "path": "internal/endtoend/testdata/builtins/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"queries/\",\n      \"engine\": \"sqlite\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID       int64\n\tUsername sql.NullString\n\tEmail    sql.NullString\n\tName     string\n\tBio      sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst listAuthors = `-- name: ListAuthors :one\nSELECT  id, username, email, name, bio\nFROM    authors\nWHERE   email = CASE WHEN ? = '' then NULL else ? END\n        OR username = CASE WHEN ? = '' then NULL else ? END \nLIMIT   1\n`\n\ntype ListAuthorsParams struct {\n\tEmail    sql.NullString\n\tUsername sql.NullString\n}\n\nfunc (q *Queries) ListAuthors(ctx context.Context, arg ListAuthorsParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, listAuthors,\n\t\targ.Email,\n\t\targ.Email,\n\t\targ.Username,\n\t\targ.Username,\n\t)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Username,\n\t\t&i.Email,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/mysql/query.sql",
    "content": "-- name: ListAuthors :one\nSELECT  *\nFROM    authors\nWHERE   email = CASE WHEN sqlc.arg(email) = '' then NULL else sqlc.arg(email) END\n        OR username = CASE WHEN sqlc.arg(username) = '' then NULL else sqlc.arg(username) END \nLIMIT   1;\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/mysql/schema.sql",
    "content": "-- https://github.com/sqlc-dev/sqlc/issues/1195\n\nCREATE TABLE authors (\n  id   BIGINT PRIMARY KEY,\n  username VARCHAR(10) NULL,\n  email VARCHAR(10) NULL,\n  name TEXT  NOT NULL,\n  bio  TEXT,\n  UNIQUE KEY idx_username (username),\n  UNIQUE KEY ids_email (email)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID       int64\n\tUsername sql.NullString\n\tEmail    sql.NullString\n\tName     string\n\tBio      sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :one\nSELECT  id, username, email, name, bio\nFROM    authors\nWHERE   email = CASE WHEN $1::text = '' then NULL else $1::text END\n        OR username = CASE WHEN $2::text = '' then NULL else $2::text END \nLIMIT   1\n`\n\ntype ListAuthorsParams struct {\n\tEmail    string\n\tUsername string\n}\n\nfunc (q *Queries) ListAuthors(ctx context.Context, arg ListAuthorsParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, listAuthors, arg.Email, arg.Username)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Username,\n\t\t&i.Email,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/postgresql/query.sql",
    "content": "-- name: ListAuthors :one\nSELECT  *\nFROM    authors\nWHERE   email = CASE WHEN sqlc.arg(email)::text = '' then NULL else sqlc.arg(email)::text END\n        OR username = CASE WHEN sqlc.arg(username)::text = '' then NULL else sqlc.arg(username)::text END \nLIMIT   1;\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/postgresql/schema.sql",
    "content": "-- https://github.com/sqlc-dev/sqlc/issues/1195\n\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  username TEXT NULL,\n  email TEXT NULL,\n  name TEXT  NOT NULL,\n  bio  TEXT\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/postgresql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"postgresql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID       int64\n\tUsername interface{}\n\tEmail    interface{}\n\tName     string\n\tBio      sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :one\nSELECT  id, username, email, name, bio\nFROM    authors\nWHERE   email = CASE WHEN ?1 = '' then NULL else ?1 END\n        OR username = CASE WHEN ?2 = '' then NULL else ?2 END\nLIMIT   1\n`\n\ntype ListAuthorsParams struct {\n\tEmail    interface{}\n\tUsername interface{}\n}\n\nfunc (q *Queries) ListAuthors(ctx context.Context, arg ListAuthorsParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, listAuthors, arg.Email, arg.Username)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Username,\n\t\t&i.Email,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/sqlite/query.sql",
    "content": "-- name: ListAuthors :one\nSELECT  *\nFROM    authors\nWHERE   email = CASE WHEN sqlc.arg(email) = '' then NULL else sqlc.arg(email) END\n        OR username = CASE WHEN sqlc.arg(username) = '' then NULL else sqlc.arg(username) END\nLIMIT   1;\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/sqlite/schema.sql",
    "content": "CREATE TABLE authors (\n  id   INTEGER PRIMARY KEY,\n  username TEXT NULL,\n  email TEXT NULL,\n  name TEXT  NOT NULL,\n  bio  TEXT\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/case_named_params/sqlite/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"sqlite\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_sensitive/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_sensitive/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Contact struct {\n\tPid          sql.NullString\n\tCustomername sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_sensitive/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst insertContact = `-- name: InsertContact :exec\nINSERT INTO contacts (\n    pid,\n    CustomerName\n)\nVALUES (?,?)\n`\n\ntype InsertContactParams struct {\n\tPid          sql.NullString\n\tCustomername sql.NullString\n}\n\nfunc (q *Queries) InsertContact(ctx context.Context, arg InsertContactParams) error {\n\t_, err := q.db.ExecContext(ctx, insertContact, arg.Pid, arg.Customername)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_sensitive/sqlite/query.sql",
    "content": "-- name: InsertContact :exec\nINSERT INTO contacts (\n    pid,\n    CustomerName\n)\nVALUES (?,?)\n;\n"
  },
  {
    "path": "internal/endtoend/testdata/case_sensitive/sqlite/schema.sql",
    "content": "CREATE TABLE contacts (\n\tpid\tTEXT,\n\tCustomerName\tTEXT\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/case_sensitive/sqlite/sqlc.json",
    "content": "{\"version\": \"1\", \"packages\": [{\"path\": \"go\", \"engine\": \"sqlite\", \"schema\": \"schema.sql\", \"queries\": \"query.sql\", \"name\": \"querytest\"}]}"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst caseStatementBoolean = `-- name: CaseStatementBoolean :many\nSELECT CASE \n  WHEN id = $1 THEN true\n  ELSE false\nEND is_one\nFROM foo\n`\n\nfunc (q *Queries) CaseStatementBoolean(ctx context.Context, id string) ([]bool, error) {\n\trows, err := q.db.Query(ctx, caseStatementBoolean, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar is_one bool\n\t\tif err := rows.Scan(&is_one); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, is_one)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/pgx/v4/query.sql",
    "content": "-- name: CaseStatementBoolean :many\nSELECT CASE \n  WHEN id = $1 THEN true\n  ELSE false\nEND is_one\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst caseStatementBoolean = `-- name: CaseStatementBoolean :many\nSELECT CASE \n  WHEN id = $1 THEN true\n  ELSE false\nEND is_one\nFROM foo\n`\n\nfunc (q *Queries) CaseStatementBoolean(ctx context.Context, id string) ([]bool, error) {\n\trows, err := q.db.Query(ctx, caseStatementBoolean, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar is_one bool\n\t\tif err := rows.Scan(&is_one); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, is_one)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/pgx/v5/query.sql",
    "content": "-- name: CaseStatementBoolean :many\nSELECT CASE \n  WHEN id = $1 THEN true\n  ELSE false\nEND is_one\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst caseStatementBoolean = `-- name: CaseStatementBoolean :many\nSELECT CASE \n  WHEN id = $1 THEN true\n  ELSE false\nEND is_one\nFROM foo\n`\n\nfunc (q *Queries) CaseStatementBoolean(ctx context.Context, id string) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, caseStatementBoolean, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar is_one bool\n\t\tif err := rows.Scan(&is_one); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, is_one)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/stdlib/query.sql",
    "content": "-- name: CaseStatementBoolean :many\nSELECT CASE \n  WHEN id = $1 THEN true\n  ELSE false\nEND is_one\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/stdlib/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/case_stmt_bool/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst caseStatementText = `-- name: CaseStatementText :many\nSELECT CASE \n  WHEN id = $1 THEN 'foo'\n  ELSE 'bar'\nEND is_one\nFROM foo\n`\n\nfunc (q *Queries) CaseStatementText(ctx context.Context, id string) ([]string, error) {\n\trows, err := q.db.Query(ctx, caseStatementText, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar is_one string\n\t\tif err := rows.Scan(&is_one); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, is_one)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/pgx/v4/query.sql",
    "content": "-- name: CaseStatementText :many\nSELECT CASE \n  WHEN id = $1 THEN 'foo'\n  ELSE 'bar'\nEND is_one\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst caseStatementText = `-- name: CaseStatementText :many\nSELECT CASE \n  WHEN id = $1 THEN 'foo'\n  ELSE 'bar'\nEND is_one\nFROM foo\n`\n\nfunc (q *Queries) CaseStatementText(ctx context.Context, id string) ([]string, error) {\n\trows, err := q.db.Query(ctx, caseStatementText, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar is_one string\n\t\tif err := rows.Scan(&is_one); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, is_one)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/pgx/v5/query.sql",
    "content": "-- name: CaseStatementText :many\nSELECT CASE \n  WHEN id = $1 THEN 'foo'\n  ELSE 'bar'\nEND is_one\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst caseStatementText = `-- name: CaseStatementText :many\nSELECT CASE \n  WHEN id = $1 THEN 'foo'\n  ELSE 'bar'\nEND is_one\nFROM foo\n`\n\nfunc (q *Queries) CaseStatementText(ctx context.Context, id string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, caseStatementText, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar is_one string\n\t\tif err := rows.Scan(&is_one); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, is_one)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/stdlib/query.sql",
    "content": "-- name: CaseStatementText :many\nSELECT CASE \n  WHEN id = $1 THEN 'foo'\n  ELSE 'bar'\nEND is_one\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/stdlib/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/case_text/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_value_param/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/2847\n"
  },
  {
    "path": "internal/endtoend/testdata/case_value_param/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_value_param/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Testing struct {\n\tID    int32\n\tValue sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_value_param/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst update = `-- name: Update :exec\nUPDATE testing\nSET value = CASE ? WHEN true THEN 'Hello' WHEN false THEN 'Goodbye' ELSE value END\n`\n\nfunc (q *Queries) Update(ctx context.Context, value sql.NullString) error {\n\t_, err := q.db.ExecContext(ctx, update, value)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_value_param/mysql/query.sql",
    "content": "-- name: Update :exec\nUPDATE testing\nSET value = CASE ? WHEN true THEN 'Hello' WHEN false THEN 'Goodbye' ELSE value END;\n"
  },
  {
    "path": "internal/endtoend/testdata/case_value_param/mysql/schema.sql",
    "content": "CREATE TABLE testing (\n  id    int PRIMARY KEY,\n  value text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/case_value_param/mysql/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"mysql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n"
  },
  {
    "path": "internal/endtoend/testdata/case_value_param/postgresql/exec.json",
    "content": "{\n    \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_value_param/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_value_param/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Testing struct {\n\tID    int32\n\tValue pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_value_param/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst update = `-- name: Update :exec\nUPDATE testing\nSET value = CASE $1 WHEN true THEN 'Hello' WHEN false THEN 'Goodbye' ELSE value END\n`\n\nfunc (q *Queries) Update(ctx context.Context, value pgtype.Text) error {\n\t_, err := q.db.Exec(ctx, update, value)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/case_value_param/postgresql/query.sql",
    "content": "-- name: Update :exec\nUPDATE testing\nSET value = CASE $1 WHEN true THEN 'Hello' WHEN false THEN 'Goodbye' ELSE value END;\n"
  },
  {
    "path": "internal/endtoend/testdata/case_value_param/postgresql/schema.sql",
    "content": "CREATE TABLE testing (\n  id    int PRIMARY KEY,\n  value text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/case_value_param/postgresql/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst castCoalesce = `-- name: CastCoalesce :many\nSELECT coalesce(bar, '')::text as login\nFROM foo\n`\n\nfunc (q *Queries) CastCoalesce(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, castCoalesce)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar login string\n\t\tif err := rows.Scan(&login); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, login)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/pgx/v4/query.sql",
    "content": "-- name: CastCoalesce :many\nSELECT coalesce(bar, '')::text as login\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst castCoalesce = `-- name: CastCoalesce :many\nSELECT coalesce(bar, '')::text as login\nFROM foo\n`\n\nfunc (q *Queries) CastCoalesce(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, castCoalesce)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar login string\n\t\tif err := rows.Scan(&login); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, login)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/pgx/v5/query.sql",
    "content": "-- name: CastCoalesce :many\nSELECT coalesce(bar, '')::text as login\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst castCoalesce = `-- name: CastCoalesce :many\nSELECT coalesce(bar, '')::text as login\nFROM foo\n`\n\nfunc (q *Queries) CastCoalesce(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, castCoalesce)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar login string\n\t\tif err := rows.Scan(&login); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, login)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/stdlib/query.sql",
    "content": "-- name: CastCoalesce :many\nSELECT coalesce(bar, '')::text as login\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_coalesce/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst listNullable = `-- name: ListNullable :many\nSELECT\n  NULL::text as a,\n  NULL::integer as b,\n  NULL::bigint as c,\n  NULL::time as d\nFROM foo\n`\n\ntype ListNullableRow struct {\n\tA sql.NullString\n\tB sql.NullInt32\n\tC sql.NullInt64\n\tD sql.NullTime\n}\n\nfunc (q *Queries) ListNullable(ctx context.Context) ([]ListNullableRow, error) {\n\trows, err := q.db.Query(ctx, listNullable)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListNullableRow\n\tfor rows.Next() {\n\t\tvar i ListNullableRow\n\t\tif err := rows.Scan(\n\t\t\t&i.A,\n\t\t\t&i.B,\n\t\t\t&i.C,\n\t\t\t&i.D,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/pgx/v4/query.sql",
    "content": "-- name: ListNullable :many\nSELECT\n  NULL::text as a,\n  NULL::integer as b,\n  NULL::bigint as c,\n  NULL::time as d\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst listNullable = `-- name: ListNullable :many\nSELECT\n  NULL::text as a,\n  NULL::integer as b,\n  NULL::bigint as c,\n  NULL::time as d\nFROM foo\n`\n\ntype ListNullableRow struct {\n\tA pgtype.Text\n\tB pgtype.Int4\n\tC pgtype.Int8\n\tD pgtype.Time\n}\n\nfunc (q *Queries) ListNullable(ctx context.Context) ([]ListNullableRow, error) {\n\trows, err := q.db.Query(ctx, listNullable)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListNullableRow\n\tfor rows.Next() {\n\t\tvar i ListNullableRow\n\t\tif err := rows.Scan(\n\t\t\t&i.A,\n\t\t\t&i.B,\n\t\t\t&i.C,\n\t\t\t&i.D,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/pgx/v5/query.sql",
    "content": "-- name: ListNullable :many\nSELECT\n  NULL::text as a,\n  NULL::integer as b,\n  NULL::bigint as c,\n  NULL::time as d\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst listNullable = `-- name: ListNullable :many\nSELECT\n  NULL::text as a,\n  NULL::integer as b,\n  NULL::bigint as c,\n  NULL::time as d\nFROM foo\n`\n\ntype ListNullableRow struct {\n\tA sql.NullString\n\tB sql.NullInt32\n\tC sql.NullInt64\n\tD sql.NullTime\n}\n\nfunc (q *Queries) ListNullable(ctx context.Context) ([]ListNullableRow, error) {\n\trows, err := q.db.QueryContext(ctx, listNullable)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListNullableRow\n\tfor rows.Next() {\n\t\tvar i ListNullableRow\n\t\tif err := rows.Scan(\n\t\t\t&i.A,\n\t\t\t&i.B,\n\t\t\t&i.C,\n\t\t\t&i.D,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/stdlib/query.sql",
    "content": "-- name: ListNullable :many\nSELECT\n  NULL::text as a,\n  NULL::integer as b,\n  NULL::bigint as c,\n  NULL::time as d\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_null/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_param/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_param/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype MyTable struct {\n\tInvalid sql.NullBool\n\tFoo     sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_param/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getData = `-- name: GetData :many\nselect invalid, foo\nfrom my_table\nwhere (cast(?1 as boolean) or not invalid)\n`\n\nfunc (q *Queries) GetData(ctx context.Context, allowInvalid bool) ([]MyTable, error) {\n\trows, err := q.db.QueryContext(ctx, getData, allowInvalid)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []MyTable\n\tfor rows.Next() {\n\t\tvar i MyTable\n\t\tif err := rows.Scan(&i.Invalid, &i.Foo); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_param/sqlite/query.sql",
    "content": "-- name: GetData :many\nselect *\nfrom my_table\nwhere (cast(sqlc.arg(allow_invalid) as boolean) or not invalid);"
  },
  {
    "path": "internal/endtoend/testdata/cast_param/sqlite/schema.sql",
    "content": "create table my_table\n(\n    invalid boolean,\n    foo     varchar\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cast_param/sqlite/sqlc.json",
    "content": "{\n    \"version\": \"1\",\n    \"packages\": [\n        {\n            \"path\": \"go\",\n            \"engine\": \"sqlite\",\n            \"schema\": \"schema.sql\",\n            \"queries\": \"query.sql\",\n            \"name\": \"querytest\"\n        }\n    ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/cid_oid_tid_xid/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cid_oid_tid_xid/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgtype\"\n)\n\ntype TestTable struct {\n\tVCidNull pgtype.CID\n\tVOidNull pgtype.OID\n\tVTidNull pgtype.TID\n\tVXidNull pgtype.XID\n\tVCid     pgtype.CID\n\tVOid     pgtype.OID\n\tVTid     pgtype.TID\n\tVXid     pgtype.XID\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cid_oid_tid_xid/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectTest = `-- name: SelectTest :many\nSELECT v_cid_null, v_oid_null, v_tid_null, v_xid_null, v_cid, v_oid, v_tid, v_xid\nfrom test_table\n`\n\nfunc (q *Queries) SelectTest(ctx context.Context) ([]TestTable, error) {\n\trows, err := q.db.Query(ctx, selectTest)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []TestTable\n\tfor rows.Next() {\n\t\tvar i TestTable\n\t\tif err := rows.Scan(\n\t\t\t&i.VCidNull,\n\t\t\t&i.VOidNull,\n\t\t\t&i.VTidNull,\n\t\t\t&i.VXidNull,\n\t\t\t&i.VCid,\n\t\t\t&i.VOid,\n\t\t\t&i.VTid,\n\t\t\t&i.VXid,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cid_oid_tid_xid/pgx/v4/query.sql",
    "content": "-- name: SelectTest :many\nSELECT *\nfrom test_table;\n"
  },
  {
    "path": "internal/endtoend/testdata/cid_oid_tid_xid/pgx/v4/schema.sql",
    "content": "CREATE TABLE test_table\n(\n    v_cid_null     cid,\n    v_oid_null     oid,\n    v_tid_null     tid,\n    v_xid_null     xid,\n    v_cid          cid     not null,\n    v_oid          oid     not null,\n    v_tid          tid     not null,\n    v_xid          xid     not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cid_oid_tid_xid/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cid_oid_tid_xid/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cid_oid_tid_xid/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype TestTable struct {\n\tVCidNull pgtype.Uint32\n\tVOidNull pgtype.Uint32\n\tVTidNull pgtype.TID\n\tVXidNull pgtype.Uint32\n\tVCid     pgtype.Uint32\n\tVOid     pgtype.Uint32\n\tVTid     pgtype.TID\n\tVXid     pgtype.Uint32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cid_oid_tid_xid/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectTest = `-- name: SelectTest :many\nSELECT v_cid_null, v_oid_null, v_tid_null, v_xid_null, v_cid, v_oid, v_tid, v_xid\nfrom test_table\n`\n\nfunc (q *Queries) SelectTest(ctx context.Context) ([]TestTable, error) {\n\trows, err := q.db.Query(ctx, selectTest)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []TestTable\n\tfor rows.Next() {\n\t\tvar i TestTable\n\t\tif err := rows.Scan(\n\t\t\t&i.VCidNull,\n\t\t\t&i.VOidNull,\n\t\t\t&i.VTidNull,\n\t\t\t&i.VXidNull,\n\t\t\t&i.VCid,\n\t\t\t&i.VOid,\n\t\t\t&i.VTid,\n\t\t\t&i.VXid,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cid_oid_tid_xid/pgx/v5/query.sql",
    "content": "-- name: SelectTest :many\nSELECT *\nfrom test_table;\n"
  },
  {
    "path": "internal/endtoend/testdata/cid_oid_tid_xid/pgx/v5/schema.sql",
    "content": "CREATE TABLE test_table\n(\n    v_cid_null     cid,\n    v_oid_null     oid,\n    v_tid_null     tid,\n    v_xid_null     xid,\n    v_cid          cid     not null,\n    v_oid          oid     not null,\n    v_tid          tid     not null,\n    v_xid          xid     not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cid_oid_tid_xid/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/citext/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/citext/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n\tBat string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/citext/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getCitexts = `-- name: GetCitexts :many\nSELECT bar, bat\nFROM foo\n`\n\nfunc (q *Queries) GetCitexts(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, getCitexts)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Bar, &i.Bat); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/citext/pgx/query.sql",
    "content": "-- name: GetCitexts :many\nSELECT bar, bat\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/citext/pgx/schema.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS citext;\n\nCREATE TABLE foo (\n    bar citext,\n    bat citext not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/citext/pgx/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/citext/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/citext/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n\tBat string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/citext/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getCitexts = `-- name: GetCitexts :many\nSELECT bar, bat\nFROM foo\n`\n\nfunc (q *Queries) GetCitexts(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, getCitexts)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Bar, &i.Bat); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/citext/stdlib/query.sql",
    "content": "-- name: GetCitexts :many\nSELECT bar, bat\nFROM foo;\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/citext/stdlib/schema.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS citext;\n\nCREATE TABLE foo (\n    bar citext,\n    bat citext not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/citext/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n\tBat string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst coalesce = `-- name: Coalesce :many\nSELECT coalesce(bar, '') as login\nFROM foo\n`\n\nfunc (q *Queries) Coalesce(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, coalesce)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar login string\n\t\tif err := rows.Scan(&login); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, login)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceColumns = `-- name: CoalesceColumns :many\nSELECT bar, bat, coalesce(bar, bat)\nFROM foo\n`\n\ntype CoalesceColumnsRow struct {\n\tBar   sql.NullString\n\tBat   string\n\tBar_2 string\n}\n\nfunc (q *Queries) CoalesceColumns(ctx context.Context) ([]CoalesceColumnsRow, error) {\n\trows, err := q.db.QueryContext(ctx, coalesceColumns)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CoalesceColumnsRow\n\tfor rows.Next() {\n\t\tvar i CoalesceColumnsRow\n\t\tif err := rows.Scan(&i.Bar, &i.Bat, &i.Bar_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/mysql/query.sql",
    "content": "-- name: Coalesce :many\nSELECT coalesce(bar, '') as login\nFROM foo;\n\n-- name: CoalesceColumns :many\nSELECT bar, bat, coalesce(bar, bat)\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar text, bat text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n\tBat string\n\tBaz sql.NullInt64\n\tQux int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst coalesceNumeric = `-- name: CoalesceNumeric :many\nSELECT coalesce(baz, 0) as login\nFROM foo\n`\n\nfunc (q *Queries) CoalesceNumeric(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.Query(ctx, coalesceNumeric)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar login int64\n\t\tif err := rows.Scan(&login); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, login)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceNumericColumns = `-- name: CoalesceNumericColumns :many\nSELECT baz, qux, coalesce(baz, qux)\nFROM foo\n`\n\ntype CoalesceNumericColumnsRow struct {\n\tBaz   sql.NullInt64\n\tQux   int64\n\tBaz_2 int64\n}\n\nfunc (q *Queries) CoalesceNumericColumns(ctx context.Context) ([]CoalesceNumericColumnsRow, error) {\n\trows, err := q.db.Query(ctx, coalesceNumericColumns)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CoalesceNumericColumnsRow\n\tfor rows.Next() {\n\t\tvar i CoalesceNumericColumnsRow\n\t\tif err := rows.Scan(&i.Baz, &i.Qux, &i.Baz_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceNumericNull = `-- name: CoalesceNumericNull :many\nSELECT baz, coalesce(baz)\nFROM foo\n`\n\ntype CoalesceNumericNullRow struct {\n\tBaz   sql.NullInt64\n\tBaz_2 sql.NullInt64\n}\n\nfunc (q *Queries) CoalesceNumericNull(ctx context.Context) ([]CoalesceNumericNullRow, error) {\n\trows, err := q.db.Query(ctx, coalesceNumericNull)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CoalesceNumericNullRow\n\tfor rows.Next() {\n\t\tvar i CoalesceNumericNullRow\n\t\tif err := rows.Scan(&i.Baz, &i.Baz_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceString = `-- name: CoalesceString :many\nSELECT coalesce(bar, '') as login\nFROM foo\n`\n\nfunc (q *Queries) CoalesceString(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, coalesceString)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar login string\n\t\tif err := rows.Scan(&login); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, login)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceStringColumns = `-- name: CoalesceStringColumns :many\nSELECT bar, bat, coalesce(bar, bat)\nFROM foo\n`\n\ntype CoalesceStringColumnsRow struct {\n\tBar   sql.NullString\n\tBat   string\n\tBar_2 string\n}\n\nfunc (q *Queries) CoalesceStringColumns(ctx context.Context) ([]CoalesceStringColumnsRow, error) {\n\trows, err := q.db.Query(ctx, coalesceStringColumns)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CoalesceStringColumnsRow\n\tfor rows.Next() {\n\t\tvar i CoalesceStringColumnsRow\n\t\tif err := rows.Scan(&i.Bar, &i.Bat, &i.Bar_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceStringNull = `-- name: CoalesceStringNull :many\nSELECT bar, coalesce(bar)\nFROM foo\n`\n\ntype CoalesceStringNullRow struct {\n\tBar   sql.NullString\n\tBar_2 sql.NullString\n}\n\nfunc (q *Queries) CoalesceStringNull(ctx context.Context) ([]CoalesceStringNullRow, error) {\n\trows, err := q.db.Query(ctx, coalesceStringNull)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CoalesceStringNullRow\n\tfor rows.Next() {\n\t\tvar i CoalesceStringNullRow\n\t\tif err := rows.Scan(&i.Bar, &i.Bar_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/pgx/v4/query.sql",
    "content": "-- name: CoalesceString :many\nSELECT coalesce(bar, '') as login\nFROM foo;\n\n-- name: CoalesceNumeric :many\nSELECT coalesce(baz, 0) as login\nFROM foo;\n\n-- name: CoalesceStringColumns :many\nSELECT bar, bat, coalesce(bar, bat)\nFROM foo;\n\n-- name: CoalesceNumericColumns :many\nSELECT baz, qux, coalesce(baz, qux)\nFROM foo;\n\n-- name: CoalesceStringNull :many\nSELECT bar, coalesce(bar)\nFROM foo;\n\n-- name: CoalesceNumericNull :many\nSELECT baz, coalesce(baz)\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (\n    bar text,\n    bat text not null,\n    baz bigint,\n    qux bigint not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar pgtype.Text\n\tBat string\n\tBaz pgtype.Int8\n\tQux int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst coalesceNumeric = `-- name: CoalesceNumeric :many\nSELECT coalesce(baz, 0) as login\nFROM foo\n`\n\nfunc (q *Queries) CoalesceNumeric(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.Query(ctx, coalesceNumeric)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar login int64\n\t\tif err := rows.Scan(&login); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, login)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceNumericColumns = `-- name: CoalesceNumericColumns :many\nSELECT baz, qux, coalesce(baz, qux)\nFROM foo\n`\n\ntype CoalesceNumericColumnsRow struct {\n\tBaz   pgtype.Int8\n\tQux   int64\n\tBaz_2 int64\n}\n\nfunc (q *Queries) CoalesceNumericColumns(ctx context.Context) ([]CoalesceNumericColumnsRow, error) {\n\trows, err := q.db.Query(ctx, coalesceNumericColumns)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CoalesceNumericColumnsRow\n\tfor rows.Next() {\n\t\tvar i CoalesceNumericColumnsRow\n\t\tif err := rows.Scan(&i.Baz, &i.Qux, &i.Baz_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceNumericNull = `-- name: CoalesceNumericNull :many\nSELECT baz, coalesce(baz)\nFROM foo\n`\n\ntype CoalesceNumericNullRow struct {\n\tBaz   pgtype.Int8\n\tBaz_2 pgtype.Int8\n}\n\nfunc (q *Queries) CoalesceNumericNull(ctx context.Context) ([]CoalesceNumericNullRow, error) {\n\trows, err := q.db.Query(ctx, coalesceNumericNull)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CoalesceNumericNullRow\n\tfor rows.Next() {\n\t\tvar i CoalesceNumericNullRow\n\t\tif err := rows.Scan(&i.Baz, &i.Baz_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceString = `-- name: CoalesceString :many\nSELECT coalesce(bar, '') as login\nFROM foo\n`\n\nfunc (q *Queries) CoalesceString(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, coalesceString)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar login string\n\t\tif err := rows.Scan(&login); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, login)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceStringColumns = `-- name: CoalesceStringColumns :many\nSELECT bar, bat, coalesce(bar, bat)\nFROM foo\n`\n\ntype CoalesceStringColumnsRow struct {\n\tBar   pgtype.Text\n\tBat   string\n\tBar_2 string\n}\n\nfunc (q *Queries) CoalesceStringColumns(ctx context.Context) ([]CoalesceStringColumnsRow, error) {\n\trows, err := q.db.Query(ctx, coalesceStringColumns)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CoalesceStringColumnsRow\n\tfor rows.Next() {\n\t\tvar i CoalesceStringColumnsRow\n\t\tif err := rows.Scan(&i.Bar, &i.Bat, &i.Bar_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceStringNull = `-- name: CoalesceStringNull :many\nSELECT bar, coalesce(bar)\nFROM foo\n`\n\ntype CoalesceStringNullRow struct {\n\tBar   pgtype.Text\n\tBar_2 pgtype.Text\n}\n\nfunc (q *Queries) CoalesceStringNull(ctx context.Context) ([]CoalesceStringNullRow, error) {\n\trows, err := q.db.Query(ctx, coalesceStringNull)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CoalesceStringNullRow\n\tfor rows.Next() {\n\t\tvar i CoalesceStringNullRow\n\t\tif err := rows.Scan(&i.Bar, &i.Bar_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/pgx/v5/query.sql",
    "content": "-- name: CoalesceString :many\nSELECT coalesce(bar, '') as login\nFROM foo;\n\n-- name: CoalesceNumeric :many\nSELECT coalesce(baz, 0) as login\nFROM foo;\n\n-- name: CoalesceStringColumns :many\nSELECT bar, bat, coalesce(bar, bat)\nFROM foo;\n\n-- name: CoalesceNumericColumns :many\nSELECT baz, qux, coalesce(baz, qux)\nFROM foo;\n\n-- name: CoalesceStringNull :many\nSELECT bar, coalesce(bar)\nFROM foo;\n\n-- name: CoalesceNumericNull :many\nSELECT baz, coalesce(baz)\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (\n    bar text,\n    bat text not null,\n    baz bigint,\n    qux bigint not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n\tBat string\n\tBaz sql.NullInt64\n\tQux int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst coalesceNumeric = `-- name: CoalesceNumeric :many\nSELECT coalesce(baz, 0) as login\nFROM foo\n`\n\nfunc (q *Queries) CoalesceNumeric(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, coalesceNumeric)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar login int64\n\t\tif err := rows.Scan(&login); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, login)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceNumericColumns = `-- name: CoalesceNumericColumns :many\nSELECT baz, qux, coalesce(baz, qux)\nFROM foo\n`\n\ntype CoalesceNumericColumnsRow struct {\n\tBaz   sql.NullInt64\n\tQux   int64\n\tBaz_2 int64\n}\n\nfunc (q *Queries) CoalesceNumericColumns(ctx context.Context) ([]CoalesceNumericColumnsRow, error) {\n\trows, err := q.db.QueryContext(ctx, coalesceNumericColumns)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CoalesceNumericColumnsRow\n\tfor rows.Next() {\n\t\tvar i CoalesceNumericColumnsRow\n\t\tif err := rows.Scan(&i.Baz, &i.Qux, &i.Baz_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceNumericNull = `-- name: CoalesceNumericNull :many\nSELECT baz, coalesce(baz)\nFROM foo\n`\n\ntype CoalesceNumericNullRow struct {\n\tBaz   sql.NullInt64\n\tBaz_2 sql.NullInt64\n}\n\nfunc (q *Queries) CoalesceNumericNull(ctx context.Context) ([]CoalesceNumericNullRow, error) {\n\trows, err := q.db.QueryContext(ctx, coalesceNumericNull)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CoalesceNumericNullRow\n\tfor rows.Next() {\n\t\tvar i CoalesceNumericNullRow\n\t\tif err := rows.Scan(&i.Baz, &i.Baz_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceString = `-- name: CoalesceString :many\nSELECT coalesce(bar, '') as login\nFROM foo\n`\n\nfunc (q *Queries) CoalesceString(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, coalesceString)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar login string\n\t\tif err := rows.Scan(&login); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, login)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceStringColumns = `-- name: CoalesceStringColumns :many\nSELECT bar, bat, coalesce(bar, bat)\nFROM foo\n`\n\ntype CoalesceStringColumnsRow struct {\n\tBar   sql.NullString\n\tBat   string\n\tBar_2 string\n}\n\nfunc (q *Queries) CoalesceStringColumns(ctx context.Context) ([]CoalesceStringColumnsRow, error) {\n\trows, err := q.db.QueryContext(ctx, coalesceStringColumns)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CoalesceStringColumnsRow\n\tfor rows.Next() {\n\t\tvar i CoalesceStringColumnsRow\n\t\tif err := rows.Scan(&i.Bar, &i.Bat, &i.Bar_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceStringNull = `-- name: CoalesceStringNull :many\nSELECT bar, coalesce(bar)\nFROM foo\n`\n\ntype CoalesceStringNullRow struct {\n\tBar   sql.NullString\n\tBar_2 sql.NullString\n}\n\nfunc (q *Queries) CoalesceStringNull(ctx context.Context) ([]CoalesceStringNullRow, error) {\n\trows, err := q.db.QueryContext(ctx, coalesceStringNull)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CoalesceStringNullRow\n\tfor rows.Next() {\n\t\tvar i CoalesceStringNullRow\n\t\tif err := rows.Scan(&i.Bar, &i.Bar_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/stdlib/query.sql",
    "content": "-- name: CoalesceString :many\nSELECT coalesce(bar, '') as login\nFROM foo;\n\n-- name: CoalesceNumeric :many\nSELECT coalesce(baz, 0) as login\nFROM foo;\n\n-- name: CoalesceStringColumns :many\nSELECT bar, bat, coalesce(bar, bat)\nFROM foo;\n\n-- name: CoalesceNumericColumns :many\nSELECT baz, qux, coalesce(baz, qux)\nFROM foo;\n\n-- name: CoalesceStringNull :many\nSELECT bar, coalesce(bar)\nFROM foo;\n\n-- name: CoalesceNumericNull :many\nSELECT baz, coalesce(baz)\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (\n    bar text,\n    bat text not null,\n    baz bigint,\n    qux bigint not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n\tBat string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst coalesce = `-- name: Coalesce :many\nSELECT coalesce(bar, '') as login\nFROM foo\n`\n\nfunc (q *Queries) Coalesce(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, coalesce)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar login string\n\t\tif err := rows.Scan(&login); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, login)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst coalesceColumns = `-- name: CoalesceColumns :many\nSELECT bar, bat, coalesce(bar, bat)\nFROM foo\n`\n\ntype CoalesceColumnsRow struct {\n\tBar   sql.NullString\n\tBat   string\n\tBar_2 string\n}\n\nfunc (q *Queries) CoalesceColumns(ctx context.Context) ([]CoalesceColumnsRow, error) {\n\trows, err := q.db.QueryContext(ctx, coalesceColumns)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CoalesceColumnsRow\n\tfor rows.Next() {\n\t\tvar i CoalesceColumnsRow\n\t\tif err := rows.Scan(&i.Bar, &i.Bat, &i.Bar_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/sqlite/query.sql",
    "content": "-- name: Coalesce :many\nSELECT coalesce(bar, '') as login\nFROM foo;\n\n-- name: CoalesceColumns :many\nSELECT bar, bat, coalesce(bar, bat)\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/sqlite/schema.sql",
    "content": "CREATE TABLE foo (bar text, bat text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n\tBaz sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst sumBaz = `-- name: SumBaz :many\nSELECT bar, coalesce(sum(baz), 0) as quantity\nFROM foo\nGROUP BY 1\n`\n\ntype SumBazRow struct {\n\tBar      sql.NullString\n\tQuantity interface{}\n}\n\nfunc (q *Queries) SumBaz(ctx context.Context) ([]SumBazRow, error) {\n\trows, err := q.db.QueryContext(ctx, sumBaz)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []SumBazRow\n\tfor rows.Next() {\n\t\tvar i SumBazRow\n\t\tif err := rows.Scan(&i.Bar, &i.Quantity); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/mysql/query.sql",
    "content": "-- name: SumBaz :many\nSELECT bar, coalesce(sum(baz), 0) as quantity\nFROM foo\nGROUP BY 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/mysql/schema.sql",
    "content": "CREATE TABLE foo (\n    bar text,\n    baz integer\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pganalyze/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pganalyze/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pganalyze/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar pgtype.Text\n\tBaz pgtype.Int8\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pganalyze/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst sumBaz = `-- name: SumBaz :many\nSELECT bar, coalesce(sum(baz), 0) as quantity\nFROM foo\nGROUP BY 1\n`\n\ntype SumBazRow struct {\n\tBar      pgtype.Text\n\tQuantity pgtype.Numeric\n}\n\nfunc (q *Queries) SumBaz(ctx context.Context) ([]SumBazRow, error) {\n\trows, err := q.db.Query(ctx, sumBaz)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []SumBazRow\n\tfor rows.Next() {\n\t\tvar i SumBazRow\n\t\tif err := rows.Scan(&i.Bar, &i.Quantity); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pganalyze/query.sql",
    "content": "-- name: SumBaz :many\nSELECT bar, coalesce(sum(baz), 0) as quantity\nFROM foo\nGROUP BY 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pganalyze/schema.sql",
    "content": "CREATE TABLE foo (\n    bar text,\n    baz bigint\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pganalyze/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"cloud\": {\n    \"project\": \"01HAQMMECEYQYKFJN8MP16QC41\"\n  },\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"database\": {\n        \"managed\": true\n      },\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pgx/v4/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n\tBaz sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst sumBaz = `-- name: SumBaz :many\nSELECT bar, coalesce(sum(baz), 0) as quantity\nFROM foo\nGROUP BY 1\n`\n\ntype SumBazRow struct {\n\tBar      sql.NullString\n\tQuantity interface{}\n}\n\nfunc (q *Queries) SumBaz(ctx context.Context) ([]SumBazRow, error) {\n\trows, err := q.db.Query(ctx, sumBaz)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []SumBazRow\n\tfor rows.Next() {\n\t\tvar i SumBazRow\n\t\tif err := rows.Scan(&i.Bar, &i.Quantity); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pgx/v4/query.sql",
    "content": "-- name: SumBaz :many\nSELECT bar, coalesce(sum(baz), 0) as quantity\nFROM foo\nGROUP BY 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (\n    bar text,\n    baz bigint\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pgx/v5/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar pgtype.Text\n\tBaz pgtype.Int8\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst sumBaz = `-- name: SumBaz :many\nSELECT bar, coalesce(sum(baz), 0) as quantity\nFROM foo\nGROUP BY 1\n`\n\ntype SumBazRow struct {\n\tBar      pgtype.Text\n\tQuantity interface{}\n}\n\nfunc (q *Queries) SumBaz(ctx context.Context) ([]SumBazRow, error) {\n\trows, err := q.db.Query(ctx, sumBaz)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []SumBazRow\n\tfor rows.Next() {\n\t\tvar i SumBazRow\n\t\tif err := rows.Scan(&i.Bar, &i.Quantity); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pgx/v5/query.sql",
    "content": "-- name: SumBaz :many\nSELECT bar, coalesce(sum(baz), 0) as quantity\nFROM foo\nGROUP BY 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (\n    bar text,\n    baz bigint\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/stdlib/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n\tBaz sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst sumBaz = `-- name: SumBaz :many\nSELECT bar, coalesce(sum(baz), 0) as quantity\nFROM foo\nGROUP BY 1\n`\n\ntype SumBazRow struct {\n\tBar      sql.NullString\n\tQuantity interface{}\n}\n\nfunc (q *Queries) SumBaz(ctx context.Context) ([]SumBazRow, error) {\n\trows, err := q.db.QueryContext(ctx, sumBaz)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []SumBazRow\n\tfor rows.Next() {\n\t\tvar i SumBazRow\n\t\tif err := rows.Scan(&i.Bar, &i.Quantity); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/stdlib/query.sql",
    "content": "-- name: SumBaz :many\nSELECT bar, coalesce(sum(baz), 0) as quantity\nFROM foo\nGROUP BY 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (\n    bar text,\n    baz bigint\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n\tBaz sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst sumBaz = `-- name: SumBaz :many\nSELECT bar, coalesce(sum(baz), 0) as quantity\nFROM foo\nGROUP BY 1\n`\n\ntype SumBazRow struct {\n\tBar      sql.NullString\n\tQuantity interface{}\n}\n\nfunc (q *Queries) SumBaz(ctx context.Context) ([]SumBazRow, error) {\n\trows, err := q.db.QueryContext(ctx, sumBaz)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []SumBazRow\n\tfor rows.Next() {\n\t\tvar i SumBazRow\n\t\tif err := rows.Scan(&i.Bar, &i.Quantity); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/sqlite/query.sql",
    "content": "-- name: SumBaz :many\nSELECT bar, coalesce(sum(baz), 0) as quantity\nFROM foo\nGROUP BY 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/sqlite/schema.sql",
    "content": "CREATE TABLE foo (\n    bar text,\n    baz integer\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_as/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_join/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_join/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int64\n}\n\ntype Foo struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_join/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getBar = `-- name: GetBar :many\nSELECT foo.id, COALESCE(bar.id, 0) AS bar_id\nFROM foo\nLEFT JOIN bar ON foo.id = bar.id\n`\n\ntype GetBarRow struct {\n\tID    int64\n\tBarID int64\n}\n\nfunc (q *Queries) GetBar(ctx context.Context) ([]GetBarRow, error) {\n\trows, err := q.db.QueryContext(ctx, getBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetBarRow\n\tfor rows.Next() {\n\t\tvar i GetBarRow\n\t\tif err := rows.Scan(&i.ID, &i.BarID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_join/postgresql/query.sql",
    "content": "-- name: GetBar :many\nSELECT foo.*, COALESCE(bar.id, 0) AS bar_id\nFROM foo\nLEFT JOIN bar ON foo.id = bar.id;\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_join/postgresql/schema.sql",
    "content": "CREATE TABLE foo(id bigserial primary key);\nCREATE TABLE bar(id bigserial primary key);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_join/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_params/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/2748\nhttps://github.com/sqlc-dev/sqlc/issues/2786\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_params/mysql/exec.json",
    "content": "{\n    \"contexts\": [\"base\"],\n    \"meta\": {\n        \"invalid_schema\": true\n    }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_params/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_params/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"database/sql/driver\"\n\t\"fmt\"\n\t\"time\"\n)\n\ntype CalendarMaincalendar string\n\nconst (\n\tCalendarMaincalendarTrue  CalendarMaincalendar = \"true\"\n\tCalendarMaincalendarFalse CalendarMaincalendar = \"false\"\n)\n\nfunc (e *CalendarMaincalendar) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = CalendarMaincalendar(s)\n\tcase string:\n\t\t*e = CalendarMaincalendar(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for CalendarMaincalendar: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullCalendarMaincalendar struct {\n\tCalendarMaincalendar CalendarMaincalendar\n\tValid                bool // Valid is true if CalendarMaincalendar is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullCalendarMaincalendar) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.CalendarMaincalendar, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.CalendarMaincalendar.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullCalendarMaincalendar) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.CalendarMaincalendar), nil\n}\n\ntype Author struct {\n\tID      int64\n\tAddress string\n\tName    string\n\tBio     string\n}\n\ntype Calendar struct {\n\tID           uint64\n\tRelation     uint64\n\tCalendarname []byte\n\tTitle        []byte\n\tDescription  []byte\n\tTimezone     string\n\tUniquekey    string\n\tIdkey        string\n\tMaincalendar CalendarMaincalendar\n\tCreatedate   time.Time\n\tModifydate   time.Time\n}\n\ntype Event struct {\n\tID                uint64\n\tRelation          uint64\n\tCalendarreference uint64\n\tUniquekey         string\n\tEventname         []byte\n\tDescription       []byte\n\tLocation          string\n\tTimezone          string\n\tIdkey             sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_params/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst addAuthor = `-- name: AddAuthor :execlastid\nINSERT INTO authors (\n    address,\n    name,\n    bio\n) VALUES (\n    ?,\n    COALESCE(?, \"\"),\n    COALESCE(?, \"\")\n)\n`\n\ntype AddAuthorParams struct {\n\tAddress        string\n\tCalName        interface{}\n\tCalDescription interface{}\n}\n\nfunc (q *Queries) AddAuthor(ctx context.Context, arg AddAuthorParams) (int64, error) {\n\tresult, err := q.db.ExecContext(ctx, addAuthor, arg.Address, arg.CalName, arg.CalDescription)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.LastInsertId()\n}\n\nconst addEvent = `-- name: AddEvent :execlastid\nINSERT INTO ` + \"`\" + `Event` + \"`\" + ` (\n    Timezone\n) VALUES (\n    (CASE WHEN ? = \"calendar\" THEN (SELECT cal.Timezone FROM Calendar cal WHERE cal.IdKey = ?) ELSE ? END)\n)\n`\n\ntype AddEventParams struct {\n\tTimezone      interface{}\n\tCalendarIdKey string\n}\n\nfunc (q *Queries) AddEvent(ctx context.Context, arg AddEventParams) (int64, error) {\n\tresult, err := q.db.ExecContext(ctx, addEvent, arg.Timezone, arg.CalendarIdKey, arg.Timezone)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.LastInsertId()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_params/mysql/query.sql",
    "content": "-- name: AddEvent :execlastid\nINSERT INTO `Event` (\n    Timezone\n) VALUES (\n    (CASE WHEN sqlc.arg(\"Timezone\") = \"calendar\" THEN (SELECT cal.Timezone FROM Calendar cal WHERE cal.IdKey = sqlc.arg(\"calendarIdKey\")) ELSE sqlc.arg(\"Timezone\") END)\n);\n\n-- name: AddAuthor :execlastid\nINSERT INTO authors (\n    address,\n    name,\n    bio\n) VALUES (\n    ?,\n    COALESCE(sqlc.narg(\"calName\"), \"\"),\n    COALESCE(sqlc.narg(\"calDescription\"), \"\")\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_params/mysql/schema.sql",
    "content": "CREATE TABLE `Calendar` (\n  `Id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,\n  `Relation` bigint(20) unsigned NOT NULL,\n  `CalendarName` longblob NOT NULL,\n  `Title` longblob NOT NULL,\n  `Description` longblob NOT NULL,\n  `Timezone` varchar(50) NOT NULL,\n  `UniqueKey` varchar(50) NOT NULL,\n  `IdKey` varchar(50) NOT NULL,\n  `MainCalendar` enum('true','false') NOT NULL DEFAULT 'false',\n  `CreateDate` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,\n  `ModifyDate` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n  PRIMARY KEY (`Id`),\n  KEY `Relation` (`Relation`),\n  KEY `UniqueKey` (`UniqueKey`),\n  KEY `IdKey` (`IdKey`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n\nCREATE TABLE `Event` (\n  `Id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,\n  `Relation` bigint(20) unsigned NOT NULL,\n  `CalendarReference` bigint(20) unsigned NOT NULL,\n  `UniqueKey` varchar(50) NOT NULL,\n  `EventName` longblob NOT NULL,\n  `Description` longblob NOT NULL,\n  `Location` varchar(500) NOT NULL,\n  `Timezone` varchar(50) NOT NULL,\n  `IdKey` varchar(48) DEFAULT NULL,\n  PRIMARY KEY (`Id`),\n  KEY `Relation` (`Relation`),\n  KEY `CalendarReference` (`CalendarReference`),\n  KEY `UniqueKey` (`UniqueKey`),\n  KEY `IdKey` (`IdKey`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;\n\n\nCREATE TABLE authors (\n  id   BIGINT AUTO_INCREMENT NOT NULL,\n  address VARCHAR(200) NOT NULL,\n  name VARCHAR(20) NOT NULL,\n  bio  LONGTEXT NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/coalesce_params/mysql/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"mysql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n"
  },
  {
    "path": "internal/endtoend/testdata/codegen_json/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/codegen_json/gen/codegen.json",
    "content": "{\n  \"settings\": {\n    \"version\": \"2\",\n    \"engine\": \"postgresql\",\n    \"schema\": [\n      \"postgresql/schema.sql\"\n    ],\n    \"queries\": [\n      \"postgresql/query.sql\"\n    ],\n    \"codegen\": {\n      \"out\": \"\",\n      \"plugin\": \"\",\n      \"options\": \"\",\n      \"env\": [],\n      \"process\": null,\n      \"wasm\": null\n    }\n  },\n  \"catalog\": {\n    \"comment\": \"\",\n    \"default_schema\": \"public\",\n    \"name\": \"\",\n    \"schemas\": [\n      {\n        \"comment\": \"\",\n        \"name\": \"public\",\n        \"tables\": [\n          {\n            \"rel\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"authors\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"id\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"authors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bigserial\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"name\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"authors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"bio\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"authors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          }\n        ],\n        \"enums\": [],\n        \"composite_types\": []\n      },\n      {\n        \"comment\": \"\",\n        \"name\": \"pg_temp\",\n        \"tables\": [],\n        \"enums\": [],\n        \"composite_types\": []\n      },\n      {\n        \"comment\": \"\",\n        \"name\": \"pg_catalog\",\n        \"tables\": [\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_aggregate\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggfnoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggkind\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggnumdirectargs\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggtransfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggfinalfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggcombinefn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggserialfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggdeserialfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmtransfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggminvtransfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmfinalfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggfinalextra\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmfinalextra\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggfinalmodify\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmfinalmodify\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggsortop\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggtranstype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggtransspace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmtranstype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmtransspace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"agginitval\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggminitval\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_am\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amhandler\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_amop\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amopfamily\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amoplefttype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amoprighttype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amopstrategy\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amoppurpose\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amopopr\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amopmethod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amopsortfamily\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_amproc\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amprocfamily\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amproclefttype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amprocrighttype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amprocnum\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amproc\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_attrdef\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"adrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"adnum\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"adbin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_attribute\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"atttypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attstattarget\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attlen\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attnum\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attndims\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attcacheoff\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"atttypmod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attbyval\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attalign\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attstorage\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attcompression\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attnotnull\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"atthasdef\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"atthasmissing\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attidentity\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attgenerated\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attisdropped\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attislocal\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attinhcount\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attcollation\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attfdwoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attmissingval\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_auth_members\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"roleid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"member\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantor\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"admin_option\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_authid\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolsuper\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolinherit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcreaterole\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcreatedb\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcanlogin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolreplication\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolbypassrls\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolconnlimit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolpassword\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolvaliduntil\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_available_extension_versions\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"installed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"superuser\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trusted\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relocatable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"requires\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comment\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_available_extensions\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extensions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extensions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"installed_version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extensions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comment\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extensions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_backend_memory_contexts\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ident\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parent\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"level\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_nblocks\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"free_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"free_chunks\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"used_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_cast\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"castsource\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"casttarget\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"castfunc\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"castcontext\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"castmethod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_class\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reltype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reloftype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relam\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relfilenode\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reltablespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relpages\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reltuples\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relallvisible\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reltoastrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relhasindex\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relisshared\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relpersistence\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relkind\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relnatts\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relchecks\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relhasrules\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relhastriggers\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relhassubclass\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relrowsecurity\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relforcerowsecurity\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relispopulated\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relreplident\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relispartition\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relrewrite\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relfrozenxid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relminmxid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reloptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relpartbound\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_collation\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collprovider\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collisdeterministic\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collencoding\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collcollate\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collctype\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"colliculocale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collversion\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_config\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setting\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_constraint\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"connamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"contype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"condeferrable\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"condeferred\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"convalidated\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"contypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conindid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conparentid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confupdtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confdeltype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confmatchtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conislocal\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"coninhcount\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"connoinherit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conkey\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confkey\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conpfeqop\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conppeqop\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conffeqop\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confdelsetcols\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conexclop\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conbin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_conversion\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"connamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conforencoding\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"contoencoding\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conproc\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"condefault\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_cursors\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statement\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_holdable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_binary\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_scrollable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"creation_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_database\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datdba\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"encoding\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datlocprovider\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datistemplate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datallowconn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datconnlimit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datfrozenxid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datminmxid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dattablespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datcollate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datctype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"daticulocale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datcollversion\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_db_role_setting\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setdatabase\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setrole\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_default_acl\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"defaclrole\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"defaclnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"defaclobjtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"defaclacl\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_depend\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"refclassid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"refobjid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"refobjsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"deptype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_description\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"description\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_enum\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"enumtypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"enumsortorder\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"enumlabel\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_event_trigger\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evtname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evtevent\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evtowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evtfoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evtenabled\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evttags\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_extension\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extrelocatable\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extversion\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extcondition\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_file_settings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"sourcefile\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sourceline\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqno\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setting\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"applied\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"error\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_foreign_data_wrapper\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwhandler\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwvalidator\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_foreign_server\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvfdw\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvtype\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvversion\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_foreign_table\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ftrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ftserver\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ftoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_group\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"groname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_group\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grosysid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_group\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grolist\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_group\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_hba_file_rules\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"line_number\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"database\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_name\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"address\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"netmask\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"auth_method\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"options\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"error\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ident_file_mappings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"line_number\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ident_file_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"map_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ident_file_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sys_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ident_file_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pg_username\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ident_file_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"error\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ident_file_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_index\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indnatts\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indnkeyatts\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisunique\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indnullsnotdistinct\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisprimary\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisexclusion\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indimmediate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisclustered\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisvalid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indcheckxmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisready\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indislive\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisreplident\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indkey\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indcollation\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oidvector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indclass\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oidvector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indoption\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexprs\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indpred\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablespace\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexdef\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_inherits\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inhrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inhparent\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inhseqno\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inhdetachpending\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_init_privs\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"initprivs\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_language\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanispl\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanpltrusted\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanplcallfoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"laninline\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanvalidator\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_largeobject\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"loid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pageno\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bytea\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_largeobject_metadata\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lomowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lomacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_locks\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"locktype\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"database\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"page\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tuple\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"virtualxid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"transactionid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"virtualtransaction\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"mode\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"granted\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fastpath\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"waitstart\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_matviews\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"matviewname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"matviewowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablespace\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"hasindexes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ispopulated\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"definition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_namespace\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"nspname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"nspowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"nspacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_opclass\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcmethod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcfamily\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcintype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcdefault\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opckeytype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_operator\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprkind\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprcanmerge\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprcanhash\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprleft\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprright\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprresult\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprcom\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprnegate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprcode\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprrest\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprjoin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_opfamily\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opfmethod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opfname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opfnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opfowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_parameter_acl\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"paracl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_partitioned_table\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partstrat\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partnatts\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partdefid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partattrs\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partclass\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oidvector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partcollation\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oidvector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partexprs\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_policies\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"policyname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"permissive\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"roles\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"qual\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"with_check\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_policy\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polcmd\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polpermissive\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polroles\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polqual\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polwithcheck\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_prepared_statements\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statement\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prepare_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parameter_types\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_regtype\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"from_sql\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"generic_plans\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"custom_plans\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_prepared_xacts\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"transaction\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_xacts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"gid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_xacts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prepared\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_xacts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"owner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_xacts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"database\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_xacts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_proc\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pronamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prolang\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"procost\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prorows\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"provariadic\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prosupport\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prokind\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prosecdef\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proleakproof\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proisstrict\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proretset\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"provolatile\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proparallel\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pronargs\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pronargdefaults\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prorettype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proargtypes\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oidvector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proallargtypes\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proargmodes\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proargnames\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proargdefaults\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"protrftypes\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prosrc\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"probin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prosqlbody\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_publication\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"puballtables\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubinsert\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubupdate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubdelete\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubtruncate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubviaroot\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_publication_namespace\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pnpubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pnnspid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_publication_rel\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prpubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prqual\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prattrs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_publication_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pubname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attnames\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rowfilter\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_range\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngtypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngsubtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngmultitypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngcollation\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngsubopc\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngcanonical\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngsubdiff\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_replication_origin\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"roident\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"roname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_replication_origin_status\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"local_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin_status\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"external_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin_status\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"remote_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin_status\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"local_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin_status\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_replication_slots\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"slot_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"plugin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"slot_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datoid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"database\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"temporary\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"active\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"active_pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"catalog_xmin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"restart_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confirmed_flush_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_status\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"safe_wal_size\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"two_phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_rewrite\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rulename\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ev_class\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ev_type\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ev_enabled\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_instead\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ev_qual\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ev_action\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_roles\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"rolname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolsuper\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolinherit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcreaterole\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcreatedb\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcanlogin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolreplication\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolconnlimit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolpassword\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolvaliduntil\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolbypassrls\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_rules\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rulename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"definition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_seclabel\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"provider\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"label\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_seclabels\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"objoid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objtype\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objnamespace\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"provider\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"label\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_sequence\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqtypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqstart\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqincrement\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqcache\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqcycle\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_sequences\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequencename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequenceowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regtype\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"start_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"min_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"max_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"increment_by\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cycle\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cache_size\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_settings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setting\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"unit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"category\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"short_desc\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extra_desc\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"context\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"vartype\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"source\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"min_val\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"max_val\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"enumvals\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"boot_val\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reset_val\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sourcefile\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sourceline\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pending_restart\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_shadow\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"usename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesysid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usecreatedb\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesuper\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"userepl\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usebypassrls\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"passwd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"valuntil\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"useconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_shdepend\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dbid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"refclassid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"refobjid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"deptype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_shdescription\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"description\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_shmem_allocations\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shmem_allocations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"off\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shmem_allocations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"size\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shmem_allocations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"allocated_size\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shmem_allocations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_shseclabel\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"provider\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"label\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_activity\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"leader_pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesysid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"application_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_addr\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"inet\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_hostname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_port\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_start\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xact_start\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"query_start\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"state_change\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wait_event_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wait_event\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"state\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_xid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_xmin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"query_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"query\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_all_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_all_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_live_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_dead_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_mod_since_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_ins_since_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autovacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autoanalyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"vacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autovacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"analyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autoanalyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_archiver\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"archived_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_archived_wal\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_archived_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"failed_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_failed_wal\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_failed_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_bgwriter\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"checkpoints_timed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"checkpoints_req\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"checkpoint_write_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"checkpoint_sync_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"buffers_checkpoint\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"buffers_clean\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maxwritten_clean\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"buffers_backend\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"buffers_backend_fsync\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"buffers_alloc\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_database\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numbackends\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xact_commit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xact_rollback\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tup_returned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tup_fetched\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tup_inserted\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tup_updated\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tup_deleted\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conflicts\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"temp_files\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"temp_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"deadlocks\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"checksum_failures\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"checksum_last_failure\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blk_read_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blk_write_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"session_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"active_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idle_in_transaction_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sessions\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sessions_abandoned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sessions_fatal\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sessions_killed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_database_conflicts\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confl_tablespace\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confl_lock\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confl_snapshot\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confl_bufferpin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confl_deadlock\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_gssapi\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_gssapi\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"gss_authenticated\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_gssapi\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"principal\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_gssapi\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"encrypted\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_gssapi\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_analyze\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sample_blks_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sample_blks_scanned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ext_stats_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ext_stats_computed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"child_tables_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"child_tables_done\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"current_child_table_relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_basebackup\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backup_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backup_streamed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablespaces_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablespaces_streamed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_cluster\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"command\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cluster_index_relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_tuples_scanned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_tuples_written\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_scanned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"index_rebuild_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_copy\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"command\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"bytes_processed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"bytes_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tuples_processed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tuples_excluded\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_create_index\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"index_relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"command\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lockers_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lockers_done\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"current_locker_pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blocks_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blocks_done\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tuples_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tuples_done\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partitions_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partitions_done\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_vacuum\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_scanned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_vacuumed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"index_vacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"max_dead_tuples\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"num_dead_tuples\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_recovery_prefetch\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prefetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"skip_init\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"skip_new\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"skip_fpw\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"skip_rep\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_distance\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"block_distance\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"io_depth\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_replication\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesysid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"application_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_addr\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"inet\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_hostname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_port\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_start\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_xmin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"state\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sent_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"write_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"flush_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"replay_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"write_lag\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 16,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"interval\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"flush_lag\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 16,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"interval\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"replay_lag\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 16,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"interval\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sync_priority\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sync_state\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reply_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_replication_slots\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"slot_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spill_txns\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spill_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spill_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stream_txns\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stream_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stream_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_txns\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_slru\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_zeroed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_written\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_exists\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"flushes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"truncates\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_ssl\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ssl\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cipher\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"bits\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_dn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_serial\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"numeric\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"issuer_dn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_subscription\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"subid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"received_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_msg_send_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_msg_receipt_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"latest_end_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"latest_end_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_subscription_stats\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"subid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"apply_error_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sync_error_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_sys_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_sys_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_live_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_dead_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_mod_since_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_ins_since_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autovacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autoanalyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"vacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autovacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"analyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autoanalyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_user_functions\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"funcid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"funcname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"calls\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"self_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_user_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_user_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_live_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_dead_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_mod_since_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_ins_since_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autovacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autoanalyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"vacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autovacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"analyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autoanalyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_wal\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"wal_records\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_fpi\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"numeric\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_buffers_full\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_write\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_sync\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_write_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_sync_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_wal_receiver\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"status\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"receive_start_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"receive_start_tli\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"written_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"flushed_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"received_tli\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_msg_send_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_msg_receipt_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"latest_end_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"latest_end_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"slot_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sender_host\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sender_port\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conninfo\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_xact_all_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_xact_sys_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_xact_user_functions\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"funcid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"funcname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"calls\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"self_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_xact_user_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_all_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_all_sequences\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_all_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_sys_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_sys_sequences\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_sys_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_user_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_user_sequences\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_user_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statistic\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"starelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staattnum\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stainherit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanullfrac\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stawidth\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stadistinct\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stakind1\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stakind2\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stakind3\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stakind4\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stakind5\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staop1\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staop2\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staop3\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staop4\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staop5\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stacoll1\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stacoll2\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stacoll3\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stacoll4\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stacoll5\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanumbers1\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanumbers2\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanumbers3\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanumbers4\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanumbers5\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stavalues1\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stavalues2\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stavalues3\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stavalues4\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stavalues5\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statistic_ext\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxstattarget\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxkeys\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxkind\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxexprs\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statistic_ext_data\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxdinherit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxdndistinct\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_ndistinct\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxddependencies\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_dependencies\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxdmcv\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_mcv_list\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxdexpr\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_pg_statistic\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stats\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inherited\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"null_frac\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"avg_width\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_distinct\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_vals\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"histogram_bounds\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"correlation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_elems\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_elem_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"elem_count_histogram\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stats_ext\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_owner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attnames\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"exprs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"kinds\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inherited\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_distinct\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_ndistinct\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dependencies\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_dependencies\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_vals\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_val_nulls\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_base_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stats_ext_exprs\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_owner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"expr\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inherited\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"null_frac\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"avg_width\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_distinct\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_vals\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"histogram_bounds\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"correlation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_elems\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_elem_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"elem_count_histogram\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_subscription\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subdbid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subskiplsn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subenabled\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subbinary\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"substream\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subtwophasestate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subdisableonerr\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subconninfo\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subslotname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subsynccommit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subpublications\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_subscription_rel\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srsubstate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srsublsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tableowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablespace\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"hasindexes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"hasrules\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"hastriggers\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rowsecurity\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_tablespace\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spcname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spcowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spcacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spcoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_timezone_abbrevs\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"abbrev\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_abbrevs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"utc_offset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 16,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_abbrevs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"interval\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_dst\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_abbrevs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_timezone_names\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_names\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"abbrev\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_names\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"utc_offset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 16,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_names\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"interval\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_dst\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_names\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_transform\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trftype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trflang\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trffromsql\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trftosql\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_trigger\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgparentid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgfoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgenabled\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgisinternal\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgconstrrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgconstrindid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgconstraint\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgdeferrable\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tginitdeferred\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgnargs\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgattr\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgargs\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bytea\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgqual\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgoldtable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgnewtable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ts_config\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cfgname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cfgnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cfgowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cfgparser\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ts_config_map\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"mapcfg\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maptokentype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"mapseqno\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"mapdict\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ts_dict\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dictname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dictnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dictowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dicttemplate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dictinitoption\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ts_parser\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prsname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prsnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prsstart\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prstoken\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prsend\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prsheadline\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prslextype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ts_template\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tmplname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tmplnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tmplinit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tmpllexize\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_type\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typlen\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typbyval\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typcategory\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typispreferred\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typisdefined\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typdelim\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typsubscript\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typelem\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typarray\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typinput\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typoutput\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typreceive\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typsend\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typmodin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typmodout\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typanalyze\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typalign\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typstorage\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typnotnull\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typbasetype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typtypmod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typndims\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typcollation\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typdefaultbin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typdefault\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_user\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"usename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesysid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usecreatedb\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesuper\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"userepl\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usebypassrls\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"passwd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"valuntil\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"useconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_user_mapping\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umuser\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umserver\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_user_mappings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"umid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umuser\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_views\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"viewname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"viewowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"definition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          }\n        ],\n        \"enums\": [],\n        \"composite_types\": []\n      },\n      {\n        \"comment\": \"\",\n        \"name\": \"information_schema\",\n        \"tables\": [\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"_pg_foreign_data_wrappers\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"oid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_language\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"_pg_foreign_servers\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"oid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"_pg_foreign_table_columns\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"nspname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_table_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_table_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_table_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attfdwoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_table_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"_pg_foreign_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ftoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"_pg_user_mappings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"oid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umuser\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"administrable_role_authorizations\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"administrable_role_authorizations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"role_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"administrable_role_authorizations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"administrable_role_authorizations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"applicable_roles\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"applicable_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"role_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"applicable_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"applicable_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"attributes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attribute_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordinal_position\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attribute_default\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_nullable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attribute_udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attribute_udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attribute_udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_derived_reference_attribute\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"character_sets\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_repertoire\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"form_of_use\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_collate_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_collate_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_collate_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"check_constraint_routine_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"check_constraints\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"check_clause\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"collation_character_set_applicability\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"collations\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pad_attribute\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"column_column_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dependent_column\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"column_domain_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"domain_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"column_options\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"column_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"column_udt_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"columns\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordinal_position\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_default\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_nullable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_self_referencing\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_identity\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_generation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_start\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_increment\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_maximum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_minimum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_cycle\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_generated\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"generation_expression\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_updatable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"constraint_column_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"constraint_table_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"data_type_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"data_type_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"data_type_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"data_type_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"data_type_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"data_type_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"domain_constraints\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_deferrable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"initially_deferred\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"domain_udt_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"domains\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"domain_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_default\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"element_types\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collection_type_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_default\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"enabled_roles\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"role_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"enabled_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_data_wrapper_options\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_data_wrapper_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrapper_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrapper_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrapper_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrapper_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_data_wrappers\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_data_wrapper_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"library_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_language\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_server_options\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_server_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_server_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_server_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_server_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_servers\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_table_options\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_table_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_table_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_table_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_table_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_table_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"information_schema_catalog_name\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"catalog_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"information_schema_catalog_name\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"key_column_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordinal_position\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"position_in_unique_constraint\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"parameters\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordinal_position\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parameter_mode\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_result\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"as_locator\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parameter_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parameter_default\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"referential_constraints\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"unique_constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"unique_constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"unique_constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"match_option\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"update_rule\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"delete_rule\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"role_column_grants\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"role_routine_grants\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"role_table_grants\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"with_hierarchy\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"role_udt_grants\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"role_usage_grants\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routine_column_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routine_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routine_routine_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routine_sequence_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequence_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequence_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequence_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routine_table_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routines\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"module_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"module_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"module_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"type_udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"type_udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"type_udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_body\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_definition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"external_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"external_language\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parameter_style\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_deterministic\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sql_data_access\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_null_call\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sql_path\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schema_level_routine\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"max_dynamic_result_sets\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_user_defined_cast\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_implicitly_invocable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"security_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"to_sql_specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"to_sql_specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"to_sql_specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"as_locator\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"created\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"time_stamp\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_altered\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"time_stamp\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"new_savepoint_level\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_udt_dependent\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_from_data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_as_locator\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_char_max_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_char_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_char_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_char_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_char_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_type_udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_type_udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_type_udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"schemata\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"catalog_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schema_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schema_owner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sql_path\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"sequences\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"sequence_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequence_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequence_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"start_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"minimum_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"increment\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cycle_option\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"sql_features\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"feature_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"feature_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sub_feature_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sub_feature_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_supported\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_verified_by\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comments\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"sql_implementation_info\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"implementation_info_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"implementation_info_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"integer_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comments\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"sql_parts\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"feature_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"feature_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_supported\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_verified_by\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comments\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"sql_sizing\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sizing_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sizing_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"supported_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comments\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"table_constraints\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_deferrable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"initially_deferred\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"enforced\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"nulls_distinct\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"table_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"with_hierarchy\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"self_referencing_column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reference_generation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_insertable_into\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_typed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"commit_action\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"transforms\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"group_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"transform_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"triggered_update_columns\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"trigger_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trigger_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trigger_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_table\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_column\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"triggers\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"trigger_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trigger_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trigger_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_manipulation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_table\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_order\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_condition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_statement\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_orientation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_timing\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_reference_old_table\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_reference_new_table\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_reference_old_row\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_reference_new_row\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"created\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"time_stamp\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"udt_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"usage_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"user_defined_types\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"user_defined_type_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_category\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_instantiable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_final\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordering_form\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordering_category\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordering_routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordering_routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordering_routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reference_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"source_dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ref_dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"user_mapping_options\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mapping_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mapping_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mapping_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mapping_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mapping_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"user_mappings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"view_column_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"view_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"view_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"view_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"view_routine_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"view_table_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"view_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"view_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"view_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"views\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"view_definition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"check_option\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_updatable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_insertable_into\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_trigger_updatable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_trigger_deletable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_trigger_insertable_into\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          }\n        ],\n        \"enums\": [],\n        \"composite_types\": []\n      }\n    ]\n  },\n  \"queries\": [\n    {\n      \"text\": \"SELECT id, name, bio FROM authors\\nWHERE id = $1 LIMIT 1\",\n      \"name\": \"GetAuthor\",\n      \"cmd\": \":one\",\n      \"columns\": [\n        {\n          \"name\": \"id\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"bigserial\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"id\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"name\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"name\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"bio\",\n          \"not_null\": false,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"bio\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        }\n      ],\n      \"params\": [\n        {\n          \"number\": 1,\n          \"column\": {\n            \"name\": \"id\",\n            \"not_null\": true,\n            \"is_array\": false,\n            \"comment\": \"\",\n            \"length\": -1,\n            \"is_named_param\": false,\n            \"is_func_call\": false,\n            \"scope\": \"\",\n            \"table\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"authors\"\n            },\n            \"table_alias\": \"\",\n            \"type\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"bigserial\"\n            },\n            \"is_sqlc_slice\": false,\n            \"embed_table\": null,\n            \"original_name\": \"id\",\n            \"unsigned\": false,\n            \"array_dims\": 0\n          }\n        }\n      ],\n      \"comments\": [],\n      \"filename\": \"query.sql\",\n      \"insert_into_table\": null\n    },\n    {\n      \"text\": \"SELECT id, name, bio FROM authors\\nORDER BY name\",\n      \"name\": \"ListAuthors\",\n      \"cmd\": \":many\",\n      \"columns\": [\n        {\n          \"name\": \"id\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"bigserial\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"id\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"name\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"name\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"bio\",\n          \"not_null\": false,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"bio\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        }\n      ],\n      \"params\": [],\n      \"comments\": [],\n      \"filename\": \"query.sql\",\n      \"insert_into_table\": null\n    },\n    {\n      \"text\": \"INSERT INTO authors (\\n          name, bio\\n) VALUES (\\n  $1, $2\\n)\\nRETURNING id, name, bio\",\n      \"name\": \"CreateAuthor\",\n      \"cmd\": \":one\",\n      \"columns\": [\n        {\n          \"name\": \"id\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"bigserial\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"id\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"name\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"name\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"bio\",\n          \"not_null\": false,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"bio\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        }\n      ],\n      \"params\": [\n        {\n          \"number\": 1,\n          \"column\": {\n            \"name\": \"name\",\n            \"not_null\": true,\n            \"is_array\": false,\n            \"comment\": \"\",\n            \"length\": -1,\n            \"is_named_param\": false,\n            \"is_func_call\": false,\n            \"scope\": \"\",\n            \"table\": {\n              \"catalog\": \"\",\n              \"schema\": \"public\",\n              \"name\": \"authors\"\n            },\n            \"table_alias\": \"\",\n            \"type\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"text\"\n            },\n            \"is_sqlc_slice\": false,\n            \"embed_table\": null,\n            \"original_name\": \"name\",\n            \"unsigned\": false,\n            \"array_dims\": 0\n          }\n        },\n        {\n          \"number\": 2,\n          \"column\": {\n            \"name\": \"bio\",\n            \"not_null\": false,\n            \"is_array\": false,\n            \"comment\": \"\",\n            \"length\": -1,\n            \"is_named_param\": false,\n            \"is_func_call\": false,\n            \"scope\": \"\",\n            \"table\": {\n              \"catalog\": \"\",\n              \"schema\": \"public\",\n              \"name\": \"authors\"\n            },\n            \"table_alias\": \"\",\n            \"type\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"text\"\n            },\n            \"is_sqlc_slice\": false,\n            \"embed_table\": null,\n            \"original_name\": \"bio\",\n            \"unsigned\": false,\n            \"array_dims\": 0\n          }\n        }\n      ],\n      \"comments\": [],\n      \"filename\": \"query.sql\",\n      \"insert_into_table\": {\n        \"catalog\": \"\",\n        \"schema\": \"\",\n        \"name\": \"authors\"\n      }\n    },\n    {\n      \"text\": \"DELETE FROM authors\\nWHERE id = $1\",\n      \"name\": \"DeleteAuthor\",\n      \"cmd\": \":exec\",\n      \"columns\": [],\n      \"params\": [\n        {\n          \"number\": 1,\n          \"column\": {\n            \"name\": \"id\",\n            \"not_null\": true,\n            \"is_array\": false,\n            \"comment\": \"\",\n            \"length\": -1,\n            \"is_named_param\": false,\n            \"is_func_call\": false,\n            \"scope\": \"\",\n            \"table\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"authors\"\n            },\n            \"table_alias\": \"\",\n            \"type\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"bigserial\"\n            },\n            \"is_sqlc_slice\": false,\n            \"embed_table\": null,\n            \"original_name\": \"id\",\n            \"unsigned\": false,\n            \"array_dims\": 0\n          }\n        }\n      ],\n      \"comments\": [],\n      \"filename\": \"query.sql\",\n      \"insert_into_table\": null\n    }\n  ],\n  \"sqlc_version\": \"v1.30.0\",\n  \"plugin_options\": \"eyJvdXQiOiJnZW4iLCJpbmRlbnQiOiIgICIsImZpbGVuYW1lIjoiY29kZWdlbi5qc29uIn0=\",\n  \"global_options\": \"\"\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/codegen_json/postgresql/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/codegen_json/postgresql/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/codegen_json/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"schema\": \"postgresql/schema.sql\",\n      \"queries\": \"postgresql/query.sql\",\n      \"engine\": \"postgresql\",\n      \"gen\": {\n        \"json\": {\n          \"out\": \"gen\",\n          \"indent\": \"  \",\n          \"filename\": \"codegen.json\"\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/codegen_struct_field_names/stdlib/README.md",
    "content": "This tests that Go struct field names are proper Go identifiers."
  },
  {
    "path": "internal/endtoend/testdata/codegen_struct_field_names/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/codegen_struct_field_names/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID                     int32\n\tNobodyWouldBelieveThis sql.NullInt32\n\tParentID               sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/codegen_struct_field_names/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: test :one\nSELECT id, \"!!!nobody,_,-would-believe---this-...?!\", \"parent        id\" from bar limit 1\n`\n\nfunc (q *Queries) test(ctx context.Context) (Bar, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar i Bar\n\terr := row.Scan(&i.ID, &i.NobodyWouldBelieveThis, &i.ParentID)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/codegen_struct_field_names/stdlib/query.sql",
    "content": "-- name: test :one\nSELECT * from bar limit 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/codegen_struct_field_names/stdlib/schema.sql",
    "content": "CREATE TABLE bar (\n    id INT NOT NULL,\n    \"!!!nobody,_,-would-believe---this-...?!\" INT,\n    \"parent        id\" INT);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/codegen_struct_field_names/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/column_alias/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1739\n"
  },
  {
    "path": "internal/endtoend/testdata/column_alias/stdlib/exec.json",
    "content": "{\n    \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_alias/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_alias/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"time\"\n)\n\ntype User struct {\n\tID        int32\n\tFname     string\n\tLname     string\n\tEmail     string\n\tEncPasswd string\n\tCreatedAt time.Time\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_alias/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"time\"\n)\n\nconst getUsers = `-- name: GetUsers :many\nSELECT \n    users.id,\n    users.fname,\n    users.lname,\n    users.email,\n    users.created_at,\n    rank_email,\n    rank_fname,\n    rank_lname,\n    similarity\nFROM \n    users, \n    to_tsvector(users.email || users.fname || users.lname) document,\n    to_tsquery($1::TEXT) query,\n    NULLIF(ts_rank(to_tsvector(users.email), query), 0) rank_email,\n    NULLIF(ts_rank(to_tsvector(users.fname), query), 0) rank_fname,\n    NULLIF(ts_rank(to_tsvector(users.lname), query), 0) rank_lname,\n    SIMILARITY($1::TEXT, users.email || users.fname || users.lname) similarity\nWHERE query @@ document OR similarity > 0\nORDER BY rank_email, rank_lname, rank_fname, similarity DESC NULLS LAST\n`\n\ntype GetUsersRow struct {\n\tID         int32\n\tFname      string\n\tLname      string\n\tEmail      string\n\tCreatedAt  time.Time\n\tRankEmail  sql.NullFloat64\n\tRankFname  sql.NullFloat64\n\tRankLname  sql.NullFloat64\n\tSimilarity sql.NullFloat64\n}\n\nfunc (q *Queries) GetUsers(ctx context.Context, searchTerm string) ([]GetUsersRow, error) {\n\trows, err := q.db.QueryContext(ctx, getUsers, searchTerm)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetUsersRow\n\tfor rows.Next() {\n\t\tvar i GetUsersRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Fname,\n\t\t\t&i.Lname,\n\t\t\t&i.Email,\n\t\t\t&i.CreatedAt,\n\t\t\t&i.RankEmail,\n\t\t\t&i.RankFname,\n\t\t\t&i.RankLname,\n\t\t\t&i.Similarity,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_alias/stdlib/query.sql",
    "content": "-- name: GetUsers :many\nSELECT \n    users.id,\n    users.fname,\n    users.lname,\n    users.email,\n    users.created_at,\n    rank_email,\n    rank_fname,\n    rank_lname,\n    similarity\nFROM \n    users, \n    to_tsvector(users.email || users.fname || users.lname) document,\n    to_tsquery(@search_term::TEXT) query,\n    NULLIF(ts_rank(to_tsvector(users.email), query), 0) rank_email,\n    NULLIF(ts_rank(to_tsvector(users.fname), query), 0) rank_fname,\n    NULLIF(ts_rank(to_tsvector(users.lname), query), 0) rank_lname,\n    SIMILARITY(@search_term::TEXT, users.email || users.fname || users.lname) similarity\nWHERE query @@ document OR similarity > 0\nORDER BY rank_email, rank_lname, rank_fname, similarity DESC NULLS LAST;\n"
  },
  {
    "path": "internal/endtoend/testdata/column_alias/stdlib/schema.sql",
    "content": "CREATE EXTENSION pg_trgm;\nCREATE EXTENSION pgcrypto;\n\nCREATE TABLE users(\n    id INT GENERATED ALWAYS AS IDENTITY NOT NULL,\n    fname VARCHAR(100) NOT NULL,\n    lname VARCHAR(100) NOT NULL,\n    email VARCHAR(100) NOT NULL UNIQUE,\n    enc_passwd TEXT NOT NULL,\n    created_at TIMESTAMP WITH TIME ZONE NOT NULL default (NOW() AT TIME ZONE 'utc'),\n    PRIMARY KEY(id)\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/column_alias/stdlib/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"database/sql\"\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst withAs = `-- name: WithAs :one\nSELECT 1 AS x, 2 AS y\n`\n\ntype WithAsRow struct {\n\tX int32\n\tY int32\n}\n\nfunc (q *Queries) WithAs(ctx context.Context) (WithAsRow, error) {\n\trow := q.db.QueryRowContext(ctx, withAs)\n\tvar i WithAsRow\n\terr := row.Scan(&i.X, &i.Y)\n\treturn i, err\n}\n\nconst withoutAs = `-- name: WithoutAs :one\nSELECT 1 x, 2 y\n`\n\ntype WithoutAsRow struct {\n\tX int32\n\tY int32\n}\n\nfunc (q *Queries) WithoutAs(ctx context.Context) (WithoutAsRow, error) {\n\trow := q.db.QueryRowContext(ctx, withoutAs)\n\tvar i WithoutAsRow\n\terr := row.Scan(&i.X, &i.Y)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/mysql/query.sql",
    "content": "-- name: WithAs :one\nSELECT 1 AS x, 2 AS y;\n\n-- name: WithoutAs :one\nSELECT 1 x, 2 y;"
  },
  {
    "path": "internal/endtoend/testdata/column_as/mysql/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/column_as/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst withAs = `-- name: WithAs :one\nSELECT 1 AS x, 2 AS y\n`\n\ntype WithAsRow struct {\n\tX int32\n\tY int32\n}\n\nfunc (q *Queries) WithAs(ctx context.Context) (WithAsRow, error) {\n\trow := q.db.QueryRow(ctx, withAs)\n\tvar i WithAsRow\n\terr := row.Scan(&i.X, &i.Y)\n\treturn i, err\n}\n\nconst withoutAs = `-- name: WithoutAs :one\nSELECT 1 x, 2 y\n`\n\ntype WithoutAsRow struct {\n\tX int32\n\tY int32\n}\n\nfunc (q *Queries) WithoutAs(ctx context.Context) (WithoutAsRow, error) {\n\trow := q.db.QueryRow(ctx, withoutAs)\n\tvar i WithoutAsRow\n\terr := row.Scan(&i.X, &i.Y)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/pgx/v4/query.sql",
    "content": "-- name: WithAs :one\nSELECT 1 AS x, 2 AS y;\n\n-- name: WithoutAs :one\nSELECT 1 x, 2 y;"
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/pgx/v4/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst withAs = `-- name: WithAs :one\nSELECT 1 AS x, 2 AS y\n`\n\ntype WithAsRow struct {\n\tX int32\n\tY int32\n}\n\nfunc (q *Queries) WithAs(ctx context.Context) (WithAsRow, error) {\n\trow := q.db.QueryRow(ctx, withAs)\n\tvar i WithAsRow\n\terr := row.Scan(&i.X, &i.Y)\n\treturn i, err\n}\n\nconst withoutAs = `-- name: WithoutAs :one\nSELECT 1 x, 2 y\n`\n\ntype WithoutAsRow struct {\n\tX int32\n\tY int32\n}\n\nfunc (q *Queries) WithoutAs(ctx context.Context) (WithoutAsRow, error) {\n\trow := q.db.QueryRow(ctx, withoutAs)\n\tvar i WithoutAsRow\n\terr := row.Scan(&i.X, &i.Y)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/pgx/v5/query.sql",
    "content": "-- name: WithAs :one\nSELECT 1 AS x, 2 AS y;\n\n-- name: WithoutAs :one\nSELECT 1 x, 2 y;"
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/pgx/v5/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst withAs = `-- name: WithAs :one\nSELECT 1 AS x, 2 AS y\n`\n\ntype WithAsRow struct {\n\tX int32\n\tY int32\n}\n\nfunc (q *Queries) WithAs(ctx context.Context) (WithAsRow, error) {\n\trow := q.db.QueryRowContext(ctx, withAs)\n\tvar i WithAsRow\n\terr := row.Scan(&i.X, &i.Y)\n\treturn i, err\n}\n\nconst withoutAs = `-- name: WithoutAs :one\nSELECT 1 x, 2 y\n`\n\ntype WithoutAsRow struct {\n\tX int32\n\tY int32\n}\n\nfunc (q *Queries) WithoutAs(ctx context.Context) (WithoutAsRow, error) {\n\trow := q.db.QueryRowContext(ctx, withoutAs)\n\tvar i WithoutAsRow\n\terr := row.Scan(&i.X, &i.Y)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/stdlib/query.sql",
    "content": "-- name: WithAs :one\nSELECT 1 AS x, 2 AS y;\n\n-- name: WithoutAs :one\nSELECT 1 x, 2 y;"
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/stdlib/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/column_as/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst withAs = `-- name: WithAs :one\nSELECT 1 AS x, 2 AS y\n`\n\ntype WithAsRow struct {\n\tX int64\n\tY int64\n}\n\nfunc (q *Queries) WithAs(ctx context.Context) (WithAsRow, error) {\n\trow := q.db.QueryRowContext(ctx, withAs)\n\tvar i WithAsRow\n\terr := row.Scan(&i.X, &i.Y)\n\treturn i, err\n}\n\nconst withoutAs = `-- name: WithoutAs :one\nSELECT 1 x, 2 y\n`\n\ntype WithoutAsRow struct {\n\tX int64\n\tY int64\n}\n\nfunc (q *Queries) WithoutAs(ctx context.Context) (WithoutAsRow, error) {\n\trow := q.db.QueryRowContext(ctx, withoutAs)\n\tvar i WithoutAsRow\n\terr := row.Scan(&i.X, &i.Y)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/sqlite/query.sql",
    "content": "-- name: WithAs :one\nSELECT 1 AS x, 2 AS y;\n\n-- name: WithoutAs :one\nSELECT 1 x, 2 y;\n"
  },
  {
    "path": "internal/endtoend/testdata/column_as/sqlite/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/column_as/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\n\t\"github.com/jackc/pgconn\"\n)\n\nconst execFoo = `-- name: ExecFoo :exec\nINSERT INTO foo (bar) VALUES ('bar')\n`\n\n// This function creates a Foo via :exec\nfunc (q *Queries) ExecFoo(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, execFoo)\n\treturn err\n}\n\nconst execResultFoo = `-- name: ExecResultFoo :execresult\nINSERT INTO foo (bar) VALUES ('bar')\n`\n\n// This function creates a Foo via :execresult\nfunc (q *Queries) ExecResultFoo(ctx context.Context) (pgconn.CommandTag, error) {\n\treturn q.db.Exec(ctx, execResultFoo)\n}\n\nconst execRowFoo = `-- name: ExecRowFoo :execrows\nINSERT INTO foo (bar) VALUES ('bar')\n`\n\n// This function creates a Foo via :execrows\nfunc (q *Queries) ExecRowFoo(ctx context.Context) (int64, error) {\n\tresult, err := q.db.Exec(ctx, execRowFoo)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected(), nil\n}\n\nconst manyFoo = `-- name: ManyFoo :many\nSELECT bar FROM foo\n`\n\n// This function returns a list of Foos\nfunc (q *Queries) ManyFoo(ctx context.Context) ([]sql.NullString, error) {\n\trows, err := q.db.Query(ctx, manyFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar bar sql.NullString\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst oneFoo = `-- name: OneFoo :one\nSELECT bar FROM foo\n`\n\n// This function returns one Foo\nfunc (q *Queries) OneFoo(ctx context.Context) (sql.NullString, error) {\n\trow := q.db.QueryRow(ctx, oneFoo)\n\tvar bar sql.NullString\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc/postgresql/pgx/v4/query.sql",
    "content": "-- name: ManyFoo :many\n-- This function returns a list of Foos\nSELECT * FROM foo;\n\n-- name: OneFoo :one\n-- This function returns one Foo\nSELECT * FROM foo;\n\n-- name: ExecFoo :exec\n-- This function creates a Foo via :exec\nINSERT INTO foo (bar) VALUES ('bar');\n\n-- name: ExecRowFoo :execrows\n-- This function creates a Foo via :execrows\nINSERT INTO foo (bar) VALUES ('bar');\n\n-- name: ExecResultFoo :execresult\n-- This function creates a Foo via :execresult\nINSERT INTO foo (bar) VALUES ('bar');\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (\n  bar  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"sql_package\": \"pgx/v4\"\n    }\n  ]\n}\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgconn\"\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst execFoo = `-- name: ExecFoo :exec\nINSERT INTO foo (bar) VALUES ('bar')\n`\n\n// This function creates a Foo via :exec\nfunc (q *Queries) ExecFoo(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, execFoo)\n\treturn err\n}\n\nconst execResultFoo = `-- name: ExecResultFoo :execresult\nINSERT INTO foo (bar) VALUES ('bar')\n`\n\n// This function creates a Foo via :execresult\nfunc (q *Queries) ExecResultFoo(ctx context.Context) (pgconn.CommandTag, error) {\n\treturn q.db.Exec(ctx, execResultFoo)\n}\n\nconst execRowFoo = `-- name: ExecRowFoo :execrows\nINSERT INTO foo (bar) VALUES ('bar')\n`\n\n// This function creates a Foo via :execrows\nfunc (q *Queries) ExecRowFoo(ctx context.Context) (int64, error) {\n\tresult, err := q.db.Exec(ctx, execRowFoo)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected(), nil\n}\n\nconst manyFoo = `-- name: ManyFoo :many\nSELECT bar FROM foo\n`\n\n// This function returns a list of Foos\nfunc (q *Queries) ManyFoo(ctx context.Context) ([]pgtype.Text, error) {\n\trows, err := q.db.Query(ctx, manyFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.Text\n\tfor rows.Next() {\n\t\tvar bar pgtype.Text\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst oneFoo = `-- name: OneFoo :one\nSELECT bar FROM foo\n`\n\n// This function returns one Foo\nfunc (q *Queries) OneFoo(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, oneFoo)\n\tvar bar pgtype.Text\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc/postgresql/pgx/v5/query.sql",
    "content": "-- name: ManyFoo :many\n-- This function returns a list of Foos\nSELECT * FROM foo;\n\n-- name: OneFoo :one\n-- This function returns one Foo\nSELECT * FROM foo;\n\n-- name: ExecFoo :exec\n-- This function creates a Foo via :exec\nINSERT INTO foo (bar) VALUES ('bar');\n\n-- name: ExecRowFoo :execrows\n-- This function creates a Foo via :execrows\nINSERT INTO foo (bar) VALUES ('bar');\n\n-- name: ExecResultFoo :execresult\n-- This function creates a Foo via :execresult\nINSERT INTO foo (bar) VALUES ('bar');\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (\n  bar  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"sql_package\": \"pgx/v5\"\n    }\n  ]\n}\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New() *Queries {\n\treturn &Queries{}\n}\n\ntype Queries struct {\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\n\t\"github.com/jackc/pgconn\"\n)\n\nconst execFoo = `-- name: ExecFoo :exec\nINSERT INTO foo (bar) VALUES ('bar')\n`\n\n// This function creates a Foo via :exec\nfunc (q *Queries) ExecFoo(ctx context.Context, db DBTX) error {\n\t_, err := db.Exec(ctx, execFoo)\n\treturn err\n}\n\nconst execResultFoo = `-- name: ExecResultFoo :execresult\nINSERT INTO foo (bar) VALUES ('bar')\n`\n\n// This function creates a Foo via :execresult\nfunc (q *Queries) ExecResultFoo(ctx context.Context, db DBTX) (pgconn.CommandTag, error) {\n\treturn db.Exec(ctx, execResultFoo)\n}\n\nconst execRowFoo = `-- name: ExecRowFoo :execrows\nINSERT INTO foo (bar) VALUES ('bar')\n`\n\n// This function creates a Foo via :execrows\nfunc (q *Queries) ExecRowFoo(ctx context.Context, db DBTX) (int64, error) {\n\tresult, err := db.Exec(ctx, execRowFoo)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected(), nil\n}\n\nconst manyFoo = `-- name: ManyFoo :many\nSELECT bar FROM foo\n`\n\n// This function returns a list of Foos\nfunc (q *Queries) ManyFoo(ctx context.Context, db DBTX) ([]sql.NullString, error) {\n\trows, err := db.Query(ctx, manyFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar bar sql.NullString\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst oneFoo = `-- name: OneFoo :one\nSELECT bar FROM foo\n`\n\n// This function returns one Foo\nfunc (q *Queries) OneFoo(ctx context.Context, db DBTX) (sql.NullString, error) {\n\trow := db.QueryRow(ctx, oneFoo)\n\tvar bar sql.NullString\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v4/query.sql",
    "content": "-- name: ManyFoo :many\n-- This function returns a list of Foos\nSELECT * FROM foo;\n\n-- name: OneFoo :one\n-- This function returns one Foo\nSELECT * FROM foo;\n\n-- name: ExecFoo :exec\n-- This function creates a Foo via :exec\nINSERT INTO foo (bar) VALUES ('bar');\n\n-- name: ExecRowFoo :execrows\n-- This function creates a Foo via :execrows\nINSERT INTO foo (bar) VALUES ('bar');\n\n-- name: ExecResultFoo :execresult\n-- This function creates a Foo via :execresult\nINSERT INTO foo (bar) VALUES ('bar');\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (\n  bar  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"sql_package\": \"pgx/v4\",\n      \"emit_methods_with_db_argument\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New() *Queries {\n\treturn &Queries{}\n}\n\ntype Queries struct {\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgconn\"\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst execFoo = `-- name: ExecFoo :exec\nINSERT INTO foo (bar) VALUES ('bar')\n`\n\n// This function creates a Foo via :exec\nfunc (q *Queries) ExecFoo(ctx context.Context, db DBTX) error {\n\t_, err := db.Exec(ctx, execFoo)\n\treturn err\n}\n\nconst execResultFoo = `-- name: ExecResultFoo :execresult\nINSERT INTO foo (bar) VALUES ('bar')\n`\n\n// This function creates a Foo via :execresult\nfunc (q *Queries) ExecResultFoo(ctx context.Context, db DBTX) (pgconn.CommandTag, error) {\n\treturn db.Exec(ctx, execResultFoo)\n}\n\nconst execRowFoo = `-- name: ExecRowFoo :execrows\nINSERT INTO foo (bar) VALUES ('bar')\n`\n\n// This function creates a Foo via :execrows\nfunc (q *Queries) ExecRowFoo(ctx context.Context, db DBTX) (int64, error) {\n\tresult, err := db.Exec(ctx, execRowFoo)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected(), nil\n}\n\nconst manyFoo = `-- name: ManyFoo :many\nSELECT bar FROM foo\n`\n\n// This function returns a list of Foos\nfunc (q *Queries) ManyFoo(ctx context.Context, db DBTX) ([]pgtype.Text, error) {\n\trows, err := db.Query(ctx, manyFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.Text\n\tfor rows.Next() {\n\t\tvar bar pgtype.Text\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst oneFoo = `-- name: OneFoo :one\nSELECT bar FROM foo\n`\n\n// This function returns one Foo\nfunc (q *Queries) OneFoo(ctx context.Context, db DBTX) (pgtype.Text, error) {\n\trow := db.QueryRow(ctx, oneFoo)\n\tvar bar pgtype.Text\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v5/query.sql",
    "content": "-- name: ManyFoo :many\n-- This function returns a list of Foos\nSELECT * FROM foo;\n\n-- name: OneFoo :one\n-- This function returns one Foo\nSELECT * FROM foo;\n\n-- name: ExecFoo :exec\n-- This function creates a Foo via :exec\nINSERT INTO foo (bar) VALUES ('bar');\n\n-- name: ExecRowFoo :execrows\n-- This function creates a Foo via :execrows\nINSERT INTO foo (bar) VALUES ('bar');\n\n-- name: ExecResultFoo :execresult\n-- This function creates a Foo via :execresult\nINSERT INTO foo (bar) VALUES ('bar');\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (\n  bar  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_godoc_db_argument/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"sql_package\": \"pgx/v5\",\n      \"emit_methods_with_db_argument\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\n// this is the mood type\ntype FooMood string\n\nconst (\n\tFooMoodSad   FooMood = \"sad\"\n\tFooMoodOk    FooMood = \"ok\"\n\tFooMoodHappy FooMood = \"happy\"\n)\n\nfunc (e *FooMood) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = FooMood(s)\n\tcase string:\n\t\t*e = FooMood(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for FooMood: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullFooMood struct {\n\tFooMood FooMood\n\tValid   bool // Valid is true if FooMood is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullFooMood) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.FooMood, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.FooMood.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullFooMood) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.FooMood), nil\n}\n\n// this is the bar table\ntype FooBar struct {\n\t// this is the baz column\n\tBaz string\n}\n\n// this is the bat view\ntype FooBat struct {\n\tBaz string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT baz FROM foo.bar\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar baz string\n\t\tif err := rows.Scan(&baz); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, baz)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listBat = `-- name: ListBat :many\nSELECT baz FROM foo.bat\n`\n\nfunc (q *Queries) ListBat(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, listBat)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar baz string\n\t\tif err := rows.Scan(&baz); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, baz)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/pgx/v4/query.sql",
    "content": "-- name: ListBar :many\nSELECT * FROM foo.bar;\n\n-- name: ListBat :many\nSELECT * FROM foo.bat;\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA foo;\n\nCREATE TABLE foo.bar (\n        baz text NOT NULL \n);\n\nCREATE VIEW foo.bat AS SELECT * FROM foo.bar;\n\nCREATE TYPE foo.mood AS ENUM ('sad', 'ok', 'happy');\n\nCOMMENT ON SCHEMA foo IS 'this is the foo schema';\nCOMMENT ON TYPE foo.mood IS 'this is the mood type';\nCOMMENT ON TABLE foo.bar IS 'this is the bar table';\nCOMMENT ON COLUMN foo.bar.baz IS 'this is the baz column';\nCOMMENT ON VIEW foo.bat IS 'this is the bat view ';\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\n// this is the mood type\ntype FooMood string\n\nconst (\n\tFooMoodSad   FooMood = \"sad\"\n\tFooMoodOk    FooMood = \"ok\"\n\tFooMoodHappy FooMood = \"happy\"\n)\n\nfunc (e *FooMood) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = FooMood(s)\n\tcase string:\n\t\t*e = FooMood(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for FooMood: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullFooMood struct {\n\tFooMood FooMood\n\tValid   bool // Valid is true if FooMood is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullFooMood) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.FooMood, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.FooMood.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullFooMood) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.FooMood), nil\n}\n\n// this is the bar table\ntype FooBar struct {\n\t// this is the baz column\n\tBaz string\n}\n\n// this is the bat view\ntype FooBat struct {\n\tBaz string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT baz FROM foo.bar\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar baz string\n\t\tif err := rows.Scan(&baz); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, baz)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listBat = `-- name: ListBat :many\nSELECT baz FROM foo.bat\n`\n\nfunc (q *Queries) ListBat(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, listBat)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar baz string\n\t\tif err := rows.Scan(&baz); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, baz)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/pgx/v5/query.sql",
    "content": "-- name: ListBar :many\nSELECT * FROM foo.bar;\n\n-- name: ListBat :many\nSELECT * FROM foo.bat;\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA foo;\n\nCREATE TABLE foo.bar (\n        baz text NOT NULL \n);\n\nCREATE VIEW foo.bat AS SELECT * FROM foo.bar;\n\nCREATE TYPE foo.mood AS ENUM ('sad', 'ok', 'happy');\n\nCOMMENT ON SCHEMA foo IS 'this is the foo schema';\nCOMMENT ON TYPE foo.mood IS 'this is the mood type';\nCOMMENT ON TABLE foo.bar IS 'this is the bar table';\nCOMMENT ON COLUMN foo.bar.baz IS 'this is the baz column';\nCOMMENT ON VIEW foo.bat IS 'this is the bat view ';\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\n// this is the mood type\ntype FooMood string\n\nconst (\n\tFooMoodSad   FooMood = \"sad\"\n\tFooMoodOk    FooMood = \"ok\"\n\tFooMoodHappy FooMood = \"happy\"\n)\n\nfunc (e *FooMood) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = FooMood(s)\n\tcase string:\n\t\t*e = FooMood(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for FooMood: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullFooMood struct {\n\tFooMood FooMood\n\tValid   bool // Valid is true if FooMood is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullFooMood) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.FooMood, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.FooMood.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullFooMood) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.FooMood), nil\n}\n\n// this is the bar table\ntype FooBar struct {\n\t// this is the baz column\n\tBaz string\n}\n\n// this is the bat view\ntype FooBat struct {\n\tBaz string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT baz FROM foo.bar\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar baz string\n\t\tif err := rows.Scan(&baz); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, baz)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listBat = `-- name: ListBat :many\nSELECT baz FROM foo.bat\n`\n\nfunc (q *Queries) ListBat(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listBat)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar baz string\n\t\tif err := rows.Scan(&baz); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, baz)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/stdlib/query.sql",
    "content": "-- name: ListBar :many\nSELECT * FROM foo.bar;\n\n-- name: ListBat :many\nSELECT * FROM foo.bat;\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/stdlib/schema.sql",
    "content": "CREATE SCHEMA foo;\n\nCREATE TABLE foo.bar (\n        baz text NOT NULL \n);\n\nCREATE VIEW foo.bat AS SELECT * FROM foo.bar;\n\nCREATE TYPE foo.mood AS ENUM ('sad', 'ok', 'happy');\n\nCOMMENT ON SCHEMA foo IS 'this is the foo schema';\nCOMMENT ON TYPE foo.mood IS 'this is the mood type';\nCOMMENT ON TABLE foo.bar IS 'this is the bar table';\nCOMMENT ON COLUMN foo.bar.baz IS 'this is the baz column';\nCOMMENT ON VIEW foo.bat IS 'this is the bat view ';\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_on/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst doubleDash = `-- name: DoubleDash :one\nSELECT bar FROM foo LIMIT 1\n`\n\nfunc (q *Queries) DoubleDash(ctx context.Context) (sql.NullString, error) {\n\trow := q.db.QueryRowContext(ctx, doubleDash)\n\tvar bar sql.NullString\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n\nconst hash = `-- name: Hash :one\nSELECT bar FROM foo LIMIT 1\n`\n\nfunc (q *Queries) Hash(ctx context.Context) (sql.NullString, error) {\n\trow := q.db.QueryRowContext(ctx, hash)\n\tvar bar sql.NullString\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n\nconst slashStar = `-- name: SlashStar :one\nSELECT bar FROM foo LIMIT 1\n`\n\nfunc (q *Queries) SlashStar(ctx context.Context) (sql.NullString, error) {\n\trow := q.db.QueryRowContext(ctx, slashStar)\n\tvar bar sql.NullString\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/mysql/query.sql",
    "content": "-- name: DoubleDash :one\nSELECT * FROM foo LIMIT 1;\n\n/* name: SlashStar :one */\nSELECT * FROM foo LIMIT 1;\n\n# name: Hash :one\nSELECT * FROM foo LIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst doubleDash = `-- name: DoubleDash :one\nSELECT bar FROM foo LIMIT 1\n`\n\nfunc (q *Queries) DoubleDash(ctx context.Context) (sql.NullString, error) {\n\trow := q.db.QueryRow(ctx, doubleDash)\n\tvar bar sql.NullString\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n\nconst slashStar = `-- name: SlashStar :one\nSELECT bar FROM foo LIMIT 1\n`\n\nfunc (q *Queries) SlashStar(ctx context.Context) (sql.NullString, error) {\n\trow := q.db.QueryRow(ctx, slashStar)\n\tvar bar sql.NullString\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/pgx/v4/query.sql",
    "content": "-- name: DoubleDash :one\nSELECT * FROM foo LIMIT 1;\n\n/* name: SlashStar :one */\nSELECT * FROM foo LIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst doubleDash = `-- name: DoubleDash :one\nSELECT bar FROM foo LIMIT 1\n`\n\nfunc (q *Queries) DoubleDash(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, doubleDash)\n\tvar bar pgtype.Text\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n\nconst slashStar = `-- name: SlashStar :one\nSELECT bar FROM foo LIMIT 1\n`\n\nfunc (q *Queries) SlashStar(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, slashStar)\n\tvar bar pgtype.Text\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/pgx/v5/query.sql",
    "content": "-- name: DoubleDash :one\nSELECT * FROM foo LIMIT 1;\n\n/* name: SlashStar :one */\nSELECT * FROM foo LIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst doubleDash = `-- name: DoubleDash :one\nSELECT bar FROM foo LIMIT 1\n`\n\nfunc (q *Queries) DoubleDash(ctx context.Context) (sql.NullString, error) {\n\trow := q.db.QueryRowContext(ctx, doubleDash)\n\tvar bar sql.NullString\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n\nconst slashStar = `-- name: SlashStar :one\nSELECT bar FROM foo LIMIT 1\n`\n\nfunc (q *Queries) SlashStar(ctx context.Context) (sql.NullString, error) {\n\trow := q.db.QueryRowContext(ctx, slashStar)\n\tvar bar sql.NullString\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/stdlib/query.sql",
    "content": "-- name: DoubleDash :one\nSELECT * FROM foo LIMIT 1;\n\n/* name: SlashStar :one */\nSELECT * FROM foo LIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst doubleDash = `-- name: DoubleDash :one\nSELECT bar FROM foo LIMIT 1\n`\n\nfunc (q *Queries) DoubleDash(ctx context.Context) (sql.NullString, error) {\n\trow := q.db.QueryRowContext(ctx, doubleDash)\n\tvar bar sql.NullString\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n\nconst slashStar = `-- name: SlashStar :one\nSELECT bar FROM foo LIMIT 1\n`\n\nfunc (q *Queries) SlashStar(ctx context.Context) (sql.NullString, error) {\n\trow := q.db.QueryRowContext(ctx, slashStar)\n\tvar bar sql.NullString\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/sqlite/query.sql",
    "content": "-- name: DoubleDash :one\nSELECT * FROM foo LIMIT 1;\n\n/* name: SlashStar :one */\nSELECT * FROM foo LIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/sqlite/schema.sql",
    "content": "CREATE TABLE foo (bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comment_syntax/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID uint64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst alsoNotEqual = `-- name: AlsoNotEqual :many\nSELECT count(*) <> 0 FROM bar\n`\n\nfunc (q *Queries) AlsoNotEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, alsoNotEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst equal = `-- name: Equal :many\nSELECT count(*) = 0 FROM bar\n`\n\nfunc (q *Queries) Equal(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, equal)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst greaterThan = `-- name: GreaterThan :many\nSELECT count(*) > 0 FROM bar\n`\n\nfunc (q *Queries) GreaterThan(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, greaterThan)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst greaterThanOrEqual = `-- name: GreaterThanOrEqual :many\nSELECT count(*) >= 0 FROM bar\n`\n\nfunc (q *Queries) GreaterThanOrEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, greaterThanOrEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst isNotNull = `-- name: IsNotNull :many\nSELECT id IS NOT NULL FROM bar\n`\n\nfunc (q *Queries) IsNotNull(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, isNotNull)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst isNull = `-- name: IsNull :many\nSELECT id IS NULL FROM bar\n`\n\nfunc (q *Queries) IsNull(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, isNull)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst lessThan = `-- name: LessThan :many\nSELECT count(*) < 0 FROM bar\n`\n\nfunc (q *Queries) LessThan(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, lessThan)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst lessThanOrEqual = `-- name: LessThanOrEqual :many\nSELECT count(*) <= 0 FROM bar\n`\n\nfunc (q *Queries) LessThanOrEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, lessThanOrEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst notEqual = `-- name: NotEqual :many\nSELECT count(*) != 0 FROM bar\n`\n\nfunc (q *Queries) NotEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, notEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/mysql/query.sql",
    "content": "-- name: GreaterThan :many\nSELECT count(*) > 0 FROM bar;\n\n-- name: LessThan :many\nSELECT count(*) < 0 FROM bar;\n\n-- name: GreaterThanOrEqual :many\nSELECT count(*) >= 0 FROM bar;\n\n-- name: LessThanOrEqual :many\nSELECT count(*) <= 0 FROM bar;\n\n-- name: NotEqual :many\nSELECT count(*) != 0 FROM bar;\n\n-- name: AlsoNotEqual :many\nSELECT count(*) <> 0 FROM bar;\n\n-- name: Equal :many\nSELECT count(*) = 0 FROM bar;\n\n-- name: IsNull :many\nSELECT id IS NULL FROM bar;\n\n-- name: IsNotNull :many\nSELECT id IS NOT NULL FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/mysql/schema.sql",
    "content": "-- Comparison Functions and Operators\n-- https://www.postgresql.org/docs/current/functions-comparison.html\n\nCREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"mysql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst alsoNotEqual = `-- name: AlsoNotEqual :many\nSELECT count(*) <> 0 FROM bar\n`\n\nfunc (q *Queries) AlsoNotEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.Query(ctx, alsoNotEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst equal = `-- name: Equal :many\nSELECT count(*) = 0 FROM bar\n`\n\nfunc (q *Queries) Equal(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.Query(ctx, equal)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst greaterThan = `-- name: GreaterThan :many\nSELECT count(*) > 0 FROM bar\n`\n\nfunc (q *Queries) GreaterThan(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.Query(ctx, greaterThan)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst greaterThanOrEqual = `-- name: GreaterThanOrEqual :many\nSELECT count(*) >= 0 FROM bar\n`\n\nfunc (q *Queries) GreaterThanOrEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.Query(ctx, greaterThanOrEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst lessThan = `-- name: LessThan :many\nSELECT count(*) < 0 FROM bar\n`\n\nfunc (q *Queries) LessThan(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.Query(ctx, lessThan)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst lessThanOrEqual = `-- name: LessThanOrEqual :many\nSELECT count(*) <= 0 FROM bar\n`\n\nfunc (q *Queries) LessThanOrEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.Query(ctx, lessThanOrEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst notEqual = `-- name: NotEqual :many\nSELECT count(*) != 0 FROM bar\n`\n\nfunc (q *Queries) NotEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.Query(ctx, notEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/pgx/v4/query.sql",
    "content": "-- name: GreaterThan :many\nSELECT count(*) > 0 FROM bar;\n\n-- name: LessThan :many\nSELECT count(*) < 0 FROM bar;\n\n-- name: GreaterThanOrEqual :many\nSELECT count(*) >= 0 FROM bar;\n\n-- name: LessThanOrEqual :many\nSELECT count(*) <= 0 FROM bar;\n\n-- name: NotEqual :many\nSELECT count(*) != 0 FROM bar;\n\n-- name: AlsoNotEqual :many\nSELECT count(*) <> 0 FROM bar;\n\n-- name: Equal :many\nSELECT count(*) = 0 FROM bar;\n\n\n\n\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/pgx/v4/schema.sql",
    "content": "-- Comparison Functions and Operators\n-- https://www.postgresql.org/docs/current/functions-comparison.html\n\nCREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst alsoNotEqual = `-- name: AlsoNotEqual :many\nSELECT count(*) <> 0 FROM bar\n`\n\nfunc (q *Queries) AlsoNotEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.Query(ctx, alsoNotEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst equal = `-- name: Equal :many\nSELECT count(*) = 0 FROM bar\n`\n\nfunc (q *Queries) Equal(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.Query(ctx, equal)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst greaterThan = `-- name: GreaterThan :many\nSELECT count(*) > 0 FROM bar\n`\n\nfunc (q *Queries) GreaterThan(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.Query(ctx, greaterThan)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst greaterThanOrEqual = `-- name: GreaterThanOrEqual :many\nSELECT count(*) >= 0 FROM bar\n`\n\nfunc (q *Queries) GreaterThanOrEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.Query(ctx, greaterThanOrEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst lessThan = `-- name: LessThan :many\nSELECT count(*) < 0 FROM bar\n`\n\nfunc (q *Queries) LessThan(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.Query(ctx, lessThan)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst lessThanOrEqual = `-- name: LessThanOrEqual :many\nSELECT count(*) <= 0 FROM bar\n`\n\nfunc (q *Queries) LessThanOrEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.Query(ctx, lessThanOrEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst notEqual = `-- name: NotEqual :many\nSELECT count(*) != 0 FROM bar\n`\n\nfunc (q *Queries) NotEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.Query(ctx, notEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/pgx/v5/query.sql",
    "content": "-- name: GreaterThan :many\nSELECT count(*) > 0 FROM bar;\n\n-- name: LessThan :many\nSELECT count(*) < 0 FROM bar;\n\n-- name: GreaterThanOrEqual :many\nSELECT count(*) >= 0 FROM bar;\n\n-- name: LessThanOrEqual :many\nSELECT count(*) <= 0 FROM bar;\n\n-- name: NotEqual :many\nSELECT count(*) != 0 FROM bar;\n\n-- name: AlsoNotEqual :many\nSELECT count(*) <> 0 FROM bar;\n\n-- name: Equal :many\nSELECT count(*) = 0 FROM bar;\n\n\n\n\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/pgx/v5/schema.sql",
    "content": "-- Comparison Functions and Operators\n-- https://www.postgresql.org/docs/current/functions-comparison.html\n\nCREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst alsoNotEqual = `-- name: AlsoNotEqual :many\nSELECT count(*) <> 0 FROM bar\n`\n\nfunc (q *Queries) AlsoNotEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, alsoNotEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst equal = `-- name: Equal :many\nSELECT count(*) = 0 FROM bar\n`\n\nfunc (q *Queries) Equal(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, equal)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst greaterThan = `-- name: GreaterThan :many\nSELECT count(*) > 0 FROM bar\n`\n\nfunc (q *Queries) GreaterThan(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, greaterThan)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst greaterThanOrEqual = `-- name: GreaterThanOrEqual :many\nSELECT count(*) >= 0 FROM bar\n`\n\nfunc (q *Queries) GreaterThanOrEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, greaterThanOrEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst lessThan = `-- name: LessThan :many\nSELECT count(*) < 0 FROM bar\n`\n\nfunc (q *Queries) LessThan(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, lessThan)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst lessThanOrEqual = `-- name: LessThanOrEqual :many\nSELECT count(*) <= 0 FROM bar\n`\n\nfunc (q *Queries) LessThanOrEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, lessThanOrEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst notEqual = `-- name: NotEqual :many\nSELECT count(*) != 0 FROM bar\n`\n\nfunc (q *Queries) NotEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, notEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/stdlib/query.sql",
    "content": "-- name: GreaterThan :many\nSELECT count(*) > 0 FROM bar;\n\n-- name: LessThan :many\nSELECT count(*) < 0 FROM bar;\n\n-- name: GreaterThanOrEqual :many\nSELECT count(*) >= 0 FROM bar;\n\n-- name: LessThanOrEqual :many\nSELECT count(*) <= 0 FROM bar;\n\n-- name: NotEqual :many\nSELECT count(*) != 0 FROM bar;\n\n-- name: AlsoNotEqual :many\nSELECT count(*) <> 0 FROM bar;\n\n-- name: Equal :many\nSELECT count(*) = 0 FROM bar;\n\n\n\n\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/stdlib/schema.sql",
    "content": "-- Comparison Functions and Operators\n-- https://www.postgresql.org/docs/current/functions-comparison.html\n\nCREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst alsoNotEqual = `-- name: AlsoNotEqual :many\nSELECT count(*) <> 0 FROM bar\n`\n\nfunc (q *Queries) AlsoNotEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, alsoNotEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst equal = `-- name: Equal :many\nSELECT count(*) = 0 FROM bar\n`\n\nfunc (q *Queries) Equal(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, equal)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst greaterThan = `-- name: GreaterThan :many\nSELECT count(*) > 0 FROM bar\n`\n\nfunc (q *Queries) GreaterThan(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, greaterThan)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst greaterThanOrEqual = `-- name: GreaterThanOrEqual :many\nSELECT count(*) >= 0 FROM bar\n`\n\nfunc (q *Queries) GreaterThanOrEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, greaterThanOrEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst lessThan = `-- name: LessThan :many\nSELECT count(*) < 0 FROM bar\n`\n\nfunc (q *Queries) LessThan(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, lessThan)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst lessThanOrEqual = `-- name: LessThanOrEqual :many\nSELECT count(*) <= 0 FROM bar\n`\n\nfunc (q *Queries) LessThanOrEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, lessThanOrEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst notEqual = `-- name: NotEqual :many\nSELECT count(*) != 0 FROM bar\n`\n\nfunc (q *Queries) NotEqual(ctx context.Context) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, notEqual)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar column_1 bool\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/sqlite/query.sql",
    "content": "-- name: GreaterThan :many\nSELECT count(*) > 0 FROM bar;\n\n-- name: LessThan :many\nSELECT count(*) < 0 FROM bar;\n\n-- name: GreaterThanOrEqual :many\nSELECT count(*) >= 0 FROM bar;\n\n-- name: LessThanOrEqual :many\nSELECT count(*) <= 0 FROM bar;\n\n-- name: NotEqual :many\nSELECT count(*) != 0 FROM bar;\n\n-- name: AlsoNotEqual :many\nSELECT count(*) <> 0 FROM bar;\n\n-- name: Equal :many\nSELECT count(*) = 0 FROM bar;\n\n\n\n\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/sqlite/schema.sql",
    "content": "-- Comparison Functions and Operators\n-- https://www.postgresql.org/docs/current/functions-comparison.html\n\nCREATE TABLE bar (id integer not null primary key autoincrement);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/comparisons/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"sqlite\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype FooPath struct {\n\tPointOne sql.NullString\n\tPointTwo sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listPaths = `-- name: ListPaths :many\nSELECT point_one, point_two FROM foo.paths\n`\n\nfunc (q *Queries) ListPaths(ctx context.Context) ([]FooPath, error) {\n\trows, err := q.db.Query(ctx, listPaths)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []FooPath\n\tfor rows.Next() {\n\t\tvar i FooPath\n\t\tif err := rows.Scan(&i.PointOne, &i.PointTwo); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/pgx/v4/query.sql",
    "content": "-- name: ListPaths :many\nSELECT * FROM foo.paths;\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA foo;\n\nCREATE TYPE point_type AS (\n    x integer,\n    y integer\n);\n\nCREATE TYPE foo.point_type AS (\n    x integer,\n    y integer\n);\n\nCREATE TABLE foo.paths (\n    point_one point_type,\n    point_two foo.point_type\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype FooPath struct {\n\tPointOne sql.NullString\n\tPointTwo sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listPaths = `-- name: ListPaths :many\nSELECT point_one, point_two FROM foo.paths\n`\n\nfunc (q *Queries) ListPaths(ctx context.Context) ([]FooPath, error) {\n\trows, err := q.db.Query(ctx, listPaths)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []FooPath\n\tfor rows.Next() {\n\t\tvar i FooPath\n\t\tif err := rows.Scan(&i.PointOne, &i.PointTwo); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/pgx/v5/query.sql",
    "content": "-- name: ListPaths :many\nSELECT * FROM foo.paths;\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA foo;\n\nCREATE TYPE point_type AS (\n    x integer,\n    y integer\n);\n\nCREATE TYPE foo.point_type AS (\n    x integer,\n    y integer\n);\n\nCREATE TABLE foo.paths (\n    point_one point_type,\n    point_two foo.point_type\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype FooPath struct {\n\tPointOne sql.NullString\n\tPointTwo sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listPaths = `-- name: ListPaths :many\nSELECT point_one, point_two FROM foo.paths\n`\n\nfunc (q *Queries) ListPaths(ctx context.Context) ([]FooPath, error) {\n\trows, err := q.db.QueryContext(ctx, listPaths)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []FooPath\n\tfor rows.Next() {\n\t\tvar i FooPath\n\t\tif err := rows.Scan(&i.PointOne, &i.PointTwo); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/stdlib/query.sql",
    "content": "-- name: ListPaths :many\nSELECT * FROM foo.paths;\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/stdlib/schema.sql",
    "content": "CREATE SCHEMA foo;\n\nCREATE TYPE point_type AS (\n    x integer,\n    y integer\n);\n\nCREATE TYPE foo.point_type AS (\n    x integer,\n    y integer\n);\n\nCREATE TABLE foo.paths (\n    point_one point_type,\n    point_two foo.point_type\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/composite_type/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/conflicted_arg_name/postgresql/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/conflicted_arg_name/postgresql/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"time\"\n\n\t\"github.com/google/uuid\"\n)\n\ntype Foo struct {\n\tTime  time.Time\n\tTime2 time.Time\n\tUuid  uuid.UUID\n\tUuid2 uuid.UUID\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/conflicted_arg_name/postgresql/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n\t\"time\"\n\n\t\"github.com/google/uuid\"\n)\n\nconst time2ByTime = `-- name: Time2ByTime :one\nSELECT time2 FROM foo WHERE time=$1\n`\n\nfunc (q *Queries) Time2ByTime(ctx context.Context, argTime time.Time) (time.Time, error) {\n\trow := q.db.QueryRowContext(ctx, time2ByTime, argTime)\n\tvar time2 time.Time\n\terr := row.Scan(&time2)\n\treturn time2, err\n}\n\nconst uuid2ByUuid = `-- name: Uuid2ByUuid :one\nSELECT uuid2 FROM foo WHERE uuid=$1\n`\n\nfunc (q *Queries) Uuid2ByUuid(ctx context.Context, argUuid uuid.UUID) (uuid.UUID, error) {\n\trow := q.db.QueryRowContext(ctx, uuid2ByUuid, argUuid)\n\tvar uuid2 uuid.UUID\n\terr := row.Scan(&uuid2)\n\treturn uuid2, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/conflicted_arg_name/postgresql/query.sql",
    "content": "-- name: Time2ByTime :one\nSELECT time2 FROM foo WHERE time=$1;\n\n-- name: Uuid2ByUuid :one\nSELECT uuid2 FROM foo WHERE uuid=$1;\n"
  },
  {
    "path": "internal/endtoend/testdata/conflicted_arg_name/postgresql/schema.sql",
    "content": "CREATE TABLE foo (\n  time date NOT NULL,\n  time2 date NOT NULL,\n  uuid uuid NOT NULL,\n  uuid2 uuid NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/conflicted_arg_name/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"db\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/mysql/go/copyfrom.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: copyfrom.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"fmt\"\n\t\"io\"\n\t\"sync/atomic\"\n\n\t\"github.com/go-sql-driver/mysql\"\n\t\"github.com/hexon/mysqltsv\"\n)\n\nvar readerHandlerSequenceForInsertSingleValue uint32 = 1\n\nfunc convertRowsForInsertSingleValue(w *io.PipeWriter, a []sql.NullString) {\n\te := mysqltsv.NewEncoder(w, 1, nil)\n\tfor _, row := range a {\n\t\te.AppendValue(row)\n\t}\n\tw.CloseWithError(e.Close())\n}\n\n// InsertSingleValue uses MySQL's LOAD DATA LOCAL INFILE and is not atomic.\n//\n// Errors and duplicate keys are treated as warnings and insertion will\n// continue, even without an error for some cases.  Use this in a transaction\n// and use SHOW WARNINGS to check for any problems and roll back if you want to.\n//\n// Check the documentation for more information:\n// https://dev.mysql.com/doc/refman/8.0/en/load-data.html#load-data-error-handling\nfunc (q *Queries) InsertSingleValue(ctx context.Context, a []sql.NullString) (int64, error) {\n\tpr, pw := io.Pipe()\n\tdefer pr.Close()\n\trh := fmt.Sprintf(\"InsertSingleValue_%d\", atomic.AddUint32(&readerHandlerSequenceForInsertSingleValue, 1))\n\tmysql.RegisterReaderHandler(rh, func() io.Reader { return pr })\n\tdefer mysql.DeregisterReaderHandler(rh)\n\tgo convertRowsForInsertSingleValue(pw, a)\n\t// The string interpolation is necessary because LOAD DATA INFILE requires\n\t// the file name to be given as a literal string.\n\tresult, err := q.db.ExecContext(ctx, fmt.Sprintf(\"LOAD DATA LOCAL INFILE '%s' INTO TABLE `foo` %s (a)\", \"Reader::\"+rh, mysqltsv.Escaping))\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected()\n}\n\nvar readerHandlerSequenceForInsertValues uint32 = 1\n\nfunc convertRowsForInsertValues(w *io.PipeWriter, arg []InsertValuesParams) {\n\te := mysqltsv.NewEncoder(w, 4, nil)\n\tfor _, row := range arg {\n\t\te.AppendValue(row.A)\n\t\te.AppendValue(row.B)\n\t\te.AppendValue(row.C)\n\t\te.AppendValue(row.D)\n\t}\n\tw.CloseWithError(e.Close())\n}\n\n// InsertValues uses MySQL's LOAD DATA LOCAL INFILE and is not atomic.\n//\n// Errors and duplicate keys are treated as warnings and insertion will\n// continue, even without an error for some cases.  Use this in a transaction\n// and use SHOW WARNINGS to check for any problems and roll back if you want to.\n//\n// Check the documentation for more information:\n// https://dev.mysql.com/doc/refman/8.0/en/load-data.html#load-data-error-handling\nfunc (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesParams) (int64, error) {\n\tpr, pw := io.Pipe()\n\tdefer pr.Close()\n\trh := fmt.Sprintf(\"InsertValues_%d\", atomic.AddUint32(&readerHandlerSequenceForInsertValues, 1))\n\tmysql.RegisterReaderHandler(rh, func() io.Reader { return pr })\n\tdefer mysql.DeregisterReaderHandler(rh)\n\tgo convertRowsForInsertValues(pw, arg)\n\t// The string interpolation is necessary because LOAD DATA INFILE requires\n\t// the file name to be given as a literal string.\n\tresult, err := q.db.ExecContext(ctx, fmt.Sprintf(\"LOAD DATA LOCAL INFILE '%s' INTO TABLE `foo` %s (a, b, c, d)\", \"Reader::\"+rh, mysqltsv.Escaping))\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullInt32\n\tC sql.NullTime\n\tD sql.NullTime\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\nconst insertSingleValue = `-- name: InsertSingleValue :copyfrom\nINSERT INTO foo (a) VALUES (?)\n`\n\nconst insertValues = `-- name: InsertValues :copyfrom\nINSERT INTO foo (a, b, c, d) VALUES (?, ?, ?, ?)\n`\n\ntype InsertValuesParams struct {\n\tA sql.NullString\n\tB sql.NullInt32\n\tC sql.NullTime\n\tD sql.NullTime\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/mysql/query.sql",
    "content": "-- name: InsertValues :copyfrom\nINSERT INTO foo (a, b, c, d) VALUES (?, ?, ?, ?);\n\n-- name: InsertSingleValue :copyfrom\nINSERT INTO foo (a) VALUES (?);\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/mysql/schema.sql",
    "content": "CREATE TABLE foo (a text, b integer, c DATETIME, d DATE);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"sql_package\": \"database/sql\",\n      \"sql_driver\": \"github.com/go-sql-driver/mysql\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v4/go/copyfrom.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: copyfrom.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\n// iteratorForInsertSingleValue implements pgx.CopyFromSource.\ntype iteratorForInsertSingleValue struct {\n\trows                 []sql.NullString\n\tskippedFirstNextCall bool\n}\n\nfunc (r *iteratorForInsertSingleValue) Next() bool {\n\tif len(r.rows) == 0 {\n\t\treturn false\n\t}\n\tif !r.skippedFirstNextCall {\n\t\tr.skippedFirstNextCall = true\n\t\treturn true\n\t}\n\tr.rows = r.rows[1:]\n\treturn len(r.rows) > 0\n}\n\nfunc (r iteratorForInsertSingleValue) Values() ([]interface{}, error) {\n\treturn []interface{}{\n\t\tr.rows[0],\n\t}, nil\n}\n\nfunc (r iteratorForInsertSingleValue) Err() error {\n\treturn nil\n}\n\n// InsertSingleValue inserts a single value using copy.\nfunc (q *Queries) InsertSingleValue(ctx context.Context, a []sql.NullString) (int64, error) {\n\treturn q.db.CopyFrom(ctx, []string{\"myschema\", \"foo\"}, []string{\"a\"}, &iteratorForInsertSingleValue{rows: a})\n}\n\n// iteratorForInsertValues implements pgx.CopyFromSource.\ntype iteratorForInsertValues struct {\n\trows                 []InsertValuesParams\n\tskippedFirstNextCall bool\n}\n\nfunc (r *iteratorForInsertValues) Next() bool {\n\tif len(r.rows) == 0 {\n\t\treturn false\n\t}\n\tif !r.skippedFirstNextCall {\n\t\tr.skippedFirstNextCall = true\n\t\treturn true\n\t}\n\tr.rows = r.rows[1:]\n\treturn len(r.rows) > 0\n}\n\nfunc (r iteratorForInsertValues) Values() ([]interface{}, error) {\n\treturn []interface{}{\n\t\tr.rows[0].A,\n\t\tr.rows[0].B,\n\t}, nil\n}\n\nfunc (r iteratorForInsertValues) Err() error {\n\treturn nil\n}\n\n// InsertValues inserts multiple values using copy.\nfunc (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesParams) (int64, error) {\n\treturn q.db.CopyFrom(ctx, []string{\"myschema\", \"foo\"}, []string{\"a\", \"b\"}, &iteratorForInsertValues{rows: arg})\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tCopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error)\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype MyschemaFoo struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v4/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype Querier interface {\n\t// InsertSingleValue inserts a single value using copy.\n\tInsertSingleValue(ctx context.Context, a []sql.NullString) (int64, error)\n\t// InsertValues inserts multiple values using copy.\n\tInsertValues(ctx context.Context, arg []InsertValuesParams) (int64, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype InsertValuesParams struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v4/query.sql",
    "content": "-- name: InsertValues :copyfrom\n-- InsertValues inserts multiple values using copy.\nINSERT INTO myschema.foo (a, b) VALUES ($1, $2);\n\n-- name: InsertSingleValue :copyfrom\n-- InsertSingleValue inserts a single value using copy.\nINSERT INTO myschema.foo (a) VALUES ($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA myschema;\nCREATE TABLE myschema.foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v5/go/copyfrom.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: copyfrom.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\n// iteratorForInsertSingleValue implements pgx.CopyFromSource.\ntype iteratorForInsertSingleValue struct {\n\trows                 []pgtype.Text\n\tskippedFirstNextCall bool\n}\n\nfunc (r *iteratorForInsertSingleValue) Next() bool {\n\tif len(r.rows) == 0 {\n\t\treturn false\n\t}\n\tif !r.skippedFirstNextCall {\n\t\tr.skippedFirstNextCall = true\n\t\treturn true\n\t}\n\tr.rows = r.rows[1:]\n\treturn len(r.rows) > 0\n}\n\nfunc (r iteratorForInsertSingleValue) Values() ([]interface{}, error) {\n\treturn []interface{}{\n\t\tr.rows[0],\n\t}, nil\n}\n\nfunc (r iteratorForInsertSingleValue) Err() error {\n\treturn nil\n}\n\n// InsertSingleValue inserts a single value using copy.\nfunc (q *Queries) InsertSingleValue(ctx context.Context, a []pgtype.Text) (int64, error) {\n\treturn q.db.CopyFrom(ctx, []string{\"myschema\", \"foo\"}, []string{\"a\"}, &iteratorForInsertSingleValue{rows: a})\n}\n\n// iteratorForInsertValues implements pgx.CopyFromSource.\ntype iteratorForInsertValues struct {\n\trows                 []InsertValuesParams\n\tskippedFirstNextCall bool\n}\n\nfunc (r *iteratorForInsertValues) Next() bool {\n\tif len(r.rows) == 0 {\n\t\treturn false\n\t}\n\tif !r.skippedFirstNextCall {\n\t\tr.skippedFirstNextCall = true\n\t\treturn true\n\t}\n\tr.rows = r.rows[1:]\n\treturn len(r.rows) > 0\n}\n\nfunc (r iteratorForInsertValues) Values() ([]interface{}, error) {\n\treturn []interface{}{\n\t\tr.rows[0].A,\n\t\tr.rows[0].B,\n\t}, nil\n}\n\nfunc (r iteratorForInsertValues) Err() error {\n\treturn nil\n}\n\n// InsertValues inserts multiple values using copy.\nfunc (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesParams) (int64, error) {\n\treturn q.db.CopyFrom(ctx, []string{\"myschema\", \"foo\"}, []string{\"a\", \"b\"}, &iteratorForInsertValues{rows: arg})\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tCopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error)\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype MyschemaFoo struct {\n\tA pgtype.Text\n\tB pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v5/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Querier interface {\n\t// InsertSingleValue inserts a single value using copy.\n\tInsertSingleValue(ctx context.Context, a []pgtype.Text) (int64, error)\n\t// InsertValues inserts multiple values using copy.\n\tInsertValues(ctx context.Context, arg []InsertValuesParams) (int64, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype InsertValuesParams struct {\n\tA pgtype.Text\n\tB pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v5/query.sql",
    "content": "-- name: InsertValues :copyfrom\n-- InsertValues inserts multiple values using copy.\nINSERT INTO myschema.foo (a, b) VALUES ($1, $2);\n\n-- name: InsertSingleValue :copyfrom\n-- InsertSingleValue inserts a single value using copy.\nINSERT INTO myschema.foo (a) VALUES ($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA myschema;\nCREATE TABLE myschema.foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v4/go/copyfrom.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: copyfrom.go\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\n// iteratorForInsertValues implements pgx.CopyFromSource.\ntype iteratorForInsertValues struct {\n\trows                 []InsertValuesParams\n\tskippedFirstNextCall bool\n}\n\nfunc (r *iteratorForInsertValues) Next() bool {\n\tif len(r.rows) == 0 {\n\t\treturn false\n\t}\n\tif !r.skippedFirstNextCall {\n\t\tr.skippedFirstNextCall = true\n\t\treturn true\n\t}\n\tr.rows = r.rows[1:]\n\treturn len(r.rows) > 0\n}\n\nfunc (r iteratorForInsertValues) Values() ([]interface{}, error) {\n\treturn []interface{}{\n\t\tr.rows[0].A,\n\t\tr.rows[0].B,\n\t}, nil\n}\n\nfunc (r iteratorForInsertValues) Err() error {\n\treturn nil\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesParams) (int64, error) {\n\treturn q.db.CopyFrom(ctx, []string{\"myschema\", \"foo\"}, []string{\"a\", \"b\"}, &iteratorForInsertValues{rows: arg})\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tCopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error)\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype MyschemaFoo struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\n\t\"github.com/jackc/pgconn\"\n)\n\nconst deleteValues = `-- name: DeleteValues :execresult\nDELETE\nFROM myschema.foo\n`\n\nfunc (q *Queries) DeleteValues(ctx context.Context) (pgconn.CommandTag, error) {\n\treturn q.db.Exec(ctx, deleteValues)\n}\n\nconst insertSingleValue = `-- name: InsertSingleValue :exec\nINSERT INTO myschema.foo (a) VALUES ($1)\n`\n\nfunc (q *Queries) InsertSingleValue(ctx context.Context, a sql.NullString) error {\n\t_, err := q.db.Exec(ctx, insertSingleValue, a)\n\treturn err\n}\n\ntype InsertValuesParams struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v4/query.sql",
    "content": "-- name: InsertValues :copyfrom\nINSERT INTO myschema.foo (a, b) VALUES ($1, $2);\n\n-- name: InsertSingleValue :exec\nINSERT INTO myschema.foo (a) VALUES ($1);\n\n-- name: DeleteValues :execresult\nDELETE\nFROM myschema.foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA myschema;\nCREATE TABLE myschema.foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v5/go/copyfrom.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: copyfrom.go\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\n// iteratorForInsertValues implements pgx.CopyFromSource.\ntype iteratorForInsertValues struct {\n\trows                 []InsertValuesParams\n\tskippedFirstNextCall bool\n}\n\nfunc (r *iteratorForInsertValues) Next() bool {\n\tif len(r.rows) == 0 {\n\t\treturn false\n\t}\n\tif !r.skippedFirstNextCall {\n\t\tr.skippedFirstNextCall = true\n\t\treturn true\n\t}\n\tr.rows = r.rows[1:]\n\treturn len(r.rows) > 0\n}\n\nfunc (r iteratorForInsertValues) Values() ([]interface{}, error) {\n\treturn []interface{}{\n\t\tr.rows[0].A,\n\t\tr.rows[0].B,\n\t}, nil\n}\n\nfunc (r iteratorForInsertValues) Err() error {\n\treturn nil\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg []InsertValuesParams) (int64, error) {\n\treturn q.db.CopyFrom(ctx, []string{\"myschema\", \"foo\"}, []string{\"a\", \"b\"}, &iteratorForInsertValues{rows: arg})\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tCopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error)\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype MyschemaFoo struct {\n\tA pgtype.Text\n\tB pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgconn\"\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst deleteValues = `-- name: DeleteValues :execresult\nDELETE\nFROM myschema.foo\n`\n\nfunc (q *Queries) DeleteValues(ctx context.Context) (pgconn.CommandTag, error) {\n\treturn q.db.Exec(ctx, deleteValues)\n}\n\nconst insertSingleValue = `-- name: InsertSingleValue :exec\nINSERT INTO myschema.foo (a) VALUES ($1)\n`\n\nfunc (q *Queries) InsertSingleValue(ctx context.Context, a pgtype.Text) error {\n\t_, err := q.db.Exec(ctx, insertSingleValue, a)\n\treturn err\n}\n\ntype InsertValuesParams struct {\n\tA pgtype.Text\n\tB pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v5/query.sql",
    "content": "-- name: InsertValues :copyfrom\nINSERT INTO myschema.foo (a, b) VALUES ($1, $2);\n\n-- name: InsertSingleValue :exec\nINSERT INTO myschema.foo (a) VALUES ($1);\n\n-- name: DeleteValues :execresult\nDELETE\nFROM myschema.foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA myschema;\nCREATE TABLE myschema.foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_imports/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_multicolumn_parameter_limit/mysql/go/copyfrom.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: copyfrom.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"io\"\n\t\"sync/atomic\"\n\n\t\"github.com/go-sql-driver/mysql\"\n\t\"github.com/hexon/mysqltsv\"\n)\n\nvar readerHandlerSequenceForInsertMultipleValues uint32 = 1\n\nfunc convertRowsForInsertMultipleValues(w *io.PipeWriter, arg []InsertMultipleValuesParams) {\n\te := mysqltsv.NewEncoder(w, 2, nil)\n\tfor _, row := range arg {\n\t\te.AppendValue(row.A)\n\t\te.AppendValue(row.B)\n\t}\n\tw.CloseWithError(e.Close())\n}\n\n// InsertMultipleValues uses MySQL's LOAD DATA LOCAL INFILE and is not atomic.\n//\n// Errors and duplicate keys are treated as warnings and insertion will\n// continue, even without an error for some cases.  Use this in a transaction\n// and use SHOW WARNINGS to check for any problems and roll back if you want to.\n//\n// Check the documentation for more information:\n// https://dev.mysql.com/doc/refman/8.0/en/load-data.html#load-data-error-handling\nfunc (q *Queries) InsertMultipleValues(ctx context.Context, arg []InsertMultipleValuesParams) (int64, error) {\n\tpr, pw := io.Pipe()\n\tdefer pr.Close()\n\trh := fmt.Sprintf(\"InsertMultipleValues_%d\", atomic.AddUint32(&readerHandlerSequenceForInsertMultipleValues, 1))\n\tmysql.RegisterReaderHandler(rh, func() io.Reader { return pr })\n\tdefer mysql.DeregisterReaderHandler(rh)\n\tgo convertRowsForInsertMultipleValues(pw, arg)\n\t// The string interpolation is necessary because LOAD DATA INFILE requires\n\t// the file name to be given as a literal string.\n\tresult, err := q.db.ExecContext(ctx, fmt.Sprintf(\"LOAD DATA LOCAL INFILE '%s' INTO TABLE `foo` %s (a, b)\", \"Reader::\"+rh, mysqltsv.Escaping))\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_multicolumn_parameter_limit/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_multicolumn_parameter_limit/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_multicolumn_parameter_limit/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\nconst insertMultipleValues = `-- name: InsertMultipleValues :copyfrom\nINSERT INTO foo (a, b) VALUES (?, ?)\n`\n\ntype InsertMultipleValuesParams struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_multicolumn_parameter_limit/mysql/query.sql",
    "content": "-- name: InsertMultipleValues :copyfrom\nINSERT INTO foo (a, b) VALUES (?, ?);\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_multicolumn_parameter_limit/mysql/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_multicolumn_parameter_limit/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"sql_package\": \"database/sql\",\n      \"sql_driver\": \"github.com/go-sql-driver/mysql\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"query_parameter_limit\": 4\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_named_params/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/2833\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_named_params/postgresql/pgx/go/copyfrom.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: copyfrom.go\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\n// iteratorForStageUserData implements pgx.CopyFromSource.\ntype iteratorForStageUserData struct {\n\trows                 []StageUserDataParams\n\tskippedFirstNextCall bool\n}\n\nfunc (r *iteratorForStageUserData) Next() bool {\n\tif len(r.rows) == 0 {\n\t\treturn false\n\t}\n\tif !r.skippedFirstNextCall {\n\t\tr.skippedFirstNextCall = true\n\t\treturn true\n\t}\n\tr.rows = r.rows[1:]\n\treturn len(r.rows) > 0\n}\n\nfunc (r iteratorForStageUserData) Values() ([]interface{}, error) {\n\treturn []interface{}{\n\t\tr.rows[0].IDParam,\n\t\tr.rows[0].UserParam,\n\t}, nil\n}\n\nfunc (r iteratorForStageUserData) Err() error {\n\treturn nil\n}\n\nfunc (q *Queries) StageUserData(ctx context.Context, arg []StageUserDataParams) (int64, error) {\n\treturn q.db.CopyFrom(ctx, []string{\"user_data\"}, []string{\"id\", \"user\"}, &iteratorForStageUserData{rows: arg})\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_named_params/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tCopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error)\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_named_params/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype UserDatum struct {\n\tID   string\n\tUser string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_named_params/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\ntype StageUserDataParams struct {\n\tIDParam   string\n\tUserParam string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_named_params/postgresql/pgx/query.sql",
    "content": "-- name: StageUserData :copyfrom\ninsert into \"user_data\" (\"id\", \"user\")\nvalues (\n    sqlc.arg('id_param'),\n    sqlc.arg('user_param')\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_named_params/postgresql/pgx/schema.sql",
    "content": "create table \"user_data\" (\n\t\"id\" varchar not null,\n\t\"user\" varchar not null,\n\tprimary key (\"id\")\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_named_params/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/copyfrom.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: copyfrom.go\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\n// iteratorForCreateAuthors implements pgx.CopyFromSource.\ntype iteratorForCreateAuthors struct {\n\trows                 []int32\n\tskippedFirstNextCall bool\n}\n\nfunc (r *iteratorForCreateAuthors) Next() bool {\n\tif len(r.rows) == 0 {\n\t\treturn false\n\t}\n\tif !r.skippedFirstNextCall {\n\t\tr.skippedFirstNextCall = true\n\t\treturn true\n\t}\n\tr.rows = r.rows[1:]\n\treturn len(r.rows) > 0\n}\n\nfunc (r iteratorForCreateAuthors) Values() ([]interface{}, error) {\n\treturn []interface{}{\n\t\tr.rows[0],\n\t}, nil\n}\n\nfunc (r iteratorForCreateAuthors) Err() error {\n\treturn nil\n}\n\nfunc (q *Queries) CreateAuthors(ctx context.Context, authorID []int32) (int64, error) {\n\treturn q.db.CopyFrom(ctx, []string{\"authors\"}, []string{\"author_id\"}, &iteratorForCreateAuthors{rows: authorID})\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tCopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error)\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Author struct {\n\tAuthorID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tCreateAuthors(ctx context.Context, authorID []int32) (int64, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/query.sql",
    "content": "-- name: CreateAuthors :copyfrom\nINSERT INTO authors (author_id) VALUES ($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE authors (\n    author_id SERIAL PRIMARY KEY\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/copyfrom.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: copyfrom.go\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\n// iteratorForCreateAuthors implements pgx.CopyFromSource.\ntype iteratorForCreateAuthors struct {\n\trows                 []int32\n\tskippedFirstNextCall bool\n}\n\nfunc (r *iteratorForCreateAuthors) Next() bool {\n\tif len(r.rows) == 0 {\n\t\treturn false\n\t}\n\tif !r.skippedFirstNextCall {\n\t\tr.skippedFirstNextCall = true\n\t\treturn true\n\t}\n\tr.rows = r.rows[1:]\n\treturn len(r.rows) > 0\n}\n\nfunc (r iteratorForCreateAuthors) Values() ([]interface{}, error) {\n\treturn []interface{}{\n\t\tr.rows[0],\n\t}, nil\n}\n\nfunc (r iteratorForCreateAuthors) Err() error {\n\treturn nil\n}\n\nfunc (q *Queries) CreateAuthors(ctx context.Context, authorID []int32) (int64, error) {\n\treturn q.db.CopyFrom(ctx, []string{\"authors\"}, []string{\"author_id\"}, &iteratorForCreateAuthors{rows: authorID})\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tCopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error)\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Author struct {\n\tAuthorID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tCreateAuthors(ctx context.Context, authorID []int32) (int64, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/query.sql",
    "content": "-- name: CreateAuthors :copyfrom\nINSERT INTO authors (author_id) VALUES ($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE authors (\n    author_id SERIAL PRIMARY KEY\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn_struct_only/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/3443"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn_struct_only/mysql/go/copyfrom.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: copyfrom.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"io\"\n\t\"sync/atomic\"\n\n\t\"github.com/go-sql-driver/mysql\"\n\t\"github.com/hexon/mysqltsv\"\n)\n\nvar readerHandlerSequenceForInsertSingleValue uint32 = 1\n\nfunc convertRowsForInsertSingleValue(w *io.PipeWriter, arg []InsertSingleValueParams) {\n\te := mysqltsv.NewEncoder(w, 1, nil)\n\tfor _, row := range arg {\n\t\te.AppendValue(row.A)\n\t}\n\tw.CloseWithError(e.Close())\n}\n\n// InsertSingleValue uses MySQL's LOAD DATA LOCAL INFILE and is not atomic.\n//\n// Errors and duplicate keys are treated as warnings and insertion will\n// continue, even without an error for some cases.  Use this in a transaction\n// and use SHOW WARNINGS to check for any problems and roll back if you want to.\n//\n// Check the documentation for more information:\n// https://dev.mysql.com/doc/refman/8.0/en/load-data.html#load-data-error-handling\nfunc (q *Queries) InsertSingleValue(ctx context.Context, arg []InsertSingleValueParams) (int64, error) {\n\tpr, pw := io.Pipe()\n\tdefer pr.Close()\n\trh := fmt.Sprintf(\"InsertSingleValue_%d\", atomic.AddUint32(&readerHandlerSequenceForInsertSingleValue, 1))\n\tmysql.RegisterReaderHandler(rh, func() io.Reader { return pr })\n\tdefer mysql.DeregisterReaderHandler(rh)\n\tgo convertRowsForInsertSingleValue(pw, arg)\n\t// The string interpolation is necessary because LOAD DATA INFILE requires\n\t// the file name to be given as a literal string.\n\tresult, err := q.db.ExecContext(ctx, fmt.Sprintf(\"LOAD DATA LOCAL INFILE '%s' INTO TABLE `foo` %s (a)\", \"Reader::\"+rh, mysqltsv.Escaping))\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn_struct_only/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn_struct_only/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn_struct_only/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\nconst insertSingleValue = `-- name: InsertSingleValue :copyfrom\nINSERT INTO foo (a) VALUES (?)\n`\n\ntype InsertSingleValueParams struct {\n\tA sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn_struct_only/mysql/query.sql",
    "content": "-- name: InsertSingleValue :copyfrom\nINSERT INTO foo (a) VALUES (?);\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn_struct_only/mysql/schema.sql",
    "content": "CREATE TABLE foo (a text);\n"
  },
  {
    "path": "internal/endtoend/testdata/copyfrom_singlecolumn_struct_only/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"sql_package\": \"database/sql\",\n      \"sql_driver\": \"github.com/go-sql-driver/mysql\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"query_parameter_limit\": 0\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID uint64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst countStarLower = `-- name: CountStarLower :one\nSELECT count(*) FROM bar\n`\n\nfunc (q *Queries) CountStarLower(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, countStarLower)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n\nconst countStarUpper = `-- name: CountStarUpper :one\nSELECT COUNT(*) FROM bar\n`\n\nfunc (q *Queries) CountStarUpper(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, countStarUpper)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/mysql/query.sql",
    "content": "-- name: CountStarLower :one\nSELECT count(*) FROM bar;\n\n-- name: CountStarUpper :one\nSELECT COUNT(*) FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/mysql/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"mysql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst countStarLower = `-- name: CountStarLower :one\nSELECT count(*) FROM bar\n`\n\nfunc (q *Queries) CountStarLower(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRow(ctx, countStarLower)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n\nconst countStarUpper = `-- name: CountStarUpper :one\nSELECT COUNT(*) FROM bar\n`\n\nfunc (q *Queries) CountStarUpper(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRow(ctx, countStarUpper)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/pgx/v4/query.sql",
    "content": "-- name: CountStarLower :one\nSELECT count(*) FROM bar;\n\n-- name: CountStarUpper :one\nSELECT COUNT(*) FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst countStarLower = `-- name: CountStarLower :one\nSELECT count(*) FROM bar\n`\n\nfunc (q *Queries) CountStarLower(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRow(ctx, countStarLower)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n\nconst countStarUpper = `-- name: CountStarUpper :one\nSELECT COUNT(*) FROM bar\n`\n\nfunc (q *Queries) CountStarUpper(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRow(ctx, countStarUpper)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/pgx/v5/query.sql",
    "content": "-- name: CountStarLower :one\nSELECT count(*) FROM bar;\n\n-- name: CountStarUpper :one\nSELECT COUNT(*) FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst countStarLower = `-- name: CountStarLower :one\nSELECT count(*) FROM bar\n`\n\nfunc (q *Queries) CountStarLower(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, countStarLower)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n\nconst countStarUpper = `-- name: CountStarUpper :one\nSELECT COUNT(*) FROM bar\n`\n\nfunc (q *Queries) CountStarUpper(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, countStarUpper)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/stdlib/query.sql",
    "content": "-- name: CountStarLower :one\nSELECT count(*) FROM bar;\n\n-- name: CountStarUpper :one\nSELECT COUNT(*) FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst countStarLower = `-- name: CountStarLower :one\nSELECT count(*) FROM bar\n`\n\nfunc (q *Queries) CountStarLower(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, countStarLower)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n\nconst countStarUpper = `-- name: CountStarUpper :one\nSELECT COUNT(*) FROM bar\n`\n\nfunc (q *Queries) CountStarUpper(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, countStarUpper)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/sqlite/query.sql",
    "content": "-- name: CountStarLower :one\nSELECT count(*) FROM bar;\n\n-- name: CountStarUpper :one\nSELECT COUNT(*) FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/sqlite/schema.sql",
    "content": "CREATE TABLE bar (id BIGINT not null);\n"
  },
  {
    "path": "internal/endtoend/testdata/count_star/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"sqlite\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_materialized_view/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_materialized_view/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tVal string\n}\n\ntype MatFirstView struct {\n\tVal string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_materialized_view/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getFirst = `-- name: GetFirst :many\nSELECT val FROM mat_first_view\n`\n\nfunc (q *Queries) GetFirst(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, getFirst)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar val string\n\t\tif err := rows.Scan(&val); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, val)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_materialized_view/postgresql/query.sql",
    "content": "-- name: GetFirst :many\nSELECT * FROM mat_first_view;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/create_materialized_view/postgresql/schema.sql",
    "content": "CREATE TABLE foo (val text not null);\n\nCREATE MATERIALIZED VIEW mat_first_view AS SELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/create_materialized_view/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_as/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_as/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tVal string\n}\n\ntype SecondTable struct {\n\tVal string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_as/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getFirst = `-- name: GetFirst :many\nSELECT val FROM second_table\n`\n\nfunc (q *Queries) GetFirst(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, getFirst)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar val string\n\t\tif err := rows.Scan(&val); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, val)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_as/postgresql/query.sql",
    "content": "-- name: GetFirst :many\nSELECT * FROM second_table;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_as/postgresql/schema.sql",
    "content": "CREATE TABLE foo (val text not null);\n\nCREATE TABLE second_table AS SELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_as/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_like/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_like/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype SuperUser struct {\n\tID          int32\n\tFirstName   string\n\tLastName    sql.NullString\n\tDateOfBirth sql.NullTime\n}\n\ntype User struct {\n\tID       int32\n\tLastName sql.NullString\n\tAge      int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_like/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, date_of_birth FROM super_users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]SuperUser, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []SuperUser\n\tfor rows.Next() {\n\t\tvar i SuperUser\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.DateOfBirth,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_like/mysql/query.sql",
    "content": "/* name: GetAll :many */\nSELECT * FROM super_users;\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_like/mysql/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,\n    first_name varchar(255) NOT NULL\n);\n\nALTER TABLE users\n    ADD COLUMN last_name varchar(255);\n\nCREATE TABLE super_users LIKE users;\n\nALTER TABLE users\n    ADD COLUMN age integer NOT NULL;\n\nALTER TABLE users\n    DROP COLUMN first_name;\n\nALTER TABLE super_users\n    ADD COLUMN date_of_birth DATETIME(6);\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_like/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"mysql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_like/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_like/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype SuperUser struct {\n\tID          int32\n\tFirstName   string\n\tLastName    sql.NullString\n\tDateOfBirth sql.NullTime\n}\n\ntype User struct {\n\tID       int32\n\tLastName sql.NullString\n\tAge      int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_like/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, date_of_birth FROM super_users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]SuperUser, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []SuperUser\n\tfor rows.Next() {\n\t\tvar i SuperUser\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.DateOfBirth,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_like/postgresql/query.sql",
    "content": "/* name: GetAll :many */\nSELECT * FROM super_users;\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_like/postgresql/schema.sql",
    "content": "CREATE TABLE users (\n    id serial NOT NULL PRIMARY KEY,\n    first_name varchar(255) NOT NULL\n);\n\nALTER TABLE users\n    ADD COLUMN last_name varchar(255);\n\nCREATE TABLE super_users ( LIKE users );\n\nALTER TABLE users\n    ADD COLUMN age integer NOT NULL;\n\nALTER TABLE users\n    DROP COLUMN first_name;\n\nALTER TABLE super_users\n    ADD COLUMN date_of_birth TIMESTAMP;\n"
  },
  {
    "path": "internal/endtoend/testdata/create_table_like/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype FirstView struct {\n\tVal string\n}\n\ntype Foo struct {\n\tVal  string\n\tVal2 sql.NullInt32\n}\n\ntype SecondView struct {\n\tVal  string\n\tVal2 sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getFirst = `-- name: GetFirst :many\nSELECT val FROM first_view\n`\n\nfunc (q *Queries) GetFirst(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, getFirst)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar val string\n\t\tif err := rows.Scan(&val); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, val)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getSecond = `-- name: GetSecond :many\nSELECT val, val2 FROM second_view WHERE val2 = $1\n`\n\nfunc (q *Queries) GetSecond(ctx context.Context) ([]SecondView, error) {\n\trows, err := q.db.QueryContext(ctx, getSecond)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []SecondView\n\tfor rows.Next() {\n\t\tvar i SecondView\n\t\tif err := rows.Scan(&i.Val, &i.Val2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/mysql/query.sql",
    "content": "-- name: GetFirst :many\nSELECT * FROM first_view;\n\n-- name: GetSecond :many\nSELECT * FROM second_view WHERE val2 = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/mysql/schema.sql",
    "content": "CREATE TABLE foo (val text not null);\n\nCREATE VIEW first_view AS SELECT * FROM foo;\nCREATE VIEW second_view AS SELECT * FROM foo;\nCREATE VIEW third_view AS SELECT * FROM foo;\n\nALTER TABLE foo ADD COLUMN val2 integer;\nCREATE OR REPLACE VIEW second_view AS SELECT * FROM foo;\n\nDROP VIEW third_view;\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype FirstView struct {\n\tVal string\n}\n\ntype Foo struct {\n\tVal  string\n\tVal2 sql.NullInt32\n}\n\ntype SecondView struct {\n\tVal  string\n\tVal2 sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getFirst = `-- name: GetFirst :many\nSELECT val FROM first_view\n`\n\nfunc (q *Queries) GetFirst(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, getFirst)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar val string\n\t\tif err := rows.Scan(&val); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, val)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getSecond = `-- name: GetSecond :many\nSELECT val, val2 FROM second_view WHERE val2 = $1\n`\n\nfunc (q *Queries) GetSecond(ctx context.Context, val2 sql.NullInt32) ([]SecondView, error) {\n\trows, err := q.db.QueryContext(ctx, getSecond, val2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []SecondView\n\tfor rows.Next() {\n\t\tvar i SecondView\n\t\tif err := rows.Scan(&i.Val, &i.Val2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/postgresql/query.sql",
    "content": "-- name: GetFirst :many\nSELECT * FROM first_view;\n\n-- name: GetSecond :many\nSELECT * FROM second_view WHERE val2 = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/postgresql/schema.sql",
    "content": "CREATE TABLE foo (val text not null);\n\nCREATE VIEW first_view AS SELECT * FROM foo;\nCREATE VIEW second_view AS SELECT * FROM foo;\nCREATE VIEW third_view AS SELECT * FROM foo;\n\nALTER TABLE foo ADD COLUMN val2 integer;\nCREATE OR REPLACE VIEW second_view AS SELECT * FROM foo;\n\nDROP VIEW third_view;\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype FirstView struct {\n\tVal string\n}\n\ntype Foo struct {\n\tVal  string\n\tVal2 sql.NullInt64\n}\n\ntype SecondView struct {\n\tVal  string\n\tVal2 sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getFirst = `-- name: GetFirst :many\nSELECT val FROM first_view\n`\n\nfunc (q *Queries) GetFirst(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, getFirst)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar val string\n\t\tif err := rows.Scan(&val); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, val)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getSecond = `-- name: GetSecond :many\nSELECT val, val2 FROM second_view WHERE val2 = ?\n`\n\nfunc (q *Queries) GetSecond(ctx context.Context, val2 sql.NullInt64) ([]SecondView, error) {\n\trows, err := q.db.QueryContext(ctx, getSecond, val2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []SecondView\n\tfor rows.Next() {\n\t\tvar i SecondView\n\t\tif err := rows.Scan(&i.Val, &i.Val2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/sqlite/query.sql",
    "content": "-- name: GetFirst :many\nSELECT * FROM first_view;\n\n-- name: GetSecond :many\nSELECT * FROM second_view WHERE val2 = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/sqlite/schema.sql",
    "content": "CREATE TABLE foo (val text not null);\n\nCREATE VIEW first_view AS SELECT * FROM foo;\nCREATE VIEW second_view AS SELECT * FROM foo;\nCREATE VIEW third_view AS SELECT * FROM foo;\n\nALTER TABLE foo ADD COLUMN val2 integer;\nDROP VIEW second_view;\nCREATE VIEW second_view AS SELECT * FROM foo;\n\nDROP VIEW third_view;\n"
  },
  {
    "path": "internal/endtoend/testdata/create_view/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tReady bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst cTECount = `-- name: CTECount :many\nWITH all_count AS (\n\tSELECT count(*) FROM bar\n), ready_count AS (\n\tSELECT count(*) FROM bar WHERE ready = true\n)\nSELECT all_count.count, ready_count.count\nFROM all_count, ready_count\n`\n\ntype CTECountRow struct {\n\tCount   int64\n\tCount_2 int64\n}\n\nfunc (q *Queries) CTECount(ctx context.Context) ([]CTECountRow, error) {\n\trows, err := q.db.QueryContext(ctx, cTECount)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CTECountRow\n\tfor rows.Next() {\n\t\tvar i CTECountRow\n\t\tif err := rows.Scan(&i.Count, &i.Count_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/mysql/query.sql",
    "content": "-- name: CTECount :many\nWITH all_count AS (\n\tSELECT count(*) FROM bar\n), ready_count AS (\n\tSELECT count(*) FROM bar WHERE ready = true\n)\nSELECT all_count.count, ready_count.count\nFROM all_count, ready_count;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/mysql/schema.sql",
    "content": "CREATE TABLE bar (ready bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tReady bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst cTECount = `-- name: CTECount :many\nWITH all_count AS (\n\tSELECT count(*) FROM bar\n), ready_count AS (\n\tSELECT count(*) FROM bar WHERE ready = true\n)\nSELECT all_count.count, ready_count.count\nFROM all_count, ready_count\n`\n\ntype CTECountRow struct {\n\tCount   int64\n\tCount_2 int64\n}\n\nfunc (q *Queries) CTECount(ctx context.Context) ([]CTECountRow, error) {\n\trows, err := q.db.Query(ctx, cTECount)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CTECountRow\n\tfor rows.Next() {\n\t\tvar i CTECountRow\n\t\tif err := rows.Scan(&i.Count, &i.Count_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/pgx/v4/query.sql",
    "content": "-- name: CTECount :many\nWITH all_count AS (\n\tSELECT count(*) FROM bar\n), ready_count AS (\n\tSELECT count(*) FROM bar WHERE ready = true\n)\nSELECT all_count.count, ready_count.count\nFROM all_count, ready_count;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (ready bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tReady bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst cTECount = `-- name: CTECount :many\nWITH all_count AS (\n\tSELECT count(*) FROM bar\n), ready_count AS (\n\tSELECT count(*) FROM bar WHERE ready = true\n)\nSELECT all_count.count, ready_count.count\nFROM all_count, ready_count\n`\n\ntype CTECountRow struct {\n\tCount   int64\n\tCount_2 int64\n}\n\nfunc (q *Queries) CTECount(ctx context.Context) ([]CTECountRow, error) {\n\trows, err := q.db.Query(ctx, cTECount)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CTECountRow\n\tfor rows.Next() {\n\t\tvar i CTECountRow\n\t\tif err := rows.Scan(&i.Count, &i.Count_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/pgx/v5/query.sql",
    "content": "-- name: CTECount :many\nWITH all_count AS (\n\tSELECT count(*) FROM bar\n), ready_count AS (\n\tSELECT count(*) FROM bar WHERE ready = true\n)\nSELECT all_count.count, ready_count.count\nFROM all_count, ready_count;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (ready bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tReady bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst cTECount = `-- name: CTECount :many\nWITH all_count AS (\n\tSELECT count(*) FROM bar\n), ready_count AS (\n\tSELECT count(*) FROM bar WHERE ready = true\n)\nSELECT all_count.count, ready_count.count\nFROM all_count, ready_count\n`\n\ntype CTECountRow struct {\n\tCount   int64\n\tCount_2 int64\n}\n\nfunc (q *Queries) CTECount(ctx context.Context) ([]CTECountRow, error) {\n\trows, err := q.db.QueryContext(ctx, cTECount)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CTECountRow\n\tfor rows.Next() {\n\t\tvar i CTECountRow\n\t\tif err := rows.Scan(&i.Count, &i.Count_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/stdlib/query.sql",
    "content": "-- name: CTECount :many\nWITH all_count AS (\n\tSELECT count(*) FROM bar\n), ready_count AS (\n\tSELECT count(*) FROM bar WHERE ready = true\n)\nSELECT all_count.count, ready_count.count\nFROM all_count, ready_count;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/stdlib/schema.sql",
    "content": "CREATE TABLE bar (ready bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_count/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tReady bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst cTEFilter = `-- name: CTEFilter :many\nWITH filter_count AS (\n\tSELECT count(*) FROM bar WHERE ready = ?\n)\nSELECT filter_count.count\nFROM filter_count\n`\n\nfunc (q *Queries) CTEFilter(ctx context.Context, ready bool) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, cTEFilter, ready)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar count int64\n\t\tif err := rows.Scan(&count); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, count)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/mysql/query.sql",
    "content": "-- name: CTEFilter :many\nWITH filter_count AS (\n\tSELECT count(*) FROM bar WHERE ready = ?\n)\nSELECT filter_count.count\nFROM filter_count;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/mysql/schema.sql",
    "content": "CREATE TABLE bar (ready bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tReady bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst cTEFilter = `-- name: CTEFilter :many\nWITH filter_count AS (\n\tSELECT count(*) FROM bar WHERE ready = $1\n)\nSELECT filter_count.count\nFROM filter_count\n`\n\nfunc (q *Queries) CTEFilter(ctx context.Context, ready bool) ([]int64, error) {\n\trows, err := q.db.Query(ctx, cTEFilter, ready)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar count int64\n\t\tif err := rows.Scan(&count); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, count)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/pgx/v4/query.sql",
    "content": "-- name: CTEFilter :many\nWITH filter_count AS (\n\tSELECT count(*) FROM bar WHERE ready = $1\n)\nSELECT filter_count.count\nFROM filter_count;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (ready bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tReady bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst cTEFilter = `-- name: CTEFilter :many\nWITH filter_count AS (\n\tSELECT count(*) FROM bar WHERE ready = $1\n)\nSELECT filter_count.count\nFROM filter_count\n`\n\nfunc (q *Queries) CTEFilter(ctx context.Context, ready bool) ([]int64, error) {\n\trows, err := q.db.Query(ctx, cTEFilter, ready)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar count int64\n\t\tif err := rows.Scan(&count); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, count)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/pgx/v5/query.sql",
    "content": "-- name: CTEFilter :many\nWITH filter_count AS (\n\tSELECT count(*) FROM bar WHERE ready = $1\n)\nSELECT filter_count.count\nFROM filter_count;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (ready bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tReady bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst cTEFilter = `-- name: CTEFilter :many\nWITH filter_count AS (\n\tSELECT count(*) FROM bar WHERE ready = $1\n)\nSELECT filter_count.count\nFROM filter_count\n`\n\nfunc (q *Queries) CTEFilter(ctx context.Context, ready bool) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, cTEFilter, ready)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar count int64\n\t\tif err := rows.Scan(&count); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, count)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/stdlib/query.sql",
    "content": "-- name: CTEFilter :many\nWITH filter_count AS (\n\tSELECT count(*) FROM bar WHERE ready = $1\n)\nSELECT filter_count.count\nFROM filter_count;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/stdlib/schema.sql",
    "content": "CREATE TABLE bar (ready bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_filter/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID    int32\n\tReady bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteReadyWithCTE = `-- name: DeleteReadyWithCTE :exec\nWITH ready_ids AS (\n\tSELECT id FROM bar WHERE ready\n)\nDELETE FROM bar WHERE id IN (SELECT id FROM ready_ids)\n`\n\nfunc (q *Queries) DeleteReadyWithCTE(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, deleteReadyWithCTE)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/mysql/query.sql",
    "content": "-- name: DeleteReadyWithCTE :exec\nWITH ready_ids AS (\n\tSELECT id FROM bar WHERE ready\n)\nDELETE FROM bar WHERE id IN (SELECT * FROM ready_ids);\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/mysql/schema.sql",
    "content": "CREATE TABLE bar (id integer NOT NULL AUTO_INCREMENT PRIMARY KEY, ready bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID    int32\n\tReady bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteReadyWithCTE = `-- name: DeleteReadyWithCTE :many\nWITH ready_ids AS (\n\tSELECT id FROM bar WHERE ready\n)\nDELETE FROM bar WHERE id IN (SELECT id FROM ready_ids)\nRETURNING id\n`\n\nfunc (q *Queries) DeleteReadyWithCTE(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, deleteReadyWithCTE)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/pgx/v4/query.sql",
    "content": "-- name: DeleteReadyWithCTE :many\nWITH ready_ids AS (\n\tSELECT id FROM bar WHERE ready\n)\nDELETE FROM bar WHERE id IN (SELECT * FROM ready_ids)\nRETURNING id;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id serial primary key not null, ready bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID    int32\n\tReady bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteReadyWithCTE = `-- name: DeleteReadyWithCTE :many\nWITH ready_ids AS (\n\tSELECT id FROM bar WHERE ready\n)\nDELETE FROM bar WHERE id IN (SELECT id FROM ready_ids)\nRETURNING id\n`\n\nfunc (q *Queries) DeleteReadyWithCTE(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, deleteReadyWithCTE)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/pgx/v5/query.sql",
    "content": "-- name: DeleteReadyWithCTE :many\nWITH ready_ids AS (\n\tSELECT id FROM bar WHERE ready\n)\nDELETE FROM bar WHERE id IN (SELECT * FROM ready_ids)\nRETURNING id;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id serial primary key not null, ready bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID    int32\n\tReady bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteReadyWithCTE = `-- name: DeleteReadyWithCTE :many\nWITH ready_ids AS (\n\tSELECT id FROM bar WHERE ready\n)\nDELETE FROM bar WHERE id IN (SELECT id FROM ready_ids)\nRETURNING id\n`\n\nfunc (q *Queries) DeleteReadyWithCTE(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, deleteReadyWithCTE)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/stdlib/query.sql",
    "content": "-- name: DeleteReadyWithCTE :many\nWITH ready_ids AS (\n\tSELECT id FROM bar WHERE ready\n)\nDELETE FROM bar WHERE id IN (SELECT * FROM ready_ids)\nRETURNING id;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial primary key not null, ready bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_in_delete/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_join_self/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/2132\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_join_self/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_join_self/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_join_self/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_join_self/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listItems = `-- name: ListItems :one\nWITH\n    items1 AS (SELECT 'id'::TEXT AS id, 'name'::TEXT AS name),\n    items2 AS (SELECT 'id'::TEXT AS id, 'name'::TEXT AS name)\nSELECT\n    i1.id AS id1,\n    i2.id AS id2\nFROM\n    items1 i1\n        JOIN items1 i2 ON 1 = 1\n`\n\ntype ListItemsRow struct {\n\tId1 string\n\tId2 string\n}\n\nfunc (q *Queries) ListItems(ctx context.Context) (ListItemsRow, error) {\n\trow := q.db.QueryRow(ctx, listItems)\n\tvar i ListItemsRow\n\terr := row.Scan(&i.Id1, &i.Id2)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_join_self/postgresql/pgx/query.sql",
    "content": "-- name: ListItems :one\nWITH\n    items1 AS (SELECT 'id'::TEXT AS id, 'name'::TEXT AS name),\n    items2 AS (SELECT 'id'::TEXT AS id, 'name'::TEXT AS name)\nSELECT\n    i1.id AS id1,\n    i2.id AS id2\nFROM\n    items1 i1\n        JOIN items1 i2 ON 1 = 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_join_self/postgresql/pgx/schema.sql",
    "content": "-- TODO"
  },
  {
    "path": "internal/endtoend/testdata/cte_join_self/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_left_join/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1236"
  },
  {
    "path": "internal/endtoend/testdata/cte_left_join/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_left_join/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_left_join/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n\ntype Fake struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_left_join/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst badQuery = `-- name: BadQuery :exec\nWITH\n\tq\n\t\tAS (\n\t\t\tSELECT\n\t\t\t\tauthors.name, authors.bio\n\t\t\tFROM\n\t\t\t\tauthors\n\t\t\t\tLEFT JOIN fake ON authors.name = fake.name\n\t\t)\nSELECT\n\tname, bio\nFROM\n\tq AS c1\nWHERE c1.name = $1\n`\n\nfunc (q *Queries) BadQuery(ctx context.Context, dollar_1 pgtype.Text) error {\n\t_, err := q.db.Exec(ctx, badQuery, dollar_1)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_left_join/postgresql/pgx/query.sql",
    "content": "-- name: BadQuery :exec\nWITH\n\tq\n\t\tAS (\n\t\t\tSELECT\n\t\t\t\tauthors.name, authors.bio\n\t\t\tFROM\n\t\t\t\tauthors\n\t\t\t\tLEFT JOIN fake ON authors.name = fake.name\n\t\t)\nSELECT\n\t*\nFROM\n\tq AS c1\nWHERE c1.name = $1;"
  },
  {
    "path": "internal/endtoend/testdata/cte_left_join/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n\nCREATE TABLE fake (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);"
  },
  {
    "path": "internal/endtoend/testdata/cte_left_join/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\""
  },
  {
    "path": "internal/endtoend/testdata/cte_multiple_alias/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1237"
  },
  {
    "path": "internal/endtoend/testdata/cte_multiple_alias/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_multiple_alias/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n\ntype Fake struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_multiple_alias/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst badQuery = `-- name: BadQuery :one\nWITH\n\tq\n\t\tAS (\n\t\t\tSELECT\n\t\t\t\tauthors.name, authors.bio\n\t\t\tFROM\n\t\t\t\tauthors\n\t\t\t\tLEFT JOIN fake ON authors.name = fake.name\n\t\t)\nSELECT\n\tc1.name, c1.bio, c2.name, c2.bio\nFROM\n\tq AS c1,\n\tq as c2\n`\n\ntype BadQueryRow struct {\n\tName   string\n\tBio    pgtype.Text\n\tName_2 string\n\tBio_2  pgtype.Text\n}\n\nfunc (q *Queries) BadQuery(ctx context.Context) (BadQueryRow, error) {\n\trow := q.db.QueryRow(ctx, badQuery)\n\tvar i BadQueryRow\n\terr := row.Scan(\n\t\t&i.Name,\n\t\t&i.Bio,\n\t\t&i.Name_2,\n\t\t&i.Bio_2,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_multiple_alias/postgresql/pgx/query.sql",
    "content": "-- name: BadQuery :one\nWITH\n\tq\n\t\tAS (\n\t\t\tSELECT\n\t\t\t\tauthors.name, authors.bio\n\t\t\tFROM\n\t\t\t\tauthors\n\t\t\t\tLEFT JOIN fake ON authors.name = fake.name\n\t\t)\nSELECT\n\t*\nFROM\n\tq AS c1,\n\tq as c2;"
  },
  {
    "path": "internal/endtoend/testdata/cte_multiple_alias/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n\nCREATE TABLE fake (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);"
  },
  {
    "path": "internal/endtoend/testdata/cte_multiple_alias/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\""
  },
  {
    "path": "internal/endtoend/testdata/cte_nested_with/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/2226\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_nested_with/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_nested_with/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_nested_with/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_nested_with/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getAuthor = `-- name: GetAuthor :one\nWITH person AS(\n    WITH summary AS(\n        WITH mb AS(\n            select\n                id, name, bio\n            from authors\n        )\n        SELECT\n            bio\n        FROM mb\n        )\n    SELECT\n       count(*) as total\n    FROM summary\n)\nselect total from person\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context) (pgtype.Int8, error) {\n\trow := q.db.QueryRow(ctx, getAuthor)\n\tvar total pgtype.Int8\n\terr := row.Scan(&total)\n\treturn total, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_nested_with/postgresql/pgx/query.sql",
    "content": "-- name: GetAuthor :one\nWITH person AS(\n    WITH summary AS(\n        WITH mb AS(\n            select\n                id, name, bio\n            from authors\n        )\n        SELECT\n            bio\n        FROM mb\n        )\n    SELECT\n       count(*) as total\n    FROM summary\n)\nselect total from person;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_nested_with/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_nested_with/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID       int32\n\tParentID sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst cTERecursive = `-- name: CTERecursive :many\nWITH RECURSIVE cte AS (\n        SELECT b.id, b.parent_id FROM bar AS b\n        WHERE b.id = ?\n    UNION ALL\n        SELECT b.id, b.parent_id\n        FROM bar AS b, cte AS c\n        WHERE b.parent_id = c.id\n) SELECT id, parent_id FROM cte\n`\n\ntype CTERecursiveRow struct {\n\tID       int32\n\tParentID sql.NullInt32\n}\n\nfunc (q *Queries) CTERecursive(ctx context.Context, id int32) ([]CTERecursiveRow, error) {\n\trows, err := q.db.QueryContext(ctx, cTERecursive, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CTERecursiveRow\n\tfor rows.Next() {\n\t\tvar i CTERecursiveRow\n\t\tif err := rows.Scan(&i.ID, &i.ParentID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/mysql/query.sql",
    "content": "-- name: CTERecursive :many\nWITH RECURSIVE cte AS (\n        SELECT b.* FROM bar AS b\n        WHERE b.id = ?\n    UNION ALL\n        SELECT b.*\n        FROM bar AS b, cte AS c\n        WHERE b.parent_id = c.id\n) SELECT * FROM cte;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/mysql/schema.sql",
    "content": "CREATE TABLE bar (id INT NOT NULL, parent_id INT);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID       int32\n\tParentID sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst cTERecursive = `-- name: CTERecursive :many\nWITH RECURSIVE cte AS (\n        SELECT b.id, b.parent_id FROM bar AS b\n        WHERE b.id = $1\n    UNION ALL\n        SELECT b.id, b.parent_id\n        FROM bar AS b, cte AS c\n        WHERE b.parent_id = c.id\n) SELECT id, parent_id FROM cte\n`\n\ntype CTERecursiveRow struct {\n\tID       int32\n\tParentID sql.NullInt32\n}\n\nfunc (q *Queries) CTERecursive(ctx context.Context, id int32) ([]CTERecursiveRow, error) {\n\trows, err := q.db.Query(ctx, cTERecursive, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CTERecursiveRow\n\tfor rows.Next() {\n\t\tvar i CTERecursiveRow\n\t\tif err := rows.Scan(&i.ID, &i.ParentID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/pgx/v4/query.sql",
    "content": "-- name: CTERecursive :many\nWITH RECURSIVE cte AS (\n        SELECT b.* FROM bar AS b\n        WHERE b.id = $1\n    UNION ALL\n        SELECT b.*\n        FROM bar AS b, cte AS c\n        WHERE b.parent_id = c.id\n) SELECT * FROM cte;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id INT NOT NULL, parent_id INT);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Bar struct {\n\tID       int32\n\tParentID pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst cTERecursive = `-- name: CTERecursive :many\nWITH RECURSIVE cte AS (\n        SELECT b.id, b.parent_id FROM bar AS b\n        WHERE b.id = $1\n    UNION ALL\n        SELECT b.id, b.parent_id\n        FROM bar AS b, cte AS c\n        WHERE b.parent_id = c.id\n) SELECT id, parent_id FROM cte\n`\n\ntype CTERecursiveRow struct {\n\tID       int32\n\tParentID pgtype.Int4\n}\n\nfunc (q *Queries) CTERecursive(ctx context.Context, id int32) ([]CTERecursiveRow, error) {\n\trows, err := q.db.Query(ctx, cTERecursive, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CTERecursiveRow\n\tfor rows.Next() {\n\t\tvar i CTERecursiveRow\n\t\tif err := rows.Scan(&i.ID, &i.ParentID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/pgx/v5/query.sql",
    "content": "-- name: CTERecursive :many\nWITH RECURSIVE cte AS (\n        SELECT b.* FROM bar AS b\n        WHERE b.id = $1\n    UNION ALL\n        SELECT b.*\n        FROM bar AS b, cte AS c\n        WHERE b.parent_id = c.id\n) SELECT * FROM cte;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id INT NOT NULL, parent_id INT);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID       int32\n\tParentID sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst cTERecursive = `-- name: CTERecursive :many\nWITH RECURSIVE cte AS (\n        SELECT b.id, b.parent_id FROM bar AS b\n        WHERE b.id = $1\n    UNION ALL\n        SELECT b.id, b.parent_id\n        FROM bar AS b, cte AS c\n        WHERE b.parent_id = c.id\n) SELECT id, parent_id FROM cte\n`\n\ntype CTERecursiveRow struct {\n\tID       int32\n\tParentID sql.NullInt32\n}\n\nfunc (q *Queries) CTERecursive(ctx context.Context, id int32) ([]CTERecursiveRow, error) {\n\trows, err := q.db.QueryContext(ctx, cTERecursive, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CTERecursiveRow\n\tfor rows.Next() {\n\t\tvar i CTERecursiveRow\n\t\tif err := rows.Scan(&i.ID, &i.ParentID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/stdlib/query.sql",
    "content": "-- name: CTERecursive :many\nWITH RECURSIVE cte AS (\n        SELECT b.* FROM bar AS b\n        WHERE b.id = $1\n    UNION ALL\n        SELECT b.*\n        FROM bar AS b, cte AS c\n        WHERE b.parent_id = c.id\n) SELECT * FROM cte;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id INT NOT NULL, parent_id INT);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_employees/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1219\nhttps://github.com/sqlc-dev/sqlc/issues/1912\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_employees/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_employees/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_employees/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Employee struct {\n\tID      int64\n\tName    string\n\tManager pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_employees/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getSubordinates = `-- name: GetSubordinates :many\nWITH RECURSIVE subordinates(name, manager) AS (\n    SELECT\n        NULL, $1::TEXT\n    UNION\n    SELECT\n        s.manager, e.name\n    FROM \n        subordinates AS s\n    LEFT OUTER JOIN\n        employees AS e\n    ON\n        e.manager = s.manager\n    WHERE\n        s.manager IS NOT NULL\n)\nSELECT \n    s.name\nFROM\n    subordinates AS s\nWHERE\n    s.name != $1\n`\n\nfunc (q *Queries) GetSubordinates(ctx context.Context, name pgtype.Text) ([]pgtype.Text, error) {\n\trows, err := q.db.Query(ctx, getSubordinates, name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.Text\n\tfor rows.Next() {\n\t\tvar name pgtype.Text\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_employees/postgresql/pgx/query.sql",
    "content": "-- name: GetSubordinates :many\nWITH RECURSIVE subordinates(name, manager) AS (\n    SELECT\n        NULL, sqlc.arg(name)::TEXT\n    UNION\n    SELECT\n        s.manager, e.name\n    FROM \n        subordinates AS s\n    LEFT OUTER JOIN\n        employees AS e\n    ON\n        e.manager = s.manager\n    WHERE\n        s.manager IS NOT NULL\n)\nSELECT \n    s.name\nFROM\n    subordinates AS s\nWHERE\n    s.name != sqlc.arg(name);"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_employees/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE employees (\n  id       BIGSERIAL                       PRIMARY KEY,\n  name     text                            UNIQUE NOT NULL,\n  manager  text REFERENCES employees(name)\n);"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_employees/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\""
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_star/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1219"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_star/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_star/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_star/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Dict struct {\n\tID         string\n\tAppID      string\n\tCode       pgtype.Text\n\tParentCode string\n\tLabel      string\n\tValue      pgtype.Text\n\tWeight     int32\n\tIsDefault  bool\n\tIsVirtual  bool\n\tStatus     int16\n\tCreateAt   pgtype.Timestamptz\n\tCreateBy   string\n\tUpdateAt   pgtype.Timestamptz\n\tUpdateBy   pgtype.Text\n\tIsDelete   bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_star/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getDictTree = `-- name: GetDictTree :many\nwith recursive dictTree(id, code, parent_code, label, value, path, depth) AS (\n\tselect id, code, parent_code, label, value, ARRAY[COALESCE((select id from dict where code=''),'virtual_root'), id], 1 as depth from dict where app_id = '1' and parent_code = '' and is_delete=false\n\tunion\n\t\tselect d.id, d.code, d.parent_code, d.label, d.value, t.path || ARRAY[d.id], t.depth+1 as depth from dict d join dictTree t on d.parent_code = t.code and not d.id = ANY(t.path) and d.is_delete=false\n)\nselect id, code, parent_code, label, value, path, depth from dictTree d order by depth, parent_code\n`\n\ntype GetDictTreeRow struct {\n\tID         string\n\tCode       pgtype.Text\n\tParentCode string\n\tLabel      string\n\tValue      pgtype.Text\n\tPath       []string\n\tDepth      int32\n}\n\nfunc (q *Queries) GetDictTree(ctx context.Context) ([]GetDictTreeRow, error) {\n\trows, err := q.db.Query(ctx, getDictTree)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetDictTreeRow\n\tfor rows.Next() {\n\t\tvar i GetDictTreeRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Code,\n\t\t\t&i.ParentCode,\n\t\t\t&i.Label,\n\t\t\t&i.Value,\n\t\t\t&i.Path,\n\t\t\t&i.Depth,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_star/postgresql/pgx/query.sql",
    "content": "-- name: GetDictTree :many\nwith recursive dictTree(id, code, parent_code, label, value, path, depth) AS (\n\tselect id, code, parent_code, label, value, ARRAY[COALESCE((select id from dict where code=''),'virtual_root'), id], 1 as depth from dict where app_id = '1' and parent_code = '' and is_delete=false\n\tunion\n\t\tselect d.id, d.code, d.parent_code, d.label, d.value, t.path || ARRAY[d.id], t.depth+1 as depth from dict d join dictTree t on d.parent_code = t.code and not d.id = ANY(t.path) and d.is_delete=false\n)\nselect * from dictTree d order by depth, parent_code;"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_star/postgresql/pgx/schema.sql",
    "content": "create table dict(\n    id           VARCHAR(36)     PRIMARY KEY DEFAULT gen_random_uuid(),\n    app_id       VARCHAR(36)     NOT NULL,\n    code         VARCHAR(64),\n    parent_code  VARCHAR(64)     NOT NULL,\n    label        TEXT            NOT NULL DEFAULT '',\n    value        TEXT            NULL,\n    weight       INT             NOT NULL DEFAULT 0,\n    is_default   BOOLEAN         NOT NULL DEFAULT false,\n    is_virtual   BOOLEAN         NOT NULL DEFAULT false,\n    status       SMALLINT        NOT NULL DEFAULT 1,\n    create_at    TIMESTAMPTZ(0)  NOT NULL DEFAULT now(),\n    create_by    VARCHAR(36)     NOT NULL DEFAULT '',\n    update_at    TIMESTAMPTZ(0),\n    update_by    VARCHAR(36),\n    is_delete    BOOLEAN         NOT NULL DEFAULT false\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_star/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\""
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_subquery/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/2644\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_subquery/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_subquery/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_subquery/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Version struct {\n\tID                int64\n\tName              pgtype.Text\n\tPreviousVersionID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_subquery/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getLatestVersion = `-- name: GetLatestVersion :one\nWITH RECURSIVE search_tree(id, chain_id, chain_counter) AS (\n\tSELECT base.id, base.id AS chain_id, 0 as chain_counter\n\tFROM versions AS base\n\tWHERE base.previous_version_id IS NULL\n  \tUNION ALL\n\tSELECT v.id, search_tree.chain_id, search_tree.chain_counter + 1\n\tFROM versions AS v\n\tINNER JOIN search_tree ON search_tree.id = v.previous_version_id\n)\nSELECT DISTINCT ON (search_tree.chain_id) \n\tsearch_tree.id\nFROM search_tree   \nORDER BY search_tree.chain_id, chain_counter DESC\n`\n\nfunc (q *Queries) GetLatestVersion(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRow(ctx, getLatestVersion)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst getLatestVersionWithSubquery = `-- name: GetLatestVersionWithSubquery :one\nSELECT id\nFROM versions\nWHERE versions.id IN (\n  WITH RECURSIVE search_tree(id, chain_id, chain_counter) AS (\n\tSELECT base.id, base.id AS chain_id, 0 as chain_counter\n\tFROM versions AS base\n\tWHERE versions.previous_version_id IS NULL\n\tUNION ALL\n\tSELECT v.id, search_tree.chain_id, search_tree.chain_counter + 1\n\tFROM versions AS v\n\tINNER JOIN search_tree ON search_tree.id = v.previous_version_id \n  )\n  SELECT DISTINCT ON (search_tree.chain_id) \n\tsearch_tree.id\n  FROM search_tree   \n  ORDER BY search_tree.chain_id, chain_counter DESC\n)\n`\n\nfunc (q *Queries) GetLatestVersionWithSubquery(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRow(ctx, getLatestVersionWithSubquery)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_subquery/postgresql/pgx/query.sql",
    "content": "-- name: GetLatestVersion :one\nWITH RECURSIVE search_tree(id, chain_id, chain_counter) AS (\n\tSELECT base.id, base.id AS chain_id, 0 as chain_counter\n\tFROM versions AS base\n\tWHERE base.previous_version_id IS NULL\n  \tUNION ALL\n\tSELECT v.id, search_tree.chain_id, search_tree.chain_counter + 1\n\tFROM versions AS v\n\tINNER JOIN search_tree ON search_tree.id = v.previous_version_id\n)\nSELECT DISTINCT ON (search_tree.chain_id) \n\tsearch_tree.id\nFROM search_tree   \nORDER BY search_tree.chain_id, chain_counter DESC;\n\n-- name: GetLatestVersionWithSubquery :one\nSELECT id\nFROM versions\nWHERE versions.id IN (\n  WITH RECURSIVE search_tree(id, chain_id, chain_counter) AS (\n\tSELECT base.id, base.id AS chain_id, 0 as chain_counter\n\tFROM versions AS base\n\tWHERE versions.previous_version_id IS NULL\n\tUNION ALL\n\tSELECT v.id, search_tree.chain_id, search_tree.chain_counter + 1\n\tFROM versions AS v\n\tINNER JOIN search_tree ON search_tree.id = v.previous_version_id \n  )\n  SELECT DISTINCT ON (search_tree.chain_id) \n\tsearch_tree.id\n  FROM search_tree   \n  ORDER BY search_tree.chain_id, chain_counter DESC\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_subquery/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE versions (\n  id   BIGSERIAL PRIMARY KEY,\n  name TEXT,\n  previous_version_id bigint NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_subquery/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\ncloud:\n  project: \"01HAQMMECEYQYKFJN8MP16QC41\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n    database:\n      managed: true\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_union/issue.md",
    "content": "# TODO"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_union/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_union/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_union/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype CaseIntent struct {\n\tID               int32\n\tCaseIntentString string\n\tDescription      string\n\tAuthor           string\n}\n\ntype CaseIntentParentJoin struct {\n\tCaseIntentID       int64\n\tCaseIntentParentID int64\n}\n\ntype CaseIntentVersion struct {\n\tVersionID int32\n\tReviewer  string\n\tCreatedAt pgtype.Timestamptz\n}\n\ntype CaseIntentVersionJoin struct {\n\tCaseIntentID        int64\n\tCaseIntentVersionID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_union/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst listCaseIntentHistory = `-- name: ListCaseIntentHistory :many\nWITH RECURSIVE descendants AS\n   ( SELECT case_intent_parent_id AS parent, case_intent_id AS child, 1 AS lvl\n     FROM case_intent_parent_join\n     UNION ALL\n     SELECT d.parent as parent, p.case_intent_id as child, d.lvl + 1 as lvl\n     FROM descendants d\n              JOIN case_intent_parent_join p\n                   ON d.child = p.case_intent_parent_id\n   )\nselect distinct child, 'child' group_\nfrom descendants\nwhere parent = $1\nunion\nselect distinct parent, 'parent' group_\nfrom descendants\nwhere child = $1\nORDER BY child\n`\n\ntype ListCaseIntentHistoryRow struct {\n\tChild int64\n\tGroup string\n}\n\nfunc (q *Queries) ListCaseIntentHistory(ctx context.Context, caseIntentID pgtype.Int8) ([]ListCaseIntentHistoryRow, error) {\n\trows, err := q.db.Query(ctx, listCaseIntentHistory, caseIntentID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListCaseIntentHistoryRow\n\tfor rows.Next() {\n\t\tvar i ListCaseIntentHistoryRow\n\t\tif err := rows.Scan(&i.Child, &i.Group); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_union/postgresql/pgx/query.sql",
    "content": "-- name: ListCaseIntentHistory :many\nWITH RECURSIVE descendants AS\n   ( SELECT case_intent_parent_id AS parent, case_intent_id AS child, 1 AS lvl\n     FROM case_intent_parent_join\n     UNION ALL\n     SELECT d.parent as parent, p.case_intent_id as child, d.lvl + 1 as lvl\n     FROM descendants d\n              JOIN case_intent_parent_join p\n                   ON d.child = p.case_intent_parent_id\n   )\nselect distinct child, 'child' group_\nfrom descendants\nwhere parent = @case_intent_id\nunion\nselect distinct parent, 'parent' group_\nfrom descendants\nwhere child = @case_intent_id\nORDER BY child;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_union/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE case_intent_version\n(\n    version_id SERIAL NOT NULL PRIMARY KEY,\n    reviewer TEXT NOT NULL,\n    created_at TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()\n);\nCREATE TABLE case_intent\n(\n    id SERIAL NOT NULL PRIMARY KEY,\n    case_intent_string TEXT NOT NULL,\n    description TEXT NOT NULL,\n    author TEXT NOT NULL\n);\nCREATE TABLE case_intent_parent_join\n(\n    case_intent_id BIGINT NOT NULL,\n    case_intent_parent_id BIGINT NOT NULL,\n    constraint fk_case_intent_id foreign key (case_intent_id) references case_intent(id),\n    constraint fk_case_intent_parent_id foreign key (case_intent_parent_id) references case_intent(id)\n);\nCREATE TABLE case_intent_version_join\n(\n    case_intent_id BIGINT NOT NULL,\n    case_intent_version_id INT NOT NULL,\n    constraint fk_case_intent_id foreign key (case_intent_id) references case_intent(id),\n    constraint fk_case_intent_version_id foreign key (case_intent_version_id) references case_intent_version(version_id)\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_recursive_union/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_select_one/issue.md",
    "content": "# TODO"
  },
  {
    "path": "internal/endtoend/testdata/cte_select_one/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_select_one/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_select_one/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst testRecursive = `-- name: TestRecursive :one\nWITH t1 AS (\n    select 1 as foo\n)\nSELECT foo FROM t1\n`\n\nfunc (q *Queries) TestRecursive(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRow(ctx, testRecursive)\n\tvar foo int32\n\terr := row.Scan(&foo)\n\treturn foo, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_select_one/postgresql/pgx/query.sql",
    "content": "-- name: TestRecursive :one\nWITH t1 AS (\n    select 1 as foo\n)\nSELECT * FROM t1;"
  },
  {
    "path": "internal/endtoend/testdata/cte_select_one/postgresql/pgx/schema.sql",
    "content": "-- TODO"
  },
  {
    "path": "internal/endtoend/testdata/cte_select_one/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\""
  },
  {
    "path": "internal/endtoend/testdata/cte_update/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1515\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_update/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_update/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_update/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Attribute struct {\n\tID   int64\n\tName string\n}\n\ntype AttributeValue struct {\n\tID        int64\n\tVal       string\n\tAttribute int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_update/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst updateAttribute = `-- name: UpdateAttribute :one\nwith updated_attribute as (UPDATE attribute_value\n    SET\n        val = CASE WHEN $1::bool THEN $2 ELSE val END\n    WHERE attribute_value.id = $3\n    RETURNING id,attribute,val)\nselect updated_attribute.id, val, name\nfrom updated_attribute\n         left join attribute on updated_attribute.attribute = attribute.id\n`\n\ntype UpdateAttributeParams struct {\n\tFilterValue pgtype.Bool\n\tValue       pgtype.Text\n\tID          pgtype.Int8\n}\n\ntype UpdateAttributeRow struct {\n\tID   int64\n\tVal  string\n\tName pgtype.Text\n}\n\nfunc (q *Queries) UpdateAttribute(ctx context.Context, arg UpdateAttributeParams) (UpdateAttributeRow, error) {\n\trow := q.db.QueryRow(ctx, updateAttribute, arg.FilterValue, arg.Value, arg.ID)\n\tvar i UpdateAttributeRow\n\terr := row.Scan(&i.ID, &i.Val, &i.Name)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_update/postgresql/pgx/query.sql",
    "content": "-- name: UpdateAttribute :one\nwith updated_attribute as (UPDATE attribute_value\n    SET\n        val = CASE WHEN @filter_value::bool THEN @value ELSE val END\n    WHERE attribute_value.id = @id\n    RETURNING id,attribute,val)\nselect updated_attribute.id, val, name\nfrom updated_attribute\n         left join attribute on updated_attribute.attribute = attribute.id;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_update/postgresql/pgx/schema.sql",
    "content": "create table attribute_value\n(\n    id              bigserial not null,\n    val             text      not null,\n    attribute       bigint    not null\n);\n\ncreate table attribute\n(\n    id              bigserial      not null,\n    name            text           not null\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_update/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_update_multiple/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1916\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_update_multiple/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_update_multiple/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_update_multiple/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Address struct {\n\tID          int64\n\tAddressLine string\n\tRegion      string\n\tCity        string\n\tCreatedAt   pgtype.Timestamptz\n\tUpdatedAt   pgtype.Timestamptz\n}\n\ntype User struct {\n\tID             int64\n\tUsername       string\n\tEmail          string\n\tPassword       string\n\tTelephone      int32\n\tDefaultPayment pgtype.Int8\n\tCreatedAt      pgtype.Timestamptz\n\tUpdatedAt      pgtype.Timestamptz\n}\n\ntype UserAddress struct {\n\tUserID         int64\n\tAddressID      int64\n\tDefaultAddress pgtype.Int8\n\tCreatedAt      pgtype.Timestamptz\n\tUpdatedAt      pgtype.Timestamptz\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_update_multiple/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst updateUserAddressWithAddress = `-- name: UpdateUserAddressWithAddress :one\nWITH t1 AS (\n    UPDATE \"address\" as a\n    SET\n    address_line = COALESCE($1,address_line), \n    region = COALESCE($2,region), \n    city= COALESCE($3,city)\n    WHERE id = COALESCE($4,id)\n    RETURNING a.id, a.address_line, a.region, a.city\n   ),\n   \n    t2 AS (\n    UPDATE \"user_address\"\n    SET\n    default_address = COALESCE($5,default_address)\n    WHERE\n    user_id = COALESCE($6,user_id)\n    AND address_id = COALESCE($7,address_id)\n    RETURNING user_id, address_id, default_address\n\t)\n\t\nSELECT \nuser_id,\naddress_id,\ndefault_address,\naddress_line,\nregion,\ncity From t1,t2\n`\n\ntype UpdateUserAddressWithAddressParams struct {\n\tAddressLine    pgtype.Text\n\tRegion         pgtype.Text\n\tCity           pgtype.Text\n\tID             pgtype.Int8\n\tDefaultAddress pgtype.Int8\n\tUserID         pgtype.Int8\n\tAddressID      pgtype.Int8\n}\n\ntype UpdateUserAddressWithAddressRow struct {\n\tUserID         int64\n\tAddressID      int64\n\tDefaultAddress pgtype.Int8\n\tAddressLine    string\n\tRegion         string\n\tCity           string\n}\n\nfunc (q *Queries) UpdateUserAddressWithAddress(ctx context.Context, arg UpdateUserAddressWithAddressParams) (UpdateUserAddressWithAddressRow, error) {\n\trow := q.db.QueryRow(ctx, updateUserAddressWithAddress,\n\t\targ.AddressLine,\n\t\targ.Region,\n\t\targ.City,\n\t\targ.ID,\n\t\targ.DefaultAddress,\n\t\targ.UserID,\n\t\targ.AddressID,\n\t)\n\tvar i UpdateUserAddressWithAddressRow\n\terr := row.Scan(\n\t\t&i.UserID,\n\t\t&i.AddressID,\n\t\t&i.DefaultAddress,\n\t\t&i.AddressLine,\n\t\t&i.Region,\n\t\t&i.City,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_update_multiple/postgresql/pgx/query.sql",
    "content": "-- name: UpdateUserAddressWithAddress :one\nWITH t1 AS (\n    UPDATE \"address\" as a\n    SET\n    address_line = COALESCE(sqlc.narg(address_line),address_line), \n    region = COALESCE(sqlc.narg(region),region), \n    city= COALESCE(sqlc.narg(city),city)\n    WHERE id = COALESCE(sqlc.arg(id),id)\n    RETURNING a.id, a.address_line, a.region, a.city\n   ),\n   \n    t2 AS (\n    UPDATE \"user_address\"\n    SET\n    default_address = COALESCE(sqlc.narg(default_address),default_address)\n    WHERE\n    user_id = COALESCE(sqlc.arg(user_id),user_id)\n    AND address_id = COALESCE(sqlc.arg(address_id),address_id)\n    RETURNING user_id, address_id, default_address\n\t)\n\t\nSELECT \nuser_id,\naddress_id,\ndefault_address,\naddress_line,\nregion,\ncity From t1,t2;\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_update_multiple/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE \"user\" (\n  \"id\" bigserial PRIMARY KEY NOT NULL,\n  \"username\" varchar NOT NULL,\n  \"email\" varchar UNIQUE NOT NULL,\n  \"password\" varchar NOT NULL,\n  \"telephone\" int NOT NULL DEFAULT 0,\n  \"default_payment\" bigint,\n  \"created_at\" timestamptz NOT NULL DEFAULT (now()),\n  \"updated_at\" timestamptz NOT NULL DEFAULT '0001-01-01 00:00:00Z'\n);\n\nCREATE TABLE \"address\" (\n  \"id\" bigserial PRIMARY KEY NOT NULL,\n  \"address_line\" varchar NOT NULL,\n  \"region\" varchar NOT NULL,\n  \"city\" varchar NOT NULL,\n  \"created_at\" timestamptz NOT NULL DEFAULT (now()),\n  \"updated_at\" timestamptz NOT NULL DEFAULT '0001-01-01 00:00:00Z'\n);\n\nCREATE TABLE \"user_address\" (\n  \"user_id\" bigint NOT NULL,\n  \"address_id\" bigint UNIQUE NOT NULL,\n  \"default_address\" bigint,\n  \"created_at\" timestamptz NOT NULL DEFAULT (now()),\n  \"updated_at\" timestamptz NOT NULL DEFAULT '0001-01-01 00:00:00Z'\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_update_multiple/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_with_in/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/2153\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_with_in/postgresql/pganalyze/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_with_in/postgresql/pganalyze/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_with_in/postgresql/pganalyze/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype L struct {\n\tID       int64\n\tParentID pgtype.Int4\n}\n\ntype T struct {\n\tID  int64\n\tLID pgtype.Int4\n\tF   pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_with_in/postgresql/pganalyze/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, parent_id FROM L\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]L, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []L\n\tfor rows.Next() {\n\t\tvar i L\n\t\tif err := rows.Scan(&i.ID, &i.ParentID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getAll1 = `-- name: GetAll1 :many\nwith recursive cte as (\n  select id, L_ID, F from T\n  union all\n  select c.id, c.L_ID, c.F from T as c where c.L_ID = $1\n) select id, l_id, f from cte\n`\n\ntype GetAll1Row struct {\n\tID  int64\n\tLID pgtype.Int4\n\tF   pgtype.Text\n}\n\nfunc (q *Queries) GetAll1(ctx context.Context, lID pgtype.Int4) ([]GetAll1Row, error) {\n\trows, err := q.db.Query(ctx, getAll1, lID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetAll1Row\n\tfor rows.Next() {\n\t\tvar i GetAll1Row\n\t\tif err := rows.Scan(&i.ID, &i.LID, &i.F); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getAll2 = `-- name: GetAll2 :many\nwith recursive cte as (\n  select id, L_ID, F from T where T.ID=2\n  union all\n  select c.id, c.L_ID, c.F from T as c where c.L_ID = $1\n) select id, l_id, f from cte\n`\n\ntype GetAll2Row struct {\n\tID  int64\n\tLID pgtype.Int4\n\tF   pgtype.Text\n}\n\nfunc (q *Queries) GetAll2(ctx context.Context, lID pgtype.Int4) ([]GetAll2Row, error) {\n\trows, err := q.db.Query(ctx, getAll2, lID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetAll2Row\n\tfor rows.Next() {\n\t\tvar i GetAll2Row\n\t\tif err := rows.Scan(&i.ID, &i.LID, &i.F); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getAll3 = `-- name: GetAll3 :many\nselect id from T where L_ID in(\n  with recursive cte as (\n    select id, L_ID, F from T where T.ID =2\n    union all\n    select c.id, c.L_ID, c.F from T as c where c.L_ID = $1\n ) select l_id from cte\n)\n`\n\nfunc (q *Queries) GetAll3(ctx context.Context, dollar_1 pgtype.Int4) ([]int64, error) {\n\trows, err := q.db.Query(ctx, getAll3, dollar_1)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar id int64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getAll4 = `-- name: GetAll4 :many\nselect id from T where L_ID in(\n  with recursive L as (\n    select id, L_ID, F from T where T.ID =2\n    union all\n    select c.id, c.L_ID, c.F from T as c where c.L_ID = $1\n ) select l_id from L\n)\n`\n\nfunc (q *Queries) GetAll4(ctx context.Context, lID pgtype.Int4) ([]int64, error) {\n\trows, err := q.db.Query(ctx, getAll4, lID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar id int64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_with_in/postgresql/pganalyze/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM L;\n\n-- name: GetAll1 :many\nwith recursive cte as (\n  select id, L_ID, F from T\n  union all\n  select c.id, c.L_ID, c.F from T as c where c.L_ID = $1\n) select id, l_id, f from cte;\n\n-- name: GetAll2 :many\nwith recursive cte as (\n  select id, L_ID, F from T where T.ID=2\n  union all\n  select c.id, c.L_ID, c.F from T as c where c.L_ID = $1\n) select id, l_id, f from cte;\n\n-- name: GetAll4 :many\nselect id from T where L_ID in(\n  with recursive L as (\n    select id, L_ID, F from T where T.ID =2\n    union all\n    select c.id, c.L_ID, c.F from T as c where c.L_ID = $1\n ) select l_id from L\n);\n\n-- name: GetAll3 :many\nselect id from T where L_ID in(\n  with recursive cte as (\n    select id, L_ID, F from T where T.ID =2\n    union all\n    select c.id, c.L_ID, c.F from T as c where c.L_ID = $1\n ) select l_id from cte\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_with_in/postgresql/pganalyze/schema.sql",
    "content": "-- https://github.com/sqlc-dev/sqlc/issues/2153\n\nCREATE TABLE L (\n  id   BIGSERIAL PRIMARY KEY,\n  parent_id int null\n);\n\nCREATE TABLE T (\n  id   BIGSERIAL PRIMARY KEY,\n  L_ID int,\n  F varchar(256)\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/cte_with_in/postgresql/pganalyze/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"sql_package\": \"pgx/v5\"\n    }\n  ]\n}\n\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/mysql/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/mysql/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tColA sql.NullBool\n\tColB sql.NullBool\n\tColC sql.NullBool\n}\n\ntype Foo struct {\n\tColA bool\n\tColB bool\n\tColC bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/mysql/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT col_a, col_b, col_c FROM bar\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]Bar, error) {\n\trows, err := q.db.QueryContext(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Bar\n\tfor rows.Next() {\n\t\tvar i Bar\n\t\tif err := rows.Scan(&i.ColA, &i.ColB, &i.ColC); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT col_a, col_b, col_c FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.ColA, &i.ColB, &i.ColC); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/mysql/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n\n-- name: ListBar :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/mysql/schema.sql",
    "content": "CREATE TABLE foo\n(\n    col_a BOOL             NOT NULL,\n    col_b BOOLEAN          NOT NULL,\n    col_c TINYINT(1)       NOT NULL\n);\n\nCREATE TABLE bar\n(\n    col_a BOOL,\n    col_b BOOLEAN,\n    col_c TINYINT(1)\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"db\",\n      \"engine\": \"mysql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tColA sql.NullBool\n\tColB sql.NullBool\n}\n\ntype Foo struct {\n\tColA bool\n\tColB bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT col_a, col_b FROM bar\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]Bar, error) {\n\trows, err := q.db.Query(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Bar\n\tfor rows.Next() {\n\t\tvar i Bar\n\t\tif err := rows.Scan(&i.ColA, &i.ColB); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT col_a, col_b FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.ColA, &i.ColB); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v4/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n\n-- name: ListBar :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo\n(\n    col_a BOOL             NOT NULL,\n    col_b BOOLEAN          NOT NULL\n);\n\nCREATE TABLE bar\n(\n    col_a BOOL,\n    col_b BOOLEAN\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Bar struct {\n\tColA pgtype.Bool\n\tColB pgtype.Bool\n}\n\ntype Foo struct {\n\tColA bool\n\tColB bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT col_a, col_b FROM bar\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]Bar, error) {\n\trows, err := q.db.Query(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Bar\n\tfor rows.Next() {\n\t\tvar i Bar\n\t\tif err := rows.Scan(&i.ColA, &i.ColB); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT col_a, col_b FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.ColA, &i.ColB); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v5/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n\n-- name: ListBar :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo\n(\n    col_a BOOL             NOT NULL,\n    col_b BOOLEAN          NOT NULL\n);\n\nCREATE TABLE bar\n(\n    col_a BOOL,\n    col_b BOOLEAN\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tColA sql.NullBool\n\tColB sql.NullBool\n}\n\ntype Foo struct {\n\tColA bool\n\tColB bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT col_a, col_b FROM bar\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]Bar, error) {\n\trows, err := q.db.QueryContext(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Bar\n\tfor rows.Next() {\n\t\tvar i Bar\n\t\tif err := rows.Scan(&i.ColA, &i.ColB); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT col_a, col_b FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.ColA, &i.ColB); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/stdlib/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n\n-- name: ListBar :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo\n(\n    col_a BOOL             NOT NULL,\n    col_b BOOLEAN          NOT NULL\n);\n\nCREATE TABLE bar\n(\n    col_a BOOL,\n    col_b BOOLEAN\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/sqlite/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/sqlite/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tColA sql.NullBool\n\tColB sql.NullBool\n}\n\ntype Foo struct {\n\tColA bool\n\tColB bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/sqlite/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT col_a, col_b FROM bar\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]Bar, error) {\n\trows, err := q.db.QueryContext(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Bar\n\tfor rows.Next() {\n\t\tvar i Bar\n\t\tif err := rows.Scan(&i.ColA, &i.ColB); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT col_a, col_b FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.ColA, &i.ColB); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/sqlite/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n\n-- name: ListBar :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/sqlite/schema.sql",
    "content": "CREATE TABLE foo\n(\n    col_a BOOL             NOT NULL,\n    col_b BOOLEAN          NOT NULL\n);\n\nCREATE TABLE bar\n(\n    col_a BOOL,\n    col_b BOOLEAN\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/data_type_boolean/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"db\",\n      \"engine\": \"sqlite\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/datatype/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype DtCharacter struct {\n\tA sql.NullString\n\tB sql.NullString\n\tC sql.NullString\n\tD sql.NullString\n\tE sql.NullString\n\tF sql.NullString\n\tG sql.NullString\n\tH sql.NullString\n\tI sql.NullString\n\tJ sql.NullString\n\tK sql.NullString\n\tL sql.NullString\n}\n\ntype DtCharacterNotNull struct {\n\tA string\n\tB string\n\tC string\n\tD []byte\n\tE []byte\n\tF []byte\n\tG string\n\tH string\n\tI string\n\tJ []byte\n\tK string\n\tL []byte\n}\n\ntype DtDatetime struct {\n\tA sql.NullTime\n\tB sql.NullTime\n\tC sql.NullTime\n}\n\ntype DtDatetimeNotNull struct {\n\tA time.Time\n\tB time.Time\n\tC time.Time\n}\n\ntype DtNumeric struct {\n\tA sql.NullInt32\n\tB sql.NullInt32\n\tC sql.NullInt16\n\tD sql.NullInt16\n\tE sql.NullInt32\n\tF sql.NullInt64\n\tG interface{}\n\tH sql.NullString\n\tI sql.NullString\n\tJ sql.NullFloat64\n\tK sql.NullFloat64\n\tL sql.NullFloat64\n}\n\ntype DtNumericNotNull struct {\n\tA int32\n\tB int32\n\tC int8\n\tD int16\n\tE int32\n\tF int64\n\tG interface{}\n\tH string\n\tI string\n\tJ float64\n\tK float64\n\tL float64\n}\n\ntype DtNumericUnsigned struct {\n\tA sql.NullInt32\n\tB sql.NullInt32\n\tC sql.NullInt16\n\tD sql.NullInt16\n\tE sql.NullInt32\n\tF sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage datatype\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/mysql/sql/character.sql",
    "content": "-- Character Types\n-- https://dev.mysql.com/doc/refman/8.0/en/string-type-syntax.html\nCREATE TABLE dt_character (\n    a CHARACTER(32),\n    b VARCHAR(32),\n    c CHAR(32),\n    d BINARY(32),\n    e VARBINARY(32),\n    f TINYBLOB,\n    g TINYTEXT,\n    h TEXT,\n    i MEDIUMTEXT,\n    j MEDIUMBLOB,\n    k LONGTEXT,\n    l LONGBLOB\n);\n\nCREATE TABLE dt_character_not_null (\n    a CHARACTER(32) NOT NULL,\n    b VARCHAR(32) NOT NULL,\n    c CHAR(32) NOT NULL,\n    d BINARY(32) NOT NULL,\n    e VARBINARY(32) NOT NULL,\n    f TINYBLOB NOT NULL,\n    g TINYTEXT NOT NULL,\n    h TEXT NOT NULL,\n    i MEDIUMTEXT NOT NULL,\n    j MEDIUMBLOB NOT NULL,\n    k LONGTEXT NOT NULL,\n    l LONGBLOB NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/mysql/sql/datetime.sql",
    "content": "-- Date/Time Types\n-- https://www.sqlite.org/datatype3.html\nCREATE TABLE dt_datetime (\n    a DATE,\n    b DATETIME,\n    c TIMESTAMP\n);\n\nCREATE TABLE dt_datetime_not_null (\n    a DATE NOT NULL,\n    b DATETIME NOT NULL,\n    c TIMESTAMP NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/mysql/sql/numeric.sql",
    "content": "-- Numeric Types\n-- https://dev.mysql.com/doc/refman/8.0/en/numeric-type-syntax.html\nCREATE TABLE dt_numeric (\n    a INT,\n    b INTEGER,\n    c TINYINT,\n    d SMALLINT,\n    e MEDIUMINT,\n    f BIGINT,\n    g BIT,\n    h DECIMAL(10, 5),\n    i DEC(10, 5),\n    j FLOAT,\n    k DOUBLE,\n    l DOUBLE PRECISION\n);\n\nCREATE TABLE dt_numeric_unsigned (\n    a INT UNSIGNED,\n    b INTEGER UNSIGNED,\n    c TINYINT UNSIGNED,\n    d SMALLINT UNSIGNED,\n    e MEDIUMINT UNSIGNED,\n    f BIGINT UNSIGNED\n);\n\nCREATE TABLE dt_numeric_not_null (\n    a INT NOT NULL,\n    b INTEGER NOT NULL,\n    c TINYINT NOT NULL,\n    d SMALLINT NOT NULL,\n    e MEDIUMINT NOT NULL,\n    f BIGINT NOT NULL,\n    g BIT NOT NULL,\n    h DECIMAL(10, 5) NOT NULL,\n    i DEC(10, 5) NOT NULL,\n    j FLOAT NOT NULL,\n    k DOUBLE NOT NULL,\n    l DOUBLE PRECISION NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/mysql/sql/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"datatype\",\n      \"schema\": \"sql/\",\n      \"queries\": \"sql/\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n\n\t\"github.com/jackc/pgtype\"\n)\n\ntype DtCharacter struct {\n\tA sql.NullString\n\tB sql.NullString\n\tC sql.NullString\n\tD sql.NullString\n\tE sql.NullString\n}\n\ntype DtCharacterNotNull struct {\n\tA string\n\tB string\n\tC string\n\tD string\n\tE string\n}\n\ntype DtDatetime struct {\n\tA sql.NullTime\n\tB sql.NullTime\n\tC sql.NullTime\n\tD sql.NullTime\n\tE sql.NullTime\n\tF sql.NullTime\n\tG sql.NullTime\n\tH sql.NullTime\n}\n\ntype DtDatetimeNotNull struct {\n\tA time.Time\n\tB time.Time\n\tC time.Time\n\tD time.Time\n\tE time.Time\n\tF time.Time\n\tG time.Time\n\tH time.Time\n}\n\ntype DtNetType struct {\n\tA pgtype.Inet\n\tB pgtype.CIDR\n\tC pgtype.Macaddr\n}\n\ntype DtNetTypesNotNull struct {\n\tA pgtype.Inet\n\tB pgtype.CIDR\n\tC pgtype.Macaddr\n}\n\ntype DtNumeric struct {\n\tA sql.NullInt16\n\tB sql.NullInt32\n\tC sql.NullInt64\n\tD pgtype.Numeric\n\tE pgtype.Numeric\n\tF sql.NullFloat64\n\tG sql.NullFloat64\n\tH sql.NullInt16\n\tI sql.NullInt32\n\tJ sql.NullInt64\n\tK sql.NullInt16\n\tL sql.NullInt32\n\tM sql.NullInt64\n}\n\ntype DtNumericNotNull struct {\n\tA int16\n\tB int32\n\tC int64\n\tD pgtype.Numeric\n\tE pgtype.Numeric\n\tF float32\n\tG float64\n\tH int16\n\tI int32\n\tJ int64\n\tK int16\n\tL int32\n\tM int64\n}\n\ntype DtRange struct {\n\tA pgtype.Int4range\n\tB pgtype.Int8range\n\tC pgtype.Numrange\n\tD pgtype.Tsrange\n\tE pgtype.Tstzrange\n\tF pgtype.Daterange\n}\n\ntype DtRangeNotNull struct {\n\tA pgtype.Int4range\n\tB pgtype.Int8range\n\tC pgtype.Numrange\n\tD pgtype.Tsrange\n\tE pgtype.Tstzrange\n\tF pgtype.Daterange\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage datatype\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRow(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v4/sql/character.sql",
    "content": "-- Character Types\n-- https://www.postgresql.org/docs/current/datatype-character.html\nCREATE TABLE dt_character (\n    a text,\n    b character varying(32),\n    c varchar(32),\n    d character(32),\n    e char(32)\n);\n\nCREATE TABLE dt_character_not_null (\n    a text NOT NULL,\n    b character varying(32) NOT NULL,\n    c varchar(32) NOT NULL,\n    d character(32) NOT NULL,\n    e char(32) NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v4/sql/datetime.sql",
    "content": "-- Date/Time Types\n-- https://www.postgresql.org/docs/current/datatype-datetime.html\nCREATE TABLE dt_datetime (\n    a DATE,\n    b TIME,\n    c TIME WITHOUT TIME ZONE,\n    d TIME WITH TIME ZONE,\n    e TIMESTAMP,\n    f TIMESTAMP WITHOUT TIME ZONE,\n    g TIMESTAMP WITH TIME ZONE,\n    h timestamptz\n);\n\nCREATE TABLE dt_datetime_not_null (\n    a DATE NOT NULL,\n    b TIME NOT NULL,\n    c TIME WITHOUT TIME ZONE NOT NULL,\n    d TIME WITH TIME ZONE NOT NULL,\n    e TIMESTAMP NOT NULL,\n    f TIMESTAMP WITHOUT TIME ZONE NOT NULL,\n    g TIMESTAMP WITH TIME ZONE NOT NULL,\n    h timestamptz NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v4/sql/net-types.sql",
    "content": "-- Network Address Types\n-- https://www.postgresql.org/docs/current/datatype-net-types.html\nCREATE TABLE dt_net_types (\n  a  inet,\n  b  cidr,\n  c  macaddr\n);\n\nCREATE TABLE dt_net_types_not_null (\n  a  inet NOT NULL,\n  b  cidr NOT NULL,\n  c  macaddr NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v4/sql/numeric.sql",
    "content": "-- Numeric Types\n-- https://www.postgresql.org/docs/current/datatype-numeric.html\nCREATE TABLE dt_numeric (\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    a smallint,\n    b integer,\n    c bigint,\n    d decimal,\n    e numeric,\n    f real,\n    g double precision,\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    h smallserial,\n    i serial,\n    j bigserial,\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    k int2,\n    l int4,\n    m int8\n);\n\nCREATE TABLE dt_numeric_not_null (\n    a smallint NOT NULL,\n    b integer NOT NULL,\n    c bigint NOT NULL,\n    d decimal NOT NULL,\n    e numeric NOT NULL,\n    f real NOT NULL,\n    g double precision NOT NULL,\n    h smallserial NOT NULL,\n    i serial NOT NULL,\n    j bigserial NOT NULL,\n    k int2 NOT NULL,\n    l int4 NOT NULL,\n    m int8 NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v4/sql/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v4/sql/rangetypes.sql",
    "content": "-- Range Types\n-- https://www.postgresql.org/docs/current/rangetypes.html\nCREATE TABLE dt_range (\n    a int4range,\n    b int8range,\n    c numrange,\n    d tsrange,\n    e tstzrange,\n    f daterange\n);\n\nCREATE TABLE dt_range_not_null (\n    a int4range NOT NULL,\n    b int8range NOT NULL,\n    c numrange NOT NULL,\n    d tsrange NOT NULL,\n    e tstzrange NOT NULL,\n    f daterange NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"datatype\",\n      \"schema\": \"sql/\",\n      \"queries\": \"sql/\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"database/sql\"\n\t\"net\"\n\t\"net/netip\"\n\t\"time\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype DtCharacter struct {\n\tA pgtype.Text\n\tB pgtype.Text\n\tC pgtype.Text\n\tD pgtype.Text\n\tE pgtype.Text\n}\n\ntype DtCharacterNotNull struct {\n\tA string\n\tB string\n\tC string\n\tD string\n\tE string\n}\n\ntype DtDatetime struct {\n\tA pgtype.Date\n\tB pgtype.Time\n\tC pgtype.Time\n\tD sql.NullTime\n\tE pgtype.Timestamp\n\tF pgtype.Timestamp\n\tG pgtype.Timestamptz\n\tH pgtype.Timestamptz\n}\n\ntype DtDatetimeNotNull struct {\n\tA pgtype.Date\n\tB pgtype.Time\n\tC pgtype.Time\n\tD time.Time\n\tE pgtype.Timestamp\n\tF pgtype.Timestamp\n\tG pgtype.Timestamptz\n\tH pgtype.Timestamptz\n}\n\ntype DtNetType struct {\n\tA *netip.Addr\n\tB *netip.Prefix\n\tC net.HardwareAddr\n}\n\ntype DtNetTypesNotNull struct {\n\tA netip.Addr\n\tB netip.Prefix\n\tC net.HardwareAddr\n}\n\ntype DtNumeric struct {\n\tA pgtype.Int2\n\tB pgtype.Int4\n\tC pgtype.Int8\n\tD pgtype.Numeric\n\tE pgtype.Numeric\n\tF pgtype.Float4\n\tG pgtype.Float8\n\tH pgtype.Int2\n\tI pgtype.Int4\n\tJ pgtype.Int8\n\tK pgtype.Int2\n\tL pgtype.Int4\n\tM pgtype.Int8\n}\n\ntype DtNumericNotNull struct {\n\tA int16\n\tB int32\n\tC int64\n\tD pgtype.Numeric\n\tE pgtype.Numeric\n\tF float32\n\tG float64\n\tH int16\n\tI int32\n\tJ int64\n\tK int16\n\tL int32\n\tM int64\n}\n\ntype DtRange struct {\n\tA pgtype.Range[pgtype.Int4]\n\tB pgtype.Range[pgtype.Int8]\n\tC pgtype.Range[pgtype.Numeric]\n\tD pgtype.Range[pgtype.Timestamp]\n\tE pgtype.Range[pgtype.Timestamptz]\n\tF pgtype.Range[pgtype.Date]\n}\n\ntype DtRangeNotNull struct {\n\tA pgtype.Range[pgtype.Int4]\n\tB pgtype.Range[pgtype.Int8]\n\tC pgtype.Range[pgtype.Numeric]\n\tD pgtype.Range[pgtype.Timestamp]\n\tE pgtype.Range[pgtype.Timestamptz]\n\tF pgtype.Range[pgtype.Date]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage datatype\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRow(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v5/sql/character.sql",
    "content": "-- Character Types\n-- https://www.postgresql.org/docs/current/datatype-character.html\nCREATE TABLE dt_character (\n    a text,\n    b character varying(32),\n    c varchar(32),\n    d character(32),\n    e char(32)\n);\n\nCREATE TABLE dt_character_not_null (\n    a text NOT NULL,\n    b character varying(32) NOT NULL,\n    c varchar(32) NOT NULL,\n    d character(32) NOT NULL,\n    e char(32) NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v5/sql/datetime.sql",
    "content": "-- Date/Time Types\n-- https://www.postgresql.org/docs/current/datatype-datetime.html\nCREATE TABLE dt_datetime (\n    a DATE,\n    b TIME,\n    c TIME WITHOUT TIME ZONE,\n    d TIME WITH TIME ZONE,\n    e TIMESTAMP,\n    f TIMESTAMP WITHOUT TIME ZONE,\n    g TIMESTAMP WITH TIME ZONE,\n    h timestamptz\n);\n\nCREATE TABLE dt_datetime_not_null (\n    a DATE NOT NULL,\n    b TIME NOT NULL,\n    c TIME WITHOUT TIME ZONE NOT NULL,\n    d TIME WITH TIME ZONE NOT NULL,\n    e TIMESTAMP NOT NULL,\n    f TIMESTAMP WITHOUT TIME ZONE NOT NULL,\n    g TIMESTAMP WITH TIME ZONE NOT NULL,\n    h timestamptz NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v5/sql/net-types.sql",
    "content": "-- Network Address Types\n-- https://www.postgresql.org/docs/current/datatype-net-types.html\nCREATE TABLE dt_net_types (\n  a  inet,\n  b  cidr,\n  c  macaddr\n);\n\nCREATE TABLE dt_net_types_not_null (\n  a  inet NOT NULL,\n  b  cidr NOT NULL,\n  c  macaddr NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v5/sql/numeric.sql",
    "content": "-- Numeric Types\n-- https://www.postgresql.org/docs/current/datatype-numeric.html\nCREATE TABLE dt_numeric (\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    a smallint,\n    b integer,\n    c bigint,\n    d decimal,\n    e numeric,\n    f real,\n    g double precision,\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    h smallserial,\n    i serial,\n    j bigserial,\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    k int2,\n    l int4,\n    m int8\n);\n\nCREATE TABLE dt_numeric_not_null (\n    a smallint NOT NULL,\n    b integer NOT NULL,\n    c bigint NOT NULL,\n    d decimal NOT NULL,\n    e numeric NOT NULL,\n    f real NOT NULL,\n    g double precision NOT NULL,\n    h smallserial NOT NULL,\n    i serial NOT NULL,\n    j bigserial NOT NULL,\n    k int2 NOT NULL,\n    l int4 NOT NULL,\n    m int8 NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v5/sql/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v5/sql/rangetypes.sql",
    "content": "-- Range Types\n-- https://www.postgresql.org/docs/current/rangetypes.html\nCREATE TABLE dt_range (\n    a int4range,\n    b int8range,\n    c numrange,\n    d tsrange,\n    e tstzrange,\n    f daterange\n);\n\nCREATE TABLE dt_range_not_null (\n    a int4range NOT NULL,\n    b int8range NOT NULL,\n    c numrange NOT NULL,\n    d tsrange NOT NULL,\n    e tstzrange NOT NULL,\n    f daterange NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"datatype\",\n      \"schema\": \"sql/\",\n      \"queries\": \"sql/\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype DtCharacter struct {\n\tA sql.NullString\n\tB sql.NullString\n\tC sql.NullString\n\tD sql.NullString\n\tE sql.NullString\n\tF sql.NullString\n\tG sql.NullString\n\tH sql.NullString\n}\n\ntype DtCharacterNotNull struct {\n\tA string\n\tB string\n\tC string\n\tD string\n\tE string\n\tF string\n\tG string\n\tH string\n}\n\ntype DtDatetime struct {\n\tA sql.NullTime\n\tB sql.NullTime\n\tC sql.NullTime\n}\n\ntype DtDatetimeNotNull struct {\n\tA time.Time\n\tB time.Time\n\tC time.Time\n}\n\ntype DtNumeric struct {\n\tA sql.NullInt64\n\tB sql.NullInt64\n\tC sql.NullInt64\n\tD sql.NullInt64\n\tE sql.NullInt64\n\tF sql.NullInt64\n\tG sql.NullInt64\n\tH sql.NullInt64\n\tI sql.NullInt64\n\tJ sql.NullFloat64\n\tK sql.NullFloat64\n\tL sql.NullFloat64\n\tM sql.NullFloat64\n\tN sql.NullFloat64\n\tO sql.NullFloat64\n}\n\ntype DtNumericNotNull struct {\n\tA int64\n\tB int64\n\tC int64\n\tD int64\n\tE int64\n\tF int64\n\tG int64\n\tH int64\n\tI int64\n\tJ float64\n\tK float64\n\tL float64\n\tM float64\n\tN float64\n\tO float64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage datatype\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar column_1 int64\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/sqlite/sql/character.sql",
    "content": "-- Character Types\n-- https://www.sqlite.org/datatype3.html\nCREATE TABLE dt_character (\n    a CHARACTER(32),\n    b VARCHAR(32),\n    c VARYING CHARACTER(32),\n    d NCHAR(32),\n    e NATIVE CHARACTER(32),\n    f NVARCHAR(32),\n    g TEXT,\n    h CLOB\n);\n\nCREATE TABLE dt_character_not_null (\n    a CHARACTER(32) NOT NULL,\n    b VARCHAR(32) NOT NULL,\n    c VARYING CHARACTER(32) NOT NULL,\n    d NCHAR(32) NOT NULL,\n    e NATIVE CHARACTER(32) NOT NULL,\n    f NVARCHAR(32) NOT NULL,\n    g TEXT NOT NULL,\n    h CLOB NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/sqlite/sql/datetime.sql",
    "content": "-- Date/Time Types\n-- https://www.sqlite.org/datatype3.html\nCREATE TABLE dt_datetime (\n    a DATE,\n    b DATETIME,\n    c TIMESTAMP\n);\n\nCREATE TABLE dt_datetime_not_null (\n    a DATE NOT NULL,\n    b DATETIME NOT NULL,\n    c TIMESTAMP NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/sqlite/sql/numeric.sql",
    "content": "-- Numeric Types\n-- https://www.sqlite.org/datatype3.html\nCREATE TABLE dt_numeric (\n    a INT,\n    b INTEGER,\n    c TINYINT,\n    d SMALLINT,\n    e MEDIUMINT,\n    f BIGINT,\n    g UNSIGNED BIG INT,\n    h INT2,\n    i INT8,\n    j REAL,\n    k DOUBLE,\n    l DOUBLE PRECISION,\n    m FLOAT,\n    n NUMERIC,\n    o DECIMAL(10,5)\n);\n\nCREATE TABLE dt_numeric_not_null (\n    a INT NOT NULL,\n    b INTEGER NOT NULL,\n    c TINYINT NOT NULL,\n    d SMALLINT NOT NULL,\n    e MEDIUMINT NOT NULL,\n    f BIGINT NOT NULL,\n    g UNSIGNED BIG INT NOT NULL,\n    h INT2 NOT NULL,\n    i INT8 NOT NULL,\n    j REAL NOT NULL,\n    k DOUBLE NOT NULL,\n    l DOUBLE PRECISION NOT NULL,\n    m FLOAT NOT NULL,\n    n NUMERIC NOT NULL,\n    o DECIMAL(10,5) NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/sqlite/sql/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"datatype\",\n      \"schema\": \"sql/\",\n      \"queries\": \"sql/\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/datatype/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n\n\t\"github.com/sqlc-dev/pqtype\"\n)\n\ntype DtCharacter struct {\n\tA sql.NullString\n\tB sql.NullString\n\tC sql.NullString\n\tD sql.NullString\n\tE sql.NullString\n}\n\ntype DtCharacterNotNull struct {\n\tA string\n\tB string\n\tC string\n\tD string\n\tE string\n}\n\ntype DtDatetime struct {\n\tA sql.NullTime\n\tB sql.NullTime\n\tC sql.NullTime\n\tD sql.NullTime\n\tE sql.NullTime\n\tF sql.NullTime\n\tG sql.NullTime\n\tH sql.NullTime\n}\n\ntype DtDatetimeNotNull struct {\n\tA time.Time\n\tB time.Time\n\tC time.Time\n\tD time.Time\n\tE time.Time\n\tF time.Time\n\tG time.Time\n\tH time.Time\n}\n\ntype DtNetType struct {\n\tA pqtype.Inet\n\tB pqtype.CIDR\n\tC pqtype.Macaddr\n}\n\ntype DtNetTypesNotNull struct {\n\tA pqtype.Inet\n\tB pqtype.CIDR\n\tC pqtype.Macaddr\n}\n\ntype DtNumeric struct {\n\tA sql.NullInt16\n\tB sql.NullInt32\n\tC sql.NullInt64\n\tD sql.NullString\n\tE sql.NullString\n\tF sql.NullFloat64\n\tG sql.NullFloat64\n\tH sql.NullInt16\n\tI sql.NullInt32\n\tJ sql.NullInt64\n\tK sql.NullInt16\n\tL sql.NullInt32\n\tM sql.NullInt64\n}\n\ntype DtNumericNotNull struct {\n\tA int16\n\tB int32\n\tC int64\n\tD string\n\tE string\n\tF float32\n\tG float64\n\tH int16\n\tI int32\n\tJ int64\n\tK int16\n\tL int32\n\tM int64\n}\n\ntype DtRange struct {\n\tA interface{}\n\tB interface{}\n\tC interface{}\n\tD interface{}\n\tE interface{}\n\tF interface{}\n}\n\ntype DtRangeNotNull struct {\n\tA interface{}\n\tB interface{}\n\tC interface{}\n\tD interface{}\n\tE interface{}\n\tF interface{}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage datatype\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/stdlib/sql/character.sql",
    "content": "-- Character Types\n-- https://www.postgresql.org/docs/current/datatype-character.html\nCREATE TABLE dt_character (\n    a text,\n    b character varying(32),\n    c varchar(32),\n    d character(32),\n    e char(32)\n);\n\nCREATE TABLE dt_character_not_null (\n    a text NOT NULL,\n    b character varying(32) NOT NULL,\n    c varchar(32) NOT NULL,\n    d character(32) NOT NULL,\n    e char(32) NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/stdlib/sql/datetime.sql",
    "content": "-- Date/Time Types\n-- https://www.postgresql.org/docs/current/datatype-datetime.html\nCREATE TABLE dt_datetime (\n    a DATE,\n    b TIME,\n    c TIME WITHOUT TIME ZONE,\n    d TIME WITH TIME ZONE,\n    e TIMESTAMP,\n    f TIMESTAMP WITHOUT TIME ZONE,\n    g TIMESTAMP WITH TIME ZONE,\n    h timestamptz\n);\n\nCREATE TABLE dt_datetime_not_null (\n    a DATE NOT NULL,\n    b TIME NOT NULL,\n    c TIME WITHOUT TIME ZONE NOT NULL,\n    d TIME WITH TIME ZONE NOT NULL,\n    e TIMESTAMP NOT NULL,\n    f TIMESTAMP WITHOUT TIME ZONE NOT NULL,\n    g TIMESTAMP WITH TIME ZONE NOT NULL,\n    h timestamptz NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/stdlib/sql/net-types.sql",
    "content": "-- Network Address Types\n-- https://www.postgresql.org/docs/current/datatype-net-types.html\nCREATE TABLE dt_net_types (\n  a  inet,\n  b  cidr,\n  c  macaddr\n);\n\nCREATE TABLE dt_net_types_not_null (\n  a  inet NOT NULL,\n  b  cidr NOT NULL,\n  c  macaddr NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/stdlib/sql/numeric.sql",
    "content": "-- Numeric Types\n-- https://www.postgresql.org/docs/current/datatype-numeric.html\nCREATE TABLE dt_numeric (\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    a smallint,\n    b integer,\n    c bigint,\n    d decimal,\n    e numeric,\n    f real,\n    g double precision,\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    h smallserial,\n    i serial,\n    j bigserial,\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    k int2,\n    l int4,\n    m int8\n);\n\nCREATE TABLE dt_numeric_not_null (\n    a smallint NOT NULL,\n    b integer NOT NULL,\n    c bigint NOT NULL,\n    d decimal NOT NULL,\n    e numeric NOT NULL,\n    f real NOT NULL,\n    g double precision NOT NULL,\n    h smallserial NOT NULL,\n    i serial NOT NULL,\n    j bigserial NOT NULL,\n    k int2 NOT NULL,\n    l int4 NOT NULL,\n    m int8 NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/stdlib/sql/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/stdlib/sql/rangetypes.sql",
    "content": "-- Range Types\n-- https://www.postgresql.org/docs/current/rangetypes.html\nCREATE TABLE dt_range (\n    a int4range,\n    b int8range,\n    c numrange,\n    d tsrange,\n    e tstzrange,\n    f daterange\n);\n\nCREATE TABLE dt_range_not_null (\n    a int4range NOT NULL,\n    b int8range NOT NULL,\n    c numrange NOT NULL,\n    d tsrange NOT NULL,\n    e tstzrange NOT NULL,\n    f daterange NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/datatype/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"datatype\",\n      \"schema\": \"sql/\",\n      \"queries\": \"sql/\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_materialized_views_set_schema/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1519\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_materialized_views_set_schema/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_materialized_views_set_schema/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype ComputedTablesSomething struct {\n\tID        pgtype.Int4\n\tEventType string\n\tCreatedAt pgtype.Timestamptz\n}\n\ntype Event struct {\n\tID        pgtype.Int4\n\tEventType string\n\tCreatedAt pgtype.Timestamptz\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_materialized_views_set_schema/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst someQuery = `-- name: SomeQuery :many\nselect id from \"computed_tables\".\"something\"\n`\n\nfunc (q *Queries) SomeQuery(ctx context.Context) ([]pgtype.Int4, error) {\n\trows, err := q.db.Query(ctx, someQuery)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.Int4\n\tfor rows.Next() {\n\t\tvar id pgtype.Int4\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_materialized_views_set_schema/postgresql/pgx/query.sql",
    "content": "-- name: SomeQuery :many\nselect id from \"computed_tables\".\"something\";\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_materialized_views_set_schema/postgresql/pgx/schema.sql",
    "content": "create table events (\n  id int,\n  event_type text not null,\n  created_at timestamptz\n);\n\nCREATE MATERIALIZED VIEW something AS\nselect * from events\nwhere event_type = 'sale'\norder by created_at desc;\n\ncreate schema computed_tables;\nalter materialized view something set schema computed_tables;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_materialized_views_set_schema/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar string\n\tBaz sql.NullInt32\n\tBio sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/mysql/query.sql",
    "content": "/* name: Placeholder :exec */\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar text NOT NULL);\nALTER TABLE foo ADD COLUMN baz integer;\nALTER TABLE foo ADD bio integer;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar    string\n\tBaz    sql.NullInt32\n\tBio    sql.NullInt32\n\tFoobar []int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text NOT NULL);\nALTER TABLE foo ADD COLUMN baz int;\nALTER TABLE foo ADD bio int;\nALTER TABLE foo ADD COLUMN foobar int[];\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar    string\n\tBaz    pgtype.Int4\n\tBio    pgtype.Int4\n\tFoobar []int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text NOT NULL);\nALTER TABLE foo ADD COLUMN baz int;\nALTER TABLE foo ADD bio int;\nALTER TABLE foo ADD COLUMN foobar int[];\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar    string\n\tBaz    sql.NullInt32\n\tBio    sql.NullInt32\n\tFoobar []int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text NOT NULL);\nALTER TABLE foo ADD COLUMN baz int;\nALTER TABLE foo ADD bio int;\nALTER TABLE foo ADD COLUMN foobar int[];\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Venue struct {\n\tName     sql.NullString\n\tLocation sql.NullString\n\tSize     sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :many\nSELECT name, location, size from venues\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) ([]Venue, error) {\n\trows, err := q.db.QueryContext(ctx, placeholder)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Venue\n\tfor rows.Next() {\n\t\tvar i Venue\n\t\tif err := rows.Scan(&i.Name, &i.Location, &i.Size); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/sqlite/query.sql",
    "content": "/* name: Placeholder :many */\nSELECT * from venues;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/sqlite/schema.sql",
    "content": "CREATE TABLE venues (name text);\nALTER TABLE venues ADD location text;\nALTER TABLE venues ADD COLUMN size integer;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar string\n\tBaz string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL);\nALTER TABLE foo ADD COLUMN IF NOT EXISTS bar text;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar string\n\tBaz string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL);\nALTER TABLE foo ADD COLUMN IF NOT EXISTS bar text;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar string\n\tBaz string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL);\nALTER TABLE foo ADD COLUMN IF NOT EXISTS bar text;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_add_column_if_not_exists/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullInt32\n\tBaz sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/mysql/query.sql",
    "content": "/* name: Placeholder :exec */\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL);\nALTER TABLE foo MODIFY COLUMN bar integer;\nALTER TABLE foo MODIFY baz integer;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar []string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar TEXT);\nALTER TABLE foo ALTER bar TYPE TEXT ARRAY USING bar::text[];\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar []string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar TEXT);\nALTER TABLE foo ALTER bar TYPE TEXT ARRAY USING bar::text[];\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar []string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar TEXT);\nALTER TABLE foo ALTER bar TYPE TEXT ARRAY USING bar::text[];\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_alter_type/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_case_sensitivity/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_case_sensitivity/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID           int64\n\tFullName     sql.NullString\n\tEmailAddress sql.NullString\n\tCreatedAt    sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_case_sensitivity/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst insertUser = `-- name: InsertUser :exec\nINSERT INTO Users (full_name, \"EmailAddress\", created_at)\nVALUES (?, ?, ?)\n`\n\ntype InsertUserParams struct {\n\tFullName     sql.NullString\n\tEmailAddress sql.NullString\n\tCreatedAt    sql.NullString\n}\n\nfunc (q *Queries) InsertUser(ctx context.Context, arg InsertUserParams) error {\n\t_, err := q.db.ExecContext(ctx, insertUser, arg.FullName, arg.EmailAddress, arg.CreatedAt)\n\treturn err\n}\n\nconst selectUsers = `-- name: SelectUsers :many\nSELECT id, full_name, \"EmailAddress\", created_at\nFROM Users\n`\n\nfunc (q *Queries) SelectUsers(ctx context.Context) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, selectUsers)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FullName,\n\t\t\t&i.EmailAddress,\n\t\t\t&i.CreatedAt,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_case_sensitivity/sqlite/query.sql",
    "content": "-- name: InsertUser :exec\nINSERT INTO Users (full_name, \"EmailAddress\", created_at)\nVALUES (?, ?, ?);\n\n-- name: SelectUsers :many\nSELECT id, full_name, \"EmailAddress\", created_at\nFROM Users;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_case_sensitivity/sqlite/schema.sql",
    "content": "-- Test ALTER TABLE operations with mixed case table and column names\n-- Verifies consistent handling of case sensitivity in DDL operations\nCREATE TABLE Users (id integer primary key, name text, \"Email\" text);\n\n-- Test renaming columns with different case formats\nALTER TABLE Users RENAME COLUMN name TO full_name;\nALTER TABLE Users RENAME COLUMN \"Email\" TO \"EmailAddress\";\n\n-- Test adding a simple column\nALTER TABLE Users ADD COLUMN created_at text;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_case_sensitivity/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBaz sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/mysql/query.sql",
    "content": "/* name: Placeholder :exec */\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo CHANGE COLUMN bar baz text;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBaz string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text NOT NULL);\nALTER TABLE foo RENAME COLUMN bar TO baz;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBaz string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text NOT NULL);\nALTER TABLE foo RENAME COLUMN bar TO baz;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBaz string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text NOT NULL);\nALTER TABLE foo RENAME COLUMN bar TO baz;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_change_column/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n\tBaz sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/mysql/query.sql",
    "content": "/* name: Placeholder :exec */\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL);\nALTER TABLE foo MODIFY COLUMN bar text;\nALTER TABLE foo MODIFY baz text;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n\tBaz sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL);\nALTER TABLE foo ALTER COLUMN bar DROP NOT NULL;\nALTER TABLE foo ALTER baz DROP NOT NULL;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar pgtype.Text\n\tBaz pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL);\nALTER TABLE foo ALTER COLUMN bar DROP NOT NULL;\nALTER TABLE foo ALTER baz DROP NOT NULL;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n\tBaz sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text NOT NULL, baz text NOT NULL);\nALTER TABLE foo ALTER COLUMN bar DROP NOT NULL;\nALTER TABLE foo ALTER baz DROP NOT NULL;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_column_drop_not_null/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBaz sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/mysql/query.sql",
    "content": "/* name: Placeholder :exec */\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar text, baz text);\nALTER TABLE foo DROP COLUMN bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBaz sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text, baz text);\nALTER TABLE foo DROP COLUMN bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBaz pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text, baz text);\nALTER TABLE foo DROP COLUMN bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBaz sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text, baz text);\nALTER TABLE foo DROP COLUMN bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBaz sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT baz from foo\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/sqlite/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT * from foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/sqlite/schema.sql",
    "content": "CREATE TABLE foo (bar text, baz text);\nALTER TABLE foo DROP COLUMN bar;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/mysql/exec.json",
    "content": "{\n    \"contexts\": [\"base\"],\n    \"meta\": {\n        \"invalid_schema\": true\n    }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/mysql/query.sql",
    "content": "/* name: Placeholder :exec */\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo DROP COLUMN IF EXISTS bar;\nALTER TABLE foo DROP COLUMN IF EXISTS bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo DROP COLUMN IF EXISTS bar;\nALTER TABLE foo DROP COLUMN IF EXISTS bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo DROP COLUMN IF EXISTS bar;\nALTER TABLE foo DROP COLUMN IF EXISTS bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo DROP COLUMN IF EXISTS bar;\nALTER TABLE foo DROP COLUMN IF EXISTS bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_column_if_exists/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/mysql/exec.json",
    "content": "{\n    \"contexts\": [\"base\"],\n    \"meta\": {\n        \"invalid_schema\": true\n    }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Venue struct {\n\tID uint64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/mysql/query.sql",
    "content": "/* name: Placeholder :exec */\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/mysql/schema.sql",
    "content": "CREATE TABLE venues (id SERIAL PRIMARY KEY);\nALTER TABLE venues DROP CONSTRAINT venues_id_pkey;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Venue struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE venues (id SERIAL PRIMARY KEY);\nALTER TABLE venues DROP CONSTRAINT venues_pkey;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Venue struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE venues (id SERIAL PRIMARY KEY);\nALTER TABLE venues DROP CONSTRAINT venues_pkey;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Venue struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE venues (id SERIAL PRIMARY KEY);\nALTER TABLE venues DROP CONSTRAINT venues_pkey;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_drop_constraint/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v4/schema.sql",
    "content": "ALTER TABLE IF EXISTS foo ADD COLUMN bar integer;\nALTER TABLE IF EXISTS bar RENAME COLUMN bar TO baz;\nALTER TABLE IF EXISTS bat RENAME CONSTRAINT bar TO baz;\nALTER TABLE IF EXISTS baz RENAME TO bar;\nALTER TABLE IF EXISTS goo SET SCHEMA bar;\nALTER TABLE IF EXISTS gob ATTACH PARTITION partition_name DEFAULT;\nALTER TABLE IF EXISTS doo DETACH PARTITION partition_name;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v5/schema.sql",
    "content": "ALTER TABLE IF EXISTS foo ADD COLUMN bar integer;\nALTER TABLE IF EXISTS bar RENAME COLUMN bar TO baz;\nALTER TABLE IF EXISTS bat RENAME CONSTRAINT bar TO baz;\nALTER TABLE IF EXISTS baz RENAME TO bar;\nALTER TABLE IF EXISTS goo SET SCHEMA bar;\nALTER TABLE IF EXISTS gob ATTACH PARTITION partition_name DEFAULT;\nALTER TABLE IF EXISTS doo DETACH PARTITION partition_name;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/stdlib/schema.sql",
    "content": "ALTER TABLE IF EXISTS foo ADD COLUMN bar integer;\nALTER TABLE IF EXISTS bar RENAME COLUMN bar TO baz;\nALTER TABLE IF EXISTS bat RENAME CONSTRAINT bar TO baz;\nALTER TABLE IF EXISTS baz RENAME TO bar;\nALTER TABLE IF EXISTS goo SET SCHEMA bar;\nALTER TABLE IF EXISTS gob ATTACH PARTITION partition_name DEFAULT;\nALTER TABLE IF EXISTS doo DETACH PARTITION partition_name;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_if_exists/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype Measurement struct {\n\tCityID    int32\n\tLogdate   time.Time\n\tPeaktemp  sql.NullInt32\n\tUnitsales sql.NullInt32\n}\n\ntype MeasurementY2006m02 struct {\n\tCityID    int32\n\tLogdate   time.Time\n\tPeaktemp  sql.NullInt32\n\tUnitsales sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE measurement (\n    city_id         int not null,\n    logdate         date not null,\n    peaktemp        int,\n    unitsales       int\n) PARTITION BY RANGE (logdate);\n\nCREATE TABLE measurement_y2006m02 PARTITION OF measurement\n    FOR VALUES FROM ('2006-02-01') TO ('2006-03-01');\n\nCREATE INDEX measurement_usls_idx ON ONLY measurement (unitsales);\n\nCREATE INDEX measurement_usls_200602_idx\n    ON measurement_y2006m02 (unitsales);\n\nALTER INDEX measurement_usls_idx\n    ATTACH PARTITION measurement_usls_200602_idx;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Measurement struct {\n\tCityID    int32\n\tLogdate   pgtype.Date\n\tPeaktemp  pgtype.Int4\n\tUnitsales pgtype.Int4\n}\n\ntype MeasurementY2006m02 struct {\n\tCityID    int32\n\tLogdate   pgtype.Date\n\tPeaktemp  pgtype.Int4\n\tUnitsales pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE measurement (\n    city_id         int not null,\n    logdate         date not null,\n    peaktemp        int,\n    unitsales       int\n) PARTITION BY RANGE (logdate);\n\nCREATE TABLE measurement_y2006m02 PARTITION OF measurement\n    FOR VALUES FROM ('2006-02-01') TO ('2006-03-01');\n\nCREATE INDEX measurement_usls_idx ON ONLY measurement (unitsales);\n\nCREATE INDEX measurement_usls_200602_idx\n    ON measurement_y2006m02 (unitsales);\n\nALTER INDEX measurement_usls_idx\n    ATTACH PARTITION measurement_usls_200602_idx;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype Measurement struct {\n\tCityID    int32\n\tLogdate   time.Time\n\tPeaktemp  sql.NullInt32\n\tUnitsales sql.NullInt32\n}\n\ntype MeasurementY2006m02 struct {\n\tCityID    int32\n\tLogdate   time.Time\n\tPeaktemp  sql.NullInt32\n\tUnitsales sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE measurement (\n    city_id         int not null,\n    logdate         date not null,\n    peaktemp        int,\n    unitsales       int\n) PARTITION BY RANGE (logdate);\n\nCREATE TABLE measurement_y2006m02 PARTITION OF measurement\n    FOR VALUES FROM ('2006-02-01') TO ('2006-03-01');\n\nCREATE INDEX measurement_usls_idx ON ONLY measurement (unitsales);\n\nCREATE INDEX measurement_usls_200602_idx\n    ON measurement_y2006m02 (unitsales);\n\nALTER INDEX measurement_usls_idx\n    ATTACH PARTITION measurement_usls_200602_idx;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_index/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Arena struct {\n\tName sql.NullString\n}\n\ntype Location struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/mysql/query.sql",
    "content": "/* name: Placeholder :exec */\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/mysql/schema.sql",
    "content": "CREATE TABLE venues (name text);\nALTER TABLE venues RENAME TO arenas;\n\nCREATE TABLE cities (name text);\nRENAME TABLE cities TO locations;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Arena struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE venues (name text);\nALTER TABLE venues RENAME TO arenas;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Arena struct {\n\tName pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE venues (name text);\nALTER TABLE venues RENAME TO arenas;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Arena struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE venues (name text);\nALTER TABLE venues RENAME TO arenas;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Arena struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst placeholder = `-- name: Placeholder :many\nSELECT name from arenas\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, placeholder)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar name sql.NullString\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/sqlite/query.sql",
    "content": "/* name: Placeholder :many */\nSELECT * from arenas;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/sqlite/schema.sql",
    "content": "CREATE TABLE venues (name text);\nALTER TABLE venues RENAME TO arenas;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBaz sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/mysql/query.sql",
    "content": "/* name: Placeholder :exec */\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo RENAME COLUMN bar TO baz;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBaz sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo RENAME bar TO baz;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBaz pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo RENAME bar TO baz;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBaz sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo RENAME bar TO baz;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBoo sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst placeholder = `-- name: Placeholder :many\nSELECT boo from foo\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, placeholder)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar boo sql.NullString\n\t\tif err := rows.Scan(&boo); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, boo)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/sqlite/query.sql",
    "content": "/* name: Placeholder :many */\nSELECT * from foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/sqlite/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo RENAME COLUMN bar TO baz;\n\nALTER TABLE foo RENAME baz TO boo;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_rename_column/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/mysql/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo MODIFY bar integer;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullBool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo ALTER bar SET DATA TYPE bool USING bar::boolean;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar pgtype.Bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo ALTER bar SET DATA TYPE bool USING bar::boolean;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullBool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo ALTER bar SET DATA TYPE bool USING bar::boolean;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_data_type/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/mysql/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo MODIFY bar text NOT NULL;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo ALTER bar SET NOT NULL;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo ALTER bar SET NOT NULL;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text);\nALTER TABLE foo ALTER bar SET NOT NULL;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_not_null/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/mysql/README.md",
    "content": "MySQL does not implement `ALTER TABLE ... SET SCHEMA`.\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype FooBar struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getFooBar = `-- name: GetFooBar :exec\nSELECT name FROM foo.bar\n`\n\nfunc (q *Queries) GetFooBar(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, getFooBar)\n\treturn err\n}\n\nconst updateFooBar = `-- name: UpdateFooBar :exec\nUPDATE foo.bar SET name = $1\n`\n\nfunc (q *Queries) UpdateFooBar(ctx context.Context, name sql.NullString) error {\n\t_, err := q.db.Exec(ctx, updateFooBar, name)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetFooBar :exec\nSELECT * FROM foo.bar;\n\n-- name: UpdateFooBar :exec\nUPDATE foo.bar SET name = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE bar (name text);\nALTER TABLE bar SET SCHEMA foo;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype FooBar struct {\n\tName pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getFooBar = `-- name: GetFooBar :exec\nSELECT name FROM foo.bar\n`\n\nfunc (q *Queries) GetFooBar(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, getFooBar)\n\treturn err\n}\n\nconst updateFooBar = `-- name: UpdateFooBar :exec\nUPDATE foo.bar SET name = $1\n`\n\nfunc (q *Queries) UpdateFooBar(ctx context.Context, name pgtype.Text) error {\n\t_, err := q.db.Exec(ctx, updateFooBar, name)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetFooBar :exec\nSELECT * FROM foo.bar;\n\n-- name: UpdateFooBar :exec\nUPDATE foo.bar SET name = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE bar (name text);\nALTER TABLE bar SET SCHEMA foo;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype FooBar struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getFooBar = `-- name: GetFooBar :exec\nSELECT name FROM foo.bar\n`\n\nfunc (q *Queries) GetFooBar(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, getFooBar)\n\treturn err\n}\n\nconst updateFooBar = `-- name: UpdateFooBar :exec\nUPDATE foo.bar SET name = $1\n`\n\nfunc (q *Queries) UpdateFooBar(ctx context.Context, name sql.NullString) error {\n\t_, err := q.db.ExecContext(ctx, updateFooBar, name)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/stdlib/query.sql",
    "content": "-- name: GetFooBar :exec\nSELECT * FROM foo.bar;\n\n-- name: UpdateFooBar :exec\nUPDATE foo.bar SET name = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/stdlib/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE bar (name text);\nALTER TABLE bar SET SCHEMA foo;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_table_set_schema/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/mysql/README.md",
    "content": "MySQL does not support `CREATE TYPE ... AS ENUM`. Instead, enumerations are\ndefined via the `ENUM` type directly in table columns.\n\nhttps://dev.mysql.com/doc/refman/8.0/en/enum.html \n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype Status string\n\nconst (\n\tStatusOpen    Status = \"open\"\n\tStatusClosed  Status = \"closed\"\n\tStatusUnknown Status = \"unknown\"\n)\n\nfunc (e *Status) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Status(s)\n\tcase string:\n\t\t*e = Status(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Status: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullStatus struct {\n\tStatus Status\n\tValid  bool // Valid is true if Status is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullStatus) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Status, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Status.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullStatus) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Status), nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('open', 'closed');\nALTER TYPE status ADD VALUE 'unknown';\nALTER TYPE status ADD VALUE IF NOT EXISTS 'unknown';"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype Status string\n\nconst (\n\tStatusOpen    Status = \"open\"\n\tStatusClosed  Status = \"closed\"\n\tStatusUnknown Status = \"unknown\"\n)\n\nfunc (e *Status) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Status(s)\n\tcase string:\n\t\t*e = Status(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Status: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullStatus struct {\n\tStatus Status\n\tValid  bool // Valid is true if Status is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullStatus) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Status, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Status.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullStatus) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Status), nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('open', 'closed');\nALTER TYPE status ADD VALUE 'unknown';\nALTER TYPE status ADD VALUE IF NOT EXISTS 'unknown';"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype Status string\n\nconst (\n\tStatusOpen    Status = \"open\"\n\tStatusClosed  Status = \"closed\"\n\tStatusUnknown Status = \"unknown\"\n)\n\nfunc (e *Status) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Status(s)\n\tcase string:\n\t\t*e = Status(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Status: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullStatus struct {\n\tStatus Status\n\tValid  bool // Valid is true if Status is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullStatus) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Status, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Status.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullStatus) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Status), nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('open', 'closed');\nALTER TYPE status ADD VALUE 'unknown';\nALTER TYPE status ADD VALUE IF NOT EXISTS 'unknown';"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_add_value/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype NewEvent string\n\nconst (\n\tNewEventSTART NewEvent = \"START\"\n\tNewEventSTOP  NewEvent = \"STOP\"\n)\n\nfunc (e *NewEvent) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = NewEvent(s)\n\tcase string:\n\t\t*e = NewEvent(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for NewEvent: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullNewEvent struct {\n\tNewEvent NewEvent\n\tValid    bool // Valid is true if NewEvent is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullNewEvent) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.NewEvent, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.NewEvent.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullNewEvent) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.NewEvent), nil\n}\n\ntype LogLine struct {\n\tID     int64\n\tStatus NewEvent\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, status FROM log_lines\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) {\n\trows, err := q.db.Query(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []LogLine\n\tfor rows.Next() {\n\t\tvar i LogLine\n\t\tif err := rows.Scan(&i.ID, &i.Status); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v4/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT * FROM log_lines;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TYPE event AS enum ('START', 'STOP');\n\nALTER TYPE event RENAME TO \"new_event\";\n\nCREATE TABLE log_lines (\n  id     BIGSERIAL    PRIMARY KEY,\n  status \"new_event\"  NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype NewEvent string\n\nconst (\n\tNewEventSTART NewEvent = \"START\"\n\tNewEventSTOP  NewEvent = \"STOP\"\n)\n\nfunc (e *NewEvent) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = NewEvent(s)\n\tcase string:\n\t\t*e = NewEvent(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for NewEvent: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullNewEvent struct {\n\tNewEvent NewEvent\n\tValid    bool // Valid is true if NewEvent is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullNewEvent) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.NewEvent, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.NewEvent.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullNewEvent) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.NewEvent), nil\n}\n\ntype LogLine struct {\n\tID     int64\n\tStatus NewEvent\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, status FROM log_lines\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) {\n\trows, err := q.db.Query(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []LogLine\n\tfor rows.Next() {\n\t\tvar i LogLine\n\t\tif err := rows.Scan(&i.ID, &i.Status); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v5/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT * FROM log_lines;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TYPE event AS enum ('START', 'STOP');\n\nALTER TYPE event RENAME TO \"new_event\";\n\nCREATE TABLE log_lines (\n  id     BIGSERIAL    PRIMARY KEY,\n  status \"new_event\"  NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype NewEvent string\n\nconst (\n\tNewEventSTART NewEvent = \"START\"\n\tNewEventSTOP  NewEvent = \"STOP\"\n)\n\nfunc (e *NewEvent) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = NewEvent(s)\n\tcase string:\n\t\t*e = NewEvent(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for NewEvent: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullNewEvent struct {\n\tNewEvent NewEvent\n\tValid    bool // Valid is true if NewEvent is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullNewEvent) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.NewEvent, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.NewEvent.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullNewEvent) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.NewEvent), nil\n}\n\ntype LogLine struct {\n\tID     int64\n\tStatus NewEvent\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, status FROM log_lines\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []LogLine\n\tfor rows.Next() {\n\t\tvar i LogLine\n\t\tif err := rows.Scan(&i.ID, &i.Status); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/stdlib/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT * FROM log_lines;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE event AS enum ('START', 'STOP');\n\nALTER TYPE event RENAME TO \"new_event\";\n\nCREATE TABLE log_lines (\n  id     BIGSERIAL    PRIMARY KEY,\n  status \"new_event\"  NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype NewEvent string\n\nconst (\n\tNewEventSTART NewEvent = \"START\"\n\tNewEventSTOP  NewEvent = \"STOP\"\n)\n\nfunc (e *NewEvent) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = NewEvent(s)\n\tcase string:\n\t\t*e = NewEvent(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for NewEvent: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullNewEvent struct {\n\tNewEvent NewEvent\n\tValid    bool // Valid is true if NewEvent is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullNewEvent) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.NewEvent, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.NewEvent.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullNewEvent) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.NewEvent), nil\n}\n\ntype LogLine struct {\n\tID     int64\n\tStatus NewEvent\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, status FROM log_lines\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) {\n\trows, err := q.db.Query(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []LogLine\n\tfor rows.Next() {\n\t\tvar i LogLine\n\t\tif err := rows.Scan(&i.ID, &i.Status); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v4/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT * FROM log_lines;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TYPE event AS enum ('START', 'STOP');\n\nCREATE TABLE log_lines (\n  id     BIGSERIAL    PRIMARY KEY,\n  status \"event\"  NOT NULL\n);\n\nALTER TYPE event RENAME TO \"new_event\";\n\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype NewEvent string\n\nconst (\n\tNewEventSTART NewEvent = \"START\"\n\tNewEventSTOP  NewEvent = \"STOP\"\n)\n\nfunc (e *NewEvent) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = NewEvent(s)\n\tcase string:\n\t\t*e = NewEvent(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for NewEvent: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullNewEvent struct {\n\tNewEvent NewEvent\n\tValid    bool // Valid is true if NewEvent is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullNewEvent) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.NewEvent, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.NewEvent.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullNewEvent) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.NewEvent), nil\n}\n\ntype LogLine struct {\n\tID     int64\n\tStatus NewEvent\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, status FROM log_lines\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) {\n\trows, err := q.db.Query(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []LogLine\n\tfor rows.Next() {\n\t\tvar i LogLine\n\t\tif err := rows.Scan(&i.ID, &i.Status); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v5/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT * FROM log_lines;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TYPE event AS enum ('START', 'STOP');\n\nCREATE TABLE log_lines (\n  id     BIGSERIAL    PRIMARY KEY,\n  status \"event\"  NOT NULL\n);\n\nALTER TYPE event RENAME TO \"new_event\";\n\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype NewEvent string\n\nconst (\n\tNewEventSTART NewEvent = \"START\"\n\tNewEventSTOP  NewEvent = \"STOP\"\n)\n\nfunc (e *NewEvent) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = NewEvent(s)\n\tcase string:\n\t\t*e = NewEvent(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for NewEvent: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullNewEvent struct {\n\tNewEvent NewEvent\n\tValid    bool // Valid is true if NewEvent is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullNewEvent) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.NewEvent, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.NewEvent.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullNewEvent) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.NewEvent), nil\n}\n\ntype LogLine struct {\n\tID     int64\n\tStatus NewEvent\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, status FROM log_lines\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []LogLine\n\tfor rows.Next() {\n\t\tvar i LogLine\n\t\tif err := rows.Scan(&i.ID, &i.Status); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/stdlib/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT * FROM log_lines;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE event AS enum ('START', 'STOP');\n\nCREATE TABLE log_lines (\n  id     BIGSERIAL    PRIMARY KEY,\n  status \"event\"  NOT NULL\n);\n\nALTER TYPE event RENAME TO \"new_event\";\n\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_and_update_columns/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/mysql/README.md",
    "content": "MySQL does not support `CREATE TYPE ... AS ENUM`. Instead, enumerations are\ndefined via the `ENUM` type directly in table columns.\n\nhttps://dev.mysql.com/doc/refman/8.0/en/enum.html \n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype Status string\n\nconst (\n\tStatusOpen Status = \"open\"\n\tStatusShut Status = \"shut\"\n)\n\nfunc (e *Status) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Status(s)\n\tcase string:\n\t\t*e = Status(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Status: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullStatus struct {\n\tStatus Status\n\tValid  bool // Valid is true if Status is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullStatus) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Status, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Status.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullStatus) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Status), nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('open', 'closed');\nALTER TYPE status RENAME VALUE 'closed' TO 'shut';"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype Status string\n\nconst (\n\tStatusOpen Status = \"open\"\n\tStatusShut Status = \"shut\"\n)\n\nfunc (e *Status) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Status(s)\n\tcase string:\n\t\t*e = Status(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Status: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullStatus struct {\n\tStatus Status\n\tValid  bool // Valid is true if Status is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullStatus) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Status, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Status.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullStatus) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Status), nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('open', 'closed');\nALTER TYPE status RENAME VALUE 'closed' TO 'shut';"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype Status string\n\nconst (\n\tStatusOpen Status = \"open\"\n\tStatusShut Status = \"shut\"\n)\n\nfunc (e *Status) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Status(s)\n\tcase string:\n\t\t*e = Status(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Status: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullStatus struct {\n\tStatus Status\n\tValid  bool // Valid is true if Status is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullStatus) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Status, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Status.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullStatus) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Status), nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('open', 'closed');\nALTER TYPE status RENAME VALUE 'closed' TO 'shut';"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_rename_value/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype Level string\n\nconst (\n\tLevelDEBUG Level = \"DEBUG\"\n\tLevelINFO  Level = \"INFO\"\n\tLevelWARN  Level = \"WARN\"\n\tLevelERROR Level = \"ERROR\"\n\tLevelFATAL Level = \"FATAL\"\n)\n\nfunc (e *Level) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Level(s)\n\tcase string:\n\t\t*e = Level(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Level: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullLevel struct {\n\tLevel Level\n\tValid bool // Valid is true if Level is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullLevel) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Level, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Level.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullLevel) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Level), nil\n}\n\ntype NewEvent string\n\nconst (\n\tNewEventSTART NewEvent = \"START\"\n\tNewEventSTOP  NewEvent = \"STOP\"\n)\n\nfunc (e *NewEvent) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = NewEvent(s)\n\tcase string:\n\t\t*e = NewEvent(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for NewEvent: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullNewEvent struct {\n\tNewEvent NewEvent\n\tValid    bool // Valid is true if NewEvent is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullNewEvent) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.NewEvent, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.NewEvent.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullNewEvent) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.NewEvent), nil\n}\n\ntype LogLine struct {\n\tID     int64\n\tStatus NewEvent\n\tLevel  Level\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, status, level FROM log_lines\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) {\n\trows, err := q.db.Query(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []LogLine\n\tfor rows.Next() {\n\t\tvar i LogLine\n\t\tif err := rows.Scan(&i.ID, &i.Status, &i.Level); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v4/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT * FROM log_lines;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA old;\nCREATE SCHEMA new;\n\nCREATE TYPE event AS enum ('START', 'STOP');\nCREATE TYPE old.level AS enum ('DEBUG', 'INFO', 'WARN', 'ERROR', 'FATAL');\n\nCREATE TABLE log_lines (\n  id     BIGSERIAL    PRIMARY KEY,\n  status event        NOT NULL,\n  level  old.level    NOT NULL\n);\n\nALTER TYPE event SET SCHEMA new;\nALTER TYPE old.level SET SCHEMA public;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype Level string\n\nconst (\n\tLevelDEBUG Level = \"DEBUG\"\n\tLevelINFO  Level = \"INFO\"\n\tLevelWARN  Level = \"WARN\"\n\tLevelERROR Level = \"ERROR\"\n\tLevelFATAL Level = \"FATAL\"\n)\n\nfunc (e *Level) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Level(s)\n\tcase string:\n\t\t*e = Level(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Level: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullLevel struct {\n\tLevel Level\n\tValid bool // Valid is true if Level is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullLevel) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Level, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Level.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullLevel) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Level), nil\n}\n\ntype NewEvent string\n\nconst (\n\tNewEventSTART NewEvent = \"START\"\n\tNewEventSTOP  NewEvent = \"STOP\"\n)\n\nfunc (e *NewEvent) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = NewEvent(s)\n\tcase string:\n\t\t*e = NewEvent(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for NewEvent: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullNewEvent struct {\n\tNewEvent NewEvent\n\tValid    bool // Valid is true if NewEvent is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullNewEvent) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.NewEvent, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.NewEvent.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullNewEvent) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.NewEvent), nil\n}\n\ntype LogLine struct {\n\tID     int64\n\tStatus NewEvent\n\tLevel  Level\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, status, level FROM log_lines\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) {\n\trows, err := q.db.Query(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []LogLine\n\tfor rows.Next() {\n\t\tvar i LogLine\n\t\tif err := rows.Scan(&i.ID, &i.Status, &i.Level); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v5/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT * FROM log_lines;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA old;\nCREATE SCHEMA new;\n\nCREATE TYPE event AS enum ('START', 'STOP');\nCREATE TYPE old.level AS enum ('DEBUG', 'INFO', 'WARN', 'ERROR', 'FATAL');\n\nCREATE TABLE log_lines (\n  id     BIGSERIAL    PRIMARY KEY,\n  status event        NOT NULL,\n  level  old.level    NOT NULL\n);\n\nALTER TYPE event SET SCHEMA new;\nALTER TYPE old.level SET SCHEMA public;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype Level string\n\nconst (\n\tLevelDEBUG Level = \"DEBUG\"\n\tLevelINFO  Level = \"INFO\"\n\tLevelWARN  Level = \"WARN\"\n\tLevelERROR Level = \"ERROR\"\n\tLevelFATAL Level = \"FATAL\"\n)\n\nfunc (e *Level) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Level(s)\n\tcase string:\n\t\t*e = Level(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Level: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullLevel struct {\n\tLevel Level\n\tValid bool // Valid is true if Level is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullLevel) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Level, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Level.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullLevel) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Level), nil\n}\n\ntype NewEvent string\n\nconst (\n\tNewEventSTART NewEvent = \"START\"\n\tNewEventSTOP  NewEvent = \"STOP\"\n)\n\nfunc (e *NewEvent) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = NewEvent(s)\n\tcase string:\n\t\t*e = NewEvent(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for NewEvent: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullNewEvent struct {\n\tNewEvent NewEvent\n\tValid    bool // Valid is true if NewEvent is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullNewEvent) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.NewEvent, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.NewEvent.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullNewEvent) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.NewEvent), nil\n}\n\ntype LogLine struct {\n\tID     int64\n\tStatus NewEvent\n\tLevel  Level\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, status, level FROM log_lines\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]LogLine, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []LogLine\n\tfor rows.Next() {\n\t\tvar i LogLine\n\t\tif err := rows.Scan(&i.ID, &i.Status, &i.Level); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/stdlib/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT * FROM log_lines;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/stdlib/schema.sql",
    "content": "CREATE SCHEMA old;\nCREATE SCHEMA new;\n\nCREATE TYPE event AS enum ('START', 'STOP');\nCREATE TYPE old.level AS enum ('DEBUG', 'INFO', 'WARN', 'ERROR', 'FATAL');\n\nCREATE TABLE log_lines (\n  id     BIGSERIAL    PRIMARY KEY,\n  status event        NOT NULL,\n  level  old.level    NOT NULL\n);\n\nALTER TYPE event SET SCHEMA new;\nALTER TYPE old.level SET SCHEMA public;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_alter_type_set_schema/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/mysql/README.md",
    "content": "MySQL does not support the `COMMENT ON` statmement. Instead, comments can be\nadded to columns and tables at creation time.\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\n// Table comment\ntype Bar struct {\n\t// Column comment\n\tBaz sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/mysql/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/mysql/schema.sql",
    "content": "CREATE TABLE bar (\n    baz text COMMENT \"Column comment\"\n) COMMENT=\"Table comment\";\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\n// Enum comment\ntype FooBat string\n\nconst (\n\tFooBatBat FooBat = \"bat\"\n)\n\nfunc (e *FooBat) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = FooBat(s)\n\tcase string:\n\t\t*e = FooBat(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for FooBat: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullFooBat struct {\n\tFooBat FooBat\n\tValid  bool // Valid is true if FooBat is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullFooBat) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.FooBat, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.FooBat.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullFooBat) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.FooBat), nil\n}\n\n// Table comment\ntype FooBar struct {\n\t// Column comment\n\tBaz sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (baz text);\nCREATE TYPE foo.bat AS ENUM ('bat');\nCOMMENT ON SCHEMA foo IS 'Schema comment';\nCOMMENT ON TABLE foo.bar IS 'Table comment';\nCOMMENT ON COLUMN foo.bar.baz IS 'Column comment';\nCOMMENT ON TYPE foo.bat IS 'Enum comment';"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\n// Enum comment\ntype FooBat string\n\nconst (\n\tFooBatBat FooBat = \"bat\"\n)\n\nfunc (e *FooBat) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = FooBat(s)\n\tcase string:\n\t\t*e = FooBat(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for FooBat: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullFooBat struct {\n\tFooBat FooBat\n\tValid  bool // Valid is true if FooBat is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullFooBat) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.FooBat, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.FooBat.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullFooBat) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.FooBat), nil\n}\n\n// Table comment\ntype FooBar struct {\n\t// Column comment\n\tBaz pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (baz text);\nCREATE TYPE foo.bat AS ENUM ('bat');\nCOMMENT ON SCHEMA foo IS 'Schema comment';\nCOMMENT ON TABLE foo.bar IS 'Table comment';\nCOMMENT ON COLUMN foo.bar.baz IS 'Column comment';\nCOMMENT ON TYPE foo.bat IS 'Enum comment';"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\n// Enum comment\ntype FooBat string\n\nconst (\n\tFooBatBat FooBat = \"bat\"\n)\n\nfunc (e *FooBat) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = FooBat(s)\n\tcase string:\n\t\t*e = FooBat(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for FooBat: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullFooBat struct {\n\tFooBat FooBat\n\tValid  bool // Valid is true if FooBat is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullFooBat) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.FooBat, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.FooBat.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullFooBat) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.FooBat), nil\n}\n\n// Table comment\ntype FooBar struct {\n\t// Column comment\n\tBaz sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/stdlib/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (baz text);\nCREATE TYPE foo.bat AS ENUM ('bat');\nCOMMENT ON SCHEMA foo IS 'Schema comment';\nCOMMENT ON TABLE foo.bar IS 'Table comment';\nCOMMENT ON COLUMN foo.bar.baz IS 'Column comment';\nCOMMENT ON TYPE foo.bat IS 'Enum comment';"
  },
  {
    "path": "internal/endtoend/testdata/ddl_comment/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype FooDigit string\n\nconst (\n\tFooDigit0       FooDigit = \"0\"\n\tFooDigit1       FooDigit = \"1\"\n\tFooDigit2       FooDigit = \"2\"\n\tFooDigit3       FooDigit = \"3\"\n\tFooDigit4       FooDigit = \"4\"\n\tFooDigit5       FooDigit = \"5\"\n\tFooDigit6       FooDigit = \"6\"\n\tFooDigit7       FooDigit = \"7\"\n\tFooDigit8       FooDigit = \"8\"\n\tFooDigit9       FooDigit = \"9\"\n\tFooDigitValue10 FooDigit = \"#\"\n\tFooDigitValue11 FooDigit = \"*\"\n)\n\nfunc (e *FooDigit) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = FooDigit(s)\n\tcase string:\n\t\t*e = FooDigit(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for FooDigit: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullFooDigit struct {\n\tFooDigit FooDigit\n\tValid    bool // Valid is true if FooDigit is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullFooDigit) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.FooDigit, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.FooDigit.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullFooDigit) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.FooDigit), nil\n}\n\ntype FooFoobar string\n\nconst (\n\tFooFoobarFooA FooFoobar = \"foo-a\"\n\tFooFoobarFooB FooFoobar = \"foo_b\"\n\tFooFoobarFooC FooFoobar = \"foo:c\"\n\tFooFoobarFooD FooFoobar = \"foo/d\"\n\tFooFoobarFooe FooFoobar = \"foo@e\"\n\tFooFoobarFoof FooFoobar = \"foo+f\"\n\tFooFoobarFoog FooFoobar = \"foo!g\"\n)\n\nfunc (e *FooFoobar) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = FooFoobar(s)\n\tcase string:\n\t\t*e = FooFoobar(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for FooFoobar: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullFooFoobar struct {\n\tFooFoobar FooFoobar\n\tValid     bool // Valid is true if FooFoobar is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullFooFoobar) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.FooFoobar, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.FooFoobar.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullFooFoobar) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.FooFoobar), nil\n}\n\ntype Foo struct {\n\tFoobar FooFoobar\n\tDigit  FooDigit\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listFoo = `-- name: ListFoo :many\nSELECT foobar, digit FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Foobar, &i.Digit); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/mysql/query.sql",
    "content": "/* name: ListFoo :many */\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/mysql/schema.sql",
    "content": "CREATE TABLE foo (\n    foobar ENUM ('foo-a', 'foo_b', 'foo:c', 'foo/d', 'foo@e', 'foo+f', 'foo!g') NOT NULL,\n    digit  ENUM ('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '#', '*')    NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype Digit string\n\nconst (\n\tDigit0       Digit = \"0\"\n\tDigit1       Digit = \"1\"\n\tDigit2       Digit = \"2\"\n\tDigit3       Digit = \"3\"\n\tDigit4       Digit = \"4\"\n\tDigit5       Digit = \"5\"\n\tDigit6       Digit = \"6\"\n\tDigit7       Digit = \"7\"\n\tDigit8       Digit = \"8\"\n\tDigit9       Digit = \"9\"\n\tDigitValue10 Digit = \"#\"\n\tDigitValue11 Digit = \"*\"\n)\n\nfunc (e *Digit) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Digit(s)\n\tcase string:\n\t\t*e = Digit(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Digit: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullDigit struct {\n\tDigit Digit\n\tValid bool // Valid is true if Digit is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullDigit) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Digit, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Digit.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullDigit) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Digit), nil\n}\n\ntype Foobar string\n\nconst (\n\tFoobarFooA Foobar = \"foo-a\"\n\tFoobarFooB Foobar = \"foo_b\"\n\tFoobarFooC Foobar = \"foo:c\"\n\tFoobarFooD Foobar = \"foo/d\"\n\tFoobarFooe Foobar = \"foo@e\"\n\tFoobarFoof Foobar = \"foo+f\"\n\tFoobarFoog Foobar = \"foo!g\"\n)\n\nfunc (e *Foobar) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Foobar(s)\n\tcase string:\n\t\t*e = Foobar(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Foobar: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullFoobar struct {\n\tFoobar Foobar\n\tValid  bool // Valid is true if Foobar is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullFoobar) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Foobar, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Foobar.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullFoobar) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Foobar), nil\n}\n\ntype Foo struct {\n\tVal Foobar\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listFoo = `-- name: ListFoo :many\nSELECT val FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foobar, error) {\n\trows, err := q.db.Query(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foobar\n\tfor rows.Next() {\n\t\tvar val Foobar\n\t\tif err := rows.Scan(&val); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, val)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v4/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TYPE foobar AS ENUM (\n    -- Valid separators\n    'foo-a',\n    'foo_b',\n    'foo:c',\n    'foo/d',\n    -- Strip unknown characters\n    'foo@e',\n    'foo+f',\n    'foo!g'\n);\n\nCREATE TYPE \"digit\" AS ENUM (\n  '0',\n  '1',\n  '2',\n  '3',\n  '4',\n  '5',\n  '6',\n  '7',\n  '8',\n  '9',\n  '#',\n  '*'\n);\n\nCREATE TABLE foo (val foobar NOT NULL);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype Digit string\n\nconst (\n\tDigit0       Digit = \"0\"\n\tDigit1       Digit = \"1\"\n\tDigit2       Digit = \"2\"\n\tDigit3       Digit = \"3\"\n\tDigit4       Digit = \"4\"\n\tDigit5       Digit = \"5\"\n\tDigit6       Digit = \"6\"\n\tDigit7       Digit = \"7\"\n\tDigit8       Digit = \"8\"\n\tDigit9       Digit = \"9\"\n\tDigitValue10 Digit = \"#\"\n\tDigitValue11 Digit = \"*\"\n)\n\nfunc (e *Digit) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Digit(s)\n\tcase string:\n\t\t*e = Digit(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Digit: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullDigit struct {\n\tDigit Digit\n\tValid bool // Valid is true if Digit is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullDigit) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Digit, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Digit.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullDigit) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Digit), nil\n}\n\ntype Foobar string\n\nconst (\n\tFoobarFooA Foobar = \"foo-a\"\n\tFoobarFooB Foobar = \"foo_b\"\n\tFoobarFooC Foobar = \"foo:c\"\n\tFoobarFooD Foobar = \"foo/d\"\n\tFoobarFooe Foobar = \"foo@e\"\n\tFoobarFoof Foobar = \"foo+f\"\n\tFoobarFoog Foobar = \"foo!g\"\n)\n\nfunc (e *Foobar) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Foobar(s)\n\tcase string:\n\t\t*e = Foobar(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Foobar: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullFoobar struct {\n\tFoobar Foobar\n\tValid  bool // Valid is true if Foobar is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullFoobar) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Foobar, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Foobar.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullFoobar) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Foobar), nil\n}\n\ntype Foo struct {\n\tVal Foobar\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listFoo = `-- name: ListFoo :many\nSELECT val FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foobar, error) {\n\trows, err := q.db.Query(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foobar\n\tfor rows.Next() {\n\t\tvar val Foobar\n\t\tif err := rows.Scan(&val); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, val)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v5/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TYPE foobar AS ENUM (\n    -- Valid separators\n    'foo-a',\n    'foo_b',\n    'foo:c',\n    'foo/d',\n    -- Strip unknown characters\n    'foo@e',\n    'foo+f',\n    'foo!g'\n);\n\nCREATE TYPE \"digit\" AS ENUM (\n  '0',\n  '1',\n  '2',\n  '3',\n  '4',\n  '5',\n  '6',\n  '7',\n  '8',\n  '9',\n  '#',\n  '*'\n);\n\nCREATE TABLE foo (val foobar NOT NULL);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype Digit string\n\nconst (\n\tDigit0       Digit = \"0\"\n\tDigit1       Digit = \"1\"\n\tDigit2       Digit = \"2\"\n\tDigit3       Digit = \"3\"\n\tDigit4       Digit = \"4\"\n\tDigit5       Digit = \"5\"\n\tDigit6       Digit = \"6\"\n\tDigit7       Digit = \"7\"\n\tDigit8       Digit = \"8\"\n\tDigit9       Digit = \"9\"\n\tDigitValue10 Digit = \"#\"\n\tDigitValue11 Digit = \"*\"\n)\n\nfunc (e *Digit) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Digit(s)\n\tcase string:\n\t\t*e = Digit(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Digit: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullDigit struct {\n\tDigit Digit\n\tValid bool // Valid is true if Digit is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullDigit) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Digit, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Digit.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullDigit) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Digit), nil\n}\n\ntype Foobar string\n\nconst (\n\tFoobarFooA Foobar = \"foo-a\"\n\tFoobarFooB Foobar = \"foo_b\"\n\tFoobarFooC Foobar = \"foo:c\"\n\tFoobarFooD Foobar = \"foo/d\"\n\tFoobarFooe Foobar = \"foo@e\"\n\tFoobarFoof Foobar = \"foo+f\"\n\tFoobarFoog Foobar = \"foo!g\"\n)\n\nfunc (e *Foobar) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Foobar(s)\n\tcase string:\n\t\t*e = Foobar(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Foobar: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullFoobar struct {\n\tFoobar Foobar\n\tValid  bool // Valid is true if Foobar is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullFoobar) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Foobar, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Foobar.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullFoobar) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Foobar), nil\n}\n\ntype Foo struct {\n\tVal Foobar\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listFoo = `-- name: ListFoo :many\nSELECT val FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foobar, error) {\n\trows, err := q.db.QueryContext(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foobar\n\tfor rows.Next() {\n\t\tvar val Foobar\n\t\tif err := rows.Scan(&val); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, val)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/stdlib/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE foobar AS ENUM (\n    -- Valid separators\n    'foo-a',\n    'foo_b',\n    'foo:c',\n    'foo/d',\n    -- Strip unknown characters\n    'foo@e',\n    'foo+f',\n    'foo!g'\n);\n\nCREATE TYPE \"digit\" AS ENUM (\n  '0',\n  '1',\n  '2',\n  '3',\n  '4',\n  '5',\n  '6',\n  '7',\n  '8',\n  '9',\n  '#',\n  '*'\n);\n\nCREATE TABLE foo (val foobar NOT NULL);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_enum/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_func_exists/exec.json",
    "content": "{\n    \"contexts\": [\"base\"],\n    \"meta\": {\n        \"invalid_schema\": true\n    }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_func_exists/mysql/README.md",
    "content": "The MySQL parser currently does not support user-defined functions. See\nhttps://github.com/pingcap/parser/issues/988.\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_func_exists/query.sql",
    "content": "CREATE FUNCTION f(x TIMESTAMPTZ) RETURNS void AS '' LANGUAGE sql;\nCREATE FUNCTION f(x timestamp with time zone) RETURNS void AS '' LANGUAGE sql;\n\n-- name: F :one\nSELECT f(1);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_func_exists/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"query.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_func_exists/stderr.txt",
    "content": "# package querytest\nquery.sql:1:1: relation \"f\" already exists\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/mysql/README.md",
    "content": "The MySQL parser currently does not support user-defined functions. See\nhttps://github.com/pingcap/parser/issues/988.\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v4/schema.sql",
    "content": "CREATE FUNCTION foo(TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v5/schema.sql",
    "content": "CREATE FUNCTION foo(TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/stdlib/schema.sql",
    "content": "CREATE FUNCTION foo(TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/mysql/README.md",
    "content": "The MySQL parser currently does not support user-defined functions. See\nhttps://github.com/pingcap/parser/issues/988.\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v4/schema.sql",
    "content": "CREATE FUNCTION foo(bar TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;\nCREATE FUNCTION foo(bar TEXT, baz TEXT) RETURNS TEXT AS $$ SELECT \"baz\" $$ LANGUAGE sql;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v5/schema.sql",
    "content": "CREATE FUNCTION foo(bar TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;\nCREATE FUNCTION foo(bar TEXT, baz TEXT) RETURNS TEXT AS $$ SELECT \"baz\" $$ LANGUAGE sql;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/stdlib/schema.sql",
    "content": "CREATE FUNCTION foo(bar TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;\nCREATE FUNCTION foo(bar TEXT, baz TEXT) RETURNS TEXT AS $$ SELECT \"baz\" $$ LANGUAGE sql;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_args/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/mysql/README.md",
    "content": "The MySQL parser currently does not support user-defined functions. See\nhttps://github.com/pingcap/parser/issues/988.\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v4/schema.sql",
    "content": "CREATE FUNCTION foo(bar TEXT, baz TEXT='baz') RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v5/schema.sql",
    "content": "CREATE FUNCTION foo(bar TEXT, baz TEXT='baz') RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/stdlib/schema.sql",
    "content": "CREATE FUNCTION foo(bar TEXT, baz TEXT='baz') RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_return/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/mysql/README.md",
    "content": "The MySQL parser currently does not support user-defined functions. See\nhttps://github.com/pingcap/parser/issues/988.\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v4/schema.sql",
    "content": "CREATE FUNCTION foo(bar TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;\nCREATE FUNCTION foo(bar INTEGER) RETURNS TEXT AS $$ SELECT 'baz' $$ LANGUAGE sql;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v5/schema.sql",
    "content": "CREATE FUNCTION foo(bar TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;\nCREATE FUNCTION foo(bar INTEGER) RETURNS TEXT AS $$ SELECT 'baz' $$ LANGUAGE sql;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/stdlib/schema.sql",
    "content": "CREATE FUNCTION foo(bar TEXT) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;\nCREATE FUNCTION foo(bar INTEGER) RETURNS TEXT AS $$ SELECT 'baz' $$ LANGUAGE sql;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_function_types/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Tbl struct {\n\tValue sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst callInsertData = `-- name: CallInsertData :exec\nCALL insert_data(?, ?)\n`\n\ntype CallInsertDataParams struct {\n\tA int32\n\tB int32\n}\n\nfunc (q *Queries) CallInsertData(ctx context.Context, arg CallInsertDataParams) error {\n\t_, err := q.db.ExecContext(ctx, callInsertData, arg.A, arg.B)\n\treturn err\n}\n\nconst callInsertDataNoArgs = `-- name: CallInsertDataNoArgs :exec\nCALL insert_data(1, 2)\n`\n\nfunc (q *Queries) CallInsertDataNoArgs(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, callInsertDataNoArgs)\n\treturn err\n}\n\nconst callInsertDataSqlcArgs = `-- name: CallInsertDataSqlcArgs :exec\nCALL insert_data(?, ?)\n`\n\ntype CallInsertDataSqlcArgsParams struct {\n\tFoo int32\n\tBar int32\n}\n\nfunc (q *Queries) CallInsertDataSqlcArgs(ctx context.Context, arg CallInsertDataSqlcArgsParams) error {\n\t_, err := q.db.ExecContext(ctx, callInsertDataSqlcArgs, arg.Foo, arg.Bar)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/mysql/query.sql",
    "content": "-- name: CallInsertData :exec\nCALL insert_data(?, ?);\n\n-- name: CallInsertDataNoArgs :exec\nCALL insert_data(1, 2);\n\n-- name: CallInsertDataSqlcArgs :exec\nCALL insert_data(sqlc.arg('foo'), sqlc.arg('bar'));\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/mysql/schema.sql",
    "content": "CREATE TABLE tbl (\n    value int\n);\n\nCREATE PROCEDURE insert_data(a int, b int)\nBEGIN\n    INSERT INTO tbl VALUES (a);\n    INSERT INTO tbl VALUES (b);\nEND;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Tbl struct {\n\tValue sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst callInsertData = `-- name: CallInsertData :exec\nCALL insert_data($1, $2)\n`\n\ntype CallInsertDataParams struct {\n\tA int32\n\tB int32\n}\n\nfunc (q *Queries) CallInsertData(ctx context.Context, arg CallInsertDataParams) error {\n\t_, err := q.db.Exec(ctx, callInsertData, arg.A, arg.B)\n\treturn err\n}\n\nconst callInsertDataNamed = `-- name: CallInsertDataNamed :exec\nCALL insert_data(b => $1, a => $2)\n`\n\ntype CallInsertDataNamedParams struct {\n\tB int32\n\tA int32\n}\n\nfunc (q *Queries) CallInsertDataNamed(ctx context.Context, arg CallInsertDataNamedParams) error {\n\t_, err := q.db.Exec(ctx, callInsertDataNamed, arg.B, arg.A)\n\treturn err\n}\n\nconst callInsertDataNoArgs = `-- name: CallInsertDataNoArgs :exec\nCALL insert_data(1, 2)\n`\n\nfunc (q *Queries) CallInsertDataNoArgs(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, callInsertDataNoArgs)\n\treturn err\n}\n\nconst callInsertDataSqlcArgs = `-- name: CallInsertDataSqlcArgs :exec\nCALL insert_data($1, $2)\n`\n\ntype CallInsertDataSqlcArgsParams struct {\n\tFoo int32\n\tBar int32\n}\n\nfunc (q *Queries) CallInsertDataSqlcArgs(ctx context.Context, arg CallInsertDataSqlcArgsParams) error {\n\t_, err := q.db.Exec(ctx, callInsertDataSqlcArgs, arg.Foo, arg.Bar)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v4/query.sql",
    "content": "-- name: CallInsertData :exec\nCALL insert_data($1, $2);\n\n-- name: CallInsertDataNoArgs :exec\nCALL insert_data(1, 2);\n\n-- name: CallInsertDataNamed :exec\nCALL insert_data(b => $1, a => $2);\n\n-- name: CallInsertDataSqlcArgs :exec\nCALL insert_data(sqlc.arg('foo'), sqlc.arg('bar'));\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE tbl (\n        value integer\n);\n\n-- https://www.postgresql.org/docs/current/sql-createprocedure.html\nCREATE PROCEDURE insert_data(a integer, b integer)\nLANGUAGE SQL\nAS $$\nINSERT INTO tbl VALUES (a);\nINSERT INTO tbl VALUES (b);\n$$;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Tbl struct {\n\tValue pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst callInsertData = `-- name: CallInsertData :exec\nCALL insert_data($1, $2)\n`\n\ntype CallInsertDataParams struct {\n\tA int32\n\tB int32\n}\n\nfunc (q *Queries) CallInsertData(ctx context.Context, arg CallInsertDataParams) error {\n\t_, err := q.db.Exec(ctx, callInsertData, arg.A, arg.B)\n\treturn err\n}\n\nconst callInsertDataNamed = `-- name: CallInsertDataNamed :exec\nCALL insert_data(b => $1, a => $2)\n`\n\ntype CallInsertDataNamedParams struct {\n\tB int32\n\tA int32\n}\n\nfunc (q *Queries) CallInsertDataNamed(ctx context.Context, arg CallInsertDataNamedParams) error {\n\t_, err := q.db.Exec(ctx, callInsertDataNamed, arg.B, arg.A)\n\treturn err\n}\n\nconst callInsertDataNoArgs = `-- name: CallInsertDataNoArgs :exec\nCALL insert_data(1, 2)\n`\n\nfunc (q *Queries) CallInsertDataNoArgs(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, callInsertDataNoArgs)\n\treturn err\n}\n\nconst callInsertDataSqlcArgs = `-- name: CallInsertDataSqlcArgs :exec\nCALL insert_data($1, $2)\n`\n\ntype CallInsertDataSqlcArgsParams struct {\n\tFoo int32\n\tBar int32\n}\n\nfunc (q *Queries) CallInsertDataSqlcArgs(ctx context.Context, arg CallInsertDataSqlcArgsParams) error {\n\t_, err := q.db.Exec(ctx, callInsertDataSqlcArgs, arg.Foo, arg.Bar)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v5/query.sql",
    "content": "-- name: CallInsertData :exec\nCALL insert_data($1, $2);\n\n-- name: CallInsertDataNoArgs :exec\nCALL insert_data(1, 2);\n\n-- name: CallInsertDataNamed :exec\nCALL insert_data(b => $1, a => $2);\n\n-- name: CallInsertDataSqlcArgs :exec\nCALL insert_data(sqlc.arg('foo'), sqlc.arg('bar'));\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE tbl (\n        value integer\n);\n\n-- https://www.postgresql.org/docs/current/sql-createprocedure.html\nCREATE PROCEDURE insert_data(a integer, b integer)\nLANGUAGE SQL\nAS $$\nINSERT INTO tbl VALUES (a);\nINSERT INTO tbl VALUES (b);\n$$;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Tbl struct {\n\tValue sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst callInsertData = `-- name: CallInsertData :exec\nCALL insert_data($1, $2)\n`\n\ntype CallInsertDataParams struct {\n\tA int32\n\tB int32\n}\n\nfunc (q *Queries) CallInsertData(ctx context.Context, arg CallInsertDataParams) error {\n\t_, err := q.db.ExecContext(ctx, callInsertData, arg.A, arg.B)\n\treturn err\n}\n\nconst callInsertDataNamed = `-- name: CallInsertDataNamed :exec\nCALL insert_data(b => $1, a => $2)\n`\n\ntype CallInsertDataNamedParams struct {\n\tB int32\n\tA int32\n}\n\nfunc (q *Queries) CallInsertDataNamed(ctx context.Context, arg CallInsertDataNamedParams) error {\n\t_, err := q.db.ExecContext(ctx, callInsertDataNamed, arg.B, arg.A)\n\treturn err\n}\n\nconst callInsertDataNoArgs = `-- name: CallInsertDataNoArgs :exec\nCALL insert_data(1, 2)\n`\n\nfunc (q *Queries) CallInsertDataNoArgs(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, callInsertDataNoArgs)\n\treturn err\n}\n\nconst callInsertDataSqlcArgs = `-- name: CallInsertDataSqlcArgs :exec\nCALL insert_data($1, $2)\n`\n\ntype CallInsertDataSqlcArgsParams struct {\n\tFoo int32\n\tBar int32\n}\n\nfunc (q *Queries) CallInsertDataSqlcArgs(ctx context.Context, arg CallInsertDataSqlcArgsParams) error {\n\t_, err := q.db.ExecContext(ctx, callInsertDataSqlcArgs, arg.Foo, arg.Bar)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/stdlib/query.sql",
    "content": "-- name: CallInsertData :exec\nCALL insert_data($1, $2);\n\n-- name: CallInsertDataNoArgs :exec\nCALL insert_data(1, 2);\n\n-- name: CallInsertDataNamed :exec\nCALL insert_data(b => $1, a => $2);\n\n-- name: CallInsertDataSqlcArgs :exec\nCALL insert_data(sqlc.arg('foo'), sqlc.arg('bar'));\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE tbl (\n        value integer\n);\n\n-- https://www.postgresql.org/docs/current/sql-createprocedure.html\nCREATE PROCEDURE insert_data(a integer, b integer)\nLANGUAGE SQL\nAS $$\nINSERT INTO tbl VALUES (a);\nINSERT INTO tbl VALUES (b);\n$$;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_procedure/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Venue struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/mysql/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/mysql/schema.sql",
    "content": "CREATE TABLE venues (name text);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Venue struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE venues (name text);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Venue struct {\n\tName pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE venues (name text);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Venue struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE venues (name text);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Venue struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/sqlite/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/sqlite/schema.sql",
    "content": "CREATE TABLE venues (name text);"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA int32\n\tB int32\n\tC sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (\n\tPRIMARY KEY (a, b) INCLUDE (c),\n\ta integer,\n\tb integer,\n\tc integer\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tA int32\n\tB int32\n\tC pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (\n\tPRIMARY KEY (a, b) INCLUDE (c),\n\ta integer,\n\tb integer,\n\tc integer\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA int32\n\tB int32\n\tC sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (\n\tPRIMARY KEY (a, b) INCLUDE (c),\n\ta integer,\n\tb integer,\n\tc integer\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_include/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\n\t\"github.com/google/uuid\"\n)\n\ntype Llc struct {\n\tPartyID           uuid.UUID\n\tName              string\n\tLegalName         string\n\tIncorporationDate sql.NullTime\n}\n\ntype Organisation struct {\n\tPartyID   uuid.UUID\n\tName      string\n\tLegalName string\n}\n\ntype Party struct {\n\tPartyID uuid.UUID\n\tName    string\n}\n\ntype Person struct {\n\tPartyID   uuid.UUID\n\tName      string\n\tFirstName string\n\tLastName  string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAllOrganisations = `-- name: GetAllOrganisations :many\nSELECT party_id, name, legal_name FROM organisation\n`\n\nfunc (q *Queries) GetAllOrganisations(ctx context.Context) ([]Organisation, error) {\n\trows, err := q.db.Query(ctx, getAllOrganisations)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Organisation\n\tfor rows.Next() {\n\t\tvar i Organisation\n\t\tif err := rows.Scan(&i.PartyID, &i.Name, &i.LegalName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getAllParties = `-- name: GetAllParties :many\nSELECT party_id, name FROM party\n`\n\nfunc (q *Queries) GetAllParties(ctx context.Context) ([]Party, error) {\n\trows, err := q.db.Query(ctx, getAllParties)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Party\n\tfor rows.Next() {\n\t\tvar i Party\n\t\tif err := rows.Scan(&i.PartyID, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getAllPeople = `-- name: GetAllPeople :many\nSELECT party_id, name, first_name, last_name FROM person\n`\n\nfunc (q *Queries) GetAllPeople(ctx context.Context) ([]Person, error) {\n\trows, err := q.db.Query(ctx, getAllPeople)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Person\n\tfor rows.Next() {\n\t\tvar i Person\n\t\tif err := rows.Scan(\n\t\t\t&i.PartyID,\n\t\t\t&i.Name,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetAllParties :many\nSELECT * FROM party;\n\n-- name: GetAllPeople :many\nSELECT * FROM person;\n\n-- name: GetAllOrganisations :many\nSELECT * FROM organisation;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE party (\n    party_id uuid PRIMARY KEY,\n    name text NOT NULL\n);\n\nCREATE TABLE person (\n    first_name text NOT NULL,\n    last_name text NOT NULL\n) INHERITS (party);\n\nCREATE TABLE organisation (\n    legal_name text\n) INHERITS (party);\n\nCREATE TABLE llc (\n   incorporation_date timestamp,\n   legal_name text NOT NULL\n) INHERITS (organisation); "
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Llc struct {\n\tPartyID           pgtype.UUID\n\tName              string\n\tLegalName         string\n\tIncorporationDate pgtype.Timestamp\n}\n\ntype Organisation struct {\n\tPartyID   pgtype.UUID\n\tName      string\n\tLegalName string\n}\n\ntype Party struct {\n\tPartyID pgtype.UUID\n\tName    string\n}\n\ntype Person struct {\n\tPartyID   pgtype.UUID\n\tName      string\n\tFirstName string\n\tLastName  string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAllOrganisations = `-- name: GetAllOrganisations :many\nSELECT party_id, name, legal_name FROM organisation\n`\n\nfunc (q *Queries) GetAllOrganisations(ctx context.Context) ([]Organisation, error) {\n\trows, err := q.db.Query(ctx, getAllOrganisations)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Organisation\n\tfor rows.Next() {\n\t\tvar i Organisation\n\t\tif err := rows.Scan(&i.PartyID, &i.Name, &i.LegalName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getAllParties = `-- name: GetAllParties :many\nSELECT party_id, name FROM party\n`\n\nfunc (q *Queries) GetAllParties(ctx context.Context) ([]Party, error) {\n\trows, err := q.db.Query(ctx, getAllParties)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Party\n\tfor rows.Next() {\n\t\tvar i Party\n\t\tif err := rows.Scan(&i.PartyID, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getAllPeople = `-- name: GetAllPeople :many\nSELECT party_id, name, first_name, last_name FROM person\n`\n\nfunc (q *Queries) GetAllPeople(ctx context.Context) ([]Person, error) {\n\trows, err := q.db.Query(ctx, getAllPeople)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Person\n\tfor rows.Next() {\n\t\tvar i Person\n\t\tif err := rows.Scan(\n\t\t\t&i.PartyID,\n\t\t\t&i.Name,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetAllParties :many\nSELECT * FROM party;\n\n-- name: GetAllPeople :many\nSELECT * FROM person;\n\n-- name: GetAllOrganisations :many\nSELECT * FROM organisation;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE party (\n    party_id uuid PRIMARY KEY,\n    name text NOT NULL\n);\n\nCREATE TABLE person (\n    first_name text NOT NULL,\n    last_name text NOT NULL\n) INHERITS (party);\n\nCREATE TABLE organisation (\n    legal_name text\n) INHERITS (party);\n\nCREATE TABLE llc (\n   incorporation_date timestamp,\n   legal_name text NOT NULL\n) INHERITS (organisation); "
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\n\t\"github.com/google/uuid\"\n)\n\ntype Llc struct {\n\tPartyID           uuid.UUID\n\tName              string\n\tLegalName         string\n\tIncorporationDate sql.NullTime\n}\n\ntype Organisation struct {\n\tPartyID   uuid.UUID\n\tName      string\n\tLegalName string\n}\n\ntype Party struct {\n\tPartyID uuid.UUID\n\tName    string\n}\n\ntype Person struct {\n\tPartyID   uuid.UUID\n\tName      string\n\tFirstName string\n\tLastName  string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAllOrganisations = `-- name: GetAllOrganisations :many\nSELECT party_id, name, legal_name FROM organisation\n`\n\nfunc (q *Queries) GetAllOrganisations(ctx context.Context) ([]Organisation, error) {\n\trows, err := q.db.QueryContext(ctx, getAllOrganisations)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Organisation\n\tfor rows.Next() {\n\t\tvar i Organisation\n\t\tif err := rows.Scan(&i.PartyID, &i.Name, &i.LegalName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getAllParties = `-- name: GetAllParties :many\nSELECT party_id, name FROM party\n`\n\nfunc (q *Queries) GetAllParties(ctx context.Context) ([]Party, error) {\n\trows, err := q.db.QueryContext(ctx, getAllParties)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Party\n\tfor rows.Next() {\n\t\tvar i Party\n\t\tif err := rows.Scan(&i.PartyID, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getAllPeople = `-- name: GetAllPeople :many\nSELECT party_id, name, first_name, last_name FROM person\n`\n\nfunc (q *Queries) GetAllPeople(ctx context.Context) ([]Person, error) {\n\trows, err := q.db.QueryContext(ctx, getAllPeople)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Person\n\tfor rows.Next() {\n\t\tvar i Person\n\t\tif err := rows.Scan(\n\t\t\t&i.PartyID,\n\t\t\t&i.Name,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/stdlib/query.sql",
    "content": "-- name: GetAllParties :many\nSELECT * FROM party;\n\n-- name: GetAllPeople :many\nSELECT * FROM person;\n\n-- name: GetAllOrganisations :many\nSELECT * FROM organisation;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE party (\n    party_id uuid PRIMARY KEY,\n    name text NOT NULL\n);\n\nCREATE TABLE person (\n    first_name text NOT NULL,\n    last_name text NOT NULL\n) INHERITS (party);\n\nCREATE TABLE organisation (\n    legal_name text\n) INHERITS (party);\n\nCREATE TABLE llc (\n   incorporation_date timestamp,\n   legal_name text NOT NULL\n) INHERITS (organisation); "
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_inherits/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_invalid_inherits/postgresql/stdlib/exec.json",
    "content": "{\n    \"contexts\": [\"base\"],\n    \"meta\": {\n        \"invalid_schema\": true\n    }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_invalid_inherits/postgresql/stdlib/query.sql",
    "content": "-- name: GetAllParties :many\nSELECT * FROM party;\n\n-- name: GetAllOrganisations :many\nSELECT * FROM organisation;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_invalid_inherits/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE party (\n    name text NOT NULL\n);\n\nCREATE TABLE organisation (\n    name integer NOT NULL\n) INHERITS (party);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_invalid_inherits/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_invalid_inherits/postgresql/stdlib/stderr.txt",
    "content": "# package querytest\nschema.sql:1:1: column \"name\" has a type conflict\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_like/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/481\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_like/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_like/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Change struct {\n\tRanked int32\n}\n\ntype ChangesRanked struct {\n\tRanked                 int32\n\tRankByEffectSize       int32\n\tRankByAbsPercentChange int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_like/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst allRanked = `-- name: AllRanked :many\nSELECT ranked, rank_by_effect_size, rank_by_abs_percent_change FROM changes_ranked\n`\n\nfunc (q *Queries) AllRanked(ctx context.Context) ([]ChangesRanked, error) {\n\trows, err := q.db.Query(ctx, allRanked)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ChangesRanked\n\tfor rows.Next() {\n\t\tvar i ChangesRanked\n\t\tif err := rows.Scan(&i.Ranked, &i.RankByEffectSize, &i.RankByAbsPercentChange); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_like/postgresql/pgx/query.sql",
    "content": "-- name: AllRanked :many\nSELECT * FROM changes_ranked;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_like/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE changes (\n    ranked INT NOT NULL\n);\n\nCREATE TABLE changes_ranked (\n    LIKE changes INCLUDING ALL,\n    rank_by_effect_size INT NOT NULL,\n    rank_by_abs_percent_change INT NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_like/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/google/uuid\"\n)\n\ntype Foo struct {\n\tID      uuid.UUID\n\tOtherID uuid.UUID\n}\n\ntype Foo1 struct {\n\tID      uuid.UUID\n\tOtherID uuid.UUID\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (\n    id uuid NOT NULL,\n    other_id uuid NOT NULL\n) PARTITION BY HASH (other_id);\n\nCREATE TABLE foo_1 PARTITION OF foo FOR VALUES WITH (MODULUS 10, REMAINDER 0);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tID      pgtype.UUID\n\tOtherID pgtype.UUID\n}\n\ntype Foo1 struct {\n\tID      pgtype.UUID\n\tOtherID pgtype.UUID\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (\n    id uuid NOT NULL,\n    other_id uuid NOT NULL\n) PARTITION BY HASH (other_id);\n\nCREATE TABLE foo_1 PARTITION OF foo FOR VALUES WITH (MODULUS 10, REMAINDER 0);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/google/uuid\"\n)\n\ntype Foo struct {\n\tID      uuid.UUID\n\tOtherID uuid.UUID\n}\n\ntype Foo1 struct {\n\tID      uuid.UUID\n\tOtherID uuid.UUID\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (\n    id uuid NOT NULL,\n    other_id uuid NOT NULL\n) PARTITION BY HASH (other_id);\n\nCREATE TABLE foo_1 PARTITION OF foo FOR VALUES WITH (MODULUS 10, REMAINDER 0);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_partition/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype XVenue struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/mysql/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/mysql/schema.sql",
    "content": "CREATE TABLE `x-venues` (name text);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype XVenue struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE \"x-venues\" (name text);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype XVenue struct {\n\tName pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE \"x-venues\" (name text);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype XVenue struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE \"x-venues\" (name text);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_reserved/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Venue struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_strict/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_strict/sqlite/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_strict/sqlite/schema.sql",
    "content": "CREATE TABLE venues (name text) STRICT;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_strict/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_unknown_type/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1917\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_unknown_type/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"unknown\"],\n  \"meta\": {\n      \"invalid_schema\": true\n  }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_unknown_type/postgresql/pgx/query.sql",
    "content": "-- name: SelectOne :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_unknown_type/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE test_table (\n    id STRING\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_unknown_type/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_unknown_type/postgresql/pgx/stderr.txt",
    "content": "# package querytest\nquery.sql:1:1: rpc error: code = FailedPrecondition desc = type \"string\" does not exist (42704)\nCREATE TABLE test_table (\n    id STRING\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_without_rowid/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_without_rowid/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Arena struct {\n\tName     string\n\tLocation sql.NullString\n\tSize     int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_without_rowid/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_without_rowid/sqlite/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_without_rowid/sqlite/schema.sql",
    "content": "CREATE TABLE IF NOT EXISTS arenas (name text PRIMARY KEY, location text, size int NOT NULL) WITHOUT ROWID;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_table_without_rowid/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"time\"\n\n\t\"github.com/google/uuid\"\n)\n\ntype TddTest struct {\n\tTestID    uuid.UUID\n\tTitle     string\n\tDescr     string\n\tTsCreated time.Time\n\tTsUpdated time.Time\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA tdd;\n\nCREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";\nCREATE EXTENSION IF NOT EXISTS pgcrypto\n    SCHEMA public\n    VERSION \"1.3\";\n\nCREATE FUNCTION tdd.trigger_set_timestamp() RETURNS trigger\nLANGUAGE plpgsql\nAS $$BEGIN\n  NEW.ts_updated = NOW();\n  RETURN NEW;\nEND;\n$$;\n\nCREATE TABLE tdd.tests (\n    test_id uuid DEFAULT uuid_generate_v4() PRIMARY KEY,\n    title text DEFAULT ''::text NOT NULL,\n    descr text DEFAULT ''::text NOT NULL,\n    ts_created timestamp with time zone DEFAULT now() NOT NULL,\n    ts_updated timestamp with time zone DEFAULT now() NOT NULL\n);\n\nCREATE TRIGGER set_timestamp BEFORE UPDATE ON tdd.tests FOR EACH ROW EXECUTE FUNCTION tdd.trigger_set_timestamp();\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype TddTest struct {\n\tTestID    pgtype.UUID\n\tTitle     string\n\tDescr     string\n\tTsCreated pgtype.Timestamptz\n\tTsUpdated pgtype.Timestamptz\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA tdd;\n\nCREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";\nCREATE EXTENSION IF NOT EXISTS pgcrypto\n    SCHEMA public\n    VERSION \"1.3\";\n\nCREATE FUNCTION tdd.trigger_set_timestamp() RETURNS trigger\nLANGUAGE plpgsql\nAS $$BEGIN\n  NEW.ts_updated = NOW();\n  RETURN NEW;\nEND;\n$$;\n\nCREATE TABLE tdd.tests (\n    test_id uuid DEFAULT uuid_generate_v4() PRIMARY KEY,\n    title text DEFAULT ''::text NOT NULL,\n    descr text DEFAULT ''::text NOT NULL,\n    ts_created timestamp with time zone DEFAULT now() NOT NULL,\n    ts_updated timestamp with time zone DEFAULT now() NOT NULL\n);\n\nCREATE TRIGGER set_timestamp BEFORE UPDATE ON tdd.tests FOR EACH ROW EXECUTE FUNCTION tdd.trigger_set_timestamp();\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"time\"\n\n\t\"github.com/google/uuid\"\n)\n\ntype TddTest struct {\n\tTestID    uuid.UUID\n\tTitle     string\n\tDescr     string\n\tTsCreated time.Time\n\tTsUpdated time.Time\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/stdlib/schema.sql",
    "content": "CREATE SCHEMA tdd;\n\nCREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";\nCREATE EXTENSION IF NOT EXISTS pgcrypto\n    SCHEMA public\n    VERSION \"1.3\";\n\nCREATE FUNCTION tdd.trigger_set_timestamp() RETURNS trigger\nLANGUAGE plpgsql\nAS $$BEGIN\n  NEW.ts_updated = NOW();\n  RETURN NEW;\nEND;\n$$;\n\nCREATE TABLE tdd.tests (\n    test_id uuid DEFAULT uuid_generate_v4() PRIMARY KEY,\n    title text DEFAULT ''::text NOT NULL,\n    descr text DEFAULT ''::text NOT NULL,\n    ts_created timestamp with time zone DEFAULT now() NOT NULL,\n    ts_updated timestamp with time zone DEFAULT now() NOT NULL\n);\n\nCREATE TRIGGER set_timestamp BEFORE UPDATE ON tdd.tests FOR EACH ROW EXECUTE FUNCTION tdd.trigger_set_timestamp();\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Customer struct {\n\tCustID   int64\n\tCustName sql.NullString\n\tCustAddr sql.NullString\n}\n\ntype CustomerAddress struct {\n\tCustID   int64\n\tCustAddr sql.NullString\n}\n\ntype TriggerCustomer struct {\n\tName    string\n\tAddress sql.NullString\n}\n\ntype TriggerOrder struct {\n\tID           int64\n\tCustomerName sql.NullString\n\tAddress      sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/sqlite/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/sqlite/schema.sql",
    "content": "/* examples copied from https://www.sqlite.org/lang_createtrigger.html\n   only expectation in sqlc is that they parse, codegen is unaffected */\n\nCREATE TABLE trigger_customers (\n    name TEXT PRIMARY KEY,\n    address TEXT\n);\n\nCREATE TABLE trigger_orders (\n    id INTEGER PRIMARY KEY,\n    customer_name TEXT,\n    address TEXT\n);\n\nCREATE TRIGGER update_customer_address UPDATE OF address ON trigger_customers\nBEGIN\n    UPDATE trigger_orders SET address = new.address WHERE customer_name = old.name;\nEND;\n\nCREATE TABLE customer(\n                         cust_id INTEGER PRIMARY KEY,\n                         cust_name TEXT,\n                         cust_addr TEXT\n);\nCREATE VIEW customer_address AS\nSELECT cust_id, cust_addr FROM customer;\nCREATE TRIGGER cust_addr_chng\n    INSTEAD OF UPDATE OF cust_addr ON customer_address\nBEGIN\n    UPDATE customer SET cust_addr=NEW.cust_addr\n    WHERE cust_id=NEW.cust_id;\nEND;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_create_trigger/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/mysql/README.md",
    "content": "The MySQL parser currently does not support user-defined functions. See\nhttps://github.com/pingcap/parser/issues/988.\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v4/schema.sql",
    "content": "CREATE FUNCTION foo(bar text) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;\nDROP FUNCTION foo;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v5/schema.sql",
    "content": "CREATE FUNCTION foo(bar text) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;\nDROP FUNCTION foo;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/stdlib/schema.sql",
    "content": "CREATE FUNCTION foo(bar text) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;\nDROP FUNCTION foo;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/mysql/README.md",
    "content": "The MySQL parser currently does not support user-defined functions. See\nhttps://github.com/pingcap/parser/issues/988.\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v4/schema.sql",
    "content": "CREATE FUNCTION foo(bar text) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;\nDROP FUNCTION foo(text);"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v5/schema.sql",
    "content": "CREATE FUNCTION foo(bar text) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;\nDROP FUNCTION foo(text);"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/stdlib/schema.sql",
    "content": "CREATE FUNCTION foo(bar text) RETURNS bool AS $$ SELECT true $$ LANGUAGE sql;\nDROP FUNCTION foo(text);"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_args/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/mysql/README.md",
    "content": "The MySQL parser currently does not support user-defined functions. See\nhttps://github.com/pingcap/parser/issues/988.\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v4/schema.sql",
    "content": "DROP FUNCTION IF EXISTS bar;\nDROP FUNCTION IF EXISTS bar();"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v5/schema.sql",
    "content": "DROP FUNCTION IF EXISTS bar;\nDROP FUNCTION IF EXISTS bar();"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/stdlib/schema.sql",
    "content": "DROP FUNCTION IF EXISTS bar;\nDROP FUNCTION IF EXISTS bar();"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_function_if_exists/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/mysql/exec.json",
    "content": "{\n    \"contexts\": [\"base\"],\n    \"meta\": {\n        \"invalid_schema\": true\n    }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/mysql/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/mysql/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (baz text);\nDROP SCHEMA foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (baz text);\nDROP SCHEMA foo CASCADE;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (baz text);\nDROP SCHEMA foo CASCADE;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/stdlib/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (baz text);\nDROP SCHEMA foo CASCADE;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v4/schema.sql",
    "content": "DROP SCHEMA IF EXISTS foo;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v5/schema.sql",
    "content": "DROP SCHEMA IF EXISTS foo;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/stdlib/schema.sql",
    "content": "DROP SCHEMA IF EXISTS foo;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_schema_if_exists/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE venues ();\nDROP TABLE venues;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE venues ();\nDROP TABLE venues;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE venues ();\nDROP TABLE venues;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/sqlite/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/sqlite/schema.sql",
    "content": "CREATE TABLE venues (hi text);\nDROP TABLE venues;\n\nCREATE TABLE Authors (id integer);\nDROP TABLE Authors;\n\nCREATE TABLE \"Books\" (id integer);\nDROP TABLE \"Books\";\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE venues ();\nDROP TABLE IF EXISTS venues;\nDROP TABLE IF EXISTS venues;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE venues ();\nDROP TABLE IF EXISTS venues;\nDROP TABLE IF EXISTS venues;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE venues ();\nDROP TABLE IF EXISTS venues;\nDROP TABLE IF EXISTS venues;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/sqlite/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/sqlite/schema.sql",
    "content": "CREATE TABLE venues (hi text);\nDROP TABLE IF EXISTS venues;\nDROP TABLE IF EXISTS venues;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_if_exists/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE venues ();\nDROP TABLE public.venues;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE venues ();\nDROP TABLE public.venues;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE venues ();\nDROP TABLE public.venues;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_table_in_schema/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('open', 'closed');\nDROP TYPE status;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('open', 'closed');\nDROP TYPE status;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('open', 'closed');\nDROP TYPE status;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('open', 'closed');\nDROP TYPE IF EXISTS status;\nDROP TYPE IF EXISTS status;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('open', 'closed');\nDROP TYPE IF EXISTS status;\nDROP TYPE IF EXISTS status;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('open', 'closed');\nDROP TYPE IF EXISTS status;\nDROP TYPE IF EXISTS status;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_if_exists/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('open', 'closed');\nDROP TYPE public.status;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('open', 'closed');\nDROP TYPE public.status;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE status AS ENUM ('open', 'closed');\nDROP TYPE public.status;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_drop_type_in_schema/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Description struct {\n\tID  string\n\tTxt sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v4/schema.sql",
    "content": "create table descriptions (\n    id varchar(32) GENERATED ALWAYS AS (MD5(txt)) STORED,\n    txt text,\n    primary key (id)\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Description struct {\n\tID  string\n\tTxt pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v5/schema.sql",
    "content": "create table descriptions (\n    id varchar(32) GENERATED ALWAYS AS (MD5(txt)) STORED,\n    txt text,\n    primary key (id)\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Description struct {\n\tID  string\n\tTxt sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/stdlib/schema.sql",
    "content": "create table descriptions (\n    id varchar(32) GENERATED ALWAYS AS (MD5(txt)) STORED,\n    txt text,\n    primary key (id)\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_generated_columns/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_materialized_views_invalid/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1545\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_materialized_views_invalid/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_materialized_views_invalid/postgresql/pgx/query.sql",
    "content": "-- name: GetTotalEarned :one\nSELECT COALESCE(SUM(earned), 0) as total_earned\nFROM grouped_kpis\nWHERE day = @day;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_materialized_views_invalid/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE kpis (\n  ts TIMESTAMPTZ,\n  event_id TEXT NOT NULL\n);\n\nCREATE MATERIALIZED VIEW IF NOT EXISTS grouped_kpis AS\nSELECT date_trunc('1 day', ts) as day, COUNT(*)\nFROM kpis\nGROUP BY 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_materialized_views_invalid/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_materialized_views_invalid/postgresql/pgx/stderr.txt",
    "content": "# package querytest\nquery.sql:2:21: column \"earned\" does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype NewTable struct {\n\tVal sql.NullInt32\n}\n\ntype OldTable struct {\n\tVal sql.NullInt32\n}\n\ntype PgTempMigrate struct {\n\tVal sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v4/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE old_table (val SERIAL);\nCREATE TABLE new_table (val SERIAL);\nCREATE TABLE pg_temp.migrate (val SERIAL);\nINSERT INTO pg_temp.migrate (val) SELECT val FROM old_table;\nINSERT INTO new_table (val) SELECT val FROM pg_temp.migrate;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype NewTable struct {\n\tVal pgtype.Int4\n}\n\ntype OldTable struct {\n\tVal pgtype.Int4\n}\n\ntype PgTempMigrate struct {\n\tVal pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v5/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE old_table (val SERIAL);\nCREATE TABLE new_table (val SERIAL);\nCREATE TABLE pg_temp.migrate (val SERIAL);\nINSERT INTO pg_temp.migrate (val) SELECT val FROM old_table;\nINSERT INTO new_table (val) SELECT val FROM pg_temp.migrate;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype NewTable struct {\n\tVal sql.NullInt32\n}\n\ntype OldTable struct {\n\tVal sql.NullInt32\n}\n\ntype PgTempMigrate struct {\n\tVal sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/stdlib/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE old_table (val SERIAL);\nCREATE TABLE new_table (val SERIAL);\nCREATE TABLE pg_temp.migrate (val SERIAL);\nINSERT INTO pg_temp.migrate (val) SELECT val FROM old_table;\nINSERT INTO new_table (val) SELECT val FROM pg_temp.migrate;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_pg_temp/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_rename_drop_materialized_views/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/3371"
  },
  {
    "path": "internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v4/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype AuthorsMv struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAuthorMv = `-- name: GetAuthorMv :one\nSELECT id, name, bio FROM authors_mv\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthorMv(ctx context.Context, id int64) (AuthorsMv, error) {\n\trow := q.db.QueryRow(ctx, getAuthorMv, id)\n\tvar i AuthorsMv\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetAuthorMv :one\nSELECT * FROM authors_mv\nWHERE id = $1 LIMIT 1;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE authors (\n    id   BIGSERIAL PRIMARY KEY,\n    name text      NOT NULL,\n    bio  text\n);\n\nCREATE MATERIALIZED VIEW authors_mv AS (\n  SELECT * FROM authors\n);\n\nCREATE MATERIALIZED VIEW authors_mv_new AS (\n  SELECT * FROM authors\n);\n\nALTER MATERIALIZED VIEW authors_mv RENAME TO authors_mv_old;\nALTER MATERIALIZED VIEW authors_mv_new RENAME TO authors_mv;\n\nDROP MATERIALIZED VIEW authors_mv_old;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v4/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v4\"\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v5/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n\ntype AuthorsMv struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAuthorMv = `-- name: GetAuthorMv :one\nSELECT id, name, bio FROM authors_mv\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthorMv(ctx context.Context, id int64) (AuthorsMv, error) {\n\trow := q.db.QueryRow(ctx, getAuthorMv, id)\n\tvar i AuthorsMv\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetAuthorMv :one\nSELECT * FROM authors_mv\nWHERE id = $1 LIMIT 1;"
  },
  {
    "path": "internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE authors (\n    id   BIGSERIAL PRIMARY KEY,\n    name text      NOT NULL,\n    bio  text\n);\n\nCREATE MATERIALIZED VIEW authors_mv AS (\n  SELECT * FROM authors\n);\n\nCREATE MATERIALIZED VIEW authors_mv_new AS (\n  SELECT * FROM authors\n);\n\nALTER MATERIALIZED VIEW authors_mv RENAME TO authors_mv_old;\nALTER MATERIALIZED VIEW authors_mv_new RENAME TO authors_mv;\n\nDROP MATERIALIZED VIEW authors_mv_old;\n"
  },
  {
    "path": "internal/endtoend/testdata/ddl_rename_drop_materialized_views/postgresql/pgx/v5/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteFrom = `-- name: DeleteFrom :exec\nDELETE FROM foo WHERE id = ?\n`\n\nfunc (q *Queries) DeleteFrom(ctx context.Context, id string) error {\n\t_, err := q.db.ExecContext(ctx, deleteFrom, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/mysql/query.sql",
    "content": "/* name: DeleteFrom :exec */\nDELETE FROM foo WHERE id = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/mysql/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteFrom = `-- name: DeleteFrom :exec\nDELETE FROM foo WHERE id = $1\n`\n\nfunc (q *Queries) DeleteFrom(ctx context.Context, id string) error {\n\t_, err := q.db.Exec(ctx, deleteFrom, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/pgx/v4/query.sql",
    "content": "-- name: DeleteFrom :exec\nDELETE FROM foo WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteFrom = `-- name: DeleteFrom :exec\nDELETE FROM foo WHERE id = $1\n`\n\nfunc (q *Queries) DeleteFrom(ctx context.Context, id string) error {\n\t_, err := q.db.Exec(ctx, deleteFrom, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/pgx/v5/query.sql",
    "content": "-- name: DeleteFrom :exec\nDELETE FROM foo WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteFrom = `-- name: DeleteFrom :exec\nDELETE FROM foo WHERE id = $1\n`\n\nfunc (q *Queries) DeleteFrom(ctx context.Context, id string) error {\n\t_, err := q.db.ExecContext(ctx, deleteFrom, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/stdlib/query.sql",
    "content": "-- name: DeleteFrom :exec\nDELETE FROM foo WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteFrom = `-- name: DeleteFrom :exec\nDELETE FROM foo WHERE id = ?\n`\n\nfunc (q *Queries) DeleteFrom(ctx context.Context, id string) error {\n\t_, err := q.db.ExecContext(ctx, deleteFrom, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/sqlite/query.sql",
    "content": "-- name: DeleteFrom :exec\nDELETE FROM foo WHERE id = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/sqlite/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_from/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_inner_join/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_inner_join/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Author struct {\n\tID   uint32\n\tName string\n}\n\ntype AuthorBook struct {\n\tAuthorID uint32\n\tBookID   uint32\n}\n\ntype Book struct {\n\tID    uint32\n\tTitle string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_inner_join/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst removeAllAuthorsFromTheGreatGatsby = `-- name: RemoveAllAuthorsFromTheGreatGatsby :exec\nDELETE author_book\nFROM\n  author_book\n  INNER JOIN book ON book.id = author_book.book_id\nWHERE\n  book.title = 'The Great Gatsby'\n`\n\nfunc (q *Queries) RemoveAllAuthorsFromTheGreatGatsby(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, removeAllAuthorsFromTheGreatGatsby)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_inner_join/mysql/query.sql",
    "content": "/* name: RemoveAllAuthorsFromTheGreatGatsby :exec */\nDELETE author_book\nFROM\n  author_book\n  INNER JOIN book ON book.id = author_book.book_id\nWHERE\n  book.title = 'The Great Gatsby';"
  },
  {
    "path": "internal/endtoend/testdata/delete_inner_join/mysql/schema.sql",
    "content": "CREATE TABLE author (\n  id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,\n  name VARCHAR(255) NOT NULL\n);\n\nCREATE TABLE book (\n  id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,\n  title VARCHAR(255) NOT NULL\n);\n\nCREATE TABLE author_book (\n  author_id INT UNSIGNED NOT NULL,\n  book_id INT UNSIGNED NOT NULL,\n  CONSTRAINT `pk-author_book` PRIMARY KEY (author_id, book_id),\n  CONSTRAINT `fk-author_book-author-id` FOREIGN KEY (author_id) REFERENCES author (id),\n  CONSTRAINT `fk-author_book-book-id` FOREIGN KEY (book_id) REFERENCES book (id)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_inner_join/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_join/mysql/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_join/mysql/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\ntype JoinTable struct {\n\tID             uint64\n\tPrimaryTableID uint64\n\tOtherTableID   uint64\n\tIsActive       bool\n}\n\ntype PrimaryTable struct {\n\tID     uint64\n\tUserID uint64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_join/mysql/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst deleteJoin = `-- name: DeleteJoin :exec\nDELETE jt.*,\npt.*\nFROM\n        join_table as jt\n        JOIN primary_table as pt ON jt.primary_table_id = pt.id\nWHERE\n        jt.id = ?\n        AND pt.user_id = ?\n`\n\ntype DeleteJoinParams struct {\n\tID     uint64\n\tUserID uint64\n}\n\nfunc (q *Queries) DeleteJoin(ctx context.Context, arg DeleteJoinParams) error {\n\t_, err := q.db.ExecContext(ctx, deleteJoin, arg.ID, arg.UserID)\n\treturn err\n}\n\nconst deleteJoinWithSubquery = `-- name: DeleteJoinWithSubquery :exec\nDELETE pt\nFROM primary_table pt\nJOIN (SELECT 1 as id) jt ON pt.id = jt.id\n`\n\nfunc (q *Queries) DeleteJoinWithSubquery(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, deleteJoinWithSubquery)\n\treturn err\n}\n\nconst deleteLeftJoin = `-- name: DeleteLeftJoin :exec\nDELETE jt.*,\npt.*\nFROM\n        join_table as jt\n        LEFT JOIN primary_table as pt ON jt.primary_table_id = pt.id\nWHERE\n        jt.id = ?\n        AND pt.user_id = ?\n`\n\ntype DeleteLeftJoinParams struct {\n\tID     uint64\n\tUserID uint64\n}\n\nfunc (q *Queries) DeleteLeftJoin(ctx context.Context, arg DeleteLeftJoinParams) error {\n\t_, err := q.db.ExecContext(ctx, deleteLeftJoin, arg.ID, arg.UserID)\n\treturn err\n}\n\nconst deleteRightJoin = `-- name: DeleteRightJoin :exec\nDELETE jt.*,\npt.*\nFROM\n        join_table as jt\n        RIGHT JOIN primary_table as pt ON jt.primary_table_id = pt.id\nWHERE\n        jt.id = ?\n        AND pt.user_id = ?\n`\n\ntype DeleteRightJoinParams struct {\n\tID     uint64\n\tUserID uint64\n}\n\nfunc (q *Queries) DeleteRightJoin(ctx context.Context, arg DeleteRightJoinParams) error {\n\t_, err := q.db.ExecContext(ctx, deleteRightJoin, arg.ID, arg.UserID)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_join/mysql/query.sql",
    "content": "-- name: DeleteJoin :exec\nDELETE jt.*,\npt.*\nFROM\n        join_table as jt\n        JOIN primary_table as pt ON jt.primary_table_id = pt.id\nWHERE\n        jt.id = ?\n        AND pt.user_id = ?;\n\n-- name: DeleteLeftJoin :exec\nDELETE jt.*,\npt.*\nFROM\n        join_table as jt\n        LEFT JOIN primary_table as pt ON jt.primary_table_id = pt.id\nWHERE\n        jt.id = ?\n        AND pt.user_id = ?;\n\n-- name: DeleteRightJoin :exec\nDELETE jt.*,\npt.*\nFROM\n        join_table as jt\n        RIGHT JOIN primary_table as pt ON jt.primary_table_id = pt.id\nWHERE\n        jt.id = ?\n        AND pt.user_id = ?;\n\n-- name: DeleteJoinWithSubquery :exec\nDELETE pt\nFROM primary_table pt\nJOIN (SELECT 1 as id) jt ON pt.id = jt.id;\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_join/mysql/schema.sql",
    "content": "CREATE TABLE primary_table (\n        id bigint(20) unsigned NOT NULL AUTO_INCREMENT,\n        user_id bigint(20) unsigned NOT NULL,\n        PRIMARY KEY (id)\n);\n\nCREATE TABLE join_table (\n        id bigint(20) unsigned NOT NULL AUTO_INCREMENT,\n        primary_table_id bigint(20) unsigned NOT NULL,\n        other_table_id bigint(20) unsigned NOT NULL,\n        is_active tinyint(1) NOT NULL DEFAULT '0',\n        PRIMARY KEY (id)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_join/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"db\",\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_using/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1714\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_using/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_using/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_using/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype A struct {\n\tAID   pgtype.Text\n\tBIDFk pgtype.Text\n}\n\ntype B struct {\n\tBID pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_using/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getSomeDeletedNotOk = `-- name: GetSomeDeletedNotOk :many\nDELETE FROM a\nUSING b\nWHERE a.b_id_fk = b.b_id\nRETURNING b.b_id\n`\n\nfunc (q *Queries) GetSomeDeletedNotOk(ctx context.Context) ([]pgtype.Text, error) {\n\trows, err := q.db.Query(ctx, getSomeDeletedNotOk)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.Text\n\tfor rows.Next() {\n\t\tvar b_id pgtype.Text\n\t\tif err := rows.Scan(&b_id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, b_id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_using/postgresql/pgx/query.sql",
    "content": "-- name: GetSomeDeletedNotOk :many\nDELETE FROM a\nUSING b\nWHERE a.b_id_fk = b.b_id\nRETURNING b.b_id; -- column \"b_id\" does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_using/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE a\n(\n    a_id TEXT,\n    b_id_fk TEXT\n);\nCREATE TABLE b\n(\n    b_id TEXT\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/delete_using/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/diff_no_output/exec.json",
    "content": "{\n  \"command\": \"diff\"\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/diff_no_output/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/diff_no_output/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype Book struct {\n\tID    int64\n\tTitle string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/diff_no_output/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING id, name, bio\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, createAuthor, arg.Name, arg.Bio)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio FROM authors\nORDER BY bio\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectOne = `-- name: SelectOne :one\nSELECT 1\n`\n\nfunc (q *Queries) SelectOne(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, selectOne)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/diff_no_output/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY bio;\n\n-- name: SelectOne :one\nSELECT 1;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/diff_no_output/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n\nCREATE TABLE books (\n          id    BIGSERIAL PRIMARY KEY,\n          title text      NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/diff_no_output/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"gen\": {\n        \"go\": {\n          \"package\": \"authors\",\n          \"out\": \"go\"\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/diff_output/exec.json",
    "content": "{\n  \"command\": \"diff\"\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/diff_output/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/diff_output/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/diff_output/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING id, name, bio\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, createAuthor, arg.Name, arg.Bio)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst deleteAuthor = `-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthor, id)\n\treturn err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio FROM authors\nORDER BY name\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/diff_output/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY bio;\n\n-- name: SelectOne :one\nSELECT 1;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/diff_output/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n\nCREATE TABLE books (\n          id    BIGSERIAL PRIMARY KEY,\n          title text      NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/diff_output/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"gen\": {\n        \"go\": {\n          \"package\": \"authors\",\n          \"out\": \"go\"\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/diff_output/stderr.txt",
    "content": "--- a/go/models.go\n+++ b/go/models.go\n@@ -13,3 +13,8 @@\n \tName string\n \tBio  sql.NullString\n }\n+\n+type Book struct {\n+\tID    int64\n+\tTitle string\n+}\n--- a/go/query.sql.go\n+++ b/go/query.sql.go\n@@ -31,16 +31,6 @@\n \treturn i, err\n }\n \n-const deleteAuthor = `-- name: DeleteAuthor :exec\n-DELETE FROM authors\n-WHERE id = $1\n-`\n-\n-func (q *Queries) DeleteAuthor(ctx context.Context, id int64) error {\n-\t_, err := q.db.ExecContext(ctx, deleteAuthor, id)\n-\treturn err\n-}\n-\n const getAuthor = `-- name: GetAuthor :one\n SELECT id, name, bio FROM authors\n WHERE id = $1 LIMIT 1\n@@ -55,7 +45,7 @@\n \n const listAuthors = `-- name: ListAuthors :many\n SELECT id, name, bio FROM authors\n+ORDER BY bio\n-ORDER BY name\n `\n \n func (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n@@ -80,3 +70,14 @@\n \t}\n \treturn items, nil\n }\n+\n+const selectOne = `-- name: SelectOne :one\n+SELECT 1\n+`\n+\n+func (q *Queries) SelectOne(ctx context.Context) (int32, error) {\n+\trow := q.db.QueryRowContext(ctx, selectOne)\n+\tvar column_1 int32\n+\terr := row.Scan(&column_1)\n+\treturn column_1, err\n+}\n\n"
  },
  {
    "path": "internal/endtoend/testdata/do/postgresql/pgx/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/do/postgresql/pgx/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/do/postgresql/pgx/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst doStuff = `-- name: DoStuff :exec\nDO $$\n    BEGIN\n        ALTER TABLE authors\n        ADD COLUMN marked_for_processing bool;\n    END\n$$\n`\n\nfunc (q *Queries) DoStuff(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, doStuff)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/do/postgresql/pgx/query.sql",
    "content": "-- name: DoStuff :exec\nDO $$\n    BEGIN\n        ALTER TABLE authors\n        ADD COLUMN marked_for_processing bool;\n    END\n$$;\n"
  },
  {
    "path": "internal/endtoend/testdata/do/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/do/postgresql/pgx/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"db\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"sql_package\": \"pgx/v5\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/do/postgresql/pq/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/do/postgresql/pq/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/do/postgresql/pq/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst doStuff = `-- name: DoStuff :exec\nDO $$\n    BEGIN\n        ALTER TABLE authors\n        ADD COLUMN marked_for_processing bool;\n    END\n$$\n`\n\nfunc (q *Queries) DoStuff(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, doStuff)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/do/postgresql/pq/query.sql",
    "content": "-- name: DoStuff :exec\nDO $$\n    BEGIN\n        ALTER TABLE authors\n        ADD COLUMN marked_for_processing bool;\n    END\n$$;\n"
  },
  {
    "path": "internal/endtoend/testdata/do/postgresql/pq/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/do/postgresql/pq/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"db\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/duplicate_go_names/enum/query.sql",
    "content": "-- name: GetFoos :many\nSELECT * FROM foos;"
  },
  {
    "path": "internal/endtoend/testdata/duplicate_go_names/enum/schema.sql",
    "content": "CREATE TYPE foo AS ENUM ();\n\nCREATE TABLE foos ();"
  },
  {
    "path": "internal/endtoend/testdata/duplicate_go_names/enum/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n- schema: \"schema.sql\"\n  queries: \"query.sql\"\n  engine: \"postgresql\"\n  gen:\n    go:\n      out: \"db\"\n"
  },
  {
    "path": "internal/endtoend/testdata/duplicate_go_names/enum/stderr.txt",
    "content": "# package \nerror generating code: struct name conflicts with enum name: Foo\n"
  },
  {
    "path": "internal/endtoend/testdata/duplicate_go_names/null_enum/query.sql",
    "content": "-- name: GetFoos :many\nSELECT * FROM null_foos;"
  },
  {
    "path": "internal/endtoend/testdata/duplicate_go_names/null_enum/schema.sql",
    "content": "CREATE TYPE foo AS ENUM ();\n\nCREATE TABLE null_foos ();"
  },
  {
    "path": "internal/endtoend/testdata/duplicate_go_names/null_enum/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n- schema: \"schema.sql\"\n  queries: \"query.sql\"\n  engine: \"postgresql\"\n  gen:\n    go:\n      out: \"db\"\n"
  },
  {
    "path": "internal/endtoend/testdata/duplicate_go_names/null_enum/stderr.txt",
    "content": "# package \nerror generating code: struct name conflicts with enum name: NullFoo\n"
  },
  {
    "path": "internal/endtoend/testdata/duplicate_go_names/query_constant/query.sql",
    "content": "-- name: Foo :one\nSELECT 1;"
  },
  {
    "path": "internal/endtoend/testdata/duplicate_go_names/query_constant/schema.sql",
    "content": "CREATE TYPE foo AS ENUM ();\n"
  },
  {
    "path": "internal/endtoend/testdata/duplicate_go_names/query_constant/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n- schema: \"schema.sql\"\n  queries: \"query.sql\"\n  engine: \"postgresql\"\n  gen:\n    go:\n      out: \"db\"\n      emit_exported_queries: true\n"
  },
  {
    "path": "internal/endtoend/testdata/duplicate_go_names/query_constant/stderr.txt",
    "content": "# package \nerror generating code: query constant name conflicts with enum name: Foo\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int32          `db:\"id\" json:\"id\"`\n\tFirstName string         `db:\"first_name\" json:\"first_name\"`\n\tLastName  sql.NullString `db:\"last_name\" json:\"last_name\"`\n\tAge       int32          `db:\"age\" json:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/mysql/query.sql",
    "content": "/* name: GetAll :many */\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/mysql/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"mysql\",\n      \"emit_json_tags\": true,\n      \"emit_db_tags\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int32          `db:\"id\" json:\"id\"`\n\tFirstName string         `db:\"first_name\" json:\"first_name\"`\n\tLastName  sql.NullString `db:\"last_name\" json:\"last_name\"`\n\tAge       int32          `db:\"age\" json:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL GENERATED ALWAYS AS IDENTITY PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"emit_db_tags\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype User struct {\n\tID        int32       `db:\"id\" json:\"id\"`\n\tFirstName string      `db:\"first_name\" json:\"first_name\"`\n\tLastName  pgtype.Text `db:\"last_name\" json:\"last_name\"`\n\tAge       int32       `db:\"age\" json:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL GENERATED ALWAYS AS IDENTITY PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"emit_db_tags\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int32          `db:\"id\" json:\"id\"`\n\tFirstName string         `db:\"first_name\" json:\"first_name\"`\n\tLastName  sql.NullString `db:\"last_name\" json:\"last_name\"`\n\tAge       int32          `db:\"age\" json:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/stdlib/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL GENERATED ALWAYS AS IDENTITY PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"emit_db_tags\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int64          `db:\"id\" json:\"id\"`\n\tFirstName string         `db:\"first_name\" json:\"first_name\"`\n\tLastName  sql.NullString `db:\"last_name\" json:\"last_name\"`\n\tAge       int64          `db:\"age\" json:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/sqlite/query.sql",
    "content": "/* name: GetAll :many */\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/sqlite/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL PRIMARY KEY,\n    first_name varchar NOT NULL,\n    last_name varchar,\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_and_json_tags/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"sqlite\",\n      \"emit_json_tags\": true,\n      \"emit_db_tags\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int32          `db:\"id\"`\n\tFirstName string         `db:\"first_name\"`\n\tLastName  sql.NullString `db:\"last_name\"`\n\tAge       int32          `db:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/mysql/query.sql",
    "content": "/* name: GetAll :many */\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/mysql/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"mysql\",\n      \"emit_db_tags\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int32          `db:\"id\"`\n\tFirstName string         `db:\"first_name\"`\n\tLastName  sql.NullString `db:\"last_name\"`\n\tAge       int32          `db:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL GENERATED ALWAYS AS IDENTITY PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_db_tags\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype User struct {\n\tID        int32       `db:\"id\"`\n\tFirstName string      `db:\"first_name\"`\n\tLastName  pgtype.Text `db:\"last_name\"`\n\tAge       int32       `db:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL GENERATED ALWAYS AS IDENTITY PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_db_tags\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int32          `db:\"id\"`\n\tFirstName string         `db:\"first_name\"`\n\tLastName  sql.NullString `db:\"last_name\"`\n\tAge       int32          `db:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/stdlib/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL GENERATED ALWAYS AS IDENTITY PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_db_tags\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int64          `db:\"id\"`\n\tFirstName string         `db:\"first_name\"`\n\tLastName  sql.NullString `db:\"last_name\"`\n\tAge       int64          `db:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/sqlite/query.sql",
    "content": "/* name: GetAll :many */\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/sqlite/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL PRIMARY KEY,\n    first_name varchar NOT NULL,\n    last_name varchar,\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_db_tags/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"sqlite\",\n      \"emit_db_tags\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT id FROM bar\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\titems := []int32{}\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/pgx/v4/query.sql",
    "content": "-- name: ListBar :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_empty_slices\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT id FROM bar\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\titems := []int32{}\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/pgx/v5/query.sql",
    "content": "-- name: ListBar :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_empty_slices\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT id FROM bar\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\titems := []int32{}\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/stdlib/query.sql",
    "content": "-- name: ListBar :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_empty_slices/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_empty_slices\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_enum_valid_and_values/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_enum_valid_and_values/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype IPProtocol string\n\nconst (\n\tIPProtocolTCP  IPProtocol = \"tcp\"\n\tIpProtocolIp   IPProtocol = \"ip\"\n\tIpProtocolIcmp IPProtocol = \"icmp\"\n)\n\nfunc (e *IPProtocol) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = IPProtocol(s)\n\tcase string:\n\t\t*e = IPProtocol(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for IPProtocol: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullIPProtocol struct {\n\tIPProtocol IPProtocol\n\tValid      bool // Valid is true if IPProtocol is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullIPProtocol) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.IPProtocol, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.IPProtocol.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullIPProtocol) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.IPProtocol), nil\n}\n\nfunc (e IPProtocol) Valid() bool {\n\tswitch e {\n\tcase IPProtocolTCP,\n\t\tIpProtocolIp,\n\t\tIpProtocolIcmp:\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc AllIPProtocolValues() []IPProtocol {\n\treturn []IPProtocol{\n\t\tIPProtocolTCP,\n\t\tIpProtocolIp,\n\t\tIpProtocolIcmp,\n\t}\n}\n\ntype BarNew struct {\n\tIDNew int32\n\tIpOld IPProtocol\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_enum_valid_and_values/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT id_old, ip_old FROM bar_old\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]BarNew, error) {\n\trows, err := q.db.Query(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []BarNew\n\tfor rows.Next() {\n\t\tvar i BarNew\n\t\tif err := rows.Scan(&i.IDNew, &i.IpOld); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT id_old as foo_old, id_old as baz_old\nFROM bar_old\nWHERE ip_old = $1 AND id_old = $2\n`\n\ntype ListFooParams struct {\n\tIpOld IPProtocol\n\tIDNew int32\n}\n\ntype ListFooRow struct {\n\tFooNew int32\n\tBazOld int32\n}\n\nfunc (q *Queries) ListFoo(ctx context.Context, arg ListFooParams) ([]ListFooRow, error) {\n\trows, err := q.db.Query(ctx, listFoo, arg.IpOld, arg.IDNew)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListFooRow\n\tfor rows.Next() {\n\t\tvar i ListFooRow\n\t\tif err := rows.Scan(&i.FooNew, &i.BazOld); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_enum_valid_and_values/query.sql",
    "content": "-- name: ListFoo :many\nSELECT id_old as foo_old, id_old as baz_old\nFROM bar_old\nWHERE ip_old = $1 AND id_old = $2;\n\n-- name: ListBar :many\nSELECT * FROM bar_old;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_enum_valid_and_values/schema.sql",
    "content": "CREATE TYPE ip_protocol AS enum ('tcp', 'ip', 'icmp');\n\nCREATE TABLE bar_old (id_old serial not null, ip_old ip_protocol NOT NULL);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_enum_valid_and_values/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_enum_valid_method\": true,\n      \"emit_all_enum_values\": true\n    }\n  ],\n  \"rename\": {\n    \"id_old\": \"IDNew\",\n    \"bar_old\": \"BarNew\",\n    \"foo_old\": \"FooNew\",\n    \"ip_protocol\": \"IPProtocol\",\n    \"ip_protocol_tcp\": \"IPProtocolTCP\"\n  }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst UpdateBarID = `-- name: UpdateBarID :exec\nUPDATE bar SET id = $1 WHERE id = $2\n`\n\ntype UpdateBarIDParams struct {\n\tID   int32\n\tID_2 int32\n}\n\nfunc (q *Queries) UpdateBarID(ctx context.Context, arg UpdateBarIDParams) error {\n\t_, err := q.db.Exec(ctx, UpdateBarID, arg.ID, arg.ID_2)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/pgx/v4/query.sql",
    "content": "-- name: UpdateBarID :exec\nUPDATE bar SET id = $1 WHERE id = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_exported_queries\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst UpdateBarID = `-- name: UpdateBarID :exec\nUPDATE bar SET id = $1 WHERE id = $2\n`\n\ntype UpdateBarIDParams struct {\n\tID   int32\n\tID_2 int32\n}\n\nfunc (q *Queries) UpdateBarID(ctx context.Context, arg UpdateBarIDParams) error {\n\t_, err := q.db.Exec(ctx, UpdateBarID, arg.ID, arg.ID_2)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/pgx/v5/query.sql",
    "content": "-- name: UpdateBarID :exec\nUPDATE bar SET id = $1 WHERE id = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_exported_queries\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst UpdateBarID = `-- name: UpdateBarID :exec\nUPDATE bar SET id = $1 WHERE id = $2\n`\n\ntype UpdateBarIDParams struct {\n\tID   int32\n\tID_2 int32\n}\n\nfunc (q *Queries) UpdateBarID(ctx context.Context, arg UpdateBarIDParams) error {\n\t_, err := q.db.ExecContext(ctx, UpdateBarID, arg.ID, arg.ID_2)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/stdlib/query.sql",
    "content": "-- name: UpdateBarID :exec\nUPDATE bar SET id = $1 WHERE id = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_exported_queries/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_exported_queries\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New() *Queries {\n\treturn &Queries{}\n}\n\ntype Queries struct {\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) {\n\trows, err := db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/mysql/query.sql",
    "content": "/* name: GetAll :many */\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/mysql/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"mysql\",\n      \"emit_methods_with_db_argument\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New() *Queries {\n\treturn &Queries{}\n}\n\ntype Queries struct {\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) {\n\trows, err := db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL GENERATED ALWAYS AS IDENTITY PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_methods_with_db_argument\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New() *Queries {\n\treturn &Queries{}\n}\n\ntype Queries struct {\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  pgtype.Text\n\tAge       int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) {\n\trows, err := db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL GENERATED ALWAYS AS IDENTITY PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_methods_with_db_argument\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New() *Queries {\n\treturn &Queries{}\n}\n\ntype Queries struct {\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) {\n\trows, err := db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/stdlib/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL GENERATED ALWAYS AS IDENTITY PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_methods_with_db_argument\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New() *Queries {\n\treturn &Queries{}\n}\n\ntype Queries struct {\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int64\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) {\n\trows, err := db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/sqlite/query.sql",
    "content": "/* name: GetAll :many */\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/sqlite/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL PRIMARY KEY,\n    first_name varchar NOT NULL,\n    last_name varchar,\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_methods_with_db_argument/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"sqlite\",\n      \"emit_methods_with_db_argument\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"time\"\n\n\t\"github.com/jackc/pgtype\"\n)\n\ntype DtCharacter struct {\n\tA *string\n\tB *string\n\tC *string\n\tD *string\n\tE *string\n}\n\ntype DtCharacterNotNull struct {\n\tA string\n\tB string\n\tC string\n\tD string\n\tE string\n}\n\ntype DtDatetime struct {\n\tA *time.Time\n\tB *time.Time\n\tC *time.Time\n\tD *time.Time\n\tE *time.Time\n\tF *time.Time\n\tG *time.Time\n\tH *time.Time\n}\n\ntype DtDatetimeNotNull struct {\n\tA time.Time\n\tB time.Time\n\tC time.Time\n\tD time.Time\n\tE time.Time\n\tF time.Time\n\tG time.Time\n\tH time.Time\n}\n\ntype DtNetType struct {\n\tA pgtype.Inet\n\tB pgtype.CIDR\n\tC pgtype.Macaddr\n}\n\ntype DtNetTypesNotNull struct {\n\tA pgtype.Inet\n\tB pgtype.CIDR\n\tC pgtype.Macaddr\n}\n\ntype DtNumeric struct {\n\tA *int16\n\tB *int32\n\tC *int64\n\tD pgtype.Numeric\n\tE pgtype.Numeric\n\tF *float32\n\tG *float64\n\tH *int16\n\tI *int32\n\tJ *int64\n\tK *int16\n\tL *int32\n\tM *int64\n}\n\ntype DtNumericNotNull struct {\n\tA int16\n\tB int32\n\tC int64\n\tD pgtype.Numeric\n\tE pgtype.Numeric\n\tF float32\n\tG float64\n\tH int16\n\tI int32\n\tJ int64\n\tK int16\n\tL int32\n\tM int64\n}\n\ntype DtRange struct {\n\tA pgtype.Int4range\n\tB pgtype.Int8range\n\tC pgtype.Numrange\n\tD pgtype.Tsrange\n\tE pgtype.Tstzrange\n\tF pgtype.Daterange\n}\n\ntype DtRangeNotNull struct {\n\tA pgtype.Int4range\n\tB pgtype.Int8range\n\tC pgtype.Numrange\n\tD pgtype.Tsrange\n\tE pgtype.Tstzrange\n\tF pgtype.Daterange\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage datatype\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRow(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/sql/character.sql",
    "content": "-- Character Types\n-- https://www.postgresql.org/docs/current/datatype-character.html\nCREATE TABLE dt_character (\n    a text,\n    b character varying(32),\n    c varchar(32),\n    d character(32),\n    e char(32)\n);\n\nCREATE TABLE dt_character_not_null (\n    a text NOT NULL,\n    b character varying(32) NOT NULL,\n    c varchar(32) NOT NULL,\n    d character(32) NOT NULL,\n    e char(32) NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/sql/datetime.sql",
    "content": "-- Date/Time Types\n-- https://www.postgresql.org/docs/current/datatype-datetime.html\nCREATE TABLE dt_datetime (\n    a DATE,\n    b TIME,\n    c TIME WITHOUT TIME ZONE,\n    d TIME WITH TIME ZONE,\n    e TIMESTAMP,\n    f TIMESTAMP WITHOUT TIME ZONE,\n    g TIMESTAMP WITH TIME ZONE,\n    h timestamptz\n);\n\nCREATE TABLE dt_datetime_not_null (\n    a DATE NOT NULL,\n    b TIME NOT NULL,\n    c TIME WITHOUT TIME ZONE NOT NULL,\n    d TIME WITH TIME ZONE NOT NULL,\n    e TIMESTAMP NOT NULL,\n    f TIMESTAMP WITHOUT TIME ZONE NOT NULL,\n    g TIMESTAMP WITH TIME ZONE NOT NULL,\n    h timestamptz NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/sql/net-types.sql",
    "content": "-- Network Address Types\n-- https://www.postgresql.org/docs/current/datatype-net-types.html\nCREATE TABLE dt_net_types (\n  a  inet,\n  b  cidr,\n  c  macaddr\n);\n\nCREATE TABLE dt_net_types_not_null (\n  a  inet NOT NULL,\n  b  cidr NOT NULL,\n  c  macaddr NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/sql/numeric.sql",
    "content": "-- Numeric Types\n-- https://www.postgresql.org/docs/current/datatype-numeric.html\nCREATE TABLE dt_numeric (\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    a smallint,\n    b integer,\n    c bigint,\n    d decimal,\n    e numeric,\n    f real,\n    g double precision,\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    h smallserial,\n    i serial,\n    j bigserial,\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    k int2,\n    l int4,\n    m int8\n);\n\nCREATE TABLE dt_numeric_not_null (\n    a smallint NOT NULL,\n    b integer NOT NULL,\n    c bigint NOT NULL,\n    d decimal NOT NULL,\n    e numeric NOT NULL,\n    f real NOT NULL,\n    g double precision NOT NULL,\n    h smallserial NOT NULL,\n    i serial NOT NULL,\n    j bigserial NOT NULL,\n    k int2 NOT NULL,\n    l int4 NOT NULL,\n    m int8 NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/sql/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/sql/rangetypes.sql",
    "content": "-- Range Types\n-- https://www.postgresql.org/docs/current/rangetypes.html\nCREATE TABLE dt_range (\n    a int4range,\n    b int8range,\n    c numrange,\n    d tsrange,\n    e tstzrange,\n    f daterange\n);\n\nCREATE TABLE dt_range_not_null (\n    a int4range NOT NULL,\n    b int8range NOT NULL,\n    c numrange NOT NULL,\n    d tsrange NOT NULL,\n    e tstzrange NOT NULL,\n    f daterange NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"datatype\",\n      \"schema\": \"sql/\",\n      \"queries\": \"sql/\",\n      \"emit_pointers_for_null_types\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"net\"\n\t\"net/netip\"\n\t\"time\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype DtCharacter struct {\n\tA *string\n\tB *string\n\tC *string\n\tD *string\n\tE *string\n}\n\ntype DtCharacterNotNull struct {\n\tA string\n\tB string\n\tC string\n\tD string\n\tE string\n}\n\ntype DtDatetime struct {\n\tA pgtype.Date\n\tB pgtype.Time\n\tC pgtype.Time\n\tD *time.Time\n\tE pgtype.Timestamp\n\tF pgtype.Timestamp\n\tG pgtype.Timestamptz\n\tH pgtype.Timestamptz\n}\n\ntype DtDatetimeNotNull struct {\n\tA pgtype.Date\n\tB pgtype.Time\n\tC pgtype.Time\n\tD time.Time\n\tE pgtype.Timestamp\n\tF pgtype.Timestamp\n\tG pgtype.Timestamptz\n\tH pgtype.Timestamptz\n}\n\ntype DtNetType struct {\n\tA *netip.Addr\n\tB *netip.Prefix\n\tC net.HardwareAddr\n}\n\ntype DtNetTypesNotNull struct {\n\tA netip.Addr\n\tB netip.Prefix\n\tC net.HardwareAddr\n}\n\ntype DtNumeric struct {\n\tA *int16\n\tB *int32\n\tC *int64\n\tD pgtype.Numeric\n\tE pgtype.Numeric\n\tF *float32\n\tG *float64\n\tH *int16\n\tI *int32\n\tJ *int64\n\tK *int16\n\tL *int32\n\tM *int64\n}\n\ntype DtNumericNotNull struct {\n\tA int16\n\tB int32\n\tC int64\n\tD pgtype.Numeric\n\tE pgtype.Numeric\n\tF float32\n\tG float64\n\tH int16\n\tI int32\n\tJ int64\n\tK int16\n\tL int32\n\tM int64\n}\n\ntype DtRange struct {\n\tA pgtype.Range[pgtype.Int4]\n\tB pgtype.Range[pgtype.Int8]\n\tC pgtype.Range[pgtype.Numeric]\n\tD pgtype.Range[pgtype.Timestamp]\n\tE pgtype.Range[pgtype.Timestamptz]\n\tF pgtype.Range[pgtype.Date]\n}\n\ntype DtRangeNotNull struct {\n\tA pgtype.Range[pgtype.Int4]\n\tB pgtype.Range[pgtype.Int8]\n\tC pgtype.Range[pgtype.Numeric]\n\tD pgtype.Range[pgtype.Timestamp]\n\tE pgtype.Range[pgtype.Timestamptz]\n\tF pgtype.Range[pgtype.Date]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage datatype\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRow(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/sql/character.sql",
    "content": "-- Character Types\n-- https://www.postgresql.org/docs/current/datatype-character.html\nCREATE TABLE dt_character (\n    a text,\n    b character varying(32),\n    c varchar(32),\n    d character(32),\n    e char(32)\n);\n\nCREATE TABLE dt_character_not_null (\n    a text NOT NULL,\n    b character varying(32) NOT NULL,\n    c varchar(32) NOT NULL,\n    d character(32) NOT NULL,\n    e char(32) NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/sql/datetime.sql",
    "content": "-- Date/Time Types\n-- https://www.postgresql.org/docs/current/datatype-datetime.html\nCREATE TABLE dt_datetime (\n    a DATE,\n    b TIME,\n    c TIME WITHOUT TIME ZONE,\n    d TIME WITH TIME ZONE,\n    e TIMESTAMP,\n    f TIMESTAMP WITHOUT TIME ZONE,\n    g TIMESTAMP WITH TIME ZONE,\n    h timestamptz\n);\n\nCREATE TABLE dt_datetime_not_null (\n    a DATE NOT NULL,\n    b TIME NOT NULL,\n    c TIME WITHOUT TIME ZONE NOT NULL,\n    d TIME WITH TIME ZONE NOT NULL,\n    e TIMESTAMP NOT NULL,\n    f TIMESTAMP WITHOUT TIME ZONE NOT NULL,\n    g TIMESTAMP WITH TIME ZONE NOT NULL,\n    h timestamptz NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/sql/net-types.sql",
    "content": "-- Network Address Types\n-- https://www.postgresql.org/docs/current/datatype-net-types.html\nCREATE TABLE dt_net_types (\n  a  inet,\n  b  cidr,\n  c  macaddr\n);\n\nCREATE TABLE dt_net_types_not_null (\n  a  inet NOT NULL,\n  b  cidr NOT NULL,\n  c  macaddr NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/sql/numeric.sql",
    "content": "-- Numeric Types\n-- https://www.postgresql.org/docs/current/datatype-numeric.html\nCREATE TABLE dt_numeric (\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    a smallint,\n    b integer,\n    c bigint,\n    d decimal,\n    e numeric,\n    f real,\n    g double precision,\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    h smallserial,\n    i serial,\n    j bigserial,\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    k int2,\n    l int4,\n    m int8\n);\n\nCREATE TABLE dt_numeric_not_null (\n    a smallint NOT NULL,\n    b integer NOT NULL,\n    c bigint NOT NULL,\n    d decimal NOT NULL,\n    e numeric NOT NULL,\n    f real NOT NULL,\n    g double precision NOT NULL,\n    h smallserial NOT NULL,\n    i serial NOT NULL,\n    j bigserial NOT NULL,\n    k int2 NOT NULL,\n    l int4 NOT NULL,\n    m int8 NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/sql/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/sql/rangetypes.sql",
    "content": "-- Range Types\n-- https://www.postgresql.org/docs/current/rangetypes.html\nCREATE TABLE dt_range (\n    a int4range,\n    b int8range,\n    c numrange,\n    d tsrange,\n    e tstzrange,\n    f daterange\n);\n\nCREATE TABLE dt_range_not_null (\n    a int4range NOT NULL,\n    b int8range NOT NULL,\n    c numrange NOT NULL,\n    d tsrange NOT NULL,\n    e tstzrange NOT NULL,\n    f daterange NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"datatype\",\n      \"schema\": \"sql/\",\n      \"queries\": \"sql/\",\n      \"emit_pointers_for_null_types\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"time\"\n)\n\ntype DtType struct {\n\tA *int64\n\tB *float64\n\tC *bool\n\tD *time.Time\n\tE *string\n\tF *float64\n}\n\ntype DtTypesNotNull struct {\n\tA int64\n\tB float64\n\tC bool\n\tD time.Time\n\tE string\n\tF float64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage datatype\n\nimport (\n\t\"context\"\n)\n\nconst noop = `-- name: Noop :one\nSELECT 1\n`\n\nfunc (q *Queries) Noop(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, noop)\n\tvar column_1 int64\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/sqlite/sql/query.sql",
    "content": "-- name: Noop :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/sqlite/sql/types.sql",
    "content": "\nCREATE TABLE dt_types (\n    a int,\n    b real,\n    c bool,\n    d date,\n    e text,\n    f numeric\n);\n\nCREATE TABLE dt_types_not_null (\n    a int NOT NULL,\n    b real NOT NULL,\n    c bool NOT NULL,\n    d date NOT NULL,\n    e text NOT NULL,\n    f numeric NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"datatype\",\n      \"schema\": \"sql/types.sql\",\n      \"queries\": \"sql/query.sql\",\n      \"emit_pointers_for_null_types\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n\n\t\"github.com/sqlc-dev/pqtype\"\n)\n\ntype DtCharacter struct {\n\tA sql.NullString\n\tB sql.NullString\n\tC sql.NullString\n\tD sql.NullString\n\tE sql.NullString\n}\n\ntype DtCharacterNotNull struct {\n\tA string\n\tB string\n\tC string\n\tD string\n\tE string\n}\n\ntype DtDatetime struct {\n\tA sql.NullTime\n\tB sql.NullTime\n\tC sql.NullTime\n\tD sql.NullTime\n\tE sql.NullTime\n\tF sql.NullTime\n\tG sql.NullTime\n\tH sql.NullTime\n}\n\ntype DtDatetimeNotNull struct {\n\tA time.Time\n\tB time.Time\n\tC time.Time\n\tD time.Time\n\tE time.Time\n\tF time.Time\n\tG time.Time\n\tH time.Time\n}\n\ntype DtNetType struct {\n\tA pqtype.Inet\n\tB pqtype.CIDR\n\tC pqtype.Macaddr\n}\n\ntype DtNetTypesNotNull struct {\n\tA pqtype.Inet\n\tB pqtype.CIDR\n\tC pqtype.Macaddr\n}\n\ntype DtNumeric struct {\n\tA sql.NullInt16\n\tB sql.NullInt32\n\tC sql.NullInt64\n\tD sql.NullString\n\tE sql.NullString\n\tF sql.NullFloat64\n\tG sql.NullFloat64\n\tH sql.NullInt16\n\tI sql.NullInt32\n\tJ sql.NullInt64\n\tK sql.NullInt16\n\tL sql.NullInt32\n\tM sql.NullInt64\n}\n\ntype DtNumericNotNull struct {\n\tA int16\n\tB int32\n\tC int64\n\tD string\n\tE string\n\tF float32\n\tG float64\n\tH int16\n\tI int32\n\tJ int64\n\tK int16\n\tL int32\n\tM int64\n}\n\ntype DtRange struct {\n\tA interface{}\n\tB interface{}\n\tC interface{}\n\tD interface{}\n\tE interface{}\n\tF interface{}\n}\n\ntype DtRangeNotNull struct {\n\tA interface{}\n\tB interface{}\n\tC interface{}\n\tD interface{}\n\tE interface{}\n\tF interface{}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage datatype\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/sql/character.sql",
    "content": "-- Character Types\n-- https://www.postgresql.org/docs/current/datatype-character.html\nCREATE TABLE dt_character (\n    a text,\n    b character varying(32),\n    c varchar(32),\n    d character(32),\n    e char(32)\n);\n\nCREATE TABLE dt_character_not_null (\n    a text NOT NULL,\n    b character varying(32) NOT NULL,\n    c varchar(32) NOT NULL,\n    d character(32) NOT NULL,\n    e char(32) NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/sql/datetime.sql",
    "content": "-- Date/Time Types\n-- https://www.postgresql.org/docs/current/datatype-datetime.html\nCREATE TABLE dt_datetime (\n    a DATE,\n    b TIME,\n    c TIME WITHOUT TIME ZONE,\n    d TIME WITH TIME ZONE,\n    e TIMESTAMP,\n    f TIMESTAMP WITHOUT TIME ZONE,\n    g TIMESTAMP WITH TIME ZONE,\n    h timestamptz\n);\n\nCREATE TABLE dt_datetime_not_null (\n    a DATE NOT NULL,\n    b TIME NOT NULL,\n    c TIME WITHOUT TIME ZONE NOT NULL,\n    d TIME WITH TIME ZONE NOT NULL,\n    e TIMESTAMP NOT NULL,\n    f TIMESTAMP WITHOUT TIME ZONE NOT NULL,\n    g TIMESTAMP WITH TIME ZONE NOT NULL,\n    h timestamptz NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/sql/net-types.sql",
    "content": "-- Network Address Types\n-- https://www.postgresql.org/docs/current/datatype-net-types.html\nCREATE TABLE dt_net_types (\n  a  inet,\n  b  cidr,\n  c  macaddr\n);\n\nCREATE TABLE dt_net_types_not_null (\n  a  inet NOT NULL,\n  b  cidr NOT NULL,\n  c  macaddr NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/sql/numeric.sql",
    "content": "-- Numeric Types\n-- https://www.postgresql.org/docs/current/datatype-numeric.html\nCREATE TABLE dt_numeric (\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    a smallint,\n    b integer,\n    c bigint,\n    d decimal,\n    e numeric,\n    f real,\n    g double precision,\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    h smallserial,\n    i serial,\n    j bigserial,\n    -- TODO: this maps incorrectly to int16, not NullInt16\n    k int2,\n    l int4,\n    m int8\n);\n\nCREATE TABLE dt_numeric_not_null (\n    a smallint NOT NULL,\n    b integer NOT NULL,\n    c bigint NOT NULL,\n    d decimal NOT NULL,\n    e numeric NOT NULL,\n    f real NOT NULL,\n    g double precision NOT NULL,\n    h smallserial NOT NULL,\n    i serial NOT NULL,\n    j bigserial NOT NULL,\n    k int2 NOT NULL,\n    l int4 NOT NULL,\n    m int8 NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/sql/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/sql/rangetypes.sql",
    "content": "-- Range Types\n-- https://www.postgresql.org/docs/current/rangetypes.html\nCREATE TABLE dt_range (\n    a int4range,\n    b int8range,\n    c numrange,\n    d tsrange,\n    e tstzrange,\n    f daterange\n);\n\nCREATE TABLE dt_range_not_null (\n    a int4range NOT NULL,\n    b int8range NOT NULL,\n    c numrange NOT NULL,\n    d tsrange NOT NULL,\n    e tstzrange NOT NULL,\n    f daterange NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_pointers_for_null_types/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"datatype\",\n      \"schema\": \"sql/\",\n      \"queries\": \"sql/\",\n      \"emit_pointers_for_null_types\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullInt32\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/mysql/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype Querier interface {\n\tGetAll(ctx context.Context) ([]*Foo, error)\n\tGetAllAByB(ctx context.Context, b sql.NullInt32) ([]sql.NullInt32, error)\n\tGetOne(ctx context.Context, arg *GetOneParams) (*Foo, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]*Foo, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []*Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, &i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getAllAByB = `-- name: GetAllAByB :many\nSELECT a FROM foo WHERE b = ?\n`\n\nfunc (q *Queries) GetAllAByB(ctx context.Context, b sql.NullInt32) ([]sql.NullInt32, error) {\n\trows, err := q.db.QueryContext(ctx, getAllAByB, b)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullInt32\n\tfor rows.Next() {\n\t\tvar a sql.NullInt32\n\t\tif err := rows.Scan(&a); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, a)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getOne = `-- name: GetOne :one\nSELECT a, b FROM foo WHERE a = ? AND b = ? LIMIT 1\n`\n\ntype GetOneParams struct {\n\tA sql.NullInt32\n\tB sql.NullInt32\n}\n\nfunc (q *Queries) GetOne(ctx context.Context, arg *GetOneParams) (*Foo, error) {\n\trow := q.db.QueryRowContext(ctx, getOne, arg.A, arg.B)\n\tvar i Foo\n\terr := row.Scan(&i.A, &i.B)\n\treturn &i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/mysql/query.sql",
    "content": "/* name: GetOne :one */\nSELECT * FROM foo WHERE a = ? AND b = ? LIMIT 1;\n\n/* name: GetAll :many */\nSELECT * FROM foo;\n\n/* name: GetAllAByB :many */\nSELECT a FROM foo WHERE b = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/mysql/schema.sql",
    "content": "CREATE TABLE foo (a integer, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"mysql\",\n      \"emit_interface\": true,\n      \"emit_result_struct_pointers\": true,\n      \"emit_params_struct_pointers\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v4/go/batch.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: batch.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"errors\"\n\n\t\"github.com/jackc/pgx/v4\"\n)\n\nvar (\n\tErrBatchAlreadyClosed = errors.New(\"batch already closed\")\n)\n\nconst insertValues = `-- name: InsertValues :batchone\nINSERT INTO foo (a, b)\nVALUES ($1, $2)\nON CONFLICT DO NOTHING\nRETURNING a, b\n`\n\ntype InsertValuesBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\ntype InsertValuesParams struct {\n\tA sql.NullInt32\n\tB sql.NullInt32\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg []*InsertValuesParams) *InsertValuesBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range arg {\n\t\tvals := []interface{}{\n\t\t\ta.A,\n\t\t\ta.B,\n\t\t}\n\t\tbatch.Queue(insertValues, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &InsertValuesBatchResults{br, len(arg), false}\n}\n\nfunc (b *InsertValuesBatchResults) QueryRow(f func(int, *Foo, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tvar i Foo\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, nil, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\trow := b.br.QueryRow()\n\t\terr := row.Scan(&i.A, &i.B)\n\t\tif f != nil {\n\t\t\tf(t, &i, err)\n\t\t}\n\t}\n}\n\nfunc (b *InsertValuesBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tSendBatch(context.Context, *pgx.Batch) pgx.BatchResults\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullInt32\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]*Foo, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []*Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, &i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getAllAByB = `-- name: GetAllAByB :many\nSELECT a FROM foo WHERE b = $1\n`\n\nfunc (q *Queries) GetAllAByB(ctx context.Context, b sql.NullInt32) ([]sql.NullInt32, error) {\n\trows, err := q.db.Query(ctx, getAllAByB, b)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullInt32\n\tfor rows.Next() {\n\t\tvar a sql.NullInt32\n\t\tif err := rows.Scan(&a); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, a)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getOne = `-- name: GetOne :one\nSELECT a, b FROM foo WHERE a = $1 AND b = $2 LIMIT 1\n`\n\ntype GetOneParams struct {\n\tA sql.NullInt32\n\tB sql.NullInt32\n}\n\nfunc (q *Queries) GetOne(ctx context.Context, arg *GetOneParams) (*Foo, error) {\n\trow := q.db.QueryRow(ctx, getOne, arg.A, arg.B)\n\tvar i Foo\n\terr := row.Scan(&i.A, &i.B)\n\treturn &i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v4/query.sql",
    "content": "-- name: InsertValues :batchone\nINSERT INTO foo (a, b)\nVALUES ($1, $2)\nON CONFLICT DO NOTHING\nRETURNING *;\n\n-- name: GetOne :one\nSELECT * FROM foo WHERE a = $1 AND b = $2 LIMIT 1;\n\n-- name: GetAll :many\nSELECT * FROM foo;\n\n-- name: GetAllAByB :many\nSELECT a FROM foo WHERE b = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (a integer, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"gen\": {\n        \"go\": {\n          \"package\": \"querytest\",\n          \"sql_package\": \"pgx/v4\",\n          \"out\": \"go\",\n          \"emit_result_struct_pointers\": true,\n          \"emit_params_struct_pointers\": true\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v5/go/batch.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: batch.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"errors\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nvar (\n\tErrBatchAlreadyClosed = errors.New(\"batch already closed\")\n)\n\nconst insertValues = `-- name: InsertValues :batchone\nINSERT INTO foo (a, b)\nVALUES ($1, $2)\nON CONFLICT DO NOTHING\nRETURNING a, b\n`\n\ntype InsertValuesBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\ntype InsertValuesParams struct {\n\tA pgtype.Int4\n\tB pgtype.Int4\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg []*InsertValuesParams) *InsertValuesBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range arg {\n\t\tvals := []interface{}{\n\t\t\ta.A,\n\t\t\ta.B,\n\t\t}\n\t\tbatch.Queue(insertValues, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &InsertValuesBatchResults{br, len(arg), false}\n}\n\nfunc (b *InsertValuesBatchResults) QueryRow(f func(int, *Foo, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tvar i Foo\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, nil, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\trow := b.br.QueryRow()\n\t\terr := row.Scan(&i.A, &i.B)\n\t\tif f != nil {\n\t\t\tf(t, &i, err)\n\t\t}\n\t}\n}\n\nfunc (b *InsertValuesBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tSendBatch(context.Context, *pgx.Batch) pgx.BatchResults\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tA pgtype.Int4\n\tB pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]*Foo, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []*Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, &i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getAllAByB = `-- name: GetAllAByB :many\nSELECT a FROM foo WHERE b = $1\n`\n\nfunc (q *Queries) GetAllAByB(ctx context.Context, b pgtype.Int4) ([]pgtype.Int4, error) {\n\trows, err := q.db.Query(ctx, getAllAByB, b)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.Int4\n\tfor rows.Next() {\n\t\tvar a pgtype.Int4\n\t\tif err := rows.Scan(&a); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, a)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getOne = `-- name: GetOne :one\nSELECT a, b FROM foo WHERE a = $1 AND b = $2 LIMIT 1\n`\n\ntype GetOneParams struct {\n\tA pgtype.Int4\n\tB pgtype.Int4\n}\n\nfunc (q *Queries) GetOne(ctx context.Context, arg *GetOneParams) (*Foo, error) {\n\trow := q.db.QueryRow(ctx, getOne, arg.A, arg.B)\n\tvar i Foo\n\terr := row.Scan(&i.A, &i.B)\n\treturn &i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v5/query.sql",
    "content": "-- name: InsertValues :batchone\nINSERT INTO foo (a, b)\nVALUES ($1, $2)\nON CONFLICT DO NOTHING\nRETURNING *;\n\n-- name: GetOne :one\nSELECT * FROM foo WHERE a = $1 AND b = $2 LIMIT 1;\n\n-- name: GetAll :many\nSELECT * FROM foo;\n\n-- name: GetAllAByB :many\nSELECT a FROM foo WHERE b = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (a integer, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_result_and_params_struct_pointers/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"gen\": {\n        \"go\": {\n          \"package\": \"querytest\",\n          \"sql_package\": \"pgx/v5\",\n          \"out\": \"go\",\n          \"emit_result_struct_pointers\": true,\n          \"emit_params_struct_pointers\": true\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_sql_as_comment/stdlib/exec.json",
    "content": "{\n    \"os\": [\"darwin\", \"linux\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_sql_as_comment/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_sql_as_comment/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_sql_as_comment/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT id FROM (\n  SELECT id FROM bar\n) bar\n`\n\n// Lists all bars\n//\n//\tSELECT id FROM (\n//\t  SELECT id FROM bar\n//\t) bar\nfunc (q *Queries) ListBar(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst removeBar = `-- name: RemoveBar :exec\nDELETE FROM bar WHERE id = $1\n`\n\n// RemoveBar\n//\n//\tDELETE FROM bar WHERE id = $1\nfunc (q *Queries) RemoveBar(ctx context.Context, id int32) error {\n\t_, err := q.db.ExecContext(ctx, removeBar, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_sql_as_comment/stdlib/query.sql",
    "content": "-- name: ListBar :many\n-- Lists all bars\nSELECT id FROM (\n  SELECT * FROM bar\n) bar;\n\n-- name: RemoveBar :exec\nDELETE FROM bar WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_sql_as_comment/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n"
  },
  {
    "path": "internal/endtoend/testdata/emit_sql_as_comment/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_sql_as_comment\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New() *Queries {\n\treturn &Queries{}\n}\n\ntype Queries struct {\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype UsersShirtSize string\n\nconst (\n\tUsersShirtSizeXSmall UsersShirtSize = \"x-small\"\n\tUsersShirtSizeSmall  UsersShirtSize = \"small\"\n\tUsersShirtSizeMedium UsersShirtSize = \"medium\"\n\tUsersShirtSizeLarge  UsersShirtSize = \"large\"\n\tUsersShirtSizeXLarge UsersShirtSize = \"x-large\"\n)\n\nfunc (e *UsersShirtSize) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = UsersShirtSize(s)\n\tcase string:\n\t\t*e = UsersShirtSize(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for UsersShirtSize: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullUsersShirtSize struct {\n\tUsersShirtSize UsersShirtSize\n\tValid          bool // Valid is true if UsersShirtSize is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullUsersShirtSize) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.UsersShirtSize, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.UsersShirtSize.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullUsersShirtSize) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.UsersShirtSize), nil\n}\n\ntype UsersShoeSize string\n\nconst (\n\tUsersShoeSizeXSmall UsersShoeSize = \"x-small\"\n\tUsersShoeSizeSmall  UsersShoeSize = \"small\"\n\tUsersShoeSizeMedium UsersShoeSize = \"medium\"\n\tUsersShoeSizeLarge  UsersShoeSize = \"large\"\n\tUsersShoeSizeXLarge UsersShoeSize = \"x-large\"\n)\n\nfunc (e *UsersShoeSize) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = UsersShoeSize(s)\n\tcase string:\n\t\t*e = UsersShoeSize(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for UsersShoeSize: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullUsersShoeSize struct {\n\tUsersShoeSize UsersShoeSize\n\tValid         bool // Valid is true if UsersShoeSize is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullUsersShoeSize) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.UsersShoeSize, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.UsersShoeSize.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullUsersShoeSize) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.UsersShoeSize), nil\n}\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int32\n\tShoeSize  UsersShoeSize\n\tShirtSize NullUsersShirtSize\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst deleteBySize = `-- name: DeleteBySize :exec\nDELETE FROM users\nWHERE shoe_size = ? AND shirt_size = ?\n`\n\ntype DeleteBySizeParams struct {\n\tShoeSize  UsersShoeSize\n\tShirtSize NullUsersShirtSize\n}\n\nfunc (q *Queries) DeleteBySize(ctx context.Context, db DBTX, arg DeleteBySizeParams) error {\n\t_, err := db.ExecContext(ctx, deleteBySize, arg.ShoeSize, arg.ShirtSize)\n\treturn err\n}\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age, shoe_size, shirt_size FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) {\n\trows, err := db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t\t&i.ShoeSize,\n\t\t\t&i.ShirtSize,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst newUser = `-- name: NewUser :exec\nINSERT INTO users (\n    id,\n    first_name,\n    last_name,\n    age,\n    shoe_size,\n    shirt_size\n) VALUES\n(?, ?, ?, ?, ?, ?)\n`\n\ntype NewUserParams struct {\n\tID        int32\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int32\n\tShoeSize  UsersShoeSize\n\tShirtSize NullUsersShirtSize\n}\n\nfunc (q *Queries) NewUser(ctx context.Context, db DBTX, arg NewUserParams) error {\n\t_, err := db.ExecContext(ctx, newUser,\n\t\targ.ID,\n\t\targ.FirstName,\n\t\targ.LastName,\n\t\targ.Age,\n\t\targ.ShoeSize,\n\t\targ.ShirtSize,\n\t)\n\treturn err\n}\n\nconst updateSizes = `-- name: UpdateSizes :exec\nUPDATE users\nSET shoe_size = ?, shirt_size = ?\nWHERE id = ?\n`\n\ntype UpdateSizesParams struct {\n\tShoeSize  UsersShoeSize\n\tShirtSize NullUsersShirtSize\n\tID        int32\n}\n\nfunc (q *Queries) UpdateSizes(ctx context.Context, db DBTX, arg UpdateSizesParams) error {\n\t_, err := db.ExecContext(ctx, updateSizes, arg.ShoeSize, arg.ShirtSize, arg.ID)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/mysql/query.sql",
    "content": "/* name: GetAll :many */\nSELECT * FROM users;\n\n-- name: NewUser :exec\nINSERT INTO users (\n    id,\n    first_name,\n    last_name,\n    age,\n    shoe_size,\n    shirt_size\n) VALUES\n(?, ?, ?, ?, ?, ?);\n\n-- name: UpdateSizes :exec\nUPDATE users\nSET shoe_size = ?, shirt_size = ?\nWHERE id = ?;\n\n-- name: DeleteBySize :exec\nDELETE FROM users\nWHERE shoe_size = ? AND shirt_size = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/mysql/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL,\n    shoe_size ENUM('x-small', 'small', 'medium', 'large', 'x-large') NOT NULL,\n    shirt_size ENUM('x-small', 'small', 'medium', 'large', 'x-large')\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"mysql\",\n      \"emit_methods_with_db_argument\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New() *Queries {\n\treturn &Queries{}\n}\n\ntype Queries struct {\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype Size string\n\nconst (\n\tSizeXSmall Size = \"x-small\"\n\tSizeSmall  Size = \"small\"\n\tSizeMedium Size = \"medium\"\n\tSizeLarge  Size = \"large\"\n\tSizeXLarge Size = \"x-large\"\n)\n\nfunc (e *Size) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Size(s)\n\tcase string:\n\t\t*e = Size(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Size: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullSize struct {\n\tSize  Size\n\tValid bool // Valid is true if Size is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullSize) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Size, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Size.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullSize) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Size), nil\n}\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int32\n\tShoeSize  Size\n\tShirtSize NullSize\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst deleteBySize = `-- name: DeleteBySize :exec\nDELETE FROM users\nWHERE shoe_size = $1 AND shirt_size = $2\n`\n\ntype DeleteBySizeParams struct {\n\tShoeSize  Size\n\tShirtSize NullSize\n}\n\nfunc (q *Queries) DeleteBySize(ctx context.Context, db DBTX, arg DeleteBySizeParams) error {\n\t_, err := db.Exec(ctx, deleteBySize, arg.ShoeSize, arg.ShirtSize)\n\treturn err\n}\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age, shoe_size, shirt_size FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) {\n\trows, err := db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t\t&i.ShoeSize,\n\t\t\t&i.ShirtSize,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst newUser = `-- name: NewUser :exec\nINSERT INTO users (\n    first_name,\n    last_name,\n    age,\n    shoe_size,\n    shirt_size\n) VALUES\n($1, $2, $3, $4, $5)\n`\n\ntype NewUserParams struct {\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int32\n\tShoeSize  Size\n\tShirtSize NullSize\n}\n\nfunc (q *Queries) NewUser(ctx context.Context, db DBTX, arg NewUserParams) error {\n\t_, err := db.Exec(ctx, newUser,\n\t\targ.FirstName,\n\t\targ.LastName,\n\t\targ.Age,\n\t\targ.ShoeSize,\n\t\targ.ShirtSize,\n\t)\n\treturn err\n}\n\nconst updateSizes = `-- name: UpdateSizes :exec\nUPDATE users\nSET shoe_size = $2, shirt_size = $3\nWHERE id = $1\n`\n\ntype UpdateSizesParams struct {\n\tID        int32\n\tShoeSize  Size\n\tShirtSize NullSize\n}\n\nfunc (q *Queries) UpdateSizes(ctx context.Context, db DBTX, arg UpdateSizesParams) error {\n\t_, err := db.Exec(ctx, updateSizes, arg.ID, arg.ShoeSize, arg.ShirtSize)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n\n-- name: NewUser :exec\nINSERT INTO users (\n    first_name,\n    last_name,\n    age,\n    shoe_size,\n    shirt_size\n) VALUES\n($1, $2, $3, $4, $5);\n\n-- name: UpdateSizes :exec\nUPDATE users\nSET shoe_size = $2, shirt_size = $3\nWHERE id = $1;\n\n-- name: DeleteBySize :exec\nDELETE FROM users\nWHERE shoe_size = $1 AND shirt_size = $2;"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TYPE size AS ENUM('x-small', 'small', 'medium', 'large', 'x-large');\n\n\nCREATE TABLE users (\n    id integer NOT NULL GENERATED ALWAYS AS IDENTITY PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL,\n    shoe_size size NOT NULL,\n    shirt_size size\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_methods_with_db_argument\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New() *Queries {\n\treturn &Queries{}\n}\n\ntype Queries struct {\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Size string\n\nconst (\n\tSizeXSmall Size = \"x-small\"\n\tSizeSmall  Size = \"small\"\n\tSizeMedium Size = \"medium\"\n\tSizeLarge  Size = \"large\"\n\tSizeXLarge Size = \"x-large\"\n)\n\nfunc (e *Size) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Size(s)\n\tcase string:\n\t\t*e = Size(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Size: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullSize struct {\n\tSize  Size\n\tValid bool // Valid is true if Size is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullSize) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Size, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Size.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullSize) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Size), nil\n}\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  pgtype.Text\n\tAge       int32\n\tShoeSize  Size\n\tShirtSize NullSize\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst deleteBySize = `-- name: DeleteBySize :exec\nDELETE FROM users\nWHERE shoe_size = $1 AND shirt_size = $2\n`\n\ntype DeleteBySizeParams struct {\n\tShoeSize  Size\n\tShirtSize NullSize\n}\n\nfunc (q *Queries) DeleteBySize(ctx context.Context, db DBTX, arg DeleteBySizeParams) error {\n\t_, err := db.Exec(ctx, deleteBySize, arg.ShoeSize, arg.ShirtSize)\n\treturn err\n}\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age, shoe_size, shirt_size FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) {\n\trows, err := db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t\t&i.ShoeSize,\n\t\t\t&i.ShirtSize,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst newUser = `-- name: NewUser :exec\nINSERT INTO users (\n    first_name,\n    last_name,\n    age,\n    shoe_size,\n    shirt_size\n) VALUES\n($1, $2, $3, $4, $5)\n`\n\ntype NewUserParams struct {\n\tFirstName string\n\tLastName  pgtype.Text\n\tAge       int32\n\tShoeSize  Size\n\tShirtSize NullSize\n}\n\nfunc (q *Queries) NewUser(ctx context.Context, db DBTX, arg NewUserParams) error {\n\t_, err := db.Exec(ctx, newUser,\n\t\targ.FirstName,\n\t\targ.LastName,\n\t\targ.Age,\n\t\targ.ShoeSize,\n\t\targ.ShirtSize,\n\t)\n\treturn err\n}\n\nconst updateSizes = `-- name: UpdateSizes :exec\nUPDATE users\nSET shoe_size = $2, shirt_size = $3\nWHERE id = $1\n`\n\ntype UpdateSizesParams struct {\n\tID        int32\n\tShoeSize  Size\n\tShirtSize NullSize\n}\n\nfunc (q *Queries) UpdateSizes(ctx context.Context, db DBTX, arg UpdateSizesParams) error {\n\t_, err := db.Exec(ctx, updateSizes, arg.ID, arg.ShoeSize, arg.ShirtSize)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n\n-- name: NewUser :exec\nINSERT INTO users (\n    first_name,\n    last_name,\n    age,\n    shoe_size,\n    shirt_size\n) VALUES\n($1, $2, $3, $4, $5);\n\n-- name: UpdateSizes :exec\nUPDATE users\nSET shoe_size = $2, shirt_size = $3\nWHERE id = $1;\n\n-- name: DeleteBySize :exec\nDELETE FROM users\nWHERE shoe_size = $1 AND shirt_size = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TYPE size AS ENUM('x-small', 'small', 'medium', 'large', 'x-large');\n\n\nCREATE TABLE users (\n    id integer NOT NULL GENERATED ALWAYS AS IDENTITY PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL,\n    shoe_size size NOT NULL,\n    shirt_size size\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_methods_with_db_argument\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New() *Queries {\n\treturn &Queries{}\n}\n\ntype Queries struct {\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype Size string\n\nconst (\n\tSizeXSmall Size = \"x-small\"\n\tSizeSmall  Size = \"small\"\n\tSizeMedium Size = \"medium\"\n\tSizeLarge  Size = \"large\"\n\tSizeXLarge Size = \"x-large\"\n)\n\nfunc (e *Size) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = Size(s)\n\tcase string:\n\t\t*e = Size(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for Size: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullSize struct {\n\tSize  Size\n\tValid bool // Valid is true if Size is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullSize) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.Size, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.Size.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullSize) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.Size), nil\n}\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int32\n\tShoeSize  Size\n\tShirtSize NullSize\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst deleteBySize = `-- name: DeleteBySize :exec\nDELETE FROM users\nWHERE shoe_size = $1 AND shirt_size = $2\n`\n\ntype DeleteBySizeParams struct {\n\tShoeSize  Size\n\tShirtSize NullSize\n}\n\nfunc (q *Queries) DeleteBySize(ctx context.Context, db DBTX, arg DeleteBySizeParams) error {\n\t_, err := db.ExecContext(ctx, deleteBySize, arg.ShoeSize, arg.ShirtSize)\n\treturn err\n}\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age, shoe_size, shirt_size FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context, db DBTX) ([]User, error) {\n\trows, err := db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t\t&i.ShoeSize,\n\t\t\t&i.ShirtSize,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst newUser = `-- name: NewUser :exec\nINSERT INTO users (\n    first_name,\n    last_name,\n    age,\n    shoe_size,\n    shirt_size\n) VALUES\n($1, $2, $3, $4, $5)\n`\n\ntype NewUserParams struct {\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int32\n\tShoeSize  Size\n\tShirtSize NullSize\n}\n\nfunc (q *Queries) NewUser(ctx context.Context, db DBTX, arg NewUserParams) error {\n\t_, err := db.ExecContext(ctx, newUser,\n\t\targ.FirstName,\n\t\targ.LastName,\n\t\targ.Age,\n\t\targ.ShoeSize,\n\t\targ.ShirtSize,\n\t)\n\treturn err\n}\n\nconst updateSizes = `-- name: UpdateSizes :exec\nUPDATE users\nSET shoe_size = $2, shirt_size = $3\nWHERE id = $1\n`\n\ntype UpdateSizesParams struct {\n\tID        int32\n\tShoeSize  Size\n\tShirtSize NullSize\n}\n\nfunc (q *Queries) UpdateSizes(ctx context.Context, db DBTX, arg UpdateSizesParams) error {\n\t_, err := db.ExecContext(ctx, updateSizes, arg.ID, arg.ShoeSize, arg.ShirtSize)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/stdlib/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n\n-- name: NewUser :exec\nINSERT INTO users (\n    first_name,\n    last_name,\n    age,\n    shoe_size,\n    shirt_size\n) VALUES\n($1, $2, $3, $4, $5);\n\n-- name: UpdateSizes :exec\nUPDATE users\nSET shoe_size = $2, shirt_size = $3\nWHERE id = $1;\n\n-- name: DeleteBySize :exec\nDELETE FROM users\nWHERE shoe_size = $1 AND shirt_size = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE size AS ENUM('x-small', 'small', 'medium', 'large', 'x-large');\n\nCREATE TABLE users (\n    id integer NOT NULL GENERATED ALWAYS AS IDENTITY PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL,\n    shoe_size size NOT NULL,\n    shirt_size size\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/enum/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_methods_with_db_argument\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum_column/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1503\nhttps://github.com/sqlc-dev/sqlc/issues/2475\n\n"
  },
  {
    "path": "internal/endtoend/testdata/enum_column/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum_column/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype AuthorsAddItem string\n\nconst (\n\tAuthorsAddItemOk    AuthorsAddItem = \"ok\"\n\tAuthorsAddItemAdded AuthorsAddItem = \"added\"\n)\n\nfunc (e *AuthorsAddItem) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = AuthorsAddItem(s)\n\tcase string:\n\t\t*e = AuthorsAddItem(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for AuthorsAddItem: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullAuthorsAddItem struct {\n\tAuthorsAddItem AuthorsAddItem\n\tValid          bool // Valid is true if AuthorsAddItem is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullAuthorsAddItem) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.AuthorsAddItem, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.AuthorsAddItem.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullAuthorsAddItem) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.AuthorsAddItem), nil\n}\n\ntype AuthorsAdded string\n\nconst (\n\tAuthorsAddedOk AuthorsAdded = \"ok\"\n)\n\nfunc (e *AuthorsAdded) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = AuthorsAdded(s)\n\tcase string:\n\t\t*e = AuthorsAdded(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for AuthorsAdded: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullAuthorsAdded struct {\n\tAuthorsAdded AuthorsAdded\n\tValid        bool // Valid is true if AuthorsAdded is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullAuthorsAdded) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.AuthorsAdded, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.AuthorsAdded.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullAuthorsAdded) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.AuthorsAdded), nil\n}\n\ntype AuthorsBar string\n\nconst (\n\tAuthorsBarOk AuthorsBar = \"ok\"\n)\n\nfunc (e *AuthorsBar) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = AuthorsBar(s)\n\tcase string:\n\t\t*e = AuthorsBar(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for AuthorsBar: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullAuthorsBar struct {\n\tAuthorsBar AuthorsBar\n\tValid      bool // Valid is true if AuthorsBar is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullAuthorsBar) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.AuthorsBar, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.AuthorsBar.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullAuthorsBar) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.AuthorsBar), nil\n}\n\ntype AuthorsFoo string\n\nconst (\n\tAuthorsFooOk AuthorsFoo = \"ok\"\n)\n\nfunc (e *AuthorsFoo) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = AuthorsFoo(s)\n\tcase string:\n\t\t*e = AuthorsFoo(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for AuthorsFoo: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullAuthorsFoo struct {\n\tAuthorsFoo AuthorsFoo\n\tValid      bool // Valid is true if AuthorsFoo is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullAuthorsFoo) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.AuthorsFoo, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.AuthorsFoo.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullAuthorsFoo) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.AuthorsFoo), nil\n}\n\ntype AuthorsRemoveItem string\n\nconst (\n\tAuthorsRemoveItemOk AuthorsRemoveItem = \"ok\"\n)\n\nfunc (e *AuthorsRemoveItem) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = AuthorsRemoveItem(s)\n\tcase string:\n\t\t*e = AuthorsRemoveItem(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for AuthorsRemoveItem: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullAuthorsRemoveItem struct {\n\tAuthorsRemoveItem AuthorsRemoveItem\n\tValid             bool // Valid is true if AuthorsRemoveItem is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullAuthorsRemoveItem) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.AuthorsRemoveItem, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.AuthorsRemoveItem.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullAuthorsRemoveItem) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.AuthorsRemoveItem), nil\n}\n\ntype BooksFoo string\n\nconst (\n\tBooksFooOk BooksFoo = \"ok\"\n)\n\nfunc (e *BooksFoo) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = BooksFoo(s)\n\tcase string:\n\t\t*e = BooksFoo(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for BooksFoo: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullBooksFoo struct {\n\tBooksFoo BooksFoo\n\tValid    bool // Valid is true if BooksFoo is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullBooksFoo) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.BooksFoo, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.BooksFoo.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullBooksFoo) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.BooksFoo), nil\n}\n\ntype Author struct {\n\tID         int64\n\tFoo        AuthorsFoo\n\tBar        AuthorsBar\n\tAdded      AuthorsAdded\n\tAddItem    AuthorsAddItem\n\tRemoveItem AuthorsRemoveItem\n}\n\ntype Book struct {\n\tID  int64\n\tFoo BooksFoo\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum_column/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, foo, bar, added, add_item, remove_item FROM authors\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Foo,\n\t\t\t&i.Bar,\n\t\t\t&i.Added,\n\t\t\t&i.AddItem,\n\t\t\t&i.RemoveItem,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listBooks = `-- name: ListBooks :many\nSELECT id, foo FROM books\n`\n\nfunc (q *Queries) ListBooks(ctx context.Context) ([]Book, error) {\n\trows, err := q.db.QueryContext(ctx, listBooks)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Book\n\tfor rows.Next() {\n\t\tvar i Book\n\t\tif err := rows.Scan(&i.ID, &i.Foo); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum_column/mysql/query.sql",
    "content": "/* name: ListAuthors :many */\nSELECT * FROM authors;\n\n/* name: ListBooks :many */\nSELECT * FROM books;\n"
  },
  {
    "path": "internal/endtoend/testdata/enum_column/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n  id          BIGINT PRIMARY KEY,\n  foo         ENUM(\"ok\") DEFAULT \"ok\" NOT NULL,\n  renamed     ENUM(\"ok\") DEFAULT \"ok\" NOT NULL,\n  removed     ENUM(\"ok\") DEFAULT \"ok\" NOT NULL,\n  add_item    ENUM(\"ok\") DEFAULT \"ok\" NOT NULL,\n  remove_item ENUM(\"ok\", \"removed\") DEFAULT \"ok\" NOT NULL\n);\n\nCREATE TABLE renamed (\n  id       BIGINT PRIMARY KEY,\n  foo      ENUM(\"ok\") DEFAULT \"ok\" NOT NULL\n);\n\nCREATE TABLE removed (\n  id       BIGINT PRIMARY KEY,\n  foo      ENUM(\"ok\") DEFAULT \"ok\" NOT NULL\n);\n\n/* Rename column */\nALTER TABLE authors RENAME COLUMN renamed TO bar;\n\n/* Drop column */\nALTER TABLE authors DROP COLUMN removed;\n\n/* Add column */\nALTER TABLE authors ADD COLUMN added ENUM(\"ok\") DEFAULT \"ok\" NOT NULL;\n\n/* Add enum values */\nALTER TABLE authors MODIFY add_item ENUM(\"ok\", \"added\") DEFAULT \"ok\" NOT NULL;\n\n/* Remove enum values */\nALTER TABLE authors MODIFY remove_item ENUM(\"ok\") DEFAULT \"ok\" NOT NULL;\n\n/* Drop table */\nDROP TABLE removed;\n\n/* Rename table */\nALTER TABLE renamed RENAME TO books;\n"
  },
  {
    "path": "internal/endtoend/testdata/enum_column/mysql/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"mysql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n"
  },
  {
    "path": "internal/endtoend/testdata/enum_ordering/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum_ordering/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype EnumType string\n\nconst (\n\tEnumTypeBeforefirst EnumType = \"beforefirst\"\n\tEnumTypeFirst       EnumType = \"first\"\n\tEnumTypeSecond      EnumType = \"second\"\n\tEnumTypeThird       EnumType = \"third\"\n\tEnumTypeFourth      EnumType = \"fourth\"\n\tEnumTypeFifth       EnumType = \"fifth\"\n\tEnumTypeLast        EnumType = \"last\"\n\tEnumTypeAfterlast   EnumType = \"afterlast\"\n)\n\nfunc (e *EnumType) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = EnumType(s)\n\tcase string:\n\t\t*e = EnumType(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for EnumType: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullEnumType struct {\n\tEnumType EnumType\n\tValid    bool // Valid is true if EnumType is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullEnumType) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.EnumType, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.EnumType.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullEnumType) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.EnumType), nil\n}\n\nfunc (e EnumType) Valid() bool {\n\tswitch e {\n\tcase EnumTypeBeforefirst,\n\t\tEnumTypeFirst,\n\t\tEnumTypeSecond,\n\t\tEnumTypeThird,\n\t\tEnumTypeFourth,\n\t\tEnumTypeFifth,\n\t\tEnumTypeLast,\n\t\tEnumTypeAfterlast:\n\t\treturn true\n\t}\n\treturn false\n}\n\nfunc AllEnumTypeValues() []EnumType {\n\treturn []EnumType{\n\t\tEnumTypeBeforefirst,\n\t\tEnumTypeFirst,\n\t\tEnumTypeSecond,\n\t\tEnumTypeThird,\n\t\tEnumTypeFourth,\n\t\tEnumTypeFifth,\n\t\tEnumTypeLast,\n\t\tEnumTypeAfterlast,\n\t}\n}\n\ntype Foo struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum_ordering/postgresql/stdlib/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tGetAll(ctx context.Context) ([]int32, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/enum_ordering/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id FROM foo\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/enum_ordering/postgresql/stdlib/query.sql",
    "content": "-- name: GetAll :many\r\nSELECT * FROM foo;"
  },
  {
    "path": "internal/endtoend/testdata/enum_ordering/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE enum_type AS ENUM ('first', 'last');\r\nALTER TYPE enum_type ADD VALUE 'afterlast' AFTER 'last';\r\nALTER TYPE enum_type ADD VALUE 'third' AFTER 'first';\r\nALTER TYPE enum_type ADD VALUE 'fourth' BEFORE 'last';\r\nALTER TYPE enum_type ADD VALUE 'fifth' AFTER 'fourth';\r\nALTER TYPE enum_type ADD VALUE 'second' BEFORE 'third';\r\nALTER TYPE enum_type ADD VALUE 'beforefirst' BEFORE 'first';\r\n\r\nCREATE TABLE foo (\r\n    id SERIAL PRIMARY KEY\r\n);"
  },
  {
    "path": "internal/endtoend/testdata/enum_ordering/postgresql/stdlib/sqlc.json",
    "content": "{\r\n  \"version\": \"2\",\r\n  \"sql\": [\r\n    {\r\n      \"engine\": \"postgresql\",\r\n      \"schema\": \"schema.sql\",\r\n      \"queries\": \"query.sql\",\r\n      \"gen\": {\r\n        \"go\": {\r\n          \"out\" : \"go\",\r\n          \"package\" : \"db\",\r\n          \"emit_interface\": true,\r\n          \"emit_all_enum_values\": true,\r\n          \"emit_enum_valid_method\": true\r\n        }\r\n      }\r\n    }\r\n  ]\r\n}\r\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/mysql/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/mysql/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/mysql/db/mysql.query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: mysql.query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst createTable = `-- name: CreateTable :exec\nCREATE TABLE test (id INTEGER NOT NULL)\n`\n\nfunc (q *Queries) CreateTable(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, createTable)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/mysql/mysql.query.sql",
    "content": "-- name: CreateTable :exec\nCREATE TABLE test (id INTEGER NOT NULL);\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/mysql/mysql.schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/mysql/sqlc.yaml",
    "content": "version: 2\nsql:\n- queries: mysql.query.sql\n  schema: mysql.schema.sql\n  engine: mysql\n  gen:\n    go:\n      out: db\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/postgresql/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/postgresql/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/postgresql/db/postgresql.query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: postgresql.query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst createTable = `-- name: CreateTable :exec\nCREATE TABLE test (id INTEGER NOT NULL)\n`\n\nfunc (q *Queries) CreateTable(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, createTable)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/postgresql/postgresql.query.sql",
    "content": "-- name: CreateTable :exec\nCREATE TABLE test (id INTEGER NOT NULL);\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/postgresql/postgresql.schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/postgresql/sqlc.yaml",
    "content": "version: 2\nsql:\n- queries: postgresql.query.sql\n  schema: postgresql.schema.sql\n  engine: postgresql\n  gen:\n    go:\n      out: db\n\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/sqlite/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/sqlite/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/sqlite/db/sqlite.query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: sqlite.query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst createTable = `-- name: CreateTable :exec\nCREATE TABLE test (id INTEGER NOT NULL)\n`\n\nfunc (q *Queries) CreateTable(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, createTable)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/sqlite/sqlc.yaml",
    "content": "version: 2\nsql:\n- queries: sqlite.query.sql\n  schema: sqlite.schema.sql\n  engine: sqlite\n  gen:\n    go:\n      out: db\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/sqlite/sqlite.query.sql",
    "content": "-- name: CreateTable :exec\nCREATE TABLE test (id INTEGER NOT NULL);\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_create_table/sqlite/sqlite.schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar  sql.NullInt32\n\tBars []int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/pgx/v4/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tBar(ctx context.Context) error\n\tBars(ctx context.Context) error\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst bar = `-- name: Bar :exec\nSELECT bar\nFROM foo\n`\n\nfunc (q *Queries) Bar(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, bar)\n\treturn err\n}\n\nconst bars = `-- name: Bars :exec\nSELECT bars\nFROM foo\n`\n\nfunc (q *Queries) Bars(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, bars)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/pgx/v4/query.sql",
    "content": "-- name: Bar :exec\nSELECT bar\nFROM foo;\n\n-- name: Bars :exec\nSELECT bars\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar int, bars int[] not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar  pgtype.Int4\n\tBars []int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/pgx/v5/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tBar(ctx context.Context) error\n\tBars(ctx context.Context) error\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst bar = `-- name: Bar :exec\nSELECT bar\nFROM foo\n`\n\nfunc (q *Queries) Bar(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, bar)\n\treturn err\n}\n\nconst bars = `-- name: Bars :exec\nSELECT bars\nFROM foo\n`\n\nfunc (q *Queries) Bars(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, bars)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/pgx/v5/query.sql",
    "content": "-- name: Bar :exec\nSELECT bar\nFROM foo;\n\n-- name: Bars :exec\nSELECT bars\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar int, bars int[] not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar  sql.NullInt32\n\tBars []int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/stdlib/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tBar(ctx context.Context) error\n\tBars(ctx context.Context) error\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst bar = `-- name: Bar :exec\nSELECT bar\nFROM foo\n`\n\nfunc (q *Queries) Bar(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, bar)\n\treturn err\n}\n\nconst bars = `-- name: Bars :exec\nSELECT bars\nFROM foo\n`\n\nfunc (q *Queries) Bars(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, bars)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/stdlib/query.sql",
    "content": "-- name: Bar :exec\nSELECT bar\nFROM foo;\n\n-- name: Bars :exec\nSELECT bars\nFROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar int, bars int[] not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_imports/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_lastid/go_postgresql_stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_lastid/go_postgresql_stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_lastid/go_postgresql_stdlib/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tInsertBar(ctx context.Context) (int64, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_lastid/go_postgresql_stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst insertBar = `-- name: InsertBar :execlastid\nINSERT INTO bar () VALUES ()\n`\n\nfunc (q *Queries) InsertBar(ctx context.Context) (int64, error) {\n\tresult, err := q.db.ExecContext(ctx, insertBar)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.LastInsertId()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_lastid/go_postgresql_stdlib/query.sql",
    "content": "-- name: InsertBar :execlastid\nINSERT INTO bar () VALUES ();"
  },
  {
    "path": "internal/endtoend/testdata/exec_lastid/go_postgresql_stdlib/schema.sql",
    "content": "CREATE TABLE bar (id integer(10) NOT NULL AUTO_INCREMENT PRIMARY KEY);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_lastid/go_postgresql_stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"mysql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/exec_no_return_struct/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/2970\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_no_return_struct/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_no_return_struct/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Job struct {\n\tTaskName string\n\tLastRun  pgtype.Timestamptz\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_no_return_struct/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst resetTaskRun = `-- name: ResetTaskRun :exec\nUPDATE job\nSET last_run = NOW()\nFROM (\n        SELECT last_run,\n            task_name\n        FROM job AS o\n        WHERE o.task_name = $1 \n  \t\tFOR UPDATE\n    ) AS old_values\nWHERE job.task_name = $1\nRETURNING job.last_run AS this_run,\n    old_values.last_run AS last_run\n`\n\nfunc (q *Queries) ResetTaskRun(ctx context.Context, taskName string) error {\n\t_, err := q.db.Exec(ctx, resetTaskRun, taskName)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_no_return_struct/postgresql/pgx/query.sql",
    "content": "-- name: ResetTaskRun :exec\nUPDATE job\nSET last_run = NOW()\nFROM (\n        SELECT last_run,\n            task_name\n        FROM job AS o\n        WHERE o.task_name = $1 \n  \t\tFOR UPDATE\n    ) AS old_values\nWHERE job.task_name = $1\nRETURNING job.last_run AS this_run,\n    old_values.last_run AS last_run;\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_no_return_struct/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE IF NOT EXISTS job\n(\n    task_name text NOT NULL,\n    last_run timestamp with time zone DEFAULT now() NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_no_return_struct/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_pgx/v4/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n)\n\ntype Querier interface {\n\tDeleteBarByID(ctx context.Context, id int32) (pgconn.CommandTag, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n)\n\nconst deleteBarByID = `-- name: DeleteBarByID :execresult\nDELETE FROM bar WHERE id = $1\n`\n\nfunc (q *Queries) DeleteBarByID(ctx context.Context, id int32) (pgconn.CommandTag, error) {\n\treturn q.db.Exec(ctx, deleteBarByID, id)\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_pgx/v4/query.sql",
    "content": "-- name: DeleteBarByID :execresult\nDELETE FROM bar WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_pgx/v5/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype Querier interface {\n\tDeleteBarByID(ctx context.Context, id int32) (pgconn.CommandTag, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\nconst deleteBarByID = `-- name: DeleteBarByID :execresult\nDELETE FROM bar WHERE id = $1\n`\n\nfunc (q *Queries) DeleteBarByID(ctx context.Context, id int32) (pgconn.CommandTag, error) {\n\treturn q.db.Exec(ctx, deleteBarByID, id)\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_pgx/v5/query.sql",
    "content": "-- name: DeleteBarByID :execresult\nDELETE FROM bar WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_stdlib/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype Querier interface {\n\tDeleteBarByID(ctx context.Context, id int32) (sql.Result, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst deleteBarByID = `-- name: DeleteBarByID :execresult\nDELETE FROM bar WHERE id = $1\n`\n\nfunc (q *Queries) DeleteBarByID(ctx context.Context, id int32) (sql.Result, error) {\n\treturn q.db.ExecContext(ctx, deleteBarByID, id)\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_stdlib/query.sql",
    "content": "-- name: DeleteBarByID :execresult\nDELETE FROM bar WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_result/go_postgresql_stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v4/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tDeleteBarByID(ctx context.Context, id int32) (int64, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteBarByID = `-- name: DeleteBarByID :execrows\nDELETE FROM bar WHERE id = $1\n`\n\nfunc (q *Queries) DeleteBarByID(ctx context.Context, id int32) (int64, error) {\n\tresult, err := q.db.Exec(ctx, deleteBarByID, id)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected(), nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v4/query.sql",
    "content": "-- name: DeleteBarByID :execrows\nDELETE FROM bar WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v5/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tDeleteBarByID(ctx context.Context, id int32) (int64, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteBarByID = `-- name: DeleteBarByID :execrows\nDELETE FROM bar WHERE id = $1\n`\n\nfunc (q *Queries) DeleteBarByID(ctx context.Context, id int32) (int64, error) {\n\tresult, err := q.db.Exec(ctx, deleteBarByID, id)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected(), nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v5/query.sql",
    "content": "-- name: DeleteBarByID :execrows\nDELETE FROM bar WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_stdlib/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tDeleteBarByID(ctx context.Context, id int32) (int64, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteBarByID = `-- name: DeleteBarByID :execrows\nDELETE FROM bar WHERE id = $1\n`\n\nfunc (q *Queries) DeleteBarByID(ctx context.Context, id int32) (int64, error) {\n\tresult, err := q.db.ExecContext(ctx, deleteBarByID, id)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_stdlib/query.sql",
    "content": "-- name: DeleteBarByID :execrows\nDELETE FROM bar WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/exec_rows/go_postgresql_stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/full_outer_join/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/full_outer_join/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Author struct {\n\tID   int64\n\tName string\n}\n\ntype Book struct {\n\tID    int64\n\tTitle string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/full_outer_join/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT a.id, name, b.id, title FROM authors AS a\nFULL OUTER JOIN books AS b\n ON a.id = b.id\nWHERE a.id = ? LIMIT 1\n`\n\ntype GetAuthorRow struct {\n\tID    sql.NullInt64\n\tName  sql.NullString\n\tID_2  sql.NullInt64\n\tTitle sql.NullString\n}\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (GetAuthorRow, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i GetAuthorRow\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Name,\n\t\t&i.ID_2,\n\t\t&i.Title,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/full_outer_join/sqlite/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors AS a\nFULL OUTER JOIN books AS b\n ON a.id = b.id\nWHERE a.id = ? LIMIT 1;"
  },
  {
    "path": "internal/endtoend/testdata/full_outer_join/sqlite/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   INTEGER PRIMARY KEY,\n  name text      NOT NULL\n);\n\nCREATE TABLE books (\n  id INTEGER PRIMARY KEY,\n  title text NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/full_outer_join/sqlite/sqlc.json",
    "content": "{\"version\": \"1\", \"packages\": [{\"path\": \"go\", \"engine\": \"sqlite\", \"schema\": \"schema.sql\", \"queries\": \"query.sql\", \"name\": \"querytest\"}]}"
  },
  {
    "path": "internal/endtoend/testdata/func_aggregate/pganalyze/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_aggregate/pganalyze/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_aggregate/pganalyze/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_aggregate/pganalyze/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst percentile = `-- name: Percentile :one\nselect percentile_disc(0.5) within group (order by authors.name)\nfrom authors\n`\n\nfunc (q *Queries) Percentile(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, percentile)\n\tvar percentile_disc string\n\terr := row.Scan(&percentile_disc)\n\treturn percentile_disc, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_aggregate/pganalyze/query.sql",
    "content": "-- name: Percentile :one\nselect percentile_disc(0.5) within group (order by authors.name)\nfrom authors;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_aggregate/pganalyze/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/func_aggregate/pganalyze/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_aggregate/postgresql/exec.json",
    "content": "{\n    \"contexts\": [\"base\"]\n}"
  },
  {
    "path": "internal/endtoend/testdata/func_aggregate/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_aggregate/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_aggregate/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst percentile = `-- name: Percentile :one\nselect percentile_disc(0.5) within group (order by authors.name)\nfrom authors\n`\n\nfunc (q *Queries) Percentile(ctx context.Context) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, percentile)\n\tvar percentile_disc interface{}\n\terr := row.Scan(&percentile_disc)\n\treturn percentile_disc, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_aggregate/postgresql/query.sql",
    "content": "-- name: Percentile :one\nselect percentile_disc(0.5) within group (order by authors.name)\nfrom authors;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_aggregate/postgresql/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/func_aggregate/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst makeIntervalDays = `-- name: MakeIntervalDays :one\nSELECT make_interval(days => $1::int)\n`\n\nfunc (q *Queries) MakeIntervalDays(ctx context.Context, dollar_1 int32) (int64, error) {\n\trow := q.db.QueryRow(ctx, makeIntervalDays, dollar_1)\n\tvar make_interval int64\n\terr := row.Scan(&make_interval)\n\treturn make_interval, err\n}\n\nconst makeIntervalMonths = `-- name: MakeIntervalMonths :one\nSELECT make_interval(months => $1::int)\n`\n\nfunc (q *Queries) MakeIntervalMonths(ctx context.Context, months int32) (int64, error) {\n\trow := q.db.QueryRow(ctx, makeIntervalMonths, months)\n\tvar make_interval int64\n\terr := row.Scan(&make_interval)\n\treturn make_interval, err\n}\n\nconst makeIntervalSecs = `-- name: MakeIntervalSecs :one\nSELECT make_interval(secs => $1)\n`\n\nfunc (q *Queries) MakeIntervalSecs(ctx context.Context, secs float64) (int64, error) {\n\trow := q.db.QueryRow(ctx, makeIntervalSecs, secs)\n\tvar make_interval int64\n\terr := row.Scan(&make_interval)\n\treturn make_interval, err\n}\n\nconst plus = `-- name: Plus :one\nSELECT plus(b => $2, a => $1)\n`\n\ntype PlusParams struct {\n\tA int32\n\tB int32\n}\n\nfunc (q *Queries) Plus(ctx context.Context, arg PlusParams) (int32, error) {\n\trow := q.db.QueryRow(ctx, plus, arg.A, arg.B)\n\tvar plus int32\n\terr := row.Scan(&plus)\n\treturn plus, err\n}\n\nconst tableArgs = `-- name: TableArgs :one\nSELECT table_args(x => $1)\n`\n\nfunc (q *Queries) TableArgs(ctx context.Context, x int32) (int32, error) {\n\trow := q.db.QueryRow(ctx, tableArgs, x)\n\tvar table_args int32\n\terr := row.Scan(&table_args)\n\treturn table_args, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/pgx/v4/query.sql",
    "content": "-- name: Plus :one\nSELECT plus(b => $2, a => $1);\n\n-- name: MakeIntervalSecs :one\nSELECT make_interval(secs => $1);\n\n-- name: MakeIntervalDays :one\nSELECT make_interval(days => $1::int);\n\n-- name: MakeIntervalMonths :one\nSELECT make_interval(months => sqlc.arg('months')::int);\n\n-- name: TableArgs :one\nSELECT table_args(x => $1);\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/pgx/v4/schema.sql",
    "content": "CREATE FUNCTION plus(a integer, b integer) RETURNS integer AS $$\n    BEGIN\n        RETURN a + b;\n    END;\n$$ LANGUAGE plpgsql;\n\nCREATE FUNCTION table_args(x INT) RETURNS TABLE (y INT) AS 'SELECT x' LANGUAGE sql;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst makeIntervalDays = `-- name: MakeIntervalDays :one\nSELECT make_interval(days => $1::int)\n`\n\nfunc (q *Queries) MakeIntervalDays(ctx context.Context, dollar_1 int32) (pgtype.Interval, error) {\n\trow := q.db.QueryRow(ctx, makeIntervalDays, dollar_1)\n\tvar make_interval pgtype.Interval\n\terr := row.Scan(&make_interval)\n\treturn make_interval, err\n}\n\nconst makeIntervalMonths = `-- name: MakeIntervalMonths :one\nSELECT make_interval(months => $1::int)\n`\n\nfunc (q *Queries) MakeIntervalMonths(ctx context.Context, months int32) (pgtype.Interval, error) {\n\trow := q.db.QueryRow(ctx, makeIntervalMonths, months)\n\tvar make_interval pgtype.Interval\n\terr := row.Scan(&make_interval)\n\treturn make_interval, err\n}\n\nconst makeIntervalSecs = `-- name: MakeIntervalSecs :one\nSELECT make_interval(secs => $1)\n`\n\nfunc (q *Queries) MakeIntervalSecs(ctx context.Context, secs float64) (pgtype.Interval, error) {\n\trow := q.db.QueryRow(ctx, makeIntervalSecs, secs)\n\tvar make_interval pgtype.Interval\n\terr := row.Scan(&make_interval)\n\treturn make_interval, err\n}\n\nconst plus = `-- name: Plus :one\nSELECT plus(b => $2, a => $1)\n`\n\ntype PlusParams struct {\n\tA int32\n\tB int32\n}\n\nfunc (q *Queries) Plus(ctx context.Context, arg PlusParams) (int32, error) {\n\trow := q.db.QueryRow(ctx, plus, arg.A, arg.B)\n\tvar plus int32\n\terr := row.Scan(&plus)\n\treturn plus, err\n}\n\nconst tableArgs = `-- name: TableArgs :one\nSELECT table_args(x => $1)\n`\n\nfunc (q *Queries) TableArgs(ctx context.Context, x int32) (int32, error) {\n\trow := q.db.QueryRow(ctx, tableArgs, x)\n\tvar table_args int32\n\terr := row.Scan(&table_args)\n\treturn table_args, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/pgx/v5/query.sql",
    "content": "-- name: Plus :one\nSELECT plus(b => $2, a => $1);\n\n-- name: MakeIntervalSecs :one\nSELECT make_interval(secs => $1);\n\n-- name: MakeIntervalDays :one\nSELECT make_interval(days => $1::int);\n\n-- name: MakeIntervalMonths :one\nSELECT make_interval(months => sqlc.arg('months')::int);\n\n-- name: TableArgs :one\nSELECT table_args(x => $1);\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/pgx/v5/schema.sql",
    "content": "CREATE FUNCTION plus(a integer, b integer) RETURNS integer AS $$\n    BEGIN\n        RETURN a + b;\n    END;\n$$ LANGUAGE plpgsql;\n\nCREATE FUNCTION table_args(x INT) RETURNS TABLE (y INT) AS 'SELECT x' LANGUAGE sql;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst makeIntervalDays = `-- name: MakeIntervalDays :one\nSELECT make_interval(days => $1::int)\n`\n\nfunc (q *Queries) MakeIntervalDays(ctx context.Context, dollar_1 int32) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, makeIntervalDays, dollar_1)\n\tvar make_interval int64\n\terr := row.Scan(&make_interval)\n\treturn make_interval, err\n}\n\nconst makeIntervalMonths = `-- name: MakeIntervalMonths :one\nSELECT make_interval(months => $1::int)\n`\n\nfunc (q *Queries) MakeIntervalMonths(ctx context.Context, months int32) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, makeIntervalMonths, months)\n\tvar make_interval int64\n\terr := row.Scan(&make_interval)\n\treturn make_interval, err\n}\n\nconst makeIntervalSecs = `-- name: MakeIntervalSecs :one\nSELECT make_interval(secs => $1)\n`\n\nfunc (q *Queries) MakeIntervalSecs(ctx context.Context, secs float64) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, makeIntervalSecs, secs)\n\tvar make_interval int64\n\terr := row.Scan(&make_interval)\n\treturn make_interval, err\n}\n\nconst plus = `-- name: Plus :one\nSELECT plus(b => $2, a => $1)\n`\n\ntype PlusParams struct {\n\tA int32\n\tB int32\n}\n\nfunc (q *Queries) Plus(ctx context.Context, arg PlusParams) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, plus, arg.A, arg.B)\n\tvar plus int32\n\terr := row.Scan(&plus)\n\treturn plus, err\n}\n\nconst tableArgs = `-- name: TableArgs :one\nSELECT table_args(x => $1)\n`\n\nfunc (q *Queries) TableArgs(ctx context.Context, x int32) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, tableArgs, x)\n\tvar table_args int32\n\terr := row.Scan(&table_args)\n\treturn table_args, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/stdlib/query.sql",
    "content": "-- name: Plus :one\nSELECT plus(b => $2, a => $1);\n\n-- name: MakeIntervalSecs :one\nSELECT make_interval(secs => $1);\n\n-- name: MakeIntervalDays :one\nSELECT make_interval(days => $1::int);\n\n-- name: MakeIntervalMonths :one\nSELECT make_interval(months => sqlc.arg('months')::int);\n\n-- name: TableArgs :one\nSELECT table_args(x => $1);\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/stdlib/schema.sql",
    "content": "CREATE FUNCTION plus(a integer, b integer) RETURNS integer AS $$\n    BEGIN\n        RETURN a + b;\n    END;\n$$ LANGUAGE plpgsql;\n\nCREATE FUNCTION table_args(x INT) RETURNS TABLE (y INT) AS 'SELECT x' LANGUAGE sql;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst plusPositionalCast = `-- name: PlusPositionalCast :one\nSELECT plus($1, $2::INTEGER)\n`\n\ntype PlusPositionalCastParams struct {\n\tA       int32\n\tColumn2 int32\n}\n\nfunc (q *Queries) PlusPositionalCast(ctx context.Context, arg PlusPositionalCastParams) (int32, error) {\n\trow := q.db.QueryRow(ctx, plusPositionalCast, arg.A, arg.Column2)\n\tvar plus int32\n\terr := row.Scan(&plus)\n\treturn plus, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/pgx/v4/query.sql",
    "content": "-- name: PlusPositionalCast :one\nSELECT plus($1, $2::INTEGER);\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/pgx/v4/schema.sql",
    "content": "CREATE FUNCTION plus(a integer, b integer) RETURNS integer AS $$\n    BEGIN\n        RETURN a + b;\n    END;\n$$ LANGUAGE plpgsql;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst plusPositionalCast = `-- name: PlusPositionalCast :one\nSELECT plus($1, $2::INTEGER)\n`\n\ntype PlusPositionalCastParams struct {\n\tA       int32\n\tColumn2 int32\n}\n\nfunc (q *Queries) PlusPositionalCast(ctx context.Context, arg PlusPositionalCastParams) (int32, error) {\n\trow := q.db.QueryRow(ctx, plusPositionalCast, arg.A, arg.Column2)\n\tvar plus int32\n\terr := row.Scan(&plus)\n\treturn plus, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/pgx/v5/query.sql",
    "content": "-- name: PlusPositionalCast :one\nSELECT plus($1, $2::INTEGER);\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/pgx/v5/schema.sql",
    "content": "CREATE FUNCTION plus(a integer, b integer) RETURNS integer AS $$\n    BEGIN\n        RETURN a + b;\n    END;\n$$ LANGUAGE plpgsql;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst plusPositionalCast = `-- name: PlusPositionalCast :one\nSELECT plus($1, $2::INTEGER)\n`\n\ntype PlusPositionalCastParams struct {\n\tA       int32\n\tColumn2 int32\n}\n\nfunc (q *Queries) PlusPositionalCast(ctx context.Context, arg PlusPositionalCastParams) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, plusPositionalCast, arg.A, arg.Column2)\n\tvar plus int32\n\terr := row.Scan(&plus)\n\treturn plus, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/stdlib/query.sql",
    "content": "-- name: PlusPositionalCast :one\nSELECT plus($1, $2::INTEGER);\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/stdlib/schema.sql",
    "content": "CREATE FUNCTION plus(a integer, b integer) RETURNS integer AS $$\n    BEGIN\n        RETURN a + b;\n    END;\n$$ LANGUAGE plpgsql;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/func_args_typecast/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst demo = `-- name: Demo :one\nSELECT CAST(GREATEST(1,2,3,4,5) AS UNSIGNED) as col1\n`\n\nfunc (q *Queries) Demo(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, demo)\n\tvar col1 int64\n\terr := row.Scan(&col1)\n\treturn col1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/mysql/query.sql",
    "content": "-- name: Demo :one\nSELECT CAST(GREATEST(1,2,3,4,5) AS UNSIGNED) as col1\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/mysql/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/google/uuid\"\n)\n\nconst demo = `-- name: Demo :one\nSELECT uuid_generate_v5('7c4597a0-8cfa-4c19-8da0-b8474a36440d', $1)::uuid as col1\n`\n\nfunc (q *Queries) Demo(ctx context.Context, name string) (uuid.UUID, error) {\n\trow := q.db.QueryRow(ctx, demo, name)\n\tvar col1 uuid.UUID\n\terr := row.Scan(&col1)\n\treturn col1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/pgx/v4/query.sql",
    "content": "-- name: Demo :one\nSELECT uuid_generate_v5('7c4597a0-8cfa-4c19-8da0-b8474a36440d', $1)::uuid as col1;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/pgx/v4/schema.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst demo = `-- name: Demo :one\nSELECT uuid_generate_v5('7c4597a0-8cfa-4c19-8da0-b8474a36440d', $1)::uuid as col1\n`\n\nfunc (q *Queries) Demo(ctx context.Context, name string) (pgtype.UUID, error) {\n\trow := q.db.QueryRow(ctx, demo, name)\n\tvar col1 pgtype.UUID\n\terr := row.Scan(&col1)\n\treturn col1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/pgx/v5/query.sql",
    "content": "-- name: Demo :one\nSELECT uuid_generate_v5('7c4597a0-8cfa-4c19-8da0-b8474a36440d', $1)::uuid as col1;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/pgx/v5/schema.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/google/uuid\"\n)\n\nconst demo = `-- name: Demo :one\nSELECT uuid_generate_v5('7c4597a0-8cfa-4c19-8da0-b8474a36440d', $1)::uuid as col1\n`\n\nfunc (q *Queries) Demo(ctx context.Context, name string) (uuid.UUID, error) {\n\trow := q.db.QueryRowContext(ctx, demo, name)\n\tvar col1 uuid.UUID\n\terr := row.Scan(&col1)\n\treturn col1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/stdlib/query.sql",
    "content": "-- name: Demo :one\nSELECT uuid_generate_v5('7c4597a0-8cfa-4c19-8da0-b8474a36440d', $1)::uuid as col1;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/stdlib/schema.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst demo = `-- name: Demo :one\nSELECT CAST(CHAR(1,2,3,4,5) AS BLOB) AS col1\n`\n\nfunc (q *Queries) Demo(ctx context.Context) ([]byte, error) {\n\trow := q.db.QueryRowContext(ctx, demo)\n\tvar col1 []byte\n\terr := row.Scan(&col1)\n\treturn col1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/sqlite/query.sql",
    "content": "-- name: Demo :one\nSELECT CAST(CHAR(1,2,3,4,5) AS BLOB) AS col1\n"
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/sqlite/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/func_call_cast/sqlite/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"sqlite\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Book struct {\n\tID     int32\n\tTitle  string\n\tAuthor string\n\tPages  int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst authorPages = `-- name: AuthorPages :many\nselect author, count(title) as num_books, SUM(pages) as total_pages\nfrom books\ngroup by author\n`\n\ntype AuthorPagesRow struct {\n\tAuthor     string\n\tNumBooks   int64\n\tTotalPages interface{}\n}\n\nfunc (q *Queries) AuthorPages(ctx context.Context) ([]AuthorPagesRow, error) {\n\trows, err := q.db.QueryContext(ctx, authorPages)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AuthorPagesRow\n\tfor rows.Next() {\n\t\tvar i AuthorPagesRow\n\t\tif err := rows.Scan(&i.Author, &i.NumBooks, &i.TotalPages); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/mysql/query.sql",
    "content": "-- name: AuthorPages :many\nselect author, count(title) as num_books, SUM(pages) as total_pages\nfrom books\ngroup by author;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/mysql/schema.sql",
    "content": "CREATE TABLE books (\n                       id   integer PRIMARY KEY,\n                       title text      NOT NULL,\n                       author text     NOT NULL,\n                       pages integer      NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Book struct {\n\tID     int32\n\tTitle  string\n\tAuthor string\n\tPages  int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst authorPages = `-- name: AuthorPages :many\nselect author, count(title) as num_books, SUM(pages) as total_pages\nfrom books\ngroup by author\n`\n\ntype AuthorPagesRow struct {\n\tAuthor     string\n\tNumBooks   int64\n\tTotalPages int64\n}\n\nfunc (q *Queries) AuthorPages(ctx context.Context) ([]AuthorPagesRow, error) {\n\trows, err := q.db.QueryContext(ctx, authorPages)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AuthorPagesRow\n\tfor rows.Next() {\n\t\tvar i AuthorPagesRow\n\t\tif err := rows.Scan(&i.Author, &i.NumBooks, &i.TotalPages); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/postgresql/query.sql",
    "content": "-- name: AuthorPages :many\nselect author, count(title) as num_books, SUM(pages) as total_pages\nfrom books\ngroup by author;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/postgresql/schema.sql",
    "content": "CREATE TABLE books (\n  id     integer PRIMARY KEY,\n  title  text    NOT NULL,\n  author text    NOT NULL,\n  pages  integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Book struct {\n\tID     int64\n\tTitle  string\n\tAuthor string\n\tPages  int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst authorPages = `-- name: AuthorPages :many\nselect author, count(title) as num_books, sum(pages) as total_pages\nfrom books\ngroup by author\n`\n\ntype AuthorPagesRow struct {\n\tAuthor     string\n\tNumBooks   int64\n\tTotalPages sql.NullFloat64\n}\n\nfunc (q *Queries) AuthorPages(ctx context.Context) ([]AuthorPagesRow, error) {\n\trows, err := q.db.QueryContext(ctx, authorPages)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AuthorPagesRow\n\tfor rows.Next() {\n\t\tvar i AuthorPagesRow\n\t\tif err := rows.Scan(&i.Author, &i.NumBooks, &i.TotalPages); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/sqlite/query.sql",
    "content": "-- name: AuthorPages :many\nselect author, count(title) as num_books, sum(pages) as total_pages\nfrom books\ngroup by author;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/sqlite/schema.sql",
    "content": "CREATE TABLE books (\n                       id   integer PRIMARY KEY,\n                       title text      NOT NULL,\n                       author text     NOT NULL,\n                       pages integer      NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/func_match_types/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_out_param/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1654\n"
  },
  {
    "path": "internal/endtoend/testdata/func_out_param/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_out_param/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_out_param/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :one\nSELECT id FROM add_author (\n  $1, $2\n)\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  string\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (pgtype.Int4, error) {\n\trow := q.db.QueryRow(ctx, createAuthor, arg.Name, arg.Bio)\n\tvar id pgtype.Int4\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_out_param/pgx/query.sql",
    "content": "-- name: CreateAuthor :one\nSELECT * FROM add_author (\n  sqlc.arg(name), sqlc.arg(bio)\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/func_out_param/pgx/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n\nCREATE OR REPLACE FUNCTION add_author (name text, bio text, out id int)\nAS $$\nDECLARE\nBEGIN\n  id = 123;\nEND;\n$$ LANGUAGE plpgsql;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_out_param/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/pganalyze/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/pganalyze/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/pganalyze/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/pganalyze/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getDate = `-- name: GetDate :one\nSELECT now from NOW()\n`\n\nfunc (q *Queries) GetDate(ctx context.Context) (pgtype.Timestamptz, error) {\n\trow := q.db.QueryRow(ctx, getDate)\n\tvar now pgtype.Timestamptz\n\terr := row.Scan(&now)\n\treturn now, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/pganalyze/query.sql",
    "content": "/* name: GetDate :one */\nSELECT * from NOW();"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/pganalyze/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/pganalyze/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/pgx/v5/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getDate = `-- name: GetDate :one\nSELECT  from CURRENT_DATE\n`\n\ntype GetDateRow struct {\n}\n\nfunc (q *Queries) GetDate(ctx context.Context) (GetDateRow, error) {\n\trow := q.db.QueryRow(ctx, getDate)\n\tvar i GetDateRow\n\terr := row.Scan()\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/pgx/v5/query.sql",
    "content": "/* name: GetDate :one */\nSELECT * from CURRENT_DATE;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/pgx/v5/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/stdlib/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getDate = `-- name: GetDate :one\nSELECT  from CURRENT_DATE\n`\n\ntype GetDateRow struct {\n}\n\nfunc (q *Queries) GetDate(ctx context.Context) (GetDateRow, error) {\n\trow := q.db.QueryRowContext(ctx, getDate)\n\tvar i GetDateRow\n\terr := row.Scan()\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/stdlib/query.sql",
    "content": "/* name: GetDate :one */\nSELECT * from CURRENT_DATE;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/stdlib/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/func_return_date/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_record/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1979\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_record/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_record/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_record/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype MyTable struct {\n\tData []byte\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_record/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getData = `-- name: GetData :one\nSELECT key, value\nFROM my_table, jsonb_each(data)\nLIMIT 1\n`\n\ntype GetDataRow struct {\n\tKey   pgtype.Text\n\tValue []byte\n}\n\nfunc (q *Queries) GetData(ctx context.Context) (GetDataRow, error) {\n\trow := q.db.QueryRow(ctx, getData)\n\tvar i GetDataRow\n\terr := row.Scan(&i.Key, &i.Value)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_record/postgresql/pgx/query.sql",
    "content": "-- name: GetData :one\nSELECT key, value\nFROM my_table, jsonb_each(data)\nLIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_record/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE my_table (\n  data JSONB NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_record/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst generateSeries = `-- name: GenerateSeries :many\nSELECT ($1::int) + i\nFROM generate_series(0, $2::int) AS i\nLIMIT 1\n`\n\ntype GenerateSeriesParams struct {\n\tColumn1 int32\n\tColumn2 int32\n}\n\nfunc (q *Queries) GenerateSeries(ctx context.Context, arg GenerateSeriesParams) ([]int32, error) {\n\trows, err := q.db.Query(ctx, generateSeries, arg.Column1, arg.Column2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar column_1 int32\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/pgx/v4/query.sql",
    "content": "/* name: GenerateSeries :many */\nSELECT ($1::int) + i\nFROM generate_series(0, $2::int) AS i\nLIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/pgx/v4/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst generateSeries = `-- name: GenerateSeries :many\nSELECT ($1::int) + i\nFROM generate_series(0, $2::int) AS i\nLIMIT 1\n`\n\ntype GenerateSeriesParams struct {\n\tColumn1 int32\n\tColumn2 int32\n}\n\nfunc (q *Queries) GenerateSeries(ctx context.Context, arg GenerateSeriesParams) ([]int32, error) {\n\trows, err := q.db.Query(ctx, generateSeries, arg.Column1, arg.Column2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar column_1 int32\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/pgx/v5/query.sql",
    "content": "/* name: GenerateSeries :many */\nSELECT ($1::int) + i\nFROM generate_series(0, $2::int) AS i\nLIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/pgx/v5/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst generateSeries = `-- name: GenerateSeries :many\nSELECT ($1::int) + i\nFROM generate_series(0, $2::int) AS i\nLIMIT 1\n`\n\ntype GenerateSeriesParams struct {\n\tColumn1 int32\n\tColumn2 int32\n}\n\nfunc (q *Queries) GenerateSeries(ctx context.Context, arg GenerateSeriesParams) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, generateSeries, arg.Column1, arg.Column2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar column_1 int32\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/stdlib/query.sql",
    "content": "/* name: GenerateSeries :many */\nSELECT ($1::int) + i\nFROM generate_series(0, $2::int) AS i\nLIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/stdlib/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/func_return_series/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1322\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Account struct {\n\tID       int32\n\tUsername string\n\tPassword string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst foo = `-- name: Foo :one\nSELECT register_account FROM register_account('a', 'b')\n`\n\nfunc (q *Queries) Foo(ctx context.Context) (pgtype.Int4, error) {\n\trow := q.db.QueryRow(ctx, foo)\n\tvar register_account pgtype.Int4\n\terr := row.Scan(&register_account)\n\treturn register_account, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table/postgresql/pgx/query.sql",
    "content": "-- name: Foo :one\nSELECT * FROM register_account('a', 'b');\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE accounts (\n  id         INTEGER GENERATED ALWAYS AS IDENTITY PRIMARY KEY,\n  username   TEXT NOT NULL UNIQUE,\n  password   TEXT NOT NULL\n);\n\n-- this is a useless and horrifying function cause we don't hash\n-- the password, this is just to repro the bug in sqlc\nCREATE OR REPLACE FUNCTION register_account(\n    _username TEXT,\n    _password VARCHAR(70)\n)\nRETURNS TABLE (\n    account_id   INTEGER\n)\nAS $$\nBEGIN\n  INSERT INTO accounts (username, password)\n       VALUES (\n         _username,\n         _password\n       )\n    RETURNING id INTO account_id;\n\n  RETURN NEXT;\nEND;\n$$ LANGUAGE plpgsql;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table_columns/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/2386\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table_columns/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table_columns/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table_columns/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Blog struct {\n\tID   int32\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table_columns/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst testFuncSelectBlog = `-- name: TestFuncSelectBlog :many\nselect id, name from test_select_blog($1)\n`\n\ntype TestFuncSelectBlogRow struct {\n\tID   pgtype.Int4\n\tName pgtype.Text\n}\n\nfunc (q *Queries) TestFuncSelectBlog(ctx context.Context, pID int32) ([]TestFuncSelectBlogRow, error) {\n\trows, err := q.db.Query(ctx, testFuncSelectBlog, pID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []TestFuncSelectBlogRow\n\tfor rows.Next() {\n\t\tvar i TestFuncSelectBlogRow\n\t\tif err := rows.Scan(&i.ID, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table_columns/postgresql/pgx/query.sql",
    "content": "-- name: TestFuncSelectBlog :many\nselect id, name from test_select_blog($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table_columns/postgresql/pgx/schema.sql",
    "content": "create table blog (\n    id serial primary key,\n    name text not null\n);\n\ncreate function test_select_blog(in p_id int)\n    returns table (id int, name text) AS $$\nBEGIN RETURN QUERY\n    select id, name from blog where id = p_id;\nEND;\n$$ language plpgsql;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_return_table_columns/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/func_star_expansion/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/2364\n"
  },
  {
    "path": "internal/endtoend/testdata/func_star_expansion/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_star_expansion/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_star_expansion/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/func_star_expansion/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst testFuncGetTime = `-- name: TestFuncGetTime :one\nselect test_func_get_time from test_func_get_time()\n`\n\nfunc (q *Queries) TestFuncGetTime(ctx context.Context) (pgtype.Timestamp, error) {\n\trow := q.db.QueryRow(ctx, testFuncGetTime)\n\tvar test_func_get_time pgtype.Timestamp\n\terr := row.Scan(&test_func_get_time)\n\treturn test_func_get_time, err\n}\n\nconst testFuncSelectBlog = `-- name: TestFuncSelectBlog :one\nselect test_func_select_blog from test_func_select_blog($1)\n`\n\nfunc (q *Queries) TestFuncSelectBlog(ctx context.Context, pID int32) (interface{}, error) {\n\trow := q.db.QueryRow(ctx, testFuncSelectBlog, pID)\n\tvar test_func_select_blog interface{}\n\terr := row.Scan(&test_func_select_blog)\n\treturn test_func_select_blog, err\n}\n\nconst testFuncSelectString = `-- name: TestFuncSelectString :one\nselect test_func_select_string from test_func_select_string($1)\n`\n\nfunc (q *Queries) TestFuncSelectString(ctx context.Context, pString string) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, testFuncSelectString, pString)\n\tvar test_func_select_string pgtype.Text\n\terr := row.Scan(&test_func_select_string)\n\treturn test_func_select_string, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_star_expansion/postgresql/pgx/query.sql",
    "content": "-- name: TestFuncGetTime :one\nselect * from test_func_get_time();\n\n-- name: TestFuncSelectString :one\nselect * from test_func_select_string($1);\n\n-- name: TestFuncSelectBlog :one\nselect * from test_func_select_blog($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/func_star_expansion/postgresql/pgx/schema.sql",
    "content": "create function test_func_get_time ()\n    returns timestamp AS $$\nBegin\n    return now();\nEnd;\n$$ language plpgsql;\n\ncreate function test_func_select_string (in p_string text)\n    returns text AS $$\nBegin\n    return p_string;\nEnd;\n$$ language plpgsql;\n\ncreate function test_func_select_blog(in p_id int)\n    returns table (id int, name text, created_at timestamp, updated_at timestamp) AS $$\nBEGIN RETURN QUERY\n    select id, name, created_at, updated_at from blog where id = p_id;\nEND;\n$$ language plpgsql;\n"
  },
  {
    "path": "internal/endtoend/testdata/func_star_expansion/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/func_variadic/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_variadic/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"encoding/json\"\n)\n\ntype Test struct {\n\tID sql.NullInt32\n\tJ  json.RawMessage\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_variadic/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst updateJ = `-- name: UpdateJ :exec\nUPDATE\n    test\nSET\n    j = jsonb_build_object($1::text, $2::text, $3::text, $4::text)\nWHERE\n    id = $5\n`\n\ntype UpdateJParams struct {\n\tColumn1 string\n\tColumn2 string\n\tColumn3 string\n\tColumn4 string\n\tID      sql.NullInt32\n}\n\nfunc (q *Queries) UpdateJ(ctx context.Context, arg UpdateJParams) error {\n\t_, err := q.db.ExecContext(ctx, updateJ,\n\t\targ.Column1,\n\t\targ.Column2,\n\t\targ.Column3,\n\t\targ.Column4,\n\t\targ.ID,\n\t)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/func_variadic/postgresql/stdlib/query.sql",
    "content": "-- name: UpdateJ :exec\nUPDATE\n    test\nSET\n    j = jsonb_build_object($1::text, $2::text, $3::text, $4::text)\nWHERE\n    id = $5;"
  },
  {
    "path": "internal/endtoend/testdata/func_variadic/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE test (\n    id integer,\n    j jsonb NOT NULL\n    );\n\n"
  },
  {
    "path": "internal/endtoend/testdata/func_variadic/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/geometric/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/geometric/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgtype\"\n)\n\ntype TestTable struct {\n\tVBoxNull     pgtype.Box\n\tVCircleNull  pgtype.Circle\n\tVLineNull    pgtype.Line\n\tVLsegNull    pgtype.Lseg\n\tVPathNull    pgtype.Path\n\tVPointNull   pgtype.Point\n\tVPolygonNull pgtype.Polygon\n\tVBox         pgtype.Box\n\tVCircle      pgtype.Circle\n\tVLine        pgtype.Line\n\tVLseg        pgtype.Lseg\n\tVPath        pgtype.Path\n\tVPoint       pgtype.Point\n\tVPolygon     pgtype.Polygon\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/geometric/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectTest = `-- name: SelectTest :many\nSELECT v_box_null, v_circle_null, v_line_null, v_lseg_null, v_path_null, v_point_null, v_polygon_null, v_box, v_circle, v_line, v_lseg, v_path, v_point, v_polygon\nfrom test_table\n`\n\nfunc (q *Queries) SelectTest(ctx context.Context) ([]TestTable, error) {\n\trows, err := q.db.Query(ctx, selectTest)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []TestTable\n\tfor rows.Next() {\n\t\tvar i TestTable\n\t\tif err := rows.Scan(\n\t\t\t&i.VBoxNull,\n\t\t\t&i.VCircleNull,\n\t\t\t&i.VLineNull,\n\t\t\t&i.VLsegNull,\n\t\t\t&i.VPathNull,\n\t\t\t&i.VPointNull,\n\t\t\t&i.VPolygonNull,\n\t\t\t&i.VBox,\n\t\t\t&i.VCircle,\n\t\t\t&i.VLine,\n\t\t\t&i.VLseg,\n\t\t\t&i.VPath,\n\t\t\t&i.VPoint,\n\t\t\t&i.VPolygon,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/geometric/pgx/v4/query.sql",
    "content": "-- name: SelectTest :many\nSELECT *\nfrom test_table;\n"
  },
  {
    "path": "internal/endtoend/testdata/geometric/pgx/v4/schema.sql",
    "content": "CREATE TABLE test_table\n(\n    v_box_null     box,\n    v_circle_null  circle,\n    v_line_null    line,\n    v_lseg_null    lseg,\n    v_path_null    path,\n    v_point_null   point,\n    v_polygon_null polygon,\n    v_box          box     not null,\n    v_circle       circle  not null,\n    v_line         line    not null,\n    v_lseg         lseg    not null,\n    v_path         path    not null,\n    v_point        point   not null,\n    v_polygon      polygon not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/geometric/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/geometric/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/geometric/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype TestTable struct {\n\tVBoxNull     pgtype.Box\n\tVCircleNull  pgtype.Circle\n\tVLineNull    pgtype.Line\n\tVLsegNull    pgtype.Lseg\n\tVPathNull    pgtype.Path\n\tVPointNull   pgtype.Point\n\tVPolygonNull pgtype.Polygon\n\tVBox         pgtype.Box\n\tVCircle      pgtype.Circle\n\tVLine        pgtype.Line\n\tVLseg        pgtype.Lseg\n\tVPath        pgtype.Path\n\tVPoint       pgtype.Point\n\tVPolygon     pgtype.Polygon\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/geometric/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectTest = `-- name: SelectTest :many\nSELECT v_box_null, v_circle_null, v_line_null, v_lseg_null, v_path_null, v_point_null, v_polygon_null, v_box, v_circle, v_line, v_lseg, v_path, v_point, v_polygon\nfrom test_table\n`\n\nfunc (q *Queries) SelectTest(ctx context.Context) ([]TestTable, error) {\n\trows, err := q.db.Query(ctx, selectTest)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []TestTable\n\tfor rows.Next() {\n\t\tvar i TestTable\n\t\tif err := rows.Scan(\n\t\t\t&i.VBoxNull,\n\t\t\t&i.VCircleNull,\n\t\t\t&i.VLineNull,\n\t\t\t&i.VLsegNull,\n\t\t\t&i.VPathNull,\n\t\t\t&i.VPointNull,\n\t\t\t&i.VPolygonNull,\n\t\t\t&i.VBox,\n\t\t\t&i.VCircle,\n\t\t\t&i.VLine,\n\t\t\t&i.VLseg,\n\t\t\t&i.VPath,\n\t\t\t&i.VPoint,\n\t\t\t&i.VPolygon,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/geometric/pgx/v5/query.sql",
    "content": "-- name: SelectTest :many\nSELECT *\nfrom test_table;\n"
  },
  {
    "path": "internal/endtoend/testdata/geometric/pgx/v5/schema.sql",
    "content": "CREATE TABLE test_table\n(\n    v_box_null     box,\n    v_circle_null  circle,\n    v_line_null    line,\n    v_lseg_null    lseg,\n    v_path_null    path,\n    v_point_null   point,\n    v_polygon_null polygon,\n    v_box          box     not null,\n    v_circle       circle  not null,\n    v_line         line    not null,\n    v_lseg         lseg    not null,\n    v_path         path    not null,\n    v_point        point   not null,\n    v_polygon      polygon not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/geometric/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/go.mod",
    "content": "module github.com/sqlc-dev/sqlc/endtoend\n\ngo 1.18\n\nrequire (\n\tgithub.com/go-sql-driver/mysql v1.7.0\n\tgithub.com/gofrs/uuid v4.0.0+incompatible\n\tgithub.com/google/uuid v1.3.0\n\tgithub.com/hexon/mysqltsv v0.1.0\n\tgithub.com/jackc/pgconn v1.5.1-0.20200601181101-fa742c524853\n\tgithub.com/jackc/pgtype v1.6.2\n\tgithub.com/jackc/pgx/v4 v4.6.1-0.20200606145419-4e5062306904\n\tgithub.com/jackc/pgx/v5 v5.4.3\n\tgithub.com/lib/pq v1.9.0\n\tgithub.com/sqlc-dev/pqtype v0.2.0\n\tgithub.com/sqlc-dev/sqlc-testdata v1.0.0\n\tgithub.com/volatiletech/null/v8 v8.1.2\n\tgopkg.in/guregu/null.v4 v4.0.0\n)\n\nrequire (\n\tgithub.com/friendsofgo/errors v0.9.2 // indirect\n\tgithub.com/jackc/chunkreader/v2 v2.0.1 // indirect\n\tgithub.com/jackc/pgio v1.0.0 // indirect\n\tgithub.com/jackc/pgpassfile v1.0.0 // indirect\n\tgithub.com/jackc/pgproto3/v2 v2.0.1 // indirect\n\tgithub.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect\n\tgithub.com/pgvector/pgvector-go v0.1.1 // indirect\n\tgithub.com/volatiletech/inflect v0.0.1 // indirect\n\tgithub.com/volatiletech/randomize v0.0.1 // indirect\n\tgithub.com/volatiletech/strmangle v0.0.1 // indirect\n\tgolang.org/x/crypto v0.9.0 // indirect\n\tgolang.org/x/text v0.9.0 // indirect\n\tgolang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect\n)\n"
  },
  {
    "path": "internal/endtoend/testdata/go.sum",
    "content": "github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=\ngithub.com/cockroachdb/apd v1.1.0 h1:3LFP3629v+1aKXU5Q37mxmRxX/pIu1nijXydLShEq5I=\ngithub.com/cockroachdb/apd v1.1.0/go.mod h1:8Sl8LxpKi29FqWXR16WEFZRNSz3SoPzUzeMeY4+DwBQ=\ngithub.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=\ngithub.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4=\ngithub.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY=\ngithub.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\ngithub.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=\ngithub.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=\ngithub.com/friendsofgo/errors v0.9.2 h1:X6NYxef4efCBdwI7BgS820zFaN7Cphrmb+Pljdzjtgk=\ngithub.com/friendsofgo/errors v0.9.2/go.mod h1:yCvFW5AkDIL9qn7suHVLiI/gH228n7PC4Pn44IGoTOI=\ngithub.com/go-sql-driver/mysql v1.7.0 h1:ueSltNNllEqE3qcWBTD0iQd3IpL/6U+mJxLkazJ7YPc=\ngithub.com/go-sql-driver/mysql v1.7.0/go.mod h1:OXbVy3sEdcQ2Doequ6Z5BW6fXNQTmx+9S1MCJN5yJMI=\ngithub.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=\ngithub.com/gofrs/uuid v3.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=\ngithub.com/gofrs/uuid v4.0.0+incompatible h1:1SD/1F5pU8p29ybwgQSwpQk+mwdRrXCYuPhW6m+TnJw=\ngithub.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=\ngithub.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=\ngithub.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=\ngithub.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=\ngithub.com/hexon/mysqltsv v0.1.0 h1:48wYQlsPH8ZEkKAVCdsOYzMYAlEoevw8ZWD8rqYPdlg=\ngithub.com/hexon/mysqltsv v0.1.0/go.mod h1:p3vPBkpxebjHWF1bWKYNcXx5pFu+yAG89QZQEKSvVrY=\ngithub.com/jackc/chunkreader v1.0.0/go.mod h1:RT6O25fNZIuasFJRyZ4R/Y2BbhasbmZXF9QQ7T3kePo=\ngithub.com/jackc/chunkreader/v2 v2.0.0/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk=\ngithub.com/jackc/chunkreader/v2 v2.0.1 h1:i+RDz65UE+mmpjTfyz0MoVTnzeYxroil2G82ki7MGG8=\ngithub.com/jackc/chunkreader/v2 v2.0.1/go.mod h1:odVSm741yZoC3dpHEUXIqA9tQRhFrgOHwnPIn9lDKlk=\ngithub.com/jackc/pgconn v0.0.0-20190420214824-7e0022ef6ba3/go.mod h1:jkELnwuX+w9qN5YIfX0fl88Ehu4XC3keFuOJJk9pcnA=\ngithub.com/jackc/pgconn v0.0.0-20190824142844-760dd75542eb/go.mod h1:lLjNuW/+OfW9/pnVKPazfWOgNfH2aPem8YQ7ilXGvJE=\ngithub.com/jackc/pgconn v0.0.0-20190831204454-2fabfa3c18b7/go.mod h1:ZJKsE/KZfsUgOEh9hBm+xYTstcNHg7UPMVJqRfQxq4s=\ngithub.com/jackc/pgconn v1.4.0/go.mod h1:Y2O3ZDF0q4mMacyWV3AstPJpeHXWGEetiFttmq5lahk=\ngithub.com/jackc/pgconn v1.5.0/go.mod h1:QeD3lBfpTFe8WUnPZWN5KY/mB8FGMIYRdd8P8Jr0fAI=\ngithub.com/jackc/pgconn v1.5.1-0.20200601181101-fa742c524853 h1:LRlrfJW9S99uiOCY8F/qLvX1yEY1TVAaCBHFb79yHBQ=\ngithub.com/jackc/pgconn v1.5.1-0.20200601181101-fa742c524853/go.mod h1:QeD3lBfpTFe8WUnPZWN5KY/mB8FGMIYRdd8P8Jr0fAI=\ngithub.com/jackc/pgio v1.0.0 h1:g12B9UwVnzGhueNavwioyEEpAmqMe1E/BN9ES+8ovkE=\ngithub.com/jackc/pgio v1.0.0/go.mod h1:oP+2QK2wFfUWgr+gxjoBH9KGBb31Eio69xUb0w5bYf8=\ngithub.com/jackc/pgmock v0.0.0-20190831213851-13a1b77aafa2 h1:JVX6jT/XfzNqIjye4717ITLaNwV9mWbJx0dLCpcRzdA=\ngithub.com/jackc/pgmock v0.0.0-20190831213851-13a1b77aafa2/go.mod h1:fGZlG77KXmcq05nJLRkk0+p82V8B8Dw8KN2/V9c/OAE=\ngithub.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM=\ngithub.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg=\ngithub.com/jackc/pgproto3 v1.1.0/go.mod h1:eR5FA3leWg7p9aeAqi37XOTgTIbkABlvcPB3E5rlc78=\ngithub.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190420180111-c116219b62db/go.mod h1:bhq50y+xrl9n5mRYyCBFKkpRVTLYJVWeCc+mEAI3yXA=\ngithub.com/jackc/pgproto3/v2 v2.0.0-alpha1.0.20190609003834-432c2951c711/go.mod h1:uH0AWtUmuShn0bcesswc4aBTWGvw0cAxIJp+6OB//Wg=\ngithub.com/jackc/pgproto3/v2 v2.0.0-rc3/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM=\ngithub.com/jackc/pgproto3/v2 v2.0.0-rc3.0.20190831210041-4c03ce451f29/go.mod h1:ryONWYqW6dqSg1Lw6vXNMXoBJhpzvWKnT95C46ckYeM=\ngithub.com/jackc/pgproto3/v2 v2.0.1 h1:Rdjp4NFjwHnEslx2b66FfCI2S0LhO4itac3hXz6WX9M=\ngithub.com/jackc/pgproto3/v2 v2.0.1/go.mod h1:WfJCnwN3HIg9Ish/j3sgWXnAfK8A9Y0bwXYU5xKaEdA=\ngithub.com/jackc/pgservicefile v0.0.0-20200307190119-3430c5407db8/go.mod h1:vsD4gTJCa9TptPL8sPkXrLZ+hDuNrZCnj29CQpr4X1E=\ngithub.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b h1:C8S2+VttkHFdOOCXJe+YGfa4vHYwlt4Zx+IVXQ97jYg=\ngithub.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b/go.mod h1:vsD4gTJCa9TptPL8sPkXrLZ+hDuNrZCnj29CQpr4X1E=\ngithub.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a h1:bbPeKD0xmW/Y25WS6cokEszi5g+S0QxI/d45PkRi7Nk=\ngithub.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a/go.mod h1:5TJZWKEWniPve33vlWYSoGYefn3gLQRzjfDlhSJ9ZKM=\ngithub.com/jackc/pgtype v0.0.0-20190421001408-4ed0de4755e0/go.mod h1:hdSHsc1V01CGwFsrv11mJRHWJ6aifDLfdV3aVjFF0zg=\ngithub.com/jackc/pgtype v0.0.0-20190824184912-ab885b375b90/go.mod h1:KcahbBH1nCMSo2DXpzsoWOAfFkdEtEJpPbVLq8eE+mc=\ngithub.com/jackc/pgtype v0.0.0-20190828014616-a8802b16cc59/go.mod h1:MWlu30kVJrUS8lot6TQqcg7mtthZ9T0EoIBFiJcmcyw=\ngithub.com/jackc/pgtype v1.2.0/go.mod h1:5m2OfMh1wTK7x+Fk952IDmI4nw3nPrvtQdM0ZT4WpC0=\ngithub.com/jackc/pgtype v1.3.1-0.20200510190516-8cd94a14c75a/go.mod h1:vaogEUkALtxZMCH411K+tKzNpwzCKU+AnPzBKZ+I+Po=\ngithub.com/jackc/pgtype v1.3.1-0.20200606141011-f6355165a91c/go.mod h1:cvk9Bgu/VzJ9/lxTO5R5sf80p0DiucVtN7ZxvaC4GmQ=\ngithub.com/jackc/pgtype v1.6.2 h1:b3pDeuhbbzBYcg5kwNmNDun4pFUD/0AAr1kLXZLeNt8=\ngithub.com/jackc/pgtype v1.6.2/go.mod h1:JCULISAZBFGrHaOXIIFiyfzW5VY0GRitRr8NeJsrdig=\ngithub.com/jackc/pgx/v4 v4.0.0-20190420224344-cc3461e65d96/go.mod h1:mdxmSJJuR08CZQyj1PVQBHy9XOp5p8/SHH6a0psbY9Y=\ngithub.com/jackc/pgx/v4 v4.0.0-20190421002000-1b8f0016e912/go.mod h1:no/Y67Jkk/9WuGR0JG/JseM9irFbnEPbuWV2EELPNuM=\ngithub.com/jackc/pgx/v4 v4.0.0-pre1.0.20190824185557-6972a5742186/go.mod h1:X+GQnOEnf1dqHGpw7JmHqHc1NxDoalibchSk9/RWuDc=\ngithub.com/jackc/pgx/v4 v4.5.0/go.mod h1:EpAKPLdnTorwmPUUsqrPxy5fphV18j9q3wrfRXgo+kA=\ngithub.com/jackc/pgx/v4 v4.6.1-0.20200510190926-94ba730bb1e9/go.mod h1:t3/cdRQl6fOLDxqtlyhe9UWgfIi9R8+8v8GKV5TRA/o=\ngithub.com/jackc/pgx/v4 v4.6.1-0.20200606145419-4e5062306904 h1:SdGWuGg+Cpxq6Z+ArXt0nafaKeTvtKGEoW+yvycspUU=\ngithub.com/jackc/pgx/v4 v4.6.1-0.20200606145419-4e5062306904/go.mod h1:ZDaNWkt9sW1JMiNn0kdYBaLelIhw7Pg4qd+Vk6tw7Hg=\ngithub.com/jackc/pgx/v5 v5.0.1 h1:JZu9othr7l8so2JMDAGeDUMXqERAuZpovyfl4H50tdg=\ngithub.com/jackc/pgx/v5 v5.0.1/go.mod h1:JBbvW3Hdw77jKl9uJrEDATUZIFM2VFPzRq4RWIhkF4o=\ngithub.com/jackc/pgx/v5 v5.3.1 h1:Fcr8QJ1ZeLi5zsPZqQeUZhNhxfkkKBOgJuYkJHoBOtU=\ngithub.com/jackc/pgx/v5 v5.3.1/go.mod h1:t3JDKnCBlYIc0ewLF0Q7B8MXmoIaBOZj/ic7iHozM/8=\ngithub.com/jackc/pgx/v5 v5.4.3 h1:cxFyXhxlvAifxnkKKdlxv8XqUf59tDlYjnV5YYfsJJY=\ngithub.com/jackc/pgx/v5 v5.4.3/go.mod h1:Ig06C2Vu0t5qXC60W8sqIthScaEnFvojjj9dSljmHRA=\ngithub.com/jackc/puddle v0.0.0-20190413234325-e4ced69a3a2b/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk=\ngithub.com/jackc/puddle v0.0.0-20190608224051-11cab39313c9/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk=\ngithub.com/jackc/puddle v1.1.0/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk=\ngithub.com/jackc/puddle v1.1.1/go.mod h1:m4B5Dj62Y0fbyuIc15OsIqK0+JU8nkqQjsgx7dvjSWk=\ngithub.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=\ngithub.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=\ngithub.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=\ngithub.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=\ngithub.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=\ngithub.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw=\ngithub.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=\ngithub.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=\ngithub.com/lib/pq v1.1.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=\ngithub.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=\ngithub.com/lib/pq v1.3.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=\ngithub.com/lib/pq v1.9.0 h1:L8nSXQQzAYByakOFMTwpjRoHsMJklur4Gi59b6VivR8=\ngithub.com/lib/pq v1.9.0/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o=\ngithub.com/mattn/go-colorable v0.1.1/go.mod h1:FuOcm+DKB9mbwrcAfNl7/TZVBZ6rcnceauSikq3lYCQ=\ngithub.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE=\ngithub.com/mattn/go-colorable v0.1.6/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=\ngithub.com/mattn/go-isatty v0.0.5/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=\ngithub.com/mattn/go-isatty v0.0.7/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=\ngithub.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=\ngithub.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2yME+cCiQ=\ngithub.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=\ngithub.com/pgvector/pgvector-go v0.1.1 h1:kqJigGctFnlWvskUiYIvJRNwUtQl/aMSUZVs0YWQe+g=\ngithub.com/pgvector/pgvector-go v0.1.1/go.mod h1:wLJgD/ODkdtd2LJK4l6evHXTuG+8PxymYAVomKHOWac=\ngithub.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I=\ngithub.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=\ngithub.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=\ngithub.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=\ngithub.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=\ngithub.com/rs/xid v1.2.1/go.mod h1:+uKXf+4Djp6Md1KODXJxgGQPKngRmWyn10oCKFzNHOQ=\ngithub.com/rs/zerolog v1.13.0/go.mod h1:YbFCdg8HfsridGWAh22vktObvhZbQsZXe4/zB0OKkWU=\ngithub.com/rs/zerolog v1.15.0/go.mod h1:xYTKnLHcpfU2225ny5qZjxnj9NvkumZYjJHlAThCjNc=\ngithub.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0=\ngithub.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24/go.mod h1:M+9NzErvs504Cn4c5DxATwIqPbtswREoFCre64PpcG4=\ngithub.com/shopspring/decimal v0.0.0-20200227202807-02e2044944cc h1:jUIKcSPO9MoMJBbEoyE/RJoE8vz7Mb8AjvifMMwSyvY=\ngithub.com/shopspring/decimal v0.0.0-20200227202807-02e2044944cc/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o=\ngithub.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q=\ngithub.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=\ngithub.com/sqlc-dev/pqtype v0.2.0 h1:zfzDpAxjCU0/GO7EgZ7ELUh0w28SrMSHzO3rH5Wd3is=\ngithub.com/sqlc-dev/pqtype v0.2.0/go.mod h1:oyUjp5981ctiL9UYvj1bVvCKi8OXkCa0u645hce7CAs=\ngithub.com/sqlc-dev/sqlc-testdata v1.0.0 h1:NrfFkZ3xh2XHqDNqYE6Q87hhXd1n6GQr3XE0V+CveSQ=\ngithub.com/sqlc-dev/sqlc-testdata v1.0.0/go.mod h1:Ima4gy0tylq+cNW1VSV36/NoAHMbZZKjHNs7SfM9Pns=\ngithub.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=\ngithub.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=\ngithub.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE=\ngithub.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=\ngithub.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=\ngithub.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=\ngithub.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=\ngithub.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=\ngithub.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk=\ngithub.com/volatiletech/inflect v0.0.1 h1:2a6FcMQyhmPZcLa+uet3VJ8gLn/9svWhJxJYwvE8KsU=\ngithub.com/volatiletech/inflect v0.0.1/go.mod h1:IBti31tG6phkHitLlr5j7shC5SOo//x0AjDzaJU1PLA=\ngithub.com/volatiletech/null/v8 v8.1.2 h1:kiTiX1PpwvuugKwfvUNX/SU/5A2KGZMXfGD0DUHdKEI=\ngithub.com/volatiletech/null/v8 v8.1.2/go.mod h1:98DbwNoKEpRrYtGjWFctievIfm4n4MxG0A6EBUcoS5g=\ngithub.com/volatiletech/randomize v0.0.1 h1:eE5yajattWqTB2/eN8df4dw+8jwAzBtbdo5sbWC4nMk=\ngithub.com/volatiletech/randomize v0.0.1/go.mod h1:GN3U0QYqfZ9FOJ67bzax1cqZ5q2xuj2mXrXBjWaRTlY=\ngithub.com/volatiletech/strmangle v0.0.1 h1:UKQoHmY6be/R3tSvD2nQYrH41k43OJkidwEiC74KIzk=\ngithub.com/volatiletech/strmangle v0.0.1/go.mod h1:F6RA6IkB5vq0yTG4GQ0UsbbRcl3ni9P76i+JrTBKFFg=\ngithub.com/zenazn/goji v0.9.0/go.mod h1:7S9M489iMyHBNxwZnk9/EHS098H4/F6TATF2mIxtB1Q=\ngo.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=\ngo.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=\ngo.uber.org/atomic v1.6.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=\ngo.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0=\ngo.uber.org/multierr v1.5.0/go.mod h1:FeouvMocqHpRaaGuG9EjoKcStLC43Zu/fmqdUMPcKYU=\ngo.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA=\ngo.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=\ngo.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q=\ngolang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=\ngolang.org/x/crypto v0.0.0-20190411191339-88737f569e3a/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE=\ngolang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20190820162420-60c769a6c586/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20190911031432-227b76d455e7/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=\ngolang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=\ngolang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 h1:Y/gsMcFOcR+6S6f3YeMKl5g+dZMEWqcz5Czj/GWYbkM=\ngolang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=\ngolang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58=\ngolang.org/x/crypto v0.9.0 h1:LF6fAI+IutBocDJ2OT0Q1g8plpYljMZ4+lty+dsqw3g=\ngolang.org/x/crypto v0.9.0/go.mod h1:yrmDGqONDYtNj3tH8X9dzUun2m2lzPa9ngI6/RUPGR0=\ngolang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=\ngolang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc=\ngolang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=\ngolang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/net v0.0.0-20190813141303-74dc4d7220e7/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=\ngolang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=\ngolang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=\ngolang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=\ngolang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=\ngolang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk=\ngolang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=\ngolang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=\ngolang.org/x/text v0.7.0 h1:4BRB4x83lYWy72KwLD/qYDuTu7q9PjSagHvijDw7cLo=\ngolang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=\ngolang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE=\ngolang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=\ngolang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=\ngolang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=\ngolang.org/x/tools v0.0.0-20190425163242-31fd60d6bfdc/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=\ngolang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=\ngolang.org/x/tools v0.0.0-20190823170909-c4a336ef6a2f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=\ngolang.org/x/xerrors v0.0.0-20190410155217-1f06c39b4373/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngolang.org/x/xerrors v0.0.0-20190513163551-3ee3066db522/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngolang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngolang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=\ngolang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngolang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=\ngolang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=\ngopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=\ngopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=\ngopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=\ngopkg.in/guregu/null.v4 v4.0.0 h1:1Wm3S1WEA2I26Kq+6vcW+w0gcDo44YKYD7YIEJNHDjg=\ngopkg.in/guregu/null.v4 v4.0.0/go.mod h1:YoQhUrADuG3i9WqesrCmpNRwm1ypAgSHYqoOcTu/JrI=\ngopkg.in/inconshreveable/log15.v2 v2.0.0-20180818164646-67afb5ed74ec/go.mod h1:aPpfJ7XW+gOuirDoZ8gHhLh3kZ1B08FtV2bbmy7Jv3s=\ngopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=\ngopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=\ngopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=\nhonnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_initialisms_empty/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_initialisms_empty/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBarId sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_initialisms_empty/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst selectFoo = `-- name: SelectFoo :many\nSELECT bar_id FROM foo\n`\n\nfunc (q *Queries) SelectFoo(ctx context.Context) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, selectFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar bar_id sql.NullString\n\t\tif err := rows.Scan(&bar_id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar_id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_initialisms_empty/query.sql",
    "content": "-- name: SelectFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_initialisms_empty/schema.sql",
    "content": "CREATE TABLE foo(\n        bar_id text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_initialisms_empty/sqlc.json",
    "content": "{\n    \"version\": \"2\",\n    \"sql\": [\n        {\n            \"schema\": \"schema.sql\",\n            \"queries\": \"query.sql\",\n            \"engine\": \"postgresql\",\n            \"gen\": {\n                \"go\": {\n                    \"out\": \"db\",\n                    \"initialisms\": []\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_initialisms_url/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_initialisms_url/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBarID   sql.NullString\n\tSiteURL sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_initialisms_url/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst selectFoo = `-- name: SelectFoo :many\nSELECT bar_id, site_url FROM foo\n`\n\nfunc (q *Queries) SelectFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.BarID, &i.SiteURL); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_initialisms_url/query.sql",
    "content": "-- name: SelectFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_initialisms_url/schema.sql",
    "content": "CREATE TABLE foo (\n        bar_id text,\n        site_url text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_initialisms_url/sqlc.json",
    "content": "{\n    \"version\": \"2\",\n    \"sql\": [\n        {\n            \"schema\": \"schema.sql\",\n            \"queries\": \"query.sql\",\n            \"engine\": \"postgresql\",\n            \"gen\": {\n                \"go\": {\n                    \"out\": \"db\",\n                    \"initialisms\": [\"id\", \"url\"]\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_invalid_sql_driver/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_invalid_sql_driver/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_invalid_sql_driver/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst selectFoo = `-- name: SelectFoo :many\nSELECT bar FROM foo\n`\n\nfunc (q *Queries) SelectFoo(ctx context.Context) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, selectFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar bar sql.NullString\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_invalid_sql_driver/query.sql",
    "content": "-- name: SelectFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_invalid_sql_driver/schema.sql",
    "content": "CREATE TABLE foo(\n        bar text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_invalid_sql_driver/sqlc.json",
    "content": "{\n    \"version\": \"2\",\n    \"sql\": [\n        {\n            \"schema\": \"schema.sql\",\n            \"queries\": \"query.sql\",\n            \"engine\": \"postgresql\",\n            \"gen\": {\n                \"go\": {\n                    \"out\": \"db\",\n                    \"sql_driver\": \"github.com/unknown/driver\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_invalid_sql_driver/stderr.txt",
    "content": "# package \nerror generating code: invalid options: unknown SQL driver: github.com/unknown/driver\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_invalid_sql_package/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_invalid_sql_package/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_invalid_sql_package/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst selectFoo = `-- name: SelectFoo :many\nSELECT bar FROM foo\n`\n\nfunc (q *Queries) SelectFoo(ctx context.Context) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, selectFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar bar sql.NullString\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_invalid_sql_package/query.sql",
    "content": "-- name: SelectFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_invalid_sql_package/schema.sql",
    "content": "CREATE TABLE foo (\n        bar text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_invalid_sql_package/sqlc.json",
    "content": "{\n    \"version\": \"2\",\n    \"sql\": [\n        {\n            \"schema\": \"schema.sql\",\n            \"queries\": \"query.sql\",\n            \"engine\": \"postgresql\",\n            \"gen\": {\n                \"go\": {\n                    \"out\": \"db\",\n                    \"sql_package\": \"pgx/5\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/golang_invalid_sql_package/stderr.txt",
    "content": "# package \nerror generating code: invalid options: unknown SQL package: pgx/5\n"
  },
  {
    "path": "internal/endtoend/testdata/having/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/having/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Weather struct {\n\tCity   string\n\tTempLo int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/having/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst coldCities = `-- name: ColdCities :many\nSELECT city\nFROM weather\nGROUP BY city\nHAVING max(temp_lo) < ?\n`\n\nfunc (q *Queries) ColdCities(ctx context.Context, tempLo int32) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, coldCities, tempLo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar city string\n\t\tif err := rows.Scan(&city); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, city)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/having/mysql/query.sql",
    "content": "-- name: ColdCities :many\nSELECT city\nFROM weather\nGROUP BY city\nHAVING max(temp_lo) < ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/having/mysql/schema.sql",
    "content": "CREATE TABLE weather (\n  city     text    NOT NULL,\n  temp_lo  integer NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/having/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/having/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/having/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Weather struct {\n\tCity   string\n\tTempLo int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/having/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst coldCities = `-- name: ColdCities :many\nSELECT city\nFROM weather\nGROUP BY city\nHAVING max(temp_lo) < $1\n`\n\nfunc (q *Queries) ColdCities(ctx context.Context, tempLo int32) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, coldCities, tempLo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar city string\n\t\tif err := rows.Scan(&city); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, city)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/having/postgresql/query.sql",
    "content": "-- name: ColdCities :many\nSELECT city\nFROM weather\nGROUP BY city\nHAVING max(temp_lo) < $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/having/postgresql/schema.sql",
    "content": "CREATE TABLE weather (\n  city     text    NOT NULL,\n  temp_lo  integer NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/having/postgresql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"postgresql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/hstore/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage hstore\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/hstore/pgx/v4/go/hstore.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: hstore.sql\n\npackage hstore\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgtype\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT bar FROM foo\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]pgtype.Hstore, error) {\n\trows, err := q.db.Query(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.Hstore\n\tfor rows.Next() {\n\t\tvar bar pgtype.Hstore\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listBaz = `-- name: ListBaz :many\nSELECT baz FROM foo\n`\n\nfunc (q *Queries) ListBaz(ctx context.Context) ([]pgtype.Hstore, error) {\n\trows, err := q.db.Query(ctx, listBaz)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.Hstore\n\tfor rows.Next() {\n\t\tvar baz pgtype.Hstore\n\t\tif err := rows.Scan(&baz); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, baz)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/hstore/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage hstore\n\nimport (\n\t\"github.com/jackc/pgtype\"\n)\n\ntype Foo struct {\n\tBar pgtype.Hstore\n\tBaz pgtype.Hstore\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/hstore/pgx/v4/hstore.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS hstore;\n\nCREATE TABLE foo (\n        bar hstore NOT NULL,\n        baz hstore\n);\n\n-- name: ListBar :many\nSELECT bar FROM foo;\n\n-- name: ListBaz :many\nSELECT baz FROM foo;\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/hstore/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"hstore\",\n      \"schema\": \"hstore.sql\",\n      \"queries\": \"hstore.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/hstore/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage hstore\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/hstore/pgx/v5/go/hstore.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: hstore.sql\n\npackage hstore\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT bar FROM foo\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]pgtype.Hstore, error) {\n\trows, err := q.db.Query(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.Hstore\n\tfor rows.Next() {\n\t\tvar bar pgtype.Hstore\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listBaz = `-- name: ListBaz :many\nSELECT baz FROM foo\n`\n\nfunc (q *Queries) ListBaz(ctx context.Context) ([]pgtype.Hstore, error) {\n\trows, err := q.db.Query(ctx, listBaz)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.Hstore\n\tfor rows.Next() {\n\t\tvar baz pgtype.Hstore\n\t\tif err := rows.Scan(&baz); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, baz)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/hstore/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage hstore\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar pgtype.Hstore\n\tBaz pgtype.Hstore\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/hstore/pgx/v5/hstore.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS hstore;\n\nCREATE TABLE foo (\n        bar hstore NOT NULL,\n        baz hstore\n);\n\n-- name: ListBar :many\nSELECT bar FROM foo;\n\n-- name: ListBaz :many\nSELECT baz FROM foo;\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/hstore/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"hstore\",\n      \"schema\": \"hstore.sql\",\n      \"queries\": \"hstore.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/hstore/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage hstore\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/hstore/stdlib/go/hstore.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: hstore.sql\n\npackage hstore\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT bar FROM foo\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]interface{}, error) {\n\trows, err := q.db.QueryContext(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []interface{}\n\tfor rows.Next() {\n\t\tvar bar interface{}\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listBaz = `-- name: ListBaz :many\nSELECT baz FROM foo\n`\n\nfunc (q *Queries) ListBaz(ctx context.Context) ([]interface{}, error) {\n\trows, err := q.db.QueryContext(ctx, listBaz)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []interface{}\n\tfor rows.Next() {\n\t\tvar baz interface{}\n\t\tif err := rows.Scan(&baz); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, baz)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/hstore/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage hstore\n\ntype Foo struct {\n\tBar interface{}\n\tBaz interface{}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/hstore/stdlib/hstore.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS hstore;\n\nCREATE TABLE foo (\n        bar hstore NOT NULL,\n        baz hstore\n);\n\n-- name: ListBar :many\nSELECT bar FROM foo;\n\n-- name: ListBaz :many\nSELECT baz FROM foo;\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/hstore/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"hstore\",\n      \"schema\": \"hstore.sql\",\n      \"queries\": \"hstore.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID string\n}\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst identicalTable = `-- name: IdenticalTable :many\nSELECT id FROM foo\n`\n\nfunc (q *Queries) IdenticalTable(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, identicalTable)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/mysql/query.sql",
    "content": "-- name: IdenticalTable :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/mysql/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\nCREATE TABLE bar (id text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID string\n}\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst identicalTable = `-- name: IdenticalTable :many\nSELECT id FROM foo\n`\n\nfunc (q *Queries) IdenticalTable(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, identicalTable)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/pgx/v4/query.sql",
    "content": "-- name: IdenticalTable :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\nCREATE TABLE bar (id text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID string\n}\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst identicalTable = `-- name: IdenticalTable :many\nSELECT id FROM foo\n`\n\nfunc (q *Queries) IdenticalTable(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, identicalTable)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/pgx/v5/query.sql",
    "content": "-- name: IdenticalTable :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\nCREATE TABLE bar (id text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID string\n}\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst identicalTable = `-- name: IdenticalTable :many\nSELECT id FROM foo\n`\n\nfunc (q *Queries) IdenticalTable(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, identicalTable)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/stdlib/query.sql",
    "content": "-- name: IdenticalTable :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\nCREATE TABLE bar (id text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID string\n}\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst identicalTable = `-- name: IdenticalTable :many\nSELECT id FROM foo\n`\n\nfunc (q *Queries) IdenticalTable(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, identicalTable)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/sqlite/query.sql",
    "content": "-- name: IdenticalTable :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/sqlite/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\nCREATE TABLE bar (id text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/identical_tables/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/identifier_case_sensitivity/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identifier_case_sensitivity/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identifier_case_sensitivity/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :execresult\nINSERT INTO Authors (\n  Name, Bio\n) VALUES (\n  ?, ?\n)\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (sql.Result, error) {\n\treturn q.db.ExecContext(ctx, createAuthor, arg.Name, arg.Bio)\n}\n\nconst deleteAuthor = `-- name: DeleteAuthor :exec\nDELETE FROM Authors\nWHERE ID = ?\n`\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthor, id)\n\treturn err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM Authors\nWHERE ID = ? LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio FROM Authors\nORDER BY Name\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identifier_case_sensitivity/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM Authors\nWHERE ID = ? LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM Authors\nORDER BY Name;\n\n-- name: CreateAuthor :execresult\nINSERT INTO Authors (\n  Name, Bio\n) VALUES (\n  ?, ?\n);\n\n-- name: DeleteAuthor :exec\nDELETE FROM Authors\nWHERE ID = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/identifier_case_sensitivity/schema.sql",
    "content": "CREATE TABLE Authors (\n  ID   BIGINT  NOT NULL AUTO_INCREMENT PRIMARY KEY,\n  Name text    NOT NULL,\n  Bio  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/identifier_case_sensitivity/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"db\",\n      \"engine\": \"mysql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identifier_dollar_sign/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identifier_dollar_sign/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n"
  },
  {
    "path": "internal/endtoend/testdata/identifier_dollar_sign/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst fn = `-- name: Fn :one\nSELECT f$n()\n`\n\nfunc (q *Queries) Fn(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, fn)\n\tvar f_n int32\n\terr := row.Scan(&f_n)\n\treturn f_n, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/identifier_dollar_sign/query.sql",
    "content": "-- name: Fn :one\nSELECT f$n();\n"
  },
  {
    "path": "internal/endtoend/testdata/identifier_dollar_sign/schema.sql",
    "content": "CREATE FUNCTION f$n() RETURNS integer \n    AS $$ SELECT 1 $$ LANGUAGE SQL;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/identifier_dollar_sign/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"db\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/in_union/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/in_union/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int32\n\tName string\n\tBio  sql.NullString\n}\n\ntype Book1 struct {\n\tAuthorID int32\n\tName     sql.NullString\n}\n\ntype Book2 struct {\n\tAuthorID int32\n\tName     sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/in_union/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAuthors = `-- name: GetAuthors :many\nSELECT id, name, bio FROM authors\nWHERE author_id IN (SELECT author_id FROM book1 UNION SELECT author_id FROM book2)\n`\n\nfunc (q *Queries) GetAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, getAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/in_union/mysql/query.sql",
    "content": "-- name: GetAuthors :many\nSELECT * FROM authors\nWHERE author_id IN (SELECT author_id FROM book1 UNION SELECT author_id FROM book2);\n"
  },
  {
    "path": "internal/endtoend/testdata/in_union/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n  id   int PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\nCREATE TABLE book1 (\n  author_id  int PRIMARY KEY,\n  name text,\n  FOREIGN KEY (`author_id`) REFERENCES `authors` (`id`) ON DELETE CASCADE\n);\nCREATE TABLE book2 (\n  author_id  int PRIMARY KEY,\n  name text,\n  FOREIGN KEY (`author_id`) REFERENCES `authors` (`id`) ON DELETE CASCADE\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/in_union/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Calorie struct {\n\tID string\n}\n\ntype Campus struct {\n\tID string\n}\n\ntype ProductMetadatum struct {\n\tID string\n}\n\ntype ProductMetum struct {\n\tID string\n}\n\ntype Student struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getProductMetadata = `-- name: GetProductMetadata :many\nSELECT id FROM product_metadata\n`\n\nfunc (q *Queries) GetProductMetadata(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, getProductMetadata)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listCalories = `-- name: ListCalories :many\nSELECT id FROM calories\n`\n\nfunc (q *Queries) ListCalories(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listCalories)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listCampuses = `-- name: ListCampuses :many\nSELECT id FROM campus\n`\n\nfunc (q *Queries) ListCampuses(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listCampuses)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listMetadata = `-- name: ListMetadata :many\nSELECT id FROM product_meta\n`\n\nfunc (q *Queries) ListMetadata(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listMetadata)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listStudents = `-- name: ListStudents :many\nSELECT id FROM students\n`\n\nfunc (q *Queries) ListStudents(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listStudents)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/mysql/query.sql",
    "content": "/* name: ListCampuses :many */\nSELECT * FROM campus;\n\n/* name: ListStudents :many */\nSELECT * FROM students;\n\n/* name: ListMetadata :many */\nSELECT * FROM product_meta;\n\n/* name: ListCalories :many */\nSELECT * FROM calories;\n\n/* name: GetProductMetadata :many */\nSELECT * FROM product_metadata;"
  },
  {
    "path": "internal/endtoend/testdata/inflection/mysql/schema.sql",
    "content": "CREATE TABLE campus (id text not null);\nCREATE TABLE students (id text not null);\nCREATE TABLE product_meta (id text not null);\nCREATE TABLE calories (id text not null);\nCREATE TABLE product_metadata (id text not null);\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Calorie struct {\n\tID string\n}\n\ntype Campus struct {\n\tID string\n}\n\ntype ProductMetadatum struct {\n\tID string\n}\n\ntype ProductMetum struct {\n\tID string\n}\n\ntype Student struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getProductMetadata = `-- name: GetProductMetadata :many\nSELECT id FROM product_metadata\n`\n\nfunc (q *Queries) GetProductMetadata(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, getProductMetadata)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listCalories = `-- name: ListCalories :many\nSELECT id FROM calories\n`\n\nfunc (q *Queries) ListCalories(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, listCalories)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listCampuses = `-- name: ListCampuses :many\nSELECT id FROM campus\n`\n\nfunc (q *Queries) ListCampuses(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, listCampuses)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listMetadata = `-- name: ListMetadata :many\nSELECT id FROM product_meta\n`\n\nfunc (q *Queries) ListMetadata(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, listMetadata)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listStudents = `-- name: ListStudents :many\nSELECT id FROM students\n`\n\nfunc (q *Queries) ListStudents(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, listStudents)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/pgx/v4/query.sql",
    "content": "-- name: ListCampuses :many\nSELECT * FROM campus;\n\n-- name: ListStudents :many\nSELECT * FROM students;\n\n-- name: ListMetadata :many\nSELECT * FROM product_meta;\n\n-- name: ListCalories :many\nSELECT * FROM calories;\n\n-- name: GetProductMetadata :many\nSELECT * FROM product_metadata;"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE campus (id text not null);\nCREATE TABLE students (id text not null);\nCREATE TABLE product_meta (id text not null);\nCREATE TABLE calories (id text not null);\nCREATE TABLE product_metadata (id text not null);"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Calorie struct {\n\tID string\n}\n\ntype Campus struct {\n\tID string\n}\n\ntype ProductMetadatum struct {\n\tID string\n}\n\ntype ProductMetum struct {\n\tID string\n}\n\ntype Student struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getProductMetadata = `-- name: GetProductMetadata :many\nSELECT id FROM product_metadata\n`\n\nfunc (q *Queries) GetProductMetadata(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, getProductMetadata)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listCalories = `-- name: ListCalories :many\nSELECT id FROM calories\n`\n\nfunc (q *Queries) ListCalories(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, listCalories)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listCampuses = `-- name: ListCampuses :many\nSELECT id FROM campus\n`\n\nfunc (q *Queries) ListCampuses(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, listCampuses)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listMetadata = `-- name: ListMetadata :many\nSELECT id FROM product_meta\n`\n\nfunc (q *Queries) ListMetadata(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, listMetadata)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listStudents = `-- name: ListStudents :many\nSELECT id FROM students\n`\n\nfunc (q *Queries) ListStudents(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, listStudents)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/pgx/v5/query.sql",
    "content": "-- name: ListCampuses :many\nSELECT * FROM campus;\n\n-- name: ListStudents :many\nSELECT * FROM students;\n\n-- name: ListMetadata :many\nSELECT * FROM product_meta;\n\n-- name: ListCalories :many\nSELECT * FROM calories;\n\n-- name: GetProductMetadata :many\nSELECT * FROM product_metadata;"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE campus (id text not null);\nCREATE TABLE students (id text not null);\nCREATE TABLE product_meta (id text not null);\nCREATE TABLE calories (id text not null);\nCREATE TABLE product_metadata (id text not null);"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Calorie struct {\n\tID string\n}\n\ntype Campus struct {\n\tID string\n}\n\ntype ProductMetadatum struct {\n\tID string\n}\n\ntype ProductMetum struct {\n\tID string\n}\n\ntype Student struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getProductMetadata = `-- name: GetProductMetadata :many\nSELECT id FROM product_metadata\n`\n\nfunc (q *Queries) GetProductMetadata(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, getProductMetadata)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listCalories = `-- name: ListCalories :many\nSELECT id FROM calories\n`\n\nfunc (q *Queries) ListCalories(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listCalories)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listCampuses = `-- name: ListCampuses :many\nSELECT id FROM campus\n`\n\nfunc (q *Queries) ListCampuses(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listCampuses)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listMetadata = `-- name: ListMetadata :many\nSELECT id FROM product_meta\n`\n\nfunc (q *Queries) ListMetadata(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listMetadata)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listStudents = `-- name: ListStudents :many\nSELECT id FROM students\n`\n\nfunc (q *Queries) ListStudents(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listStudents)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/stdlib/query.sql",
    "content": "-- name: ListCampuses :many\nSELECT * FROM campus;\n\n-- name: ListStudents :many\nSELECT * FROM students;\n\n-- name: ListMetadata :many\nSELECT * FROM product_meta;\n\n-- name: ListCalories :many\nSELECT * FROM calories;\n\n-- name: GetProductMetadata :many\nSELECT * FROM product_metadata;"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE campus (id text not null);\nCREATE TABLE students (id text not null);\nCREATE TABLE product_meta (id text not null);\nCREATE TABLE calories (id text not null);\nCREATE TABLE product_metadata (id text not null);"
  },
  {
    "path": "internal/endtoend/testdata/inflection/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Calorie struct {\n\tID string\n}\n\ntype Campus struct {\n\tID string\n}\n\ntype ProductMetadatum struct {\n\tID string\n}\n\ntype ProductMetum struct {\n\tID string\n}\n\ntype Student struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getProductMetadata = `-- name: GetProductMetadata :many\nSELECT id FROM product_metadata\n`\n\nfunc (q *Queries) GetProductMetadata(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, getProductMetadata)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listCalories = `-- name: ListCalories :many\nSELECT id FROM calories\n`\n\nfunc (q *Queries) ListCalories(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listCalories)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listCampuses = `-- name: ListCampuses :many\nSELECT id FROM campus\n`\n\nfunc (q *Queries) ListCampuses(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listCampuses)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listMetadata = `-- name: ListMetadata :many\nSELECT id FROM product_meta\n`\n\nfunc (q *Queries) ListMetadata(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listMetadata)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listStudents = `-- name: ListStudents :many\nSELECT id FROM students\n`\n\nfunc (q *Queries) ListStudents(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listStudents)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection/sqlite/query.sql",
    "content": "/* name: ListCampuses :many */\nSELECT * FROM campus;\n\n/* name: ListStudents :many */\nSELECT * FROM students;\n\n/* name: ListMetadata :many */\nSELECT * FROM product_meta;\n\n/* name: ListCalories :many */\nSELECT * FROM calories;\n\n/* name: GetProductMetadata :many */\nSELECT * FROM product_metadata;"
  },
  {
    "path": "internal/endtoend/testdata/inflection/sqlite/schema.sql",
    "content": "CREATE TABLE campus (id text not null);\nCREATE TABLE students (id text not null);\nCREATE TABLE product_meta (id text not null);\nCREATE TABLE calories (id text not null);\nCREATE TABLE product_metadata (id text not null);"
  },
  {
    "path": "internal/endtoend/testdata/inflection/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID   int32\n\tName string\n}\n\ntype Exclusions struct {\n\tID   int32\n\tName string\n}\n\ntype MyData struct {\n\tID   int32\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteBarByID = `-- name: DeleteBarByID :one\nDELETE FROM bars WHERE id = $1 RETURNING id, name\n`\n\nfunc (q *Queries) DeleteBarByID(ctx context.Context, id int32) (Bar, error) {\n\trow := q.db.QueryRow(ctx, deleteBarByID, id)\n\tvar i Bar\n\terr := row.Scan(&i.ID, &i.Name)\n\treturn i, err\n}\n\nconst deleteExclusionByID = `-- name: DeleteExclusionByID :one\nDELETE FROM exclusions WHERE id = $1 RETURNING id, name\n`\n\nfunc (q *Queries) DeleteExclusionByID(ctx context.Context, id int32) (Exclusions, error) {\n\trow := q.db.QueryRow(ctx, deleteExclusionByID, id)\n\tvar i Exclusions\n\terr := row.Scan(&i.ID, &i.Name)\n\treturn i, err\n}\n\nconst deleteMyDataByID = `-- name: DeleteMyDataByID :one\nDELETE FROM my_data WHERE id = $1 RETURNING id, name\n`\n\nfunc (q *Queries) DeleteMyDataByID(ctx context.Context, id int32) (MyData, error) {\n\trow := q.db.QueryRow(ctx, deleteMyDataByID, id)\n\tvar i MyData\n\terr := row.Scan(&i.ID, &i.Name)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v4/query.sql",
    "content": "-- name: DeleteBarByID :one\nDELETE FROM bars WHERE id = $1 RETURNING id, name;\n\n-- name: DeleteMyDataByID :one\nDELETE FROM my_data WHERE id = $1 RETURNING id, name;\n\n-- name: DeleteExclusionByID :one\nDELETE FROM exclusions WHERE id = $1 RETURNING id, name;\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE bars (id serial not null, name text not null, primary key (id));\nCREATE TABLE my_data (id serial not null, name text not null, primary key (id));\nCREATE TABLE exclusions (id serial not null, name text not null, primary key (id));\n\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"gen\": {\n        \"go\": {\n          \"package\": \"querytest\",\n          \"sql_package\": \"pgx/v4\",\n          \"out\": \"go\",\n          \"inflection_exclude_table_names\": [\n            \"my_data\",\n            \"exclusions\"\n          ]\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID   int32\n\tName string\n}\n\ntype Exclusions struct {\n\tID   int32\n\tName string\n}\n\ntype MyData struct {\n\tID   int32\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteBarByID = `-- name: DeleteBarByID :one\nDELETE FROM bars WHERE id = $1 RETURNING id, name\n`\n\nfunc (q *Queries) DeleteBarByID(ctx context.Context, id int32) (Bar, error) {\n\trow := q.db.QueryRow(ctx, deleteBarByID, id)\n\tvar i Bar\n\terr := row.Scan(&i.ID, &i.Name)\n\treturn i, err\n}\n\nconst deleteExclusionByID = `-- name: DeleteExclusionByID :one\nDELETE FROM exclusions WHERE id = $1 RETURNING id, name\n`\n\nfunc (q *Queries) DeleteExclusionByID(ctx context.Context, id int32) (Exclusions, error) {\n\trow := q.db.QueryRow(ctx, deleteExclusionByID, id)\n\tvar i Exclusions\n\terr := row.Scan(&i.ID, &i.Name)\n\treturn i, err\n}\n\nconst deleteMyDataByID = `-- name: DeleteMyDataByID :one\nDELETE FROM my_data WHERE id = $1 RETURNING id, name\n`\n\nfunc (q *Queries) DeleteMyDataByID(ctx context.Context, id int32) (MyData, error) {\n\trow := q.db.QueryRow(ctx, deleteMyDataByID, id)\n\tvar i MyData\n\terr := row.Scan(&i.ID, &i.Name)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v5/query.sql",
    "content": "-- name: DeleteBarByID :one\nDELETE FROM bars WHERE id = $1 RETURNING id, name;\n\n-- name: DeleteMyDataByID :one\nDELETE FROM my_data WHERE id = $1 RETURNING id, name;\n\n-- name: DeleteExclusionByID :one\nDELETE FROM exclusions WHERE id = $1 RETURNING id, name;\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE bars (id serial not null, name text not null, primary key (id));\nCREATE TABLE my_data (id serial not null, name text not null, primary key (id));\nCREATE TABLE exclusions (id serial not null, name text not null, primary key (id));\n\n"
  },
  {
    "path": "internal/endtoend/testdata/inflection_exclude_table_names/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"gen\": {\n        \"go\": {\n          \"package\": \"querytest\",\n          \"sql_package\": \"pgx/v5\",\n          \"out\": \"go\",\n          \"inflection_exclude_table_names\": [\n            \"my_data\",\n            \"exclusions\"\n          ]\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype Td3Code struct {\n\tID        int32\n\tTsCreated time.Time\n\tTsUpdated time.Time\n\tCreatedBy string\n\tUpdatedBy string\n\tCode      sql.NullString\n\tHash      sql.NullString\n\tIsPrivate sql.NullBool\n}\n\ntype Td3TestCode struct {\n\tID        int32\n\tTsCreated time.Time\n\tTsUpdated time.Time\n\tCreatedBy string\n\tUpdatedBy string\n\tTestID    int32\n\tCodeHash  string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst insertCode = `-- name: InsertCode :one\nWITH cc AS (\n            INSERT INTO td3.codes(created_by, updated_by, code, hash, is_private)\n            VALUES ($1, $1, $2, $3, false)\n            RETURNING hash\n)\nINSERT INTO td3.test_codes(created_by, updated_by, test_id, code_hash)\nVALUES(\n            $1, $1, $4, (select hash from cc)\n)\nRETURNING id, ts_created, ts_updated, created_by, updated_by, test_id, code_hash\n`\n\ntype InsertCodeParams struct {\n\tCreatedBy string\n\tCode      sql.NullString\n\tHash      sql.NullString\n\tTestID    int32\n}\n\nfunc (q *Queries) InsertCode(ctx context.Context, arg InsertCodeParams) (Td3TestCode, error) {\n\trow := q.db.QueryRow(ctx, insertCode,\n\t\targ.CreatedBy,\n\t\targ.Code,\n\t\targ.Hash,\n\t\targ.TestID,\n\t)\n\tvar i Td3TestCode\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.TsCreated,\n\t\t&i.TsUpdated,\n\t\t&i.CreatedBy,\n\t\t&i.UpdatedBy,\n\t\t&i.TestID,\n\t\t&i.CodeHash,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/pgx/v4/query.sql",
    "content": "-- name: InsertCode :one\nWITH cc AS (\n            INSERT INTO td3.codes(created_by, updated_by, code, hash, is_private)\n            VALUES ($1, $1, $2, $3, false)\n            RETURNING hash\n)\nINSERT INTO td3.test_codes(created_by, updated_by, test_id, code_hash)\nVALUES(\n            $1, $1, $4, (select hash from cc)\n)\nRETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/pgx/v4/schema.sql",
    "content": "-- FILE: schema.sql\n\nDROP SCHEMA IF EXISTS td3 CASCADE;\nCREATE SCHEMA td3;\n\nCREATE TABLE td3.codes (\n            id SERIAL PRIMARY KEY,\n            ts_created timestamptz DEFAULT now() NOT NULL,\n            ts_updated timestamptz DEFAULT now() NOT NULL,\n            created_by text NOT NULL,\n            updated_by text NOT NULL,\n            \n            code text,\n            hash text,\n            is_private boolean\n);\n\n\nCREATE TABLE td3.test_codes (\n            id SERIAL PRIMARY KEY,\n            ts_created timestamptz DEFAULT now() NOT NULL,\n            ts_updated timestamptz DEFAULT now() NOT NULL,\n            created_by text NOT NULL,\n            updated_by text NOT NULL,\n\n            test_id integer NOT NULL,\n            code_hash text NOT NULL\n);\n\n-- FILE: query.sql\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Td3Code struct {\n\tID        int32\n\tTsCreated pgtype.Timestamptz\n\tTsUpdated pgtype.Timestamptz\n\tCreatedBy string\n\tUpdatedBy string\n\tCode      pgtype.Text\n\tHash      pgtype.Text\n\tIsPrivate pgtype.Bool\n}\n\ntype Td3TestCode struct {\n\tID        int32\n\tTsCreated pgtype.Timestamptz\n\tTsUpdated pgtype.Timestamptz\n\tCreatedBy string\n\tUpdatedBy string\n\tTestID    int32\n\tCodeHash  string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst insertCode = `-- name: InsertCode :one\nWITH cc AS (\n            INSERT INTO td3.codes(created_by, updated_by, code, hash, is_private)\n            VALUES ($1, $1, $2, $3, false)\n            RETURNING hash\n)\nINSERT INTO td3.test_codes(created_by, updated_by, test_id, code_hash)\nVALUES(\n            $1, $1, $4, (select hash from cc)\n)\nRETURNING id, ts_created, ts_updated, created_by, updated_by, test_id, code_hash\n`\n\ntype InsertCodeParams struct {\n\tCreatedBy string\n\tCode      pgtype.Text\n\tHash      pgtype.Text\n\tTestID    int32\n}\n\nfunc (q *Queries) InsertCode(ctx context.Context, arg InsertCodeParams) (Td3TestCode, error) {\n\trow := q.db.QueryRow(ctx, insertCode,\n\t\targ.CreatedBy,\n\t\targ.Code,\n\t\targ.Hash,\n\t\targ.TestID,\n\t)\n\tvar i Td3TestCode\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.TsCreated,\n\t\t&i.TsUpdated,\n\t\t&i.CreatedBy,\n\t\t&i.UpdatedBy,\n\t\t&i.TestID,\n\t\t&i.CodeHash,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/pgx/v5/query.sql",
    "content": "-- name: InsertCode :one\nWITH cc AS (\n            INSERT INTO td3.codes(created_by, updated_by, code, hash, is_private)\n            VALUES ($1, $1, $2, $3, false)\n            RETURNING hash\n)\nINSERT INTO td3.test_codes(created_by, updated_by, test_id, code_hash)\nVALUES(\n            $1, $1, $4, (select hash from cc)\n)\nRETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/pgx/v5/schema.sql",
    "content": "-- FILE: schema.sql\n\nDROP SCHEMA IF EXISTS td3 CASCADE;\nCREATE SCHEMA td3;\n\nCREATE TABLE td3.codes (\n            id SERIAL PRIMARY KEY,\n            ts_created timestamptz DEFAULT now() NOT NULL,\n            ts_updated timestamptz DEFAULT now() NOT NULL,\n            created_by text NOT NULL,\n            updated_by text NOT NULL,\n            \n            code text,\n            hash text,\n            is_private boolean\n);\n\n\nCREATE TABLE td3.test_codes (\n            id SERIAL PRIMARY KEY,\n            ts_created timestamptz DEFAULT now() NOT NULL,\n            ts_updated timestamptz DEFAULT now() NOT NULL,\n            created_by text NOT NULL,\n            updated_by text NOT NULL,\n\n            test_id integer NOT NULL,\n            code_hash text NOT NULL\n);\n\n-- FILE: query.sql\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype Td3Code struct {\n\tID        int32\n\tTsCreated time.Time\n\tTsUpdated time.Time\n\tCreatedBy string\n\tUpdatedBy string\n\tCode      sql.NullString\n\tHash      sql.NullString\n\tIsPrivate sql.NullBool\n}\n\ntype Td3TestCode struct {\n\tID        int32\n\tTsCreated time.Time\n\tTsUpdated time.Time\n\tCreatedBy string\n\tUpdatedBy string\n\tTestID    int32\n\tCodeHash  string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst insertCode = `-- name: InsertCode :one\nWITH cc AS (\n            INSERT INTO td3.codes(created_by, updated_by, code, hash, is_private)\n            VALUES ($1, $1, $2, $3, false)\n            RETURNING hash\n)\nINSERT INTO td3.test_codes(created_by, updated_by, test_id, code_hash)\nVALUES(\n            $1, $1, $4, (select hash from cc)\n)\nRETURNING id, ts_created, ts_updated, created_by, updated_by, test_id, code_hash\n`\n\ntype InsertCodeParams struct {\n\tCreatedBy string\n\tCode      sql.NullString\n\tHash      sql.NullString\n\tTestID    int32\n}\n\nfunc (q *Queries) InsertCode(ctx context.Context, arg InsertCodeParams) (Td3TestCode, error) {\n\trow := q.db.QueryRowContext(ctx, insertCode,\n\t\targ.CreatedBy,\n\t\targ.Code,\n\t\targ.Hash,\n\t\targ.TestID,\n\t)\n\tvar i Td3TestCode\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.TsCreated,\n\t\t&i.TsUpdated,\n\t\t&i.CreatedBy,\n\t\t&i.UpdatedBy,\n\t\t&i.TestID,\n\t\t&i.CodeHash,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/stdlib/query.sql",
    "content": "-- name: InsertCode :one\nWITH cc AS (\n            INSERT INTO td3.codes(created_by, updated_by, code, hash, is_private)\n            VALUES ($1, $1, $2, $3, false)\n            RETURNING hash\n)\nINSERT INTO td3.test_codes(created_by, updated_by, test_id, code_hash)\nVALUES(\n            $1, $1, $4, (select hash from cc)\n)\nRETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/stdlib/schema.sql",
    "content": "-- FILE: schema.sql\n\nDROP SCHEMA IF EXISTS td3 CASCADE;\nCREATE SCHEMA td3;\n\nCREATE TABLE td3.codes (\n            id SERIAL PRIMARY KEY,\n            ts_created timestamptz DEFAULT now() NOT NULL,\n            ts_updated timestamptz DEFAULT now() NOT NULL,\n            created_by text NOT NULL,\n            updated_by text NOT NULL,\n            \n            code text,\n            hash text,\n            is_private boolean\n);\n\n\nCREATE TABLE td3.test_codes (\n            id SERIAL PRIMARY KEY,\n            ts_created timestamptz DEFAULT now() NOT NULL,\n            ts_updated timestamptz DEFAULT now() NOT NULL,\n            created_by text NOT NULL,\n            updated_by text NOT NULL,\n\n            test_id integer NOT NULL,\n            code_hash text NOT NULL\n);\n\n-- FILE: query.sql\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_cte/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_default_values/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_default_values/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Workspace struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_default_values/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst insertWorkspace = `-- name: InsertWorkspace :exec\nINSERT INTO workspace DEFAULT VALUES\n`\n\nfunc (q *Queries) InsertWorkspace(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, insertWorkspace)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_default_values/sqlite/query.sql",
    "content": "-- name: InsertWorkspace :exec\nINSERT INTO workspace DEFAULT VALUES;"
  },
  {
    "path": "internal/endtoend/testdata/insert_default_values/sqlite/schema.sql",
    "content": "CREATE TABLE workspace (\n    id INTEGER PRIMARY KEY AUTOINCREMENT\n);"
  },
  {
    "path": "internal/endtoend/testdata/insert_default_values/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tName  string\n\tReady bool\n}\n\ntype Foo struct {\n\tName string\n\tMeta string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst insertSelect = `-- name: InsertSelect :exec\nINSERT INTO foo (name, meta)\nSELECT name, ?\nFROM bar WHERE ready = ?\n`\n\ntype InsertSelectParams struct {\n\tMeta  string\n\tReady bool\n}\n\nfunc (q *Queries) InsertSelect(ctx context.Context, arg InsertSelectParams) error {\n\t_, err := q.db.ExecContext(ctx, insertSelect, arg.Meta, arg.Ready)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/mysql/query.sql",
    "content": "/* name: InsertSelect :exec */\nINSERT INTO foo (name, meta)\nSELECT name, ?\nFROM bar WHERE ready = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/mysql/schema.sql",
    "content": "CREATE TABLE bar (name text not null, ready bool not null);\nCREATE TABLE foo (name text not null, meta text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tName  string\n\tReady bool\n}\n\ntype Foo struct {\n\tName string\n\tMeta string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst insertSelect = `-- name: InsertSelect :exec\nINSERT INTO foo (name, meta)\nSELECT name, $1\nFROM bar WHERE ready = $2\n`\n\ntype InsertSelectParams struct {\n\tMeta  string\n\tReady bool\n}\n\nfunc (q *Queries) InsertSelect(ctx context.Context, arg InsertSelectParams) error {\n\t_, err := q.db.Exec(ctx, insertSelect, arg.Meta, arg.Ready)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/pgx/v4/query.sql",
    "content": "-- name: InsertSelect :exec\nINSERT INTO foo (name, meta)\nSELECT name, $1\nFROM bar WHERE ready = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (name text not null, ready bool not null);\nCREATE TABLE foo (name text not null, meta text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tName  string\n\tReady bool\n}\n\ntype Foo struct {\n\tName string\n\tMeta string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst insertSelect = `-- name: InsertSelect :exec\nINSERT INTO foo (name, meta)\nSELECT name, $1\nFROM bar WHERE ready = $2\n`\n\ntype InsertSelectParams struct {\n\tMeta  string\n\tReady bool\n}\n\nfunc (q *Queries) InsertSelect(ctx context.Context, arg InsertSelectParams) error {\n\t_, err := q.db.Exec(ctx, insertSelect, arg.Meta, arg.Ready)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/pgx/v5/query.sql",
    "content": "-- name: InsertSelect :exec\nINSERT INTO foo (name, meta)\nSELECT name, $1\nFROM bar WHERE ready = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (name text not null, ready bool not null);\nCREATE TABLE foo (name text not null, meta text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tName  string\n\tReady bool\n}\n\ntype Foo struct {\n\tName string\n\tMeta string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst insertSelect = `-- name: InsertSelect :exec\nINSERT INTO foo (name, meta)\nSELECT name, $1\nFROM bar WHERE ready = $2\n`\n\ntype InsertSelectParams struct {\n\tMeta  string\n\tReady bool\n}\n\nfunc (q *Queries) InsertSelect(ctx context.Context, arg InsertSelectParams) error {\n\t_, err := q.db.ExecContext(ctx, insertSelect, arg.Meta, arg.Ready)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/stdlib/query.sql",
    "content": "-- name: InsertSelect :exec\nINSERT INTO foo (name, meta)\nSELECT name, $1\nFROM bar WHERE ready = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE bar (name text not null, ready bool not null);\nCREATE TABLE foo (name text not null, meta text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tName  string\n\tReady bool\n}\n\ntype Foo struct {\n\tName string\n\tMeta string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst insertSelect = `-- name: InsertSelect :exec\nINSERT INTO foo (name, meta)\nSELECT name, ?\nFROM bar WHERE ready = ?\n`\n\ntype InsertSelectParams struct {\n\tMeta  string\n\tReady bool\n}\n\nfunc (q *Queries) InsertSelect(ctx context.Context, arg InsertSelectParams) error {\n\t_, err := q.db.ExecContext(ctx, insertSelect, arg.Meta, arg.Ready)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/sqlite/query.sql",
    "content": "/* name: InsertSelect :exec */\nINSERT INTO foo (name, meta)\nSELECT name, ?\nFROM bar WHERE ready = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/sqlite/schema.sql",
    "content": "CREATE TABLE bar (name text not null, ready bool not null);\nCREATE TABLE foo (name text not null, meta text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_case/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1646\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_case/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_case/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_case/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Order struct {\n\tID   pgtype.Int8\n\tName pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_case/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst insertOrders = `-- name: InsertOrders :exec\ninsert into Orders (id,name)\nselect id , CASE WHEN $1::BOOLEAN THEN $2 ELSE s.name END \nfrom Orders s\n`\n\ntype InsertOrdersParams struct {\n\tNameDoUpdate pgtype.Bool\n\tName         pgtype.Text\n}\n\nfunc (q *Queries) InsertOrders(ctx context.Context, arg InsertOrdersParams) error {\n\t_, err := q.db.Exec(ctx, insertOrders, arg.NameDoUpdate, arg.Name)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_case/postgresql/pgx/query.sql",
    "content": "-- name: InsertOrders :exec\ninsert into Orders (id,name)\nselect id , CASE WHEN @name_do_update::BOOLEAN THEN @name ELSE s.name END \nfrom Orders s ;\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_case/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE orders(\n  id bigserial,\n  name text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_case/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\ncloud:\n  project: \"01HAQMMECEYQYKFJN8MP16QC41\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/mysql/query.sql",
    "content": "-- name: InsertFoo :exec\nINSERT INTO foo (bar)\nSELECT 1, ?, ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar text);\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/mysql/stderr.txt",
    "content": "# package querytest\nquery.sql:1:1: INSERT has more expressions than target columns\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/postgresql/pgx/v4/query.sql",
    "content": "-- name: InsertFoo :exec\nINSERT INTO foo (bar)\nSELECT 1, $1, $2;"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text);"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/postgresql/pgx/v4/stderr/base.txt",
    "content": "# package querytest\nquery.sql:1:1: INSERT has more expressions than target columns"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/postgresql/pgx/v4/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:3:11: INSERT has more expressions than target columns"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/postgresql/pgx/v5/query.sql",
    "content": "-- name: InsertFoo :exec\nINSERT INTO foo (bar)\nSELECT 1, $1, $2;"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text);"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/postgresql/pgx/v5/stderr/base.txt",
    "content": "# package querytest\nquery.sql:1:1: INSERT has more expressions than target columns"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/postgresql/pgx/v5/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:3:11: INSERT has more expressions than target columns"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/postgresql/stdlib/query.sql",
    "content": "-- name: InsertFoo :exec\nINSERT INTO foo (bar)\nSELECT 1, $1, $2;"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text);"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/postgresql/stdlib/stderr/base.txt",
    "content": "# package querytest\nquery.sql:1:1: INSERT has more expressions than target columns"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/postgresql/stdlib/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:3:11: INSERT has more expressions than target columns\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/sqlite/exec.json",
    "content": "{\n    \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/sqlite/query.sql",
    "content": "-- name: InsertFoo :exec\nINSERT INTO foo (bar)\nSELECT 1, ?, ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/sqlite/schema.sql",
    "content": "CREATE TABLE foo (bar text);\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_invalid/sqlite/stderr.txt",
    "content": "# package querytest\nquery.sql:1:1: sqlite3: SQL logic error: 3 values for 1 columns\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_param/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1328"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_param/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_param/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_param/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_param/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst insertSelect = `-- name: InsertSelect :exec\nINSERT INTO authors (id, name, bio) \nSELECT $1, name, bio\nFROM authors\nWHERE name = $2\n`\n\ntype InsertSelectParams struct {\n\tID   pgtype.Int8\n\tName pgtype.Text\n}\n\nfunc (q *Queries) InsertSelect(ctx context.Context, arg InsertSelectParams) error {\n\t_, err := q.db.Exec(ctx, insertSelect, arg.ID, arg.Name)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_param/postgresql/pgx/query.sql",
    "content": "-- name: InsertSelect :exec\nINSERT INTO authors (id, name, bio) \nSELECT @id, name, bio\nFROM authors\nWHERE name = @name;"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_param/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);"
  },
  {
    "path": "internal/endtoend/testdata/insert_select_param/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\""
  },
  {
    "path": "internal/endtoend/testdata/insert_values/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst insertMultipleValues = `-- name: InsertMultipleValues :exec\nINSERT INTO foo (a, b) VALUES (?, ?), (?, ?)\n`\n\ntype InsertMultipleValuesParams struct {\n\tA   sql.NullString\n\tB   sql.NullInt32\n\tA_2 sql.NullString\n\tB_2 sql.NullInt32\n}\n\nfunc (q *Queries) InsertMultipleValues(ctx context.Context, arg InsertMultipleValuesParams) error {\n\t_, err := q.db.ExecContext(ctx, insertMultipleValues,\n\t\targ.A,\n\t\targ.B,\n\t\targ.A_2,\n\t\targ.B_2,\n\t)\n\treturn err\n}\n\nconst insertValues = `-- name: InsertValues :exec\nINSERT INTO foo (a, b) VALUES (?, ?)\n`\n\ntype InsertValuesParams struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg InsertValuesParams) error {\n\t_, err := q.db.ExecContext(ctx, insertValues, arg.A, arg.B)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/mysql/query.sql",
    "content": "/* name: InsertValues :exec */\nINSERT INTO foo (a, b) VALUES (?, ?);\n\n/* name: InsertMultipleValues :exec */\nINSERT INTO foo (a, b) VALUES (?, ?), (?, ?);"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/mysql/schema.sql",
    "content": "CREATE TABLE foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst insertMultipleValues = `-- name: InsertMultipleValues :exec\nINSERT INTO foo (a, b) VALUES ($1, $2), ($3, $4)\n`\n\ntype InsertMultipleValuesParams struct {\n\tA   sql.NullString\n\tB   sql.NullInt32\n\tA_2 sql.NullString\n\tB_2 sql.NullInt32\n}\n\nfunc (q *Queries) InsertMultipleValues(ctx context.Context, arg InsertMultipleValuesParams) error {\n\t_, err := q.db.Exec(ctx, insertMultipleValues,\n\t\targ.A,\n\t\targ.B,\n\t\targ.A_2,\n\t\targ.B_2,\n\t)\n\treturn err\n}\n\nconst insertValues = `-- name: InsertValues :exec\nINSERT INTO foo (a, b) VALUES ($1, $2)\n`\n\ntype InsertValuesParams struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg InsertValuesParams) error {\n\t_, err := q.db.Exec(ctx, insertValues, arg.A, arg.B)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/pgx/v4/query.sql",
    "content": "-- name: InsertValues :exec\nINSERT INTO foo (a, b) VALUES ($1, $2);\n\n/* name: InsertMultipleValues :exec */\nINSERT INTO foo (a, b) VALUES ($1, $2), ($3, $4);"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tA pgtype.Text\n\tB pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst insertMultipleValues = `-- name: InsertMultipleValues :exec\nINSERT INTO foo (a, b) VALUES ($1, $2), ($3, $4)\n`\n\ntype InsertMultipleValuesParams struct {\n\tA   pgtype.Text\n\tB   pgtype.Int4\n\tA_2 pgtype.Text\n\tB_2 pgtype.Int4\n}\n\nfunc (q *Queries) InsertMultipleValues(ctx context.Context, arg InsertMultipleValuesParams) error {\n\t_, err := q.db.Exec(ctx, insertMultipleValues,\n\t\targ.A,\n\t\targ.B,\n\t\targ.A_2,\n\t\targ.B_2,\n\t)\n\treturn err\n}\n\nconst insertValues = `-- name: InsertValues :exec\nINSERT INTO foo (a, b) VALUES ($1, $2)\n`\n\ntype InsertValuesParams struct {\n\tA pgtype.Text\n\tB pgtype.Int4\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg InsertValuesParams) error {\n\t_, err := q.db.Exec(ctx, insertValues, arg.A, arg.B)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/pgx/v5/query.sql",
    "content": "-- name: InsertValues :exec\nINSERT INTO foo (a, b) VALUES ($1, $2);\n\n/* name: InsertMultipleValues :exec */\nINSERT INTO foo (a, b) VALUES ($1, $2), ($3, $4);"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst insertMultipleValues = `-- name: InsertMultipleValues :exec\nINSERT INTO foo (a, b) VALUES ($1, $2), ($3, $4)\n`\n\ntype InsertMultipleValuesParams struct {\n\tA   sql.NullString\n\tB   sql.NullInt32\n\tA_2 sql.NullString\n\tB_2 sql.NullInt32\n}\n\nfunc (q *Queries) InsertMultipleValues(ctx context.Context, arg InsertMultipleValuesParams) error {\n\t_, err := q.db.ExecContext(ctx, insertMultipleValues,\n\t\targ.A,\n\t\targ.B,\n\t\targ.A_2,\n\t\targ.B_2,\n\t)\n\treturn err\n}\n\nconst insertValues = `-- name: InsertValues :exec\nINSERT INTO foo (a, b) VALUES ($1, $2)\n`\n\ntype InsertValuesParams struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg InsertValuesParams) error {\n\t_, err := q.db.ExecContext(ctx, insertValues, arg.A, arg.B)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/stdlib/query.sql",
    "content": "-- name: InsertValues :exec\nINSERT INTO foo (a, b) VALUES ($1, $2);\n\n/* name: InsertMultipleValues :exec */\nINSERT INTO foo (a, b) VALUES ($1, $2), ($3, $4);"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst insertMultipleValues = `-- name: InsertMultipleValues :exec\nINSERT INTO foo (a, b) VALUES (?, ?), (?, ?)\n`\n\ntype InsertMultipleValuesParams struct {\n\tA   sql.NullString\n\tB   sql.NullInt64\n\tA_2 sql.NullString\n\tB_2 sql.NullInt64\n}\n\nfunc (q *Queries) InsertMultipleValues(ctx context.Context, arg InsertMultipleValuesParams) error {\n\t_, err := q.db.ExecContext(ctx, insertMultipleValues,\n\t\targ.A,\n\t\targ.B,\n\t\targ.A_2,\n\t\targ.B_2,\n\t)\n\treturn err\n}\n\nconst insertValues = `-- name: InsertValues :exec\nINSERT INTO foo (a, b) VALUES (?, ?)\n`\n\ntype InsertValuesParams struct {\n\tA sql.NullString\n\tB sql.NullInt64\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg InsertValuesParams) error {\n\t_, err := q.db.ExecContext(ctx, insertValues, arg.A, arg.B)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/sqlite/query.sql",
    "content": "/* name: InsertValues :exec */\nINSERT INTO foo (a, b) VALUES (?, ?);\n\n/* name: InsertMultipleValues :exec */\nINSERT INTO foo (a, b) VALUES (?, ?), (?, ?);"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/sqlite/schema.sql",
    "content": "CREATE TABLE foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_only/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/938"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_only/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_only/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_only/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Status struct {\n\tID   int32\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_only/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst insertStatus = `-- name: InsertStatus :exec\nINSERT INTO status VALUES ($1, $2)\n`\n\ntype InsertStatusParams struct {\n\tColumn1 pgtype.Int4\n\tColumn2 pgtype.Text\n}\n\nfunc (q *Queries) InsertStatus(ctx context.Context, arg InsertStatusParams) error {\n\t_, err := q.db.Exec(ctx, insertStatus, arg.Column1, arg.Column2)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_only/postgresql/pgx/query.sql",
    "content": "-- name: InsertStatus :exec\nINSERT INTO status VALUES ($1, $2);"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_only/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE status\n(\n  id integer,\n  name varchar(100) NOT NULL,\n  PRIMARY KEY(id)\n);"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_only/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst insertValues = `-- name: InsertValues :exec\nINSERT INTO public.foo (a, b) VALUES (?, ?)\n`\n\ntype InsertValuesParams struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg InsertValuesParams) error {\n\t_, err := q.db.ExecContext(ctx, insertValues, arg.A, arg.B)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/mysql/query.sql",
    "content": "/* name: InsertValues :exec */\nINSERT INTO public.foo (a, b) VALUES (?, ?);\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/mysql/schema.sql",
    "content": "CREATE TABLE foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst insertValues = `-- name: InsertValues :exec\nINSERT INTO public.foo (a, b) VALUES ($1, $2)\n`\n\ntype InsertValuesParams struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg InsertValuesParams) error {\n\t_, err := q.db.Exec(ctx, insertValues, arg.A, arg.B)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/pgx/v4/query.sql",
    "content": "-- name: InsertValues :exec\nINSERT INTO public.foo (a, b) VALUES ($1, $2);\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tA pgtype.Text\n\tB pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst insertValues = `-- name: InsertValues :exec\nINSERT INTO public.foo (a, b) VALUES ($1, $2)\n`\n\ntype InsertValuesParams struct {\n\tA pgtype.Text\n\tB pgtype.Int4\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg InsertValuesParams) error {\n\t_, err := q.db.Exec(ctx, insertValues, arg.A, arg.B)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/pgx/v5/query.sql",
    "content": "-- name: InsertValues :exec\nINSERT INTO public.foo (a, b) VALUES ($1, $2);\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst insertValues = `-- name: InsertValues :exec\nINSERT INTO public.foo (a, b) VALUES ($1, $2)\n`\n\ntype InsertValuesParams struct {\n\tA sql.NullString\n\tB sql.NullInt32\n}\n\nfunc (q *Queries) InsertValues(ctx context.Context, arg InsertValuesParams) error {\n\t_, err := q.db.ExecContext(ctx, insertValues, arg.A, arg.B)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/stdlib/query.sql",
    "content": "-- name: InsertValues :exec\nINSERT INTO public.foo (a, b) VALUES ($1, $2);\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (a text, b integer);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/insert_values_public/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/pgx/v4/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar      bool\n\tInterval int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst get = `-- name: Get :many\nSELECT bar, \"interval\" FROM foo LIMIT $1\n`\n\nfunc (q *Queries) Get(ctx context.Context, limit int32) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, get, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Bar, &i.Interval); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/pgx/v4/query.sql",
    "content": "-- name: Get :many\nSELECT bar, \"interval\" FROM foo LIMIT $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar bool not null, \"interval\" interval not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/pgx/v5/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar      bool\n\tInterval pgtype.Interval\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst get = `-- name: Get :many\nSELECT bar, \"interval\" FROM foo LIMIT $1\n`\n\nfunc (q *Queries) Get(ctx context.Context, limit int32) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, get, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Bar, &i.Interval); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/pgx/v5/query.sql",
    "content": "-- name: Get :many\nSELECT bar, \"interval\" FROM foo LIMIT $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar bool not null, \"interval\" interval not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/stdlib/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar      bool\n\tInterval int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst get = `-- name: Get :many\nSELECT bar, \"interval\" FROM foo LIMIT $1\n`\n\nfunc (q *Queries) Get(ctx context.Context, limit int32) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, get, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Bar, &i.Interval); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/stdlib/query.sql",
    "content": "-- name: Get :many\nSELECT bar, \"interval\" FROM foo LIMIT $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar bool not null, \"interval\" interval not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/interval/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_func_args/pgx/v4/query.sql",
    "content": "-- name: Test :one\nSELECT random(1);\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_func_args/pgx/v4/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/invalid_func_args/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_func_args/pgx/v4/stderr/base.txt",
    "content": "# package querytest\nquery.sql:2:8: function random(unknown) does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_func_args/pgx/v4/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:2:8: function random(integer) does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_func_args/pgx/v5/query.sql",
    "content": "-- name: Test :one\nSELECT random(1);\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_func_args/pgx/v5/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/invalid_func_args/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_func_args/pgx/v5/stderr/base.txt",
    "content": "# package querytest\nquery.sql:2:8: function random(unknown) does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_func_args/pgx/v5/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:2:8: function random(integer) does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_func_args/stdlib/query.sql",
    "content": "-- name: Test :one\nSELECT random(1);\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_func_args/stdlib/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/invalid_func_args/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_func_args/stdlib/stderr/base.txt",
    "content": "# package querytest\nquery.sql:2:8: function random(unknown) does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_func_args/stdlib/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:2:8: function random(integer) does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_group_by_reference/mysql/exec.json",
    "content": "{\n    \"meta\": {\n        \"invalid_schema\": true\n    }\n}\n\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_group_by_reference/mysql/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT   *\nFROM     authors\nGROUP BY invalid_reference;\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_group_by_reference/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGINT  NOT NULL AUTO_INCREMENT PRIMARY KEY,\n  name text    NOT NULL,\n  bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_group_by_reference/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_group_by_reference/mysql/stderr.txt",
    "content": "# package querytest\nquery.sql:4:10: column reference \"invalid_reference\" not found\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_group_by_reference/postgresql/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT   *\nFROM     authors\nGROUP BY invalid_reference;"
  },
  {
    "path": "internal/endtoend/testdata/invalid_group_by_reference/postgresql/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_group_by_reference/postgresql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"postgresql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_group_by_reference/postgresql/stderr/base.txt",
    "content": "# package querytest\nquery.sql:4:10: column reference \"invalid_reference\" not found\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_group_by_reference/postgresql/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:4:22: column \"invalid_reference\" does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_group_by_reference/sqlite/exec.json",
    "content": "{\n    \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_group_by_reference/sqlite/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT   *\nFROM     authors\nGROUP BY invalid_reference;\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_group_by_reference/sqlite/schema.sql",
    "content": "CREATE TABLE authors (\n  id   integer NOT NULL PRIMARY KEY AUTOINCREMENT,\n  name text    NOT NULL,\n  bio  text,\n  UNIQUE(name)\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_group_by_reference/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/invalid_group_by_reference/sqlite/stderr.txt",
    "content": "# package querytest\nquery.sql:1:1: sqlite3: SQL logic error: no such column: invalid_reference\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_insert_unknown_column/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/381\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_insert_unknown_column/postgresql/pgx/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_insert_unknown_column/postgresql/pgx/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_insert_unknown_column/postgresql/pgx/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (\n  name, bio, missing_column\n) VALUES (\n  $1, $2, true\n)\nRETURNING id, name, bio\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  pgtype.Text\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error) {\n\trow := q.db.QueryRow(ctx, createAuthor, arg.Name, arg.Bio)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_insert_unknown_column/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_insert_unknown_column/postgresql/pgx/query.sql",
    "content": "-- name: CreateAuthor :one\nINSERT INTO authors (\n  name, bio, missing_column\n) VALUES (\n  $1, $2, true\n)\nRETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_insert_unknown_column/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_insert_unknown_column/postgresql/pgx/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"cloud\": {\n    \"project\": \"01HAQMMECEYQYKFJN8MP16QC41\"\n  },\n  \"packages\": [\n    {\n      \"path\": \"db\",\n      \"engine\": \"postgresql\",\n      \"database\": {\n        \"managed\": true\n      },\n      \"sql_package\": \"pgx/v5\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_insert_unknown_column/postgresql/pgx/stderr.txt",
    "content": "# package db\nquery.sql:3:14: column \"missing_column\" of relation \"authors\" does not exist"
  },
  {
    "path": "internal/endtoend/testdata/invalid_named_params/mysql/query.sql",
    "content": "-- name: ListAuthors :one\nSELECT  *\nFROM    authors\nWHERE   id = sqlc.arg(my_named_param)\n        OR bio = sqlc.arg(my_named_param)\nLIMIT   1;\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_named_params/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGINT PRIMARY KEY,\n  bio  TEXT\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_named_params/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_named_params/mysql/stderr.txt",
    "content": "# package querytest\nerror generating code: named param MyNamedParam has incompatible types: sql.NullString, int64\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params/pgx/v4/query.sql",
    "content": "-- name: baz :one\nSELECT foo FROM bar WHERE baz = $4;\n\n-- name: bar :one\nSELECT foo FROM bar WHERE baz = $1 AND baz = $3;\n\n-- name: foo :one\nSELECT foo FROM bar;\n\n-- name: Named :many\nSELECT id FROM bar WHERE id = $1 AND sqlc.arg(named) = true AND id = $5;\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params/pgx/v4/stderr/base.txt",
    "content": "# package querytest\nquery.sql:1:1: could not determine data type of parameter $1\nquery.sql:5:1: could not determine data type of parameter $2\nquery.sql:8:8: column \"foo\" does not exist\nquery.sql:11:1: could not determine data type of parameter $2\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params/pgx/v4/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:2:8: column \"foo\" does not exist\nquery.sql:5:8: column \"foo\" does not exist\nquery.sql:8:8: column \"foo\" does not exist\nquery.sql:8:20: could not determine data type of parameter $3\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params/pgx/v5/query.sql",
    "content": "-- name: baz :one\nSELECT foo FROM bar WHERE baz = $4;\n\n-- name: bar :one\nSELECT foo FROM bar WHERE baz = $1 AND baz = $3;\n\n-- name: foo :one\nSELECT foo FROM bar;\n\n-- name: Named :many\nSELECT id FROM bar WHERE id = $1 AND sqlc.arg(named) = true AND id = $5;\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params/pgx/v5/stderr/base.txt",
    "content": "# package querytest\nquery.sql:1:1: could not determine data type of parameter $1\nquery.sql:5:1: could not determine data type of parameter $2\nquery.sql:8:8: column \"foo\" does not exist\nquery.sql:11:1: could not determine data type of parameter $2\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params/pgx/v5/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:2:8: column \"foo\" does not exist\nquery.sql:5:8: column \"foo\" does not exist\nquery.sql:8:8: column \"foo\" does not exist\nquery.sql:8:20: could not determine data type of parameter $3\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params/stdlib/query.sql",
    "content": "-- name: baz :one\nSELECT foo FROM bar WHERE baz = $4;\n\n-- name: bar :one\nSELECT foo FROM bar WHERE baz = $1 AND baz = $3;\n\n-- name: foo :one\nSELECT foo FROM bar;\n\n-- name: Named :many\nSELECT id FROM bar WHERE id = $1 AND sqlc.arg(named) = true AND id = $5;\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params/stdlib/stderr/base.txt",
    "content": "# package querytest\nquery.sql:1:1: could not determine data type of parameter $1\nquery.sql:5:1: could not determine data type of parameter $2\nquery.sql:8:8: column \"foo\" does not exist\nquery.sql:11:1: could not determine data type of parameter $2\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params/stdlib/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:2:8: column \"foo\" does not exist\nquery.sql:5:8: column \"foo\" does not exist\nquery.sql:8:8: column \"foo\" does not exist\nquery.sql:8:20: could not determine data type of parameter $3\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params_type_mismatch/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/297\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params_type_mismatch/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params_type_mismatch/postgresql/pgx/query.sql",
    "content": "-- name: UpdateAuthor :exec\nUPDATE authors\nSET name = $1\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params_type_mismatch/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name boolean      NOT NULL,\n  bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params_type_mismatch/postgresql/pgx/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"db\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_params_type_mismatch/postgresql/pgx/stderr.txt",
    "content": "# package db\nquery.sql:3:12: column \"name\" is of type boolean but expression is of type bigint\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_bar/pgx/v4/query.sql",
    "content": "-- name: InsertBarBaz :exec\nINSERT INTO foo (bar, baz) VALUES ($1);\n\n-- name: InsertBar :exec\nINSERT INTO foo (bar) VALUES ($1, $2);\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_bar/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text not null, baz text not null);"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_bar/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_bar/pgx/v4/stderr/base.txt",
    "content": "# package querytest\nquery.sql:1:1: INSERT has more target columns than expressions\nquery.sql:5:1: INSERT has more expressions than target columns\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_bar/pgx/v4/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:2:23: INSERT has more target columns than expressions\nquery.sql:5:35: INSERT has more expressions than target columns\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_bar/pgx/v5/query.sql",
    "content": "-- name: InsertBarBaz :exec\nINSERT INTO foo (bar, baz) VALUES ($1);\n\n-- name: InsertBar :exec\nINSERT INTO foo (bar) VALUES ($1, $2);"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_bar/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text not null, baz text not null);"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_bar/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_bar/pgx/v5/stderr/base.txt",
    "content": "# package querytest\nquery.sql:1:1: INSERT has more target columns than expressions\nquery.sql:5:1: INSERT has more expressions than target columns\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_bar/pgx/v5/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:2:23: INSERT has more target columns than expressions\nquery.sql:5:35: INSERT has more expressions than target columns\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_bar/stdlib/query.sql",
    "content": "-- name: InsertBarBaz :exec\nINSERT INTO foo (bar, baz) VALUES ($1);\n\n-- name: InsertBar :exec\nINSERT INTO foo (bar) VALUES ($1, $2);"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_bar/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text not null, baz text not null);"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_bar/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_bar/stdlib/stderr/base.txt",
    "content": "# package querytest\nquery.sql:1:1: INSERT has more target columns than expressions\nquery.sql:5:1: INSERT has more expressions than target columns\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_bar/stdlib/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:2:23: INSERT has more target columns than expressions\nquery.sql:5:35: INSERT has more expressions than target columns\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_foo/pgx/v4/query.sql",
    "content": "-- name: ListFoos\nSELECT id FROM foo;\n\n-- name: ListFoos :one :many\nSELECT id FROM foo;\n\n-- name: ListFoos :two\nSELECT id FROM foo;\n\n-- name: DeleteFoo :one\nDELETE FROM foo WHERE id = $1;\n\n-- name: UpdateFoo :one\nUPDATE foo SET id = $2 WHERE id = $1;\n\n-- name: InsertFoo :one\nINSERT INTO foo (id) VALUES ($1);\n\n-- name: InsertFoo :batchone\nINSERT INTO foo (id) VALUES ($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_foo/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (id text not null);"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_foo/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_foo/pgx/v4/stderr.txt",
    "content": "# package querytest\nquery.sql:1:1: missing query type [':one', ':many', ':exec', ':execrows', ':execlastid', ':execresult', ':copyfrom', 'batchexec', 'batchmany', 'batchone']: -- name: ListFoos\nquery.sql:5:1: invalid query comment: -- name: ListFoos :one :many\nquery.sql:8:1: invalid query type: :two\nquery.sql:11:1: query \"DeleteFoo\" specifies parameter \":one\" without containing a RETURNING clause\nquery.sql:14:1: query \"UpdateFoo\" specifies parameter \":one\" without containing a RETURNING clause\nquery.sql:17:1: query \"InsertFoo\" specifies parameter \":one\" without containing a RETURNING clause\nquery.sql:20:1: query \"InsertFoo\" specifies parameter \":batchone\" without containing a RETURNING clause\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_foo/pgx/v5/query.sql",
    "content": "-- name: ListFoos\nSELECT id FROM foo;\n\n-- name: ListFoos :one :many\nSELECT id FROM foo;\n\n-- name: ListFoos :two\nSELECT id FROM foo;\n\n-- name: DeleteFoo :one\nDELETE FROM foo WHERE id = $1;\n\n-- name: UpdateFoo :one\nUPDATE foo SET id = $2 WHERE id = $1;\n\n-- name: InsertFoo :one\nINSERT INTO foo (id) VALUES ($1);\n\n-- name: InsertFoo :batchone\nINSERT INTO foo (id) VALUES ($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_foo/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (id text not null);"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_foo/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_foo/pgx/v5/stderr.txt",
    "content": "# package querytest\nquery.sql:1:1: missing query type [':one', ':many', ':exec', ':execrows', ':execlastid', ':execresult', ':copyfrom', 'batchexec', 'batchmany', 'batchone']: -- name: ListFoos\nquery.sql:5:1: invalid query comment: -- name: ListFoos :one :many\nquery.sql:8:1: invalid query type: :two\nquery.sql:11:1: query \"DeleteFoo\" specifies parameter \":one\" without containing a RETURNING clause\nquery.sql:14:1: query \"UpdateFoo\" specifies parameter \":one\" without containing a RETURNING clause\nquery.sql:17:1: query \"InsertFoo\" specifies parameter \":one\" without containing a RETURNING clause\nquery.sql:20:1: query \"InsertFoo\" specifies parameter \":batchone\" without containing a RETURNING clause\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_foo/stdlib/query.sql",
    "content": "-- name: ListFoos\nSELECT id FROM foo;\n\n-- name: ListFoos :one :many\nSELECT id FROM foo;\n\n-- name: ListFoos :two\nSELECT id FROM foo;\n\n-- name: DeleteFoo :one\nDELETE FROM foo WHERE id = $1;\n\n-- name: UpdateFoo :one\nUPDATE foo SET id = $2 WHERE id = $1;\n\n-- name: InsertFoo :one\nINSERT INTO foo (id) VALUES ($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_foo/stdlib/schema.sql",
    "content": "CREATE TABLE foo (id text not null);"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_foo/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_queries_foo/stdlib/stderr.txt",
    "content": "# package querytest\nquery.sql:1:1: missing query type [':one', ':many', ':exec', ':execrows', ':execlastid', ':execresult', ':copyfrom', 'batchexec', 'batchmany', 'batchone']: -- name: ListFoos\nquery.sql:5:1: invalid query comment: -- name: ListFoos :one :many\nquery.sql:8:1: invalid query type: :two\nquery.sql:11:1: query \"DeleteFoo\" specifies parameter \":one\" without containing a RETURNING clause\nquery.sql:14:1: query \"UpdateFoo\" specifies parameter \":one\" without containing a RETURNING clause\nquery.sql:17:1: query \"InsertFoo\" specifies parameter \":one\" without containing a RETURNING clause"
  },
  {
    "path": "internal/endtoend/testdata/invalid_table_alias/mysql/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT  *\nFROM    authors a\nWHERE   p.id = ?\nLIMIT   1;\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_table_alias/mysql/schema.sql",
    "content": "-- https://github.com/sqlc-dev/sqlc/issues/437\nCREATE TABLE authors (\n  id   INT PRIMARY KEY,\n  name VARCHAR(255) NOT NULL,\n  bio  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_table_alias/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_table_alias/mysql/stderr.txt",
    "content": "# package querytest\nquery.sql:4:9: table alias \"p\" does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_table_alias/postgresql/exec.json",
    "content": "{\n    \"os\": [\"darwin\", \"linux\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_table_alias/postgresql/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT  *\nFROM    authors a\nWHERE   p.id = $1\nLIMIT   1;\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_table_alias/postgresql/schema.sql",
    "content": "-- https://github.com/sqlc-dev/sqlc/issues/437\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);"
  },
  {
    "path": "internal/endtoend/testdata/invalid_table_alias/postgresql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"postgresql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_table_alias/postgresql/stderr/base.txt",
    "content": "# package querytest\nquery.sql:4:9: table alias \"p\" does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_table_alias/postgresql/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:5:3: missing FROM-clause entry for table \"p\"\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_table_alias/sqlite/exec.json",
    "content": "{\n    \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_table_alias/sqlite/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT  *\nFROM    authors a\nWHERE   p.id = ?\nLIMIT   1;\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_table_alias/sqlite/schema.sql",
    "content": "-- https://github.com/sqlc-dev/sqlc/issues/437\nCREATE TABLE authors (\n  id   INTEGER PRIMARY KEY,\n  name VARCHAR(255) NOT NULL,\n  bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_table_alias/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/invalid_table_alias/sqlite/stderr.txt",
    "content": "# package querytest\nquery.sql:1:1: sqlite3: SQL logic error: no such column: p.id\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_update_unknown_column/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/884"
  },
  {
    "path": "internal/endtoend/testdata/invalid_update_unknown_column/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/invalid_update_unknown_column/postgresql/pgx/query.sql",
    "content": "-- name: UpdateArticles :exec\nUPDATE\n\tpublic.articles\nSET\n\tis_deleted = TRUE\nWHERE\n\tid = $1;"
  },
  {
    "path": "internal/endtoend/testdata/invalid_update_unknown_column/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE public.articles (\n    id integer NOT NULL,\n    company integer NOT NULL,\n    name text NOT NULL,\n    sort_order integer DEFAULT 0 NOT NULL,\n    object_type smallint NOT NULL,\n    image text,\n    \"group\" integer,\n    notes text DEFAULT ''::text NOT NULL\n);"
  },
  {
    "path": "internal/endtoend/testdata/invalid_update_unknown_column/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\""
  },
  {
    "path": "internal/endtoend/testdata/invalid_update_unknown_column/postgresql/pgx/stderr.txt",
    "content": "# package querytest\nquery.sql:5:2: column \"is_deleted\" of relation \"articles\" does not exist"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID    uint64\n\tTitle sql.NullString\n}\n\ntype Foo struct {\n\tID uint64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst aliasExpand = `-- name: AliasExpand :many\nSELECT f.id, b.id, title\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = ?\n`\n\ntype AliasExpandRow struct {\n\tID    uint64\n\tID_2  uint64\n\tTitle sql.NullString\n}\n\nfunc (q *Queries) AliasExpand(ctx context.Context, id uint64) ([]AliasExpandRow, error) {\n\trows, err := q.db.QueryContext(ctx, aliasExpand, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AliasExpandRow\n\tfor rows.Next() {\n\t\tvar i AliasExpandRow\n\t\tif err := rows.Scan(&i.ID, &i.ID_2, &i.Title); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst aliasJoin = `-- name: AliasJoin :many\nSELECT f.id, b.title\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = ?\n`\n\ntype AliasJoinRow struct {\n\tID    uint64\n\tTitle sql.NullString\n}\n\nfunc (q *Queries) AliasJoin(ctx context.Context, id uint64) ([]AliasJoinRow, error) {\n\trows, err := q.db.QueryContext(ctx, aliasJoin, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AliasJoinRow\n\tfor rows.Next() {\n\t\tvar i AliasJoinRow\n\t\tif err := rows.Scan(&i.ID, &i.Title); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/mysql/query.sql",
    "content": "-- name: AliasJoin :many\nSELECT f.id, b.title\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = ?;\n\n-- name: AliasExpand :many\nSELECT *\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/mysql/schema.sql",
    "content": "CREATE TABLE foo (id serial not null);\nCREATE TABLE bar (id serial not null references foo(id), title text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID    int32\n\tTitle sql.NullString\n}\n\ntype Foo struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst aliasExpand = `-- name: AliasExpand :many\nSELECT f.id, b.id, title\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = $1\n`\n\ntype AliasExpandRow struct {\n\tID    int32\n\tID_2  int32\n\tTitle sql.NullString\n}\n\nfunc (q *Queries) AliasExpand(ctx context.Context, id int32) ([]AliasExpandRow, error) {\n\trows, err := q.db.Query(ctx, aliasExpand, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AliasExpandRow\n\tfor rows.Next() {\n\t\tvar i AliasExpandRow\n\t\tif err := rows.Scan(&i.ID, &i.ID_2, &i.Title); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst aliasJoin = `-- name: AliasJoin :many\nSELECT f.id, b.title\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = $1\n`\n\ntype AliasJoinRow struct {\n\tID    int32\n\tTitle sql.NullString\n}\n\nfunc (q *Queries) AliasJoin(ctx context.Context, id int32) ([]AliasJoinRow, error) {\n\trows, err := q.db.Query(ctx, aliasJoin, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AliasJoinRow\n\tfor rows.Next() {\n\t\tvar i AliasJoinRow\n\t\tif err := rows.Scan(&i.ID, &i.Title); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/pgx/v4/query.sql",
    "content": "-- name: AliasJoin :many\nSELECT f.id, b.title\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = $1;\n\n-- name: AliasExpand :many\nSELECT *\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (id serial not null unique);\nCREATE TABLE bar (id serial not null references foo(id), title text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Bar struct {\n\tID    int32\n\tTitle pgtype.Text\n}\n\ntype Foo struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst aliasExpand = `-- name: AliasExpand :many\nSELECT f.id, b.id, title\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = $1\n`\n\ntype AliasExpandRow struct {\n\tID    int32\n\tID_2  int32\n\tTitle pgtype.Text\n}\n\nfunc (q *Queries) AliasExpand(ctx context.Context, id int32) ([]AliasExpandRow, error) {\n\trows, err := q.db.Query(ctx, aliasExpand, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AliasExpandRow\n\tfor rows.Next() {\n\t\tvar i AliasExpandRow\n\t\tif err := rows.Scan(&i.ID, &i.ID_2, &i.Title); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst aliasJoin = `-- name: AliasJoin :many\nSELECT f.id, b.title\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = $1\n`\n\ntype AliasJoinRow struct {\n\tID    int32\n\tTitle pgtype.Text\n}\n\nfunc (q *Queries) AliasJoin(ctx context.Context, id int32) ([]AliasJoinRow, error) {\n\trows, err := q.db.Query(ctx, aliasJoin, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AliasJoinRow\n\tfor rows.Next() {\n\t\tvar i AliasJoinRow\n\t\tif err := rows.Scan(&i.ID, &i.Title); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/pgx/v5/query.sql",
    "content": "-- name: AliasJoin :many\nSELECT f.id, b.title\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = $1;\n\n-- name: AliasExpand :many\nSELECT *\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (id serial not null unique);\nCREATE TABLE bar (id serial not null references foo(id), title text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID    int32\n\tTitle sql.NullString\n}\n\ntype Foo struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst aliasExpand = `-- name: AliasExpand :many\nSELECT f.id, b.id, title\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = $1\n`\n\ntype AliasExpandRow struct {\n\tID    int32\n\tID_2  int32\n\tTitle sql.NullString\n}\n\nfunc (q *Queries) AliasExpand(ctx context.Context, id int32) ([]AliasExpandRow, error) {\n\trows, err := q.db.QueryContext(ctx, aliasExpand, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AliasExpandRow\n\tfor rows.Next() {\n\t\tvar i AliasExpandRow\n\t\tif err := rows.Scan(&i.ID, &i.ID_2, &i.Title); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst aliasJoin = `-- name: AliasJoin :many\nSELECT f.id, b.title\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = $1\n`\n\ntype AliasJoinRow struct {\n\tID    int32\n\tTitle sql.NullString\n}\n\nfunc (q *Queries) AliasJoin(ctx context.Context, id int32) ([]AliasJoinRow, error) {\n\trows, err := q.db.QueryContext(ctx, aliasJoin, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AliasJoinRow\n\tfor rows.Next() {\n\t\tvar i AliasJoinRow\n\t\tif err := rows.Scan(&i.ID, &i.Title); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/stdlib/query.sql",
    "content": "-- name: AliasJoin :many\nSELECT f.id, b.title\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = $1;\n\n-- name: AliasExpand :many\nSELECT *\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (id serial not null unique);\nCREATE TABLE bar (id serial not null references foo(id), title text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID    int64\n\tTitle sql.NullString\n}\n\ntype Foo struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst aliasExpand = `-- name: AliasExpand :many\nSELECT f.id, b.id, title\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = ?\n`\n\ntype AliasExpandRow struct {\n\tID    int64\n\tID_2  int64\n\tTitle sql.NullString\n}\n\nfunc (q *Queries) AliasExpand(ctx context.Context, id int64) ([]AliasExpandRow, error) {\n\trows, err := q.db.QueryContext(ctx, aliasExpand, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AliasExpandRow\n\tfor rows.Next() {\n\t\tvar i AliasExpandRow\n\t\tif err := rows.Scan(&i.ID, &i.ID_2, &i.Title); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst aliasJoin = `-- name: AliasJoin :many\nSELECT f.id, b.title\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = ?\n`\n\ntype AliasJoinRow struct {\n\tID    int64\n\tTitle sql.NullString\n}\n\nfunc (q *Queries) AliasJoin(ctx context.Context, id int64) ([]AliasJoinRow, error) {\n\trows, err := q.db.QueryContext(ctx, aliasJoin, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AliasJoinRow\n\tfor rows.Next() {\n\t\tvar i AliasJoinRow\n\t\tif err := rows.Scan(&i.ID, &i.Title); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/sqlite/query.sql",
    "content": "-- name: AliasJoin :many\nSELECT f.id, b.title\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = ?;\n\n-- name: AliasExpand :many\nSELECT *\nFROM foo f\nJOIN bar b ON b.id = f.id\nWHERE f.id = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/sqlite/schema.sql",
    "content": "CREATE TABLE foo (id integer not null);\nCREATE TABLE bar (id integer not null references foo(id), title text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_alias/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/join_clauses_order/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_clauses_order/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype A struct {\n\tID int64\n\tA  string\n}\n\ntype B struct {\n\tID  int64\n\tB   string\n\tAID int64\n}\n\ntype C struct {\n\tID  int64\n\tC   string\n\tAID int64\n}\n\ntype D struct {\n\tID  int64\n\tD   string\n\tAID int64\n}\n\ntype E struct {\n\tID  int64\n\tE   string\n\tAID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_clauses_order/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst testInnerLeft = `-- name: TestInnerLeft :many\nSELECT a.a, b.b, c.c\nFROM a\nINNER JOIN b ON b.a_id = a.id\nLEFT JOIN c ON c.a_id = a.id\n`\n\ntype TestInnerLeftRow struct {\n\tA string\n\tB string\n\tC sql.NullString\n}\n\nfunc (q *Queries) TestInnerLeft(ctx context.Context) ([]TestInnerLeftRow, error) {\n\trows, err := q.db.QueryContext(ctx, testInnerLeft)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []TestInnerLeftRow\n\tfor rows.Next() {\n\t\tvar i TestInnerLeftRow\n\t\tif err := rows.Scan(&i.A, &i.B, &i.C); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst testInnerLeftInnerLeft = `-- name: TestInnerLeftInnerLeft :many\nSELECT a.a, b.b, c.c, d.d, e.e\nFROM a\nINNER JOIN b ON b.a_id = a.id\nLEFT JOIN c ON c.a_id = a.id\nINNER JOIN d ON d.a_id = a.id\nLEFT JOIN e ON e.a_id = a.id\n`\n\ntype TestInnerLeftInnerLeftRow struct {\n\tA string\n\tB string\n\tC sql.NullString\n\tD string\n\tE sql.NullString\n}\n\nfunc (q *Queries) TestInnerLeftInnerLeft(ctx context.Context) ([]TestInnerLeftInnerLeftRow, error) {\n\trows, err := q.db.QueryContext(ctx, testInnerLeftInnerLeft)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []TestInnerLeftInnerLeftRow\n\tfor rows.Next() {\n\t\tvar i TestInnerLeftInnerLeftRow\n\t\tif err := rows.Scan(\n\t\t\t&i.A,\n\t\t\t&i.B,\n\t\t\t&i.C,\n\t\t\t&i.D,\n\t\t\t&i.E,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst testLeftInner = `-- name: TestLeftInner :many\nSELECT a.a, b.b, c.c\nFROM a\nLEFT JOIN b ON b.a_id = a.id\nINNER JOIN c ON c.a_id = a.id\n`\n\ntype TestLeftInnerRow struct {\n\tA string\n\tB sql.NullString\n\tC string\n}\n\nfunc (q *Queries) TestLeftInner(ctx context.Context) ([]TestLeftInnerRow, error) {\n\trows, err := q.db.QueryContext(ctx, testLeftInner)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []TestLeftInnerRow\n\tfor rows.Next() {\n\t\tvar i TestLeftInnerRow\n\t\tif err := rows.Scan(&i.A, &i.B, &i.C); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst testLeftInnerLeftInner = `-- name: TestLeftInnerLeftInner :many\nSELECT a.a, b.b, c.c, d.d, e.e\nFROM a\nLEFT JOIN b ON b.a_id = a.id\nINNER JOIN c ON c.a_id = a.id\nLEFT JOIN d ON d.a_id = a.id\nINNER JOIN e ON e.a_id = a.id\n`\n\ntype TestLeftInnerLeftInnerRow struct {\n\tA string\n\tB sql.NullString\n\tC string\n\tD sql.NullString\n\tE string\n}\n\nfunc (q *Queries) TestLeftInnerLeftInner(ctx context.Context) ([]TestLeftInnerLeftInnerRow, error) {\n\trows, err := q.db.QueryContext(ctx, testLeftInnerLeftInner)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []TestLeftInnerLeftInnerRow\n\tfor rows.Next() {\n\t\tvar i TestLeftInnerLeftInnerRow\n\t\tif err := rows.Scan(\n\t\t\t&i.A,\n\t\t\t&i.B,\n\t\t\t&i.C,\n\t\t\t&i.D,\n\t\t\t&i.E,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_clauses_order/postgresql/query.sql",
    "content": "-- name: TestLeftInner :many\nSELECT a.a, b.b, c.c\nFROM a\nLEFT JOIN b ON b.a_id = a.id\nINNER JOIN c ON c.a_id = a.id;\n\n-- name: TestInnerLeft :many\nSELECT a.a, b.b, c.c\nFROM a\nINNER JOIN b ON b.a_id = a.id\nLEFT JOIN c ON c.a_id = a.id;\n\n-- name: TestLeftInnerLeftInner :many\nSELECT a.a, b.b, c.c, d.d, e.e\nFROM a\nLEFT JOIN b ON b.a_id = a.id\nINNER JOIN c ON c.a_id = a.id\nLEFT JOIN d ON d.a_id = a.id\nINNER JOIN e ON e.a_id = a.id;\n\n-- name: TestInnerLeftInnerLeft :many\nSELECT a.a, b.b, c.c, d.d, e.e\nFROM a\nINNER JOIN b ON b.a_id = a.id\nLEFT JOIN c ON c.a_id = a.id\nINNER JOIN d ON d.a_id = a.id\nLEFT JOIN e ON e.a_id = a.id;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_clauses_order/postgresql/schema.sql",
    "content": "CREATE TABLE a (\n  id   BIGSERIAL PRIMARY KEY,\n  a TEXT NOT NULL\n);\n\nCREATE TABLE b (\n  id BIGSERIAL PRIMARY KEY,\n  b TEXT NOT NULL,\n  a_id BIGINT NOT NULL REFERENCES a (id)\n);\n\nCREATE TABLE c (\n  id BIGSERIAL PRIMARY KEY,\n  c TEXT NOT NULL,\n  a_id BIGINT NOT NULL REFERENCES a (id)\n);\n\nCREATE TABLE d (\n  id BIGSERIAL PRIMARY KEY,\n  d TEXT NOT NULL,\n  a_id BIGINT NOT NULL REFERENCES a (id)\n);\n\nCREATE TABLE e (\n  id BIGSERIAL PRIMARY KEY,\n  e TEXT NOT NULL,\n  a_id BIGINT NOT NULL REFERENCES a (id)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_clauses_order/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tLogin string\n}\n\ntype Foo struct {\n\tEmail string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst multiFrom = `-- name: MultiFrom :many\nSELECT email FROM bar, foo WHERE login = ?\n`\n\nfunc (q *Queries) MultiFrom(ctx context.Context, login string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, multiFrom, login)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar email string\n\t\tif err := rows.Scan(&email); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, email)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/mysql/query.sql",
    "content": "-- name: MultiFrom :many\nSELECT email FROM bar, foo WHERE login = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/mysql/schema.sql",
    "content": "CREATE TABLE foo (email text not null);\nCREATE TABLE bar (login text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tLogin string\n}\n\ntype Foo struct {\n\tEmail string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst multiFrom = `-- name: MultiFrom :many\nSELECT email FROM bar, foo WHERE login = $1\n`\n\nfunc (q *Queries) MultiFrom(ctx context.Context, login string) ([]string, error) {\n\trows, err := q.db.Query(ctx, multiFrom, login)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar email string\n\t\tif err := rows.Scan(&email); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, email)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/pgx/v4/query.sql",
    "content": "-- name: MultiFrom :many\nSELECT email FROM bar, foo WHERE login = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (email text not null);\nCREATE TABLE bar (login text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tLogin string\n}\n\ntype Foo struct {\n\tEmail string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst multiFrom = `-- name: MultiFrom :many\nSELECT email FROM bar, foo WHERE login = $1\n`\n\nfunc (q *Queries) MultiFrom(ctx context.Context, login string) ([]string, error) {\n\trows, err := q.db.Query(ctx, multiFrom, login)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar email string\n\t\tif err := rows.Scan(&email); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, email)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/pgx/v5/query.sql",
    "content": "-- name: MultiFrom :many\nSELECT email FROM bar, foo WHERE login = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (email text not null);\nCREATE TABLE bar (login text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tLogin string\n}\n\ntype Foo struct {\n\tEmail string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst multiFrom = `-- name: MultiFrom :many\nSELECT email FROM bar, foo WHERE login = $1\n`\n\nfunc (q *Queries) MultiFrom(ctx context.Context, login string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, multiFrom, login)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar email string\n\t\tif err := rows.Scan(&email); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, email)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/stdlib/query.sql",
    "content": "-- name: MultiFrom :many\nSELECT email FROM bar, foo WHERE login = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (email text not null);\nCREATE TABLE bar (login text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tLogin string\n}\n\ntype Foo struct {\n\tEmail string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst multiFrom = `-- name: MultiFrom :many\nSELECT email FROM bar, foo WHERE login = ?\n`\n\nfunc (q *Queries) MultiFrom(ctx context.Context, login string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, multiFrom, login)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar email string\n\t\tif err := rows.Scan(&email); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, email)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/sqlite/query.sql",
    "content": "-- name: MultiFrom :many\nSELECT email FROM bar, foo WHERE login = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/sqlite/schema.sql",
    "content": "CREATE TABLE foo (email text not null);\nCREATE TABLE bar (login text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_from/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/join_full/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_full/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID int32\n}\n\ntype Foo struct {\n\tID    int32\n\tBarID sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_full/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst fullJoin = `-- name: FullJoin :many\nSELECT f.id, f.bar_id, b.id\nFROM foo f\nFULL OUTER JOIN bar b ON b.id = f.bar_id\nWHERE f.id = $1\n`\n\ntype FullJoinRow struct {\n\tID    sql.NullInt32\n\tBarID sql.NullInt32\n\tID_2  sql.NullInt32\n}\n\nfunc (q *Queries) FullJoin(ctx context.Context, id int32) ([]FullJoinRow, error) {\n\trows, err := q.db.QueryContext(ctx, fullJoin, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []FullJoinRow\n\tfor rows.Next() {\n\t\tvar i FullJoinRow\n\t\tif err := rows.Scan(&i.ID, &i.BarID, &i.ID_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_full/postgresql/query.sql",
    "content": "-- name: FullJoin :many\nSELECT f.id, f.bar_id, b.id\nFROM foo f\nFULL OUTER JOIN bar b ON b.id = f.bar_id\nWHERE f.id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_full/postgresql/schema.sql",
    "content": "CREATE TABLE bar (id serial not null unique);\nCREATE TABLE foo (id serial not null, bar_id int references bar(id));\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_full/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_group_by_alias/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_group_by_alias/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tEmail string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_group_by_alias/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst columnAsGroupBy = `-- name: ColumnAsGroupBy :many\nSELECT a.email AS id\nFROM foo a JOIN foo b ON a.email = b.email\nGROUP BY id\n`\n\nfunc (q *Queries) ColumnAsGroupBy(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, columnAsGroupBy)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_group_by_alias/postgresql/stdlib/query.sql",
    "content": "-- name: ColumnAsGroupBy :many\nSELECT a.email AS id\nFROM foo a JOIN foo b ON a.email = b.email\nGROUP BY id;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_group_by_alias/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (email text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_group_by_alias/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_inner/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_inner/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Event struct {\n\tID sql.NullInt32\n}\n\ntype HandledEvent struct {\n\tLastHandledID sql.NullInt32\n\tHandler       sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_inner/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst selectAllJoined = `-- name: SelectAllJoined :many\nselect events.id from events\n    inner join handled_events\n       on events.ID > handled_events.last_handled_id\nwhere handled_events.handler = $1\n    for update of handled_events skip locked\n`\n\nfunc (q *Queries) SelectAllJoined(ctx context.Context, handler sql.NullString) ([]sql.NullInt32, error) {\n\trows, err := q.db.QueryContext(ctx, selectAllJoined, handler)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullInt32\n\tfor rows.Next() {\n\t\tvar id sql.NullInt32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectAllJoinedAlias = `-- name: SelectAllJoinedAlias :many\nselect e.id from events e\n    inner join handled_events he\n       on e.ID > he.last_handled_id\nwhere he.handler = $1\n    for update of he skip locked\n`\n\nfunc (q *Queries) SelectAllJoinedAlias(ctx context.Context, handler sql.NullString) ([]sql.NullInt32, error) {\n\trows, err := q.db.QueryContext(ctx, selectAllJoinedAlias, handler)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullInt32\n\tfor rows.Next() {\n\t\tvar id sql.NullInt32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_inner/postgresql/query.sql",
    "content": "-- name: SelectAllJoinedAlias :many\nselect e.* from events e\n    inner join handled_events he\n       on e.ID > he.last_handled_id\nwhere he.handler = $1\n    for update of he skip locked;\n\n-- name: SelectAllJoined :many\nselect events.* from events\n    inner join handled_events\n       on events.ID > handled_events.last_handled_id\nwhere handled_events.handler = $1\n    for update of handled_events skip locked;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_inner/postgresql/schema.sql",
    "content": "create table events\n(\n    ID int\n);\n\ncreate table handled_events\n(\n    last_handled_id int,\n    handler text\n);\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_inner/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype Author struct {\n\tID       int32\n\tName     string\n\tParentID sql.NullInt32\n}\n\ntype City struct {\n\tCityID  int32\n\tMayorID int32\n}\n\ntype Mayor struct {\n\tMayorID  int32\n\tFullName string\n}\n\ntype Medium struct {\n\tMediaID        int32\n\tMediaCreatedAt time.Time\n\tMediaHash      string\n\tMediaDirectory string\n\tMediaAuthorID  int32\n\tMediaWidth     int32\n\tMediaHeight    int32\n}\n\ntype SuperAuthor struct {\n\tSuperID       int32\n\tSuperName     string\n\tSuperParentID sql.NullInt32\n}\n\ntype User struct {\n\tUserID int32\n\tCityID sql.NullInt32\n}\n\ntype Users2 struct {\n\tUserID          int32\n\tUserNickname    string\n\tUserEmail       string\n\tUserDisplayName string\n\tUserPassword    sql.NullString\n\tUserGoogleID    sql.NullString\n\tUserAppleID     sql.NullString\n\tUserBio         string\n\tUserCreatedAt   time.Time\n\tUserAvatarID    sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"time\"\n)\n\nconst allAuthors = `-- name: AllAuthors :many\nSELECT  a.id, a.name, a.parent_id, p.id, p.name, p.parent_id\nFROM    authors a\n        LEFT JOIN authors p\n            ON a.parent_id = p.id\n`\n\ntype AllAuthorsRow struct {\n\tID         int32\n\tName       string\n\tParentID   sql.NullInt32\n\tID_2       sql.NullInt32\n\tName_2     sql.NullString\n\tParentID_2 sql.NullInt32\n}\n\nfunc (q *Queries) AllAuthors(ctx context.Context) ([]AllAuthorsRow, error) {\n\trows, err := q.db.QueryContext(ctx, allAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllAuthorsRow\n\tfor rows.Next() {\n\t\tvar i AllAuthorsRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.ID_2,\n\t\t\t&i.Name_2,\n\t\t\t&i.ParentID_2,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst allAuthorsAliases = `-- name: AllAuthorsAliases :many\nSELECT  a.id, a.name, a.parent_id, p.id, p.name, p.parent_id\nFROM    authors a\n        LEFT JOIN authors p\n            ON a.parent_id = p.id\n`\n\ntype AllAuthorsAliasesRow struct {\n\tID         int32\n\tName       string\n\tParentID   sql.NullInt32\n\tID_2       sql.NullInt32\n\tName_2     sql.NullString\n\tParentID_2 sql.NullInt32\n}\n\nfunc (q *Queries) AllAuthorsAliases(ctx context.Context) ([]AllAuthorsAliasesRow, error) {\n\trows, err := q.db.QueryContext(ctx, allAuthorsAliases)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllAuthorsAliasesRow\n\tfor rows.Next() {\n\t\tvar i AllAuthorsAliasesRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.ID_2,\n\t\t\t&i.Name_2,\n\t\t\t&i.ParentID_2,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst allAuthorsAliases2 = `-- name: AllAuthorsAliases2 :many\nSELECT  a.id, a.name, a.parent_id, p.id, p.name, p.parent_id\nFROM    authors a\n        LEFT JOIN authors p\n            ON a.parent_id = p.id\n`\n\ntype AllAuthorsAliases2Row struct {\n\tID         int32\n\tName       string\n\tParentID   sql.NullInt32\n\tID_2       sql.NullInt32\n\tName_2     sql.NullString\n\tParentID_2 sql.NullInt32\n}\n\nfunc (q *Queries) AllAuthorsAliases2(ctx context.Context) ([]AllAuthorsAliases2Row, error) {\n\trows, err := q.db.QueryContext(ctx, allAuthorsAliases2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllAuthorsAliases2Row\n\tfor rows.Next() {\n\t\tvar i AllAuthorsAliases2Row\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.ID_2,\n\t\t\t&i.Name_2,\n\t\t\t&i.ParentID_2,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst allSuperAuthors = `-- name: AllSuperAuthors :many\nSELECT  id, name, parent_id, super_id, super_name, super_parent_id\nFROM    authors\n        LEFT JOIN super_authors\n            ON authors.parent_id = super_authors.super_id\n`\n\ntype AllSuperAuthorsRow struct {\n\tID            int32\n\tName          string\n\tParentID      sql.NullInt32\n\tSuperID       sql.NullInt32\n\tSuperName     sql.NullString\n\tSuperParentID sql.NullInt32\n}\n\nfunc (q *Queries) AllSuperAuthors(ctx context.Context) ([]AllSuperAuthorsRow, error) {\n\trows, err := q.db.QueryContext(ctx, allSuperAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllSuperAuthorsRow\n\tfor rows.Next() {\n\t\tvar i AllSuperAuthorsRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.SuperID,\n\t\t\t&i.SuperName,\n\t\t\t&i.SuperParentID,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst allSuperAuthorsAliases = `-- name: AllSuperAuthorsAliases :many\nSELECT  id, name, parent_id, super_id, super_name, super_parent_id\nFROM    authors a\n        LEFT JOIN super_authors sa\n            ON a.parent_id = sa.super_id\n`\n\ntype AllSuperAuthorsAliasesRow struct {\n\tID            int32\n\tName          string\n\tParentID      sql.NullInt32\n\tSuperID       sql.NullInt32\n\tSuperName     sql.NullString\n\tSuperParentID sql.NullInt32\n}\n\nfunc (q *Queries) AllSuperAuthorsAliases(ctx context.Context) ([]AllSuperAuthorsAliasesRow, error) {\n\trows, err := q.db.QueryContext(ctx, allSuperAuthorsAliases)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllSuperAuthorsAliasesRow\n\tfor rows.Next() {\n\t\tvar i AllSuperAuthorsAliasesRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.SuperID,\n\t\t\t&i.SuperName,\n\t\t\t&i.SuperParentID,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst allSuperAuthorsAliases2 = `-- name: AllSuperAuthorsAliases2 :many\nSELECT  a.id, a.name, a.parent_id, sa.super_id, sa.super_name, sa.super_parent_id\nFROM    authors a\n        LEFT JOIN super_authors sa\n            ON a.parent_id = sa.super_id\n`\n\ntype AllSuperAuthorsAliases2Row struct {\n\tID            int32\n\tName          string\n\tParentID      sql.NullInt32\n\tSuperID       sql.NullInt32\n\tSuperName     sql.NullString\n\tSuperParentID sql.NullInt32\n}\n\nfunc (q *Queries) AllSuperAuthorsAliases2(ctx context.Context) ([]AllSuperAuthorsAliases2Row, error) {\n\trows, err := q.db.QueryContext(ctx, allSuperAuthorsAliases2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllSuperAuthorsAliases2Row\n\tfor rows.Next() {\n\t\tvar i AllSuperAuthorsAliases2Row\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.SuperID,\n\t\t\t&i.SuperName,\n\t\t\t&i.SuperParentID,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getMayors = `-- name: GetMayors :many\nSELECT\n    user_id,\n    mayors.full_name\nFROM users\nLEFT JOIN cities USING (city_id)\nINNER JOIN mayors USING (mayor_id)\n`\n\ntype GetMayorsRow struct {\n\tUserID   int32\n\tFullName string\n}\n\nfunc (q *Queries) GetMayors(ctx context.Context) ([]GetMayorsRow, error) {\n\trows, err := q.db.QueryContext(ctx, getMayors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetMayorsRow\n\tfor rows.Next() {\n\t\tvar i GetMayorsRow\n\t\tif err := rows.Scan(&i.UserID, &i.FullName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getMayorsOptional = `-- name: GetMayorsOptional :many\nSELECT\n    user_id,\n    cities.city_id,\n    mayors.full_name\nFROM users\nLEFT JOIN cities USING (city_id)\nLEFT JOIN mayors USING (mayor_id)\n`\n\ntype GetMayorsOptionalRow struct {\n\tUserID   int32\n\tCityID   sql.NullInt32\n\tFullName sql.NullString\n}\n\nfunc (q *Queries) GetMayorsOptional(ctx context.Context) ([]GetMayorsOptionalRow, error) {\n\trows, err := q.db.QueryContext(ctx, getMayorsOptional)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetMayorsOptionalRow\n\tfor rows.Next() {\n\t\tvar i GetMayorsOptionalRow\n\t\tif err := rows.Scan(&i.UserID, &i.CityID, &i.FullName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getSuggestedUsersByID = `-- name: GetSuggestedUsersByID :many\nSELECT  DISTINCT u.user_id, u.user_nickname, u.user_email, u.user_display_name, u.user_password, u.user_google_id, u.user_apple_id, u.user_bio, u.user_created_at, u.user_avatar_id, m.media_id, m.media_created_at, m.media_hash, m.media_directory, m.media_author_id, m.media_width, m.media_height\nFROM    users_2 u\n        LEFT JOIN media m\n            ON u.user_avatar_id = m.media_id\nWHERE   u.user_id != @user_id\n`\n\ntype GetSuggestedUsersByIDRow struct {\n\tUserID          int32\n\tUserNickname    string\n\tUserEmail       string\n\tUserDisplayName string\n\tUserPassword    sql.NullString\n\tUserGoogleID    sql.NullString\n\tUserAppleID     sql.NullString\n\tUserBio         string\n\tUserCreatedAt   time.Time\n\tUserAvatarID    sql.NullInt32\n\tMediaID         sql.NullInt32\n\tMediaCreatedAt  sql.NullTime\n\tMediaHash       sql.NullString\n\tMediaDirectory  sql.NullString\n\tMediaAuthorID   sql.NullInt32\n\tMediaWidth      sql.NullInt32\n\tMediaHeight     sql.NullInt32\n}\n\nfunc (q *Queries) GetSuggestedUsersByID(ctx context.Context) ([]GetSuggestedUsersByIDRow, error) {\n\trows, err := q.db.QueryContext(ctx, getSuggestedUsersByID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetSuggestedUsersByIDRow\n\tfor rows.Next() {\n\t\tvar i GetSuggestedUsersByIDRow\n\t\tif err := rows.Scan(\n\t\t\t&i.UserID,\n\t\t\t&i.UserNickname,\n\t\t\t&i.UserEmail,\n\t\t\t&i.UserDisplayName,\n\t\t\t&i.UserPassword,\n\t\t\t&i.UserGoogleID,\n\t\t\t&i.UserAppleID,\n\t\t\t&i.UserBio,\n\t\t\t&i.UserCreatedAt,\n\t\t\t&i.UserAvatarID,\n\t\t\t&i.MediaID,\n\t\t\t&i.MediaCreatedAt,\n\t\t\t&i.MediaHash,\n\t\t\t&i.MediaDirectory,\n\t\t\t&i.MediaAuthorID,\n\t\t\t&i.MediaWidth,\n\t\t\t&i.MediaHeight,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/mysql/query.sql",
    "content": "-- name: GetMayors :many\nSELECT\n    user_id,\n    mayors.full_name\nFROM users\nLEFT JOIN cities USING (city_id)\nINNER JOIN mayors USING (mayor_id);\n\n-- name: GetMayorsOptional :many\nSELECT\n    user_id,\n    cities.city_id,\n    mayors.full_name\nFROM users\nLEFT JOIN cities USING (city_id)\nLEFT JOIN mayors USING (mayor_id);\n\n-- name: AllAuthors :many\nSELECT  *\nFROM    authors a\n        LEFT JOIN authors p\n            ON a.parent_id = p.id;\n\n-- name: AllAuthorsAliases :many\nSELECT  *\nFROM    authors a\n        LEFT JOIN authors p\n            ON a.parent_id = p.id;\n\n-- name: AllAuthorsAliases2 :many\nSELECT  a.*, p.*\nFROM    authors a\n        LEFT JOIN authors p\n            ON a.parent_id = p.id;\n\n-- name: AllSuperAuthors :many\nSELECT  *\nFROM    authors\n        LEFT JOIN super_authors\n            ON authors.parent_id = super_authors.super_id;\n\n-- name: AllSuperAuthorsAliases :many\nSELECT  *\nFROM    authors a\n        LEFT JOIN super_authors sa\n            ON a.parent_id = sa.super_id;\n\n-- name: AllSuperAuthorsAliases2 :many\nSELECT  a.*, sa.*\nFROM    authors a\n        LEFT JOIN super_authors sa\n            ON a.parent_id = sa.super_id;\n\n-- name: GetSuggestedUsersByID :many\nSELECT  DISTINCT u.*, m.*\nFROM    users_2 u\n        LEFT JOIN media m\n            ON u.user_avatar_id = m.media_id\nWHERE   u.user_id != @user_id;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/mysql/schema.sql",
    "content": "-- https://github.com/sqlc-dev/sqlc/issues/604\nCREATE TABLE users (\n  user_id    INT PRIMARY KEY,\n  city_id    INT -- nullable\n);\nCREATE TABLE cities (\n  city_id    INT PRIMARY KEY,\n  mayor_id   INT NOT NULL\n);\nCREATE TABLE mayors (\n  mayor_id   INT PRIMARY KEY,\n  full_name  TEXT NOT NULL\n);\n-- https://github.com/sqlc-dev/sqlc/issues/1334\nCREATE TABLE authors (\n  id        INT PRIMARY KEY,\n  name      TEXT NOT NULL,\n  parent_id INT -- nullable\n);\n\nCREATE TABLE super_authors (\n  super_id        INT PRIMARY KEY,\n  super_name      TEXT NOT NULL,\n  super_parent_id INT -- nullable\n);\n\n-- https://github.com/sqlc-dev/sqlc/issues/1334\nCREATE TABLE users_2 (\n    user_id           INT PRIMARY KEY,\n    user_nickname     VARCHAR(30) UNIQUE NOT NULL,\n    user_email        VARCHAR(20) UNIQUE        NOT NULL,\n    user_display_name TEXT               NOT NULL,\n    user_password     TEXT               NULL,\n    user_google_id    VARCHAR(20) UNIQUE        NULL,\n    user_apple_id     VARCHAR(20) UNIQUE        NULL,\n    user_bio          VARCHAR(160)       NOT NULL DEFAULT '',\n    user_created_at   TIMESTAMP          NOT NULL DEFAULT CURRENT_TIMESTAMP,\n    user_avatar_id    INT UNIQUE        NULL\n);\n\nCREATE TABLE media (\n    media_id         INT PRIMARY KEY,\n    media_created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,\n    media_hash       TEXT      NOT NULL,\n    media_directory  TEXT      NOT NULL,\n    media_author_id  INT      NOT NULL,\n    media_width      INT       NOT NULL,\n    media_height     INT       NOT NULL\n);\n\nALTER TABLE users_2\nADD FOREIGN KEY (user_avatar_id)\nREFERENCES media(media_id)\nON DELETE SET DEFAULT\nON UPDATE CASCADE;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/postgresql/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n\n\t\"github.com/google/uuid\"\n)\n\ntype Author struct {\n\tID       int32\n\tName     string\n\tParentID sql.NullInt32\n}\n\ntype City struct {\n\tCityID  int32\n\tMayorID int32\n}\n\ntype Mayor struct {\n\tMayorID  int32\n\tFullName string\n}\n\ntype Medium struct {\n\tMediaID        uuid.UUID\n\tMediaCreatedAt time.Time\n\tMediaHash      string\n\tMediaDirectory string\n\tMediaAuthorID  uuid.UUID\n\tMediaWidth     int32\n\tMediaHeight    int32\n}\n\ntype SuperAuthor struct {\n\tSuperID       int32\n\tSuperName     string\n\tSuperParentID sql.NullInt32\n}\n\ntype User struct {\n\tUserID int32\n\tCityID sql.NullInt32\n}\n\ntype Users2 struct {\n\tUserID          uuid.UUID\n\tUserNickname    string\n\tUserEmail       string\n\tUserDisplayName string\n\tUserPassword    sql.NullString\n\tUserGoogleID    sql.NullString\n\tUserAppleID     sql.NullString\n\tUserBio         string\n\tUserCreatedAt   time.Time\n\tUserAvatarID    uuid.NullUUID\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"time\"\n\n\t\"github.com/google/uuid\"\n)\n\nconst allAuthors = `-- name: AllAuthors :many\nSELECT  a.id, a.name, a.parent_id, p.id, p.name, p.parent_id\nFROM    authors a\n        LEFT JOIN authors p\n            ON a.parent_id = p.id\n`\n\ntype AllAuthorsRow struct {\n\tID         int32\n\tName       string\n\tParentID   sql.NullInt32\n\tID_2       sql.NullInt32\n\tName_2     sql.NullString\n\tParentID_2 sql.NullInt32\n}\n\nfunc (q *Queries) AllAuthors(ctx context.Context) ([]AllAuthorsRow, error) {\n\trows, err := q.db.QueryContext(ctx, allAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllAuthorsRow\n\tfor rows.Next() {\n\t\tvar i AllAuthorsRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.ID_2,\n\t\t\t&i.Name_2,\n\t\t\t&i.ParentID_2,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst allAuthorsAliases = `-- name: AllAuthorsAliases :many\nSELECT  a.id, a.name, a.parent_id, p.id, p.name, p.parent_id\nFROM    authors a\n        LEFT JOIN authors p\n            ON a.parent_id = p.id\n`\n\ntype AllAuthorsAliasesRow struct {\n\tID         int32\n\tName       string\n\tParentID   sql.NullInt32\n\tID_2       sql.NullInt32\n\tName_2     sql.NullString\n\tParentID_2 sql.NullInt32\n}\n\nfunc (q *Queries) AllAuthorsAliases(ctx context.Context) ([]AllAuthorsAliasesRow, error) {\n\trows, err := q.db.QueryContext(ctx, allAuthorsAliases)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllAuthorsAliasesRow\n\tfor rows.Next() {\n\t\tvar i AllAuthorsAliasesRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.ID_2,\n\t\t\t&i.Name_2,\n\t\t\t&i.ParentID_2,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst allAuthorsAliases2 = `-- name: AllAuthorsAliases2 :many\nSELECT  a.id, a.name, a.parent_id, p.id, p.name, p.parent_id\nFROM    authors a\n        LEFT JOIN authors p\n            ON a.parent_id = p.id\n`\n\ntype AllAuthorsAliases2Row struct {\n\tID         int32\n\tName       string\n\tParentID   sql.NullInt32\n\tID_2       sql.NullInt32\n\tName_2     sql.NullString\n\tParentID_2 sql.NullInt32\n}\n\nfunc (q *Queries) AllAuthorsAliases2(ctx context.Context) ([]AllAuthorsAliases2Row, error) {\n\trows, err := q.db.QueryContext(ctx, allAuthorsAliases2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllAuthorsAliases2Row\n\tfor rows.Next() {\n\t\tvar i AllAuthorsAliases2Row\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.ID_2,\n\t\t\t&i.Name_2,\n\t\t\t&i.ParentID_2,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst allSuperAuthors = `-- name: AllSuperAuthors :many\nSELECT  id, name, parent_id, super_id, super_name, super_parent_id\nFROM    authors\n        LEFT JOIN super_authors\n            ON authors.parent_id = super_authors.super_id\n`\n\ntype AllSuperAuthorsRow struct {\n\tID            int32\n\tName          string\n\tParentID      sql.NullInt32\n\tSuperID       sql.NullInt32\n\tSuperName     sql.NullString\n\tSuperParentID sql.NullInt32\n}\n\nfunc (q *Queries) AllSuperAuthors(ctx context.Context) ([]AllSuperAuthorsRow, error) {\n\trows, err := q.db.QueryContext(ctx, allSuperAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllSuperAuthorsRow\n\tfor rows.Next() {\n\t\tvar i AllSuperAuthorsRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.SuperID,\n\t\t\t&i.SuperName,\n\t\t\t&i.SuperParentID,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst allSuperAuthorsAliases = `-- name: AllSuperAuthorsAliases :many\nSELECT  id, name, parent_id, super_id, super_name, super_parent_id\nFROM    authors a\n        LEFT JOIN super_authors sa\n            ON a.parent_id = sa.super_id\n`\n\ntype AllSuperAuthorsAliasesRow struct {\n\tID            int32\n\tName          string\n\tParentID      sql.NullInt32\n\tSuperID       sql.NullInt32\n\tSuperName     sql.NullString\n\tSuperParentID sql.NullInt32\n}\n\nfunc (q *Queries) AllSuperAuthorsAliases(ctx context.Context) ([]AllSuperAuthorsAliasesRow, error) {\n\trows, err := q.db.QueryContext(ctx, allSuperAuthorsAliases)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllSuperAuthorsAliasesRow\n\tfor rows.Next() {\n\t\tvar i AllSuperAuthorsAliasesRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.SuperID,\n\t\t\t&i.SuperName,\n\t\t\t&i.SuperParentID,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst allSuperAuthorsAliases2 = `-- name: AllSuperAuthorsAliases2 :many\nSELECT  a.id, a.name, a.parent_id, sa.super_id, sa.super_name, sa.super_parent_id\nFROM    authors a\n        LEFT JOIN super_authors sa\n            ON a.parent_id = sa.super_id\n`\n\ntype AllSuperAuthorsAliases2Row struct {\n\tID            int32\n\tName          string\n\tParentID      sql.NullInt32\n\tSuperID       sql.NullInt32\n\tSuperName     sql.NullString\n\tSuperParentID sql.NullInt32\n}\n\nfunc (q *Queries) AllSuperAuthorsAliases2(ctx context.Context) ([]AllSuperAuthorsAliases2Row, error) {\n\trows, err := q.db.QueryContext(ctx, allSuperAuthorsAliases2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllSuperAuthorsAliases2Row\n\tfor rows.Next() {\n\t\tvar i AllSuperAuthorsAliases2Row\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.SuperID,\n\t\t\t&i.SuperName,\n\t\t\t&i.SuperParentID,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getMayors = `-- name: GetMayors :many\nSELECT\n    user_id,\n    mayors.full_name\nFROM users\nLEFT JOIN cities USING (city_id)\nINNER JOIN mayors USING (mayor_id)\n`\n\ntype GetMayorsRow struct {\n\tUserID   int32\n\tFullName string\n}\n\nfunc (q *Queries) GetMayors(ctx context.Context) ([]GetMayorsRow, error) {\n\trows, err := q.db.QueryContext(ctx, getMayors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetMayorsRow\n\tfor rows.Next() {\n\t\tvar i GetMayorsRow\n\t\tif err := rows.Scan(&i.UserID, &i.FullName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getMayorsOptional = `-- name: GetMayorsOptional :many\nSELECT\n    user_id,\n    mayors.full_name\nFROM users\nLEFT JOIN cities USING (city_id)\nLEFT JOIN mayors USING (mayor_id)\n`\n\ntype GetMayorsOptionalRow struct {\n\tUserID   int32\n\tFullName sql.NullString\n}\n\nfunc (q *Queries) GetMayorsOptional(ctx context.Context) ([]GetMayorsOptionalRow, error) {\n\trows, err := q.db.QueryContext(ctx, getMayorsOptional)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetMayorsOptionalRow\n\tfor rows.Next() {\n\t\tvar i GetMayorsOptionalRow\n\t\tif err := rows.Scan(&i.UserID, &i.FullName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getSuggestedUsersByID = `-- name: GetSuggestedUsersByID :many\nSELECT  DISTINCT u.user_id, u.user_nickname, u.user_email, u.user_display_name, u.user_password, u.user_google_id, u.user_apple_id, u.user_bio, u.user_created_at, u.user_avatar_id, m.media_id, m.media_created_at, m.media_hash, m.media_directory, m.media_author_id, m.media_width, m.media_height\nFROM    users_2 u\n        LEFT JOIN media m\n            ON u.user_avatar_id = m.media_id\nWHERE   u.user_id != $1\nLIMIT   $2\n`\n\ntype GetSuggestedUsersByIDParams struct {\n\tUserID   uuid.UUID\n\tUserImit int32\n}\n\ntype GetSuggestedUsersByIDRow struct {\n\tUserID          uuid.UUID\n\tUserNickname    string\n\tUserEmail       string\n\tUserDisplayName string\n\tUserPassword    sql.NullString\n\tUserGoogleID    sql.NullString\n\tUserAppleID     sql.NullString\n\tUserBio         string\n\tUserCreatedAt   time.Time\n\tUserAvatarID    uuid.NullUUID\n\tMediaID         uuid.NullUUID\n\tMediaCreatedAt  sql.NullTime\n\tMediaHash       sql.NullString\n\tMediaDirectory  sql.NullString\n\tMediaAuthorID   uuid.NullUUID\n\tMediaWidth      sql.NullInt32\n\tMediaHeight     sql.NullInt32\n}\n\nfunc (q *Queries) GetSuggestedUsersByID(ctx context.Context, arg GetSuggestedUsersByIDParams) ([]GetSuggestedUsersByIDRow, error) {\n\trows, err := q.db.QueryContext(ctx, getSuggestedUsersByID, arg.UserID, arg.UserImit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetSuggestedUsersByIDRow\n\tfor rows.Next() {\n\t\tvar i GetSuggestedUsersByIDRow\n\t\tif err := rows.Scan(\n\t\t\t&i.UserID,\n\t\t\t&i.UserNickname,\n\t\t\t&i.UserEmail,\n\t\t\t&i.UserDisplayName,\n\t\t\t&i.UserPassword,\n\t\t\t&i.UserGoogleID,\n\t\t\t&i.UserAppleID,\n\t\t\t&i.UserBio,\n\t\t\t&i.UserCreatedAt,\n\t\t\t&i.UserAvatarID,\n\t\t\t&i.MediaID,\n\t\t\t&i.MediaCreatedAt,\n\t\t\t&i.MediaHash,\n\t\t\t&i.MediaDirectory,\n\t\t\t&i.MediaAuthorID,\n\t\t\t&i.MediaWidth,\n\t\t\t&i.MediaHeight,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/postgresql/query.sql",
    "content": "-- name: GetMayors :many\nSELECT\n    user_id,\n    mayors.full_name\nFROM users\nLEFT JOIN cities USING (city_id)\nINNER JOIN mayors USING (mayor_id);\n\n-- name: GetMayorsOptional :many\nSELECT\n    user_id,\n    mayors.full_name\nFROM users\nLEFT JOIN cities USING (city_id)\nLEFT JOIN mayors USING (mayor_id);\n\n-- name: AllAuthors :many\nSELECT  *\nFROM    authors a\n        LEFT JOIN authors p\n            ON a.parent_id = p.id;\n\n-- name: AllAuthorsAliases :many\nSELECT  *\nFROM    authors a\n        LEFT JOIN authors p\n            ON a.parent_id = p.id;\n\n-- name: AllAuthorsAliases2 :many\nSELECT  a.*, p.*\nFROM    authors a\n        LEFT JOIN authors p\n            ON a.parent_id = p.id;\n\n-- name: AllSuperAuthors :many\nSELECT  *\nFROM    authors\n        LEFT JOIN super_authors\n            ON authors.parent_id = super_authors.super_id;\n\n-- name: AllSuperAuthorsAliases :many\nSELECT  *\nFROM    authors a\n        LEFT JOIN super_authors sa\n            ON a.parent_id = sa.super_id;\n\n-- name: AllSuperAuthorsAliases2 :many\nSELECT  a.*, sa.*\nFROM    authors a\n        LEFT JOIN super_authors sa\n            ON a.parent_id = sa.super_id;\n\n-- name: GetSuggestedUsersByID :many\nSELECT  DISTINCT u.*, m.*\nFROM    users_2 u\n        LEFT JOIN media m\n            ON u.user_avatar_id = m.media_id\nWHERE   u.user_id != @user_id\nLIMIT   @user_imit;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/postgresql/schema.sql",
    "content": "--- https://github.com/sqlc-dev/sqlc/issues/604\nCREATE TABLE users (\n  user_id    INT PRIMARY KEY,\n  city_id    INT -- nullable\n);\nCREATE TABLE cities (\n  city_id    INT PRIMARY KEY,\n  mayor_id   INT NOT NULL\n);\nCREATE TABLE mayors (\n  mayor_id   INT PRIMARY KEY,\n  full_name  TEXT NOT NULL\n);\n\n-- https://github.com/sqlc-dev/sqlc/issues/1334\nCREATE TABLE authors (\n  id        INT PRIMARY KEY,\n  name      TEXT NOT NULL,\n  parent_id INT -- nullable\n);\n\nCREATE TABLE super_authors (\n  super_id        INT PRIMARY KEY,\n  super_name      TEXT NOT NULL,\n  super_parent_id INT -- nullable\n);\n\n-- https://github.com/sqlc-dev/sqlc/issues/1334\nCREATE TABLE \"users_2\" (\n    \"user_id\"           uuid PRIMARY KEY,\n    \"user_nickname\"     VARCHAR(30) UNIQUE NOT NULL,\n    \"user_email\"        TEXT UNIQUE        NOT NULL,\n    \"user_display_name\" TEXT               NOT NULL,\n    \"user_password\"     TEXT               NULL,\n    \"user_google_id\"    TEXT UNIQUE        NULL,\n    \"user_apple_id\"     TEXT UNIQUE        NULL,\n    \"user_bio\"          VARCHAR(160)       NOT NULL DEFAULT '',\n    \"user_created_at\"   TIMESTAMP          NOT NULL DEFAULT (NOW()),\n    \"user_avatar_id\"    uuid UNIQUE        NULL\n);\n\nCREATE TABLE \"media\" (\n    \"media_id\"         uuid PRIMARY KEY,\n    \"media_created_at\" TIMESTAMP NOT NULL DEFAULT (NOW()),\n    \"media_hash\"       TEXT      NOT NULL,\n    \"media_directory\"  TEXT      NOT NULL,\n    \"media_author_id\"  uuid      NOT NULL,\n    \"media_width\"      INT       NOT NULL,\n    \"media_height\"     INT       NOT NULL\n);\n\nALTER TABLE \"users_2\"\n    ADD FOREIGN KEY (\"user_avatar_id\") REFERENCES \"media\" (\"media_id\") ON DELETE SET DEFAULT ON UPDATE CASCADE;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype Author struct {\n\tID       int64\n\tName     string\n\tParentID sql.NullInt64\n}\n\ntype City struct {\n\tCityID  int64\n\tMayorID int64\n}\n\ntype Mayor struct {\n\tMayorID  int64\n\tFullName string\n}\n\ntype Medium struct {\n\tMediaID        int64\n\tMediaCreatedAt time.Time\n\tMediaHash      string\n\tMediaDirectory string\n\tMediaAuthorID  int64\n\tMediaWidth     int64\n\tMediaHeight    int64\n}\n\ntype SuperAuthor struct {\n\tSuperID       int64\n\tSuperName     string\n\tSuperParentID sql.NullInt64\n}\n\ntype User struct {\n\tUserID int64\n\tCityID sql.NullInt64\n}\n\ntype Users2 struct {\n\tUserID          int64\n\tUserNickname    string\n\tUserEmail       string\n\tUserDisplayName string\n\tUserPassword    sql.NullString\n\tUserGoogleID    sql.NullString\n\tUserAppleID     sql.NullString\n\tUserBio         string\n\tUserCreatedAt   time.Time\n\tUserAvatarID    sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"time\"\n)\n\nconst allAuthors = `-- name: AllAuthors :many\nSELECT  a.id, a.name, a.parent_id, p.id, p.name, p.parent_id\nFROM    authors AS a\n        LEFT JOIN authors AS p\n            ON a.parent_id = p.id\n`\n\ntype AllAuthorsRow struct {\n\tID         int64\n\tName       string\n\tParentID   sql.NullInt64\n\tID_2       sql.NullInt64\n\tName_2     sql.NullString\n\tParentID_2 sql.NullInt64\n}\n\nfunc (q *Queries) AllAuthors(ctx context.Context) ([]AllAuthorsRow, error) {\n\trows, err := q.db.QueryContext(ctx, allAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllAuthorsRow\n\tfor rows.Next() {\n\t\tvar i AllAuthorsRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.ID_2,\n\t\t\t&i.Name_2,\n\t\t\t&i.ParentID_2,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst allAuthorsAliases = `-- name: AllAuthorsAliases :many\nSELECT  a.id, a.name, a.parent_id, p.id, p.name, p.parent_id\nFROM    authors AS a\n        LEFT JOIN authors AS p\n            ON a.parent_id = p.id\n`\n\ntype AllAuthorsAliasesRow struct {\n\tID         int64\n\tName       string\n\tParentID   sql.NullInt64\n\tID_2       sql.NullInt64\n\tName_2     sql.NullString\n\tParentID_2 sql.NullInt64\n}\n\nfunc (q *Queries) AllAuthorsAliases(ctx context.Context) ([]AllAuthorsAliasesRow, error) {\n\trows, err := q.db.QueryContext(ctx, allAuthorsAliases)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllAuthorsAliasesRow\n\tfor rows.Next() {\n\t\tvar i AllAuthorsAliasesRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.ID_2,\n\t\t\t&i.Name_2,\n\t\t\t&i.ParentID_2,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst allAuthorsAliases2 = `-- name: AllAuthorsAliases2 :many\nSELECT  a.id, a.name, a.parent_id, p.id, p.name, p.parent_id\nFROM    authors AS a\n        LEFT JOIN authors AS p\n            ON a.parent_id = p.id\n`\n\ntype AllAuthorsAliases2Row struct {\n\tID         int64\n\tName       string\n\tParentID   sql.NullInt64\n\tID_2       sql.NullInt64\n\tName_2     sql.NullString\n\tParentID_2 sql.NullInt64\n}\n\nfunc (q *Queries) AllAuthorsAliases2(ctx context.Context) ([]AllAuthorsAliases2Row, error) {\n\trows, err := q.db.QueryContext(ctx, allAuthorsAliases2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllAuthorsAliases2Row\n\tfor rows.Next() {\n\t\tvar i AllAuthorsAliases2Row\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.ID_2,\n\t\t\t&i.Name_2,\n\t\t\t&i.ParentID_2,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst allSuperAuthors = `-- name: AllSuperAuthors :many\nSELECT  id, name, parent_id, super_id, super_name, super_parent_id\nFROM    authors\n        LEFT JOIN super_authors\n            ON authors.parent_id = super_authors.super_id\n`\n\ntype AllSuperAuthorsRow struct {\n\tID            int64\n\tName          string\n\tParentID      sql.NullInt64\n\tSuperID       sql.NullInt64\n\tSuperName     sql.NullString\n\tSuperParentID sql.NullInt64\n}\n\nfunc (q *Queries) AllSuperAuthors(ctx context.Context) ([]AllSuperAuthorsRow, error) {\n\trows, err := q.db.QueryContext(ctx, allSuperAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllSuperAuthorsRow\n\tfor rows.Next() {\n\t\tvar i AllSuperAuthorsRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.SuperID,\n\t\t\t&i.SuperName,\n\t\t\t&i.SuperParentID,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst allSuperAuthorsAliases = `-- name: AllSuperAuthorsAliases :many\nSELECT  id, name, parent_id, super_id, super_name, super_parent_id\nFROM    authors AS a\n        LEFT JOIN super_authors AS sa\n            ON a.parent_id = sa.super_id\n`\n\ntype AllSuperAuthorsAliasesRow struct {\n\tID            int64\n\tName          string\n\tParentID      sql.NullInt64\n\tSuperID       sql.NullInt64\n\tSuperName     sql.NullString\n\tSuperParentID sql.NullInt64\n}\n\nfunc (q *Queries) AllSuperAuthorsAliases(ctx context.Context) ([]AllSuperAuthorsAliasesRow, error) {\n\trows, err := q.db.QueryContext(ctx, allSuperAuthorsAliases)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllSuperAuthorsAliasesRow\n\tfor rows.Next() {\n\t\tvar i AllSuperAuthorsAliasesRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.SuperID,\n\t\t\t&i.SuperName,\n\t\t\t&i.SuperParentID,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst allSuperAuthorsAliases2 = `-- name: AllSuperAuthorsAliases2 :many\nSELECT  a.id, a.name, a.parent_id, sa.super_id, sa.super_name, sa.super_parent_id\nFROM    authors AS a\n        LEFT JOIN super_authors AS sa\n            ON a.parent_id = sa.super_id\n`\n\ntype AllSuperAuthorsAliases2Row struct {\n\tID            int64\n\tName          string\n\tParentID      sql.NullInt64\n\tSuperID       sql.NullInt64\n\tSuperName     sql.NullString\n\tSuperParentID sql.NullInt64\n}\n\nfunc (q *Queries) AllSuperAuthorsAliases2(ctx context.Context) ([]AllSuperAuthorsAliases2Row, error) {\n\trows, err := q.db.QueryContext(ctx, allSuperAuthorsAliases2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllSuperAuthorsAliases2Row\n\tfor rows.Next() {\n\t\tvar i AllSuperAuthorsAliases2Row\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.ParentID,\n\t\t\t&i.SuperID,\n\t\t\t&i.SuperName,\n\t\t\t&i.SuperParentID,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getMayors = `-- name: GetMayors :many\nSELECT\n    user_id,\n    mayors.full_name\nFROM users\nLEFT JOIN cities USING (city_id)\nINNER JOIN mayors USING (mayor_id)\n`\n\ntype GetMayorsRow struct {\n\tUserID   int64\n\tFullName string\n}\n\nfunc (q *Queries) GetMayors(ctx context.Context) ([]GetMayorsRow, error) {\n\trows, err := q.db.QueryContext(ctx, getMayors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetMayorsRow\n\tfor rows.Next() {\n\t\tvar i GetMayorsRow\n\t\tif err := rows.Scan(&i.UserID, &i.FullName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getMayorsOptional = `-- name: GetMayorsOptional :many\nSELECT\n    user_id,\n    cities.city_id,\n    mayors.full_name\nFROM users\nLEFT JOIN cities USING (city_id)\nLEFT JOIN mayors USING (mayor_id)\n`\n\ntype GetMayorsOptionalRow struct {\n\tUserID   int64\n\tCityID   sql.NullInt64\n\tFullName sql.NullString\n}\n\nfunc (q *Queries) GetMayorsOptional(ctx context.Context) ([]GetMayorsOptionalRow, error) {\n\trows, err := q.db.QueryContext(ctx, getMayorsOptional)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetMayorsOptionalRow\n\tfor rows.Next() {\n\t\tvar i GetMayorsOptionalRow\n\t\tif err := rows.Scan(&i.UserID, &i.CityID, &i.FullName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getSuggestedUsersByID = `-- name: GetSuggestedUsersByID :many\nSELECT  DISTINCT u.user_id, u.user_nickname, u.user_email, u.user_display_name, u.user_password, u.user_google_id, u.user_apple_id, u.user_bio, u.user_created_at, u.user_avatar_id, m.media_id, m.media_created_at, m.media_hash, m.media_directory, m.media_author_id, m.media_width, m.media_height\nFROM    users_2 AS u\n        LEFT JOIN media AS m\n            ON u.user_avatar_id = m.media_id\nWHERE   u.user_id != ?1\n`\n\ntype GetSuggestedUsersByIDRow struct {\n\tUserID          int64\n\tUserNickname    string\n\tUserEmail       string\n\tUserDisplayName string\n\tUserPassword    sql.NullString\n\tUserGoogleID    sql.NullString\n\tUserAppleID     sql.NullString\n\tUserBio         string\n\tUserCreatedAt   time.Time\n\tUserAvatarID    sql.NullInt64\n\tMediaID         sql.NullInt64\n\tMediaCreatedAt  sql.NullTime\n\tMediaHash       sql.NullString\n\tMediaDirectory  sql.NullString\n\tMediaAuthorID   sql.NullInt64\n\tMediaWidth      sql.NullInt64\n\tMediaHeight     sql.NullInt64\n}\n\nfunc (q *Queries) GetSuggestedUsersByID(ctx context.Context, userID int64) ([]GetSuggestedUsersByIDRow, error) {\n\trows, err := q.db.QueryContext(ctx, getSuggestedUsersByID, userID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetSuggestedUsersByIDRow\n\tfor rows.Next() {\n\t\tvar i GetSuggestedUsersByIDRow\n\t\tif err := rows.Scan(\n\t\t\t&i.UserID,\n\t\t\t&i.UserNickname,\n\t\t\t&i.UserEmail,\n\t\t\t&i.UserDisplayName,\n\t\t\t&i.UserPassword,\n\t\t\t&i.UserGoogleID,\n\t\t\t&i.UserAppleID,\n\t\t\t&i.UserBio,\n\t\t\t&i.UserCreatedAt,\n\t\t\t&i.UserAvatarID,\n\t\t\t&i.MediaID,\n\t\t\t&i.MediaCreatedAt,\n\t\t\t&i.MediaHash,\n\t\t\t&i.MediaDirectory,\n\t\t\t&i.MediaAuthorID,\n\t\t\t&i.MediaWidth,\n\t\t\t&i.MediaHeight,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getSuggestedUsersByID2 = `-- name: GetSuggestedUsersByID2 :many\nSELECT  users_2.user_id\nFROM    users_2\n            LEFT JOIN media AS m\n                      ON user_avatar_id = m.media_id\nWHERE   user_id != ?1\n`\n\nfunc (q *Queries) GetSuggestedUsersByID2(ctx context.Context, userID int64) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, getSuggestedUsersByID2, userID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar user_id int64\n\t\tif err := rows.Scan(&user_id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, user_id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/sqlite/query.sql",
    "content": "-- name: GetMayors :many\nSELECT\n    user_id,\n    mayors.full_name\nFROM users\nLEFT JOIN cities USING (city_id)\nINNER JOIN mayors USING (mayor_id);\n\n-- name: GetMayorsOptional :many\nSELECT\n    user_id,\n    cities.city_id,\n    mayors.full_name\nFROM users\nLEFT JOIN cities USING (city_id)\nLEFT JOIN mayors USING (mayor_id);\n\n-- name: AllAuthors :many\nSELECT  *\nFROM    authors AS a\n        LEFT JOIN authors AS p\n            ON a.parent_id = p.id;\n\n-- name: AllAuthorsAliases :many\nSELECT  *\nFROM    authors AS a\n        LEFT JOIN authors AS p\n            ON a.parent_id = p.id;\n\n-- name: AllSuperAuthors :many\nSELECT  *\nFROM    authors\n        LEFT JOIN super_authors\n            ON authors.parent_id = super_authors.super_id;\n\n-- name: AllAuthorsAliases2 :many\nSELECT  a.*, p.*\nFROM    authors AS a\n        LEFT JOIN authors AS p\n            ON a.parent_id = p.id;\n\n-- name: AllSuperAuthorsAliases :many\nSELECT  *\nFROM    authors AS a\n        LEFT JOIN super_authors AS sa\n            ON a.parent_id = sa.super_id;\n\n-- name: AllSuperAuthorsAliases2 :many\nSELECT  a.*, sa.*\nFROM    authors AS a\n        LEFT JOIN super_authors AS sa\n            ON a.parent_id = sa.super_id;\n\n-- name: GetSuggestedUsersByID :many\nSELECT  DISTINCT u.*, m.*\nFROM    users_2 AS u\n        LEFT JOIN media AS m\n            ON u.user_avatar_id = m.media_id\nWHERE   u.user_id != @user_id;\n\n-- name: GetSuggestedUsersByID2 :many\nSELECT  users_2.user_id\nFROM    users_2\n            LEFT JOIN media AS m\n                      ON user_avatar_id = m.media_id\nWHERE   user_id != @user_id;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/sqlite/schema.sql",
    "content": "-- https://github.com/sqlc-dev/sqlc/issues/604\nCREATE TABLE users (\n  user_id    INT PRIMARY KEY,\n  city_id    INT -- nullable\n);\nCREATE TABLE cities (\n  city_id    INT PRIMARY KEY,\n  mayor_id   INT NOT NULL\n);\nCREATE TABLE mayors (\n  mayor_id   INT PRIMARY KEY,\n  full_name  TEXT NOT NULL\n);\n\n-- https://github.com/sqlc-dev/sqlc/issues/1334\nCREATE TABLE authors (\n  id        INT PRIMARY KEY,\n  name      TEXT NOT NULL,\n  parent_id INT -- nullable\n);\n\nCREATE TABLE super_authors (\n  super_id        INT PRIMARY KEY,\n  super_name      TEXT NOT NULL,\n  super_parent_id INT -- nullable\n);\n\n-- https://github.com/sqlc-dev/sqlc/issues/1334\nCREATE TABLE users_2 (\n    user_id           INT PRIMARY KEY,\n    user_nickname     VARCHAR(30) UNIQUE NOT NULL,\n    user_email        TEXT UNIQUE        NOT NULL,\n    user_display_name TEXT               NOT NULL,\n    user_password     TEXT               ,\n    user_google_id    TEXT UNIQUE        ,\n    user_apple_id     TEXT UNIQUE        ,\n    user_bio          VARCHAR(160)       NOT NULL DEFAULT '',\n    user_created_at   TIMESTAMP          NOT NULL DEFAULT CURRENT_TIMESTAMP,\n    user_avatar_id    INT UNIQUE        \n);\n\nCREATE TABLE media (\n    media_id         INT PRIMARY KEY,\n    media_created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,\n    media_hash       TEXT      NOT NULL,\n    media_directory  TEXT      NOT NULL,\n    media_author_id  INT       NOT NULL,\n    media_width      INT       NOT NULL,\n    media_height     INT       NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID       int32\n\tName     string\n\tParentID sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst allAuthors = `-- name: AllAuthors :many\nSELECT  a.id,\n        a.name,\n        p.id as alias_id,\n        p.name as alias_name\nFROM    authors a\n        LEFT JOIN authors p\n            ON (authors.parent_id = p.id)\n`\n\ntype AllAuthorsRow struct {\n\tID        int32\n\tName      string\n\tAliasID   sql.NullInt32\n\tAliasName sql.NullString\n}\n\nfunc (q *Queries) AllAuthors(ctx context.Context) ([]AllAuthorsRow, error) {\n\trows, err := q.db.QueryContext(ctx, allAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllAuthorsRow\n\tfor rows.Next() {\n\t\tvar i AllAuthorsRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.AliasID,\n\t\t\t&i.AliasName,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/mysql/query.sql",
    "content": "-- name: AllAuthors :many\nSELECT  a.id,\n        a.name,\n        p.id as alias_id,\n        p.name as alias_name\nFROM    authors a\n        LEFT JOIN authors p\n            ON (authors.parent_id = p.id);\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n  id        INT(10) NOT NULL,\n  name      VARCHAR(255) NOT NULL,\n  parent_id INT(10),\n  PRIMARY KEY (id)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/postgres/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/postgres/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID       int32\n\tName     string\n\tParentID sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/postgres/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst allAuthors = `-- name: AllAuthors :many\nSELECT  a.id,\n        a.name,\n        p.id as alias_id,\n        p.name as alias_name\nFROM    authors a\n        LEFT JOIN authors p USING (parent_id)\n`\n\ntype AllAuthorsRow struct {\n\tID        int32\n\tName      string\n\tAliasID   sql.NullInt32\n\tAliasName sql.NullString\n}\n\nfunc (q *Queries) AllAuthors(ctx context.Context) ([]AllAuthorsRow, error) {\n\trows, err := q.db.QueryContext(ctx, allAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllAuthorsRow\n\tfor rows.Next() {\n\t\tvar i AllAuthorsRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.AliasID,\n\t\t\t&i.AliasName,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/postgres/query.sql",
    "content": "-- name: AllAuthors :many\nSELECT  a.id,\n        a.name,\n        p.id as alias_id,\n        p.name as alias_name\nFROM    authors a\n        LEFT JOIN authors p USING (parent_id);\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/postgres/schema.sql",
    "content": "CREATE TABLE authors (\n  id        INT PRIMARY KEY,\n  name      TEXT NOT NULL,\n  parent_id INT -- nullable\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/postgres/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"postgresql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID       int64\n\tName     string\n\tParentID sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst allAuthors = `-- name: AllAuthors :many\nSELECT  a.id,\n        a.name,\n        p.id as alias_id,\n        p.name as alias_name\nFROM    authors AS a\n        LEFT JOIN authors AS p\n            ON (a.parent_id = p.id)\n`\n\ntype AllAuthorsRow struct {\n\tID        int64\n\tName      string\n\tAliasID   sql.NullInt64\n\tAliasName sql.NullString\n}\n\nfunc (q *Queries) AllAuthors(ctx context.Context) ([]AllAuthorsRow, error) {\n\trows, err := q.db.QueryContext(ctx, allAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []AllAuthorsRow\n\tfor rows.Next() {\n\t\tvar i AllAuthorsRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.AliasID,\n\t\t\t&i.AliasName,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/sqlite/query.sql",
    "content": "-- name: AllAuthors :many\nSELECT  a.id,\n        a.name,\n        p.id as alias_id,\n        p.name as alias_name\nFROM    authors AS a\n        LEFT JOIN authors AS p\n            ON (a.parent_id = p.id);\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/sqlite/schema.sql",
    "content": "CREATE TABLE authors (\n  id        INT NOT NULL PRIMARY KEY,\n  name      TEXT NOT NULL,\n  parent_id INT\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_same_table/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/join_left_table_alias/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1897\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_table_alias/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_table_alias/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tFooID int64\n\tInfo  string\n}\n\ntype Foo struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_table_alias/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst joinBar = `-- name: JoinBar :one\nSELECT f.id, info\nFROM foo f\nLEFT JOIN bar b ON b.foo_id = f.id\n`\n\ntype JoinBarRow struct {\n\tID   int64\n\tInfo pgtype.Text\n}\n\nfunc (q *Queries) JoinBar(ctx context.Context) (JoinBarRow, error) {\n\trow := q.db.QueryRow(ctx, joinBar)\n\tvar i JoinBarRow\n\terr := row.Scan(&i.ID, &i.Info)\n\treturn i, err\n}\n\nconst joinBarAlias = `-- name: JoinBarAlias :one\nSELECT f.id, b.info\nFROM foo f\nLEFT JOIN bar b ON b.foo_id = f.id\n`\n\ntype JoinBarAliasRow struct {\n\tID   int64\n\tInfo pgtype.Text\n}\n\nfunc (q *Queries) JoinBarAlias(ctx context.Context) (JoinBarAliasRow, error) {\n\trow := q.db.QueryRow(ctx, joinBarAlias)\n\tvar i JoinBarAliasRow\n\terr := row.Scan(&i.ID, &i.Info)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_table_alias/postgresql/pgx/query.sql",
    "content": "-- name: JoinBar :one\nSELECT f.id, info\nFROM foo f\nLEFT JOIN bar b ON b.foo_id = f.id;\n\n-- name: JoinBarAlias :one\nSELECT f.id, b.info\nFROM foo f\nLEFT JOIN bar b ON b.foo_id = f.id;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_table_alias/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE foo (\n\tid BIGINT PRIMARY KEY\n);\n\nCREATE TABLE bar\n(\n    foo_id  BIGINT NOT NULL,\n    info    TEXT NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/join_left_table_alias/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/join_order_by/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/2538\n"
  },
  {
    "path": "internal/endtoend/testdata/join_order_by/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_order_by/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_order_by/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_order_by/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT a.name\nFROM authors a JOIN authors b ON a.id = b.id\nORDER BY name\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context) (string, error) {\n\trow := q.db.QueryRow(ctx, getAuthor)\n\tvar name string\n\terr := row.Scan(&name)\n\treturn name, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_order_by/postgresql/pgx/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT a.name\nFROM authors a JOIN authors b ON a.id = b.id\nORDER BY name;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_order_by/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/join_order_by/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/join_order_by_alias/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_order_by_alias/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tEmail string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_order_by_alias/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst columnAsOrderBy = `-- name: ColumnAsOrderBy :many\nSELECT a.email AS id\nFROM foo a JOIN foo b ON a.email = b.email\nORDER BY id\n`\n\nfunc (q *Queries) ColumnAsOrderBy(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, columnAsOrderBy)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_order_by_alias/postgresql/stdlib/query.sql",
    "content": "-- name: ColumnAsOrderBy :many\nSELECT a.email AS id\nFROM foo a JOIN foo b ON a.email = b.email\nORDER BY id;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_order_by_alias/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (email text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_order_by_alias/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_right/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_right/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID int32\n}\n\ntype Foo struct {\n\tID    int32\n\tBarID sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_right/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst rightJoin = `-- name: RightJoin :many\nSELECT f.id, f.bar_id, b.id\nFROM foo f\nRIGHT JOIN bar b ON b.id = f.bar_id\nWHERE f.id = ?\n`\n\ntype RightJoinRow struct {\n\tID    sql.NullInt32\n\tBarID sql.NullInt32\n\tID_2  int32\n}\n\nfunc (q *Queries) RightJoin(ctx context.Context, id int32) ([]RightJoinRow, error) {\n\trows, err := q.db.QueryContext(ctx, rightJoin, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []RightJoinRow\n\tfor rows.Next() {\n\t\tvar i RightJoinRow\n\t\tif err := rows.Scan(&i.ID, &i.BarID, &i.ID_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_right/mysql/query.sql",
    "content": "-- name: RightJoin :many\nSELECT f.id, f.bar_id, b.id\nFROM foo f\nRIGHT JOIN bar b ON b.id = f.bar_id\nWHERE f.id = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_right/mysql/schema.sql",
    "content": "CREATE TABLE bar (\n    id integer not null,\n    UNIQUE(id)\n);\n\nCREATE TABLE foo (id integer not null, bar_id integer references bar(id));\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_right/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_right/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_right/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID int32\n}\n\ntype Foo struct {\n\tID    int32\n\tBarID sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_right/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst rightJoin = `-- name: RightJoin :many\nSELECT f.id, f.bar_id, b.id\nFROM foo f\nRIGHT JOIN bar b ON b.id = f.bar_id\nWHERE f.id = $1\n`\n\ntype RightJoinRow struct {\n\tID    sql.NullInt32\n\tBarID sql.NullInt32\n\tID_2  int32\n}\n\nfunc (q *Queries) RightJoin(ctx context.Context, id int32) ([]RightJoinRow, error) {\n\trows, err := q.db.QueryContext(ctx, rightJoin, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []RightJoinRow\n\tfor rows.Next() {\n\t\tvar i RightJoinRow\n\t\tif err := rows.Scan(&i.ID, &i.BarID, &i.ID_2); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_right/postgresql/query.sql",
    "content": "-- name: RightJoin :many\nSELECT f.id, f.bar_id, b.id\nFROM foo f\nRIGHT JOIN bar b ON b.id = f.bar_id\nWHERE f.id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_right/postgresql/schema.sql",
    "content": "CREATE TABLE bar (id serial not null unique);\nCREATE TABLE foo (id serial not null, bar_id int references bar(id));\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_right/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID int32\n}\n\ntype Foo struct {\n\tID  int32\n\tBar sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst tableName = `-- name: TableName :one\nSELECT foo.id\nFROM foo\nJOIN bar ON foo.bar = bar.id\nWHERE bar.id = ? AND foo.id = ?\n`\n\ntype TableNameParams struct {\n\tID   int32\n\tID_2 int32\n}\n\nfunc (q *Queries) TableName(ctx context.Context, arg TableNameParams) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, tableName, arg.ID, arg.ID_2)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/mysql/query.sql",
    "content": "-- name: TableName :one\nSELECT foo.id\nFROM foo\nJOIN bar ON foo.bar = bar.id\nWHERE bar.id = ? AND foo.id = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/mysql/schema.sql",
    "content": "CREATE TABLE bar (\n    id integer not null,\n    UNIQUE (id)\n);\n\nCREATE TABLE foo (id integer not null, bar integer references bar(id));\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID int32\n}\n\ntype Foo struct {\n\tID  int32\n\tBar sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst tableName = `-- name: TableName :one\nSELECT foo.id\nFROM foo\nJOIN bar ON foo.bar = bar.id\nWHERE bar.id = $1 AND foo.id = $2\n`\n\ntype TableNameParams struct {\n\tID   int32\n\tID_2 int32\n}\n\nfunc (q *Queries) TableName(ctx context.Context, arg TableNameParams) (int32, error) {\n\trow := q.db.QueryRow(ctx, tableName, arg.ID, arg.ID_2)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/pgx/v4/query.sql",
    "content": "-- name: TableName :one\nSELECT foo.id\nFROM foo\nJOIN bar ON foo.bar = bar.id\nWHERE bar.id = $1 AND foo.id = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\nCREATE TABLE foo (id serial not null, bar serial);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Bar struct {\n\tID int32\n}\n\ntype Foo struct {\n\tID  int32\n\tBar pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst tableName = `-- name: TableName :one\nSELECT foo.id\nFROM foo\nJOIN bar ON foo.bar = bar.id\nWHERE bar.id = $1 AND foo.id = $2\n`\n\ntype TableNameParams struct {\n\tID   int32\n\tID_2 int32\n}\n\nfunc (q *Queries) TableName(ctx context.Context, arg TableNameParams) (int32, error) {\n\trow := q.db.QueryRow(ctx, tableName, arg.ID, arg.ID_2)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/pgx/v5/query.sql",
    "content": "-- name: TableName :one\nSELECT foo.id\nFROM foo\nJOIN bar ON foo.bar = bar.id\nWHERE bar.id = $1 AND foo.id = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\nCREATE TABLE foo (id serial not null, bar serial);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID int32\n}\n\ntype Foo struct {\n\tID  int32\n\tBar sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst tableName = `-- name: TableName :one\nSELECT foo.id\nFROM foo\nJOIN bar ON foo.bar = bar.id\nWHERE bar.id = $1 AND foo.id = $2\n`\n\ntype TableNameParams struct {\n\tID   int32\n\tID_2 int32\n}\n\nfunc (q *Queries) TableName(ctx context.Context, arg TableNameParams) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, tableName, arg.ID, arg.ID_2)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/stdlib/query.sql",
    "content": "-- name: TableName :one\nSELECT foo.id\nFROM foo\nJOIN bar ON foo.bar = bar.id\nWHERE bar.id = $1 AND foo.id = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\nCREATE TABLE foo (id serial not null, bar serial);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID int64\n}\n\ntype Foo struct {\n\tID  int64\n\tBar sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst tableName = `-- name: TableName :one\nSELECT foo.id\nFROM foo\nJOIN bar ON foo.bar = bar.id\nWHERE bar.id = ? AND foo.id = ?\n`\n\ntype TableNameParams struct {\n\tID   int64\n\tID_2 int64\n}\n\nfunc (q *Queries) TableName(ctx context.Context, arg TableNameParams) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, tableName, arg.ID, arg.ID_2)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/sqlite/query.sql",
    "content": "-- name: TableName :one\nSELECT foo.id\nFROM foo\nJOIN bar ON foo.bar = bar.id\nWHERE bar.id = ? AND foo.id = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/sqlite/schema.sql",
    "content": "CREATE TABLE bar (id integer not null);\nCREATE TABLE foo (id integer not null, bar integer references bar(id));\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_table_name/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID uint64\n}\n\ntype Baz struct {\n\tID uint64\n}\n\ntype Foo struct {\n\tBarID uint64\n\tBazID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst twoJoins = `-- name: TwoJoins :many\nSELECT foo.bar_id, foo.baz_id\nFROM foo\nJOIN bar ON bar.id = bar_id\nJOIN baz ON baz.id = baz_id\n`\n\nfunc (q *Queries) TwoJoins(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, twoJoins)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.BarID, &i.BazID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/mysql/query.sql",
    "content": "-- name: TwoJoins :many\nSELECT foo.*\nFROM foo\nJOIN bar ON bar.id = bar_id\nJOIN baz ON baz.id = baz_id;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar_id serial not null, baz_id integer not null);\nCREATE TABLE bar (id serial not null);\nCREATE TABLE baz (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n\ntype Baz struct {\n\tID int32\n}\n\ntype Foo struct {\n\tBarID int32\n\tBazID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst twoJoins = `-- name: TwoJoins :many\nSELECT foo.bar_id, foo.baz_id\nFROM foo\nJOIN bar ON bar.id = bar_id\nJOIN baz ON baz.id = baz_id\n`\n\nfunc (q *Queries) TwoJoins(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, twoJoins)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.BarID, &i.BazID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/pgx/v4/query.sql",
    "content": "-- name: TwoJoins :many\nSELECT foo.*\nFROM foo\nJOIN bar ON bar.id = bar_id\nJOIN baz ON baz.id = baz_id;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar_id serial not null, baz_id serial not null);\nCREATE TABLE bar (id serial not null);\nCREATE TABLE baz (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n\ntype Baz struct {\n\tID int32\n}\n\ntype Foo struct {\n\tBarID int32\n\tBazID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst twoJoins = `-- name: TwoJoins :many\nSELECT foo.bar_id, foo.baz_id\nFROM foo\nJOIN bar ON bar.id = bar_id\nJOIN baz ON baz.id = baz_id\n`\n\nfunc (q *Queries) TwoJoins(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, twoJoins)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.BarID, &i.BazID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/pgx/v5/query.sql",
    "content": "-- name: TwoJoins :many\nSELECT foo.*\nFROM foo\nJOIN bar ON bar.id = bar_id\nJOIN baz ON baz.id = baz_id;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar_id serial not null, baz_id serial not null);\nCREATE TABLE bar (id serial not null);\nCREATE TABLE baz (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n\ntype Baz struct {\n\tID int32\n}\n\ntype Foo struct {\n\tBarID int32\n\tBazID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst twoJoins = `-- name: TwoJoins :many\nSELECT foo.bar_id, foo.baz_id\nFROM foo\nJOIN bar ON bar.id = bar_id\nJOIN baz ON baz.id = baz_id\n`\n\nfunc (q *Queries) TwoJoins(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, twoJoins)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.BarID, &i.BazID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/stdlib/query.sql",
    "content": "-- name: TwoJoins :many\nSELECT foo.*\nFROM foo\nJOIN bar ON bar.id = bar_id\nJOIN baz ON baz.id = baz_id;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar_id serial not null, baz_id serial not null);\nCREATE TABLE bar (id serial not null);\nCREATE TABLE baz (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int64\n}\n\ntype Baz struct {\n\tID int64\n}\n\ntype Foo struct {\n\tBarID int64\n\tBazID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst twoJoins = `-- name: TwoJoins :many\nSELECT foo.bar_id, foo.baz_id\nFROM foo\nJOIN bar ON bar.id = bar_id\nJOIN baz ON baz.id = baz_id\n`\n\nfunc (q *Queries) TwoJoins(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, twoJoins)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.BarID, &i.BazID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/sqlite/query.sql",
    "content": "-- name: TwoJoins :many\nSELECT foo.*\nFROM foo\nJOIN bar ON bar.id = bar_id\nJOIN baz ON baz.id = baz_id;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/sqlite/schema.sql",
    "content": "CREATE TABLE foo (bar_id integer not null, baz_id integer not null);\nCREATE TABLE bar (id integer not null);\nCREATE TABLE baz (id integer not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_two_tables/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/join_update/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1100\n"
  },
  {
    "path": "internal/endtoend/testdata/join_update/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_update/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype GroupCalcTotal struct {\n\tNpn     pgtype.Text\n\tGroupID pgtype.Text\n}\n\ntype NpnExternalMap struct {\n\tID  pgtype.Text\n\tNpn pgtype.Text\n}\n\ntype ProducerGroupAttribute struct {\n\tNpnExternalMapID pgtype.Text\n\tGroupID          pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_update/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst percentile = `-- name: Percentile :exec\nUPDATE group_calc_totals gct \nSET npn = nem.npn \nFROM producer_group_attribute ga \nJOIN npn_external_map nem ON ga.npn_external_map_id = nem.id \nWHERE gct.group_id = ga.group_id\n`\n\nfunc (q *Queries) Percentile(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, percentile)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_update/postgresql/pgx/query.sql",
    "content": "-- name: Percentile :exec\nUPDATE group_calc_totals gct \nSET npn = nem.npn \nFROM producer_group_attribute ga \nJOIN npn_external_map nem ON ga.npn_external_map_id = nem.id \nWHERE gct.group_id = ga.group_id;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_update/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE group_calc_totals (\n  npn  text,\n  group_id text\n);\n\nCREATE TABLE producer_group_attribute (\n  npn_external_map_id text,\n  group_id text\n);\n\nCREATE TABLE npn_external_map (\n  id   text,\n  npn  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/join_update/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/join_using/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1425\n"
  },
  {
    "path": "internal/endtoend/testdata/join_using/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_using/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_using/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype T1 struct {\n\tFk int32\n}\n\ntype T2 struct {\n\tFk int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_using/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst selectJoinUsing = `-- name: SelectJoinUsing :many\nselect t1.fk, sum(t2.fk) from t1 join t2 using (fk) group by fk\n`\n\ntype SelectJoinUsingRow struct {\n\tFk  int32\n\tSum pgtype.Int8\n}\n\nfunc (q *Queries) SelectJoinUsing(ctx context.Context) ([]SelectJoinUsingRow, error) {\n\trows, err := q.db.Query(ctx, selectJoinUsing)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []SelectJoinUsingRow\n\tfor rows.Next() {\n\t\tvar i SelectJoinUsingRow\n\t\tif err := rows.Scan(&i.Fk, &i.Sum); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_using/postgresql/pgx/query.sql",
    "content": "-- name: SelectJoinUsing :many\nselect t1.fk, sum(t2.fk) from t1 join t2 using (fk) group by fk;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_using/postgresql/pgx/schema.sql",
    "content": "create table t1 (\n        fk integer not null unique\n);\ncreate table t2 (\n        fk integer not null references t1(fk)\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/join_using/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/join_validate_columns/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1239"
  },
  {
    "path": "internal/endtoend/testdata/join_validate_columns/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_validate_columns/postgresql/pgx/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT * FROM authors JOIN books ON authors.id = book.author_id1;"
  },
  {
    "path": "internal/endtoend/testdata/join_validate_columns/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text NOT NULL\n);\n\nCREATE TABLE books (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  author_id BIGSERIAL REFERENCES authors(id)\n);"
  },
  {
    "path": "internal/endtoend/testdata/join_validate_columns/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/join_validate_columns/postgresql/pgx/stderr.txt",
    "content": "# package querytest\nquery.sql:2:65: missing FROM-clause entry for table \"book\""
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID    uint64\n\tOwner string\n}\n\ntype Foo struct {\n\tBarid uint64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst joinNoConstraints = `-- name: JoinNoConstraints :many\nSELECT foo.barid\nFROM foo\nCROSS JOIN bar\nWHERE bar.id = ? AND owner = ?\n`\n\ntype JoinNoConstraintsParams struct {\n\tID    uint64\n\tOwner string\n}\n\nfunc (q *Queries) JoinNoConstraints(ctx context.Context, arg JoinNoConstraintsParams) ([]uint64, error) {\n\trows, err := q.db.QueryContext(ctx, joinNoConstraints, arg.ID, arg.Owner)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []uint64\n\tfor rows.Next() {\n\t\tvar barid uint64\n\t\tif err := rows.Scan(&barid); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, barid)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst joinParamWhereClause = `-- name: JoinParamWhereClause :many\nSELECT foo.barid\nFROM foo\nJOIN bar ON bar.id = ?\nWHERE owner = ?\n`\n\ntype JoinParamWhereClauseParams struct {\n\tID    uint64\n\tOwner string\n}\n\nfunc (q *Queries) JoinParamWhereClause(ctx context.Context, arg JoinParamWhereClauseParams) ([]uint64, error) {\n\trows, err := q.db.QueryContext(ctx, joinParamWhereClause, arg.ID, arg.Owner)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []uint64\n\tfor rows.Next() {\n\t\tvar barid uint64\n\t\tif err := rows.Scan(&barid); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, barid)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst joinWhereClause = `-- name: JoinWhereClause :many\nSELECT foo.barid\nFROM foo\nJOIN bar ON bar.id = barid\nWHERE owner = ?\n`\n\nfunc (q *Queries) JoinWhereClause(ctx context.Context, owner string) ([]uint64, error) {\n\trows, err := q.db.QueryContext(ctx, joinWhereClause, owner)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []uint64\n\tfor rows.Next() {\n\t\tvar barid uint64\n\t\tif err := rows.Scan(&barid); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, barid)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/mysql/query.sql",
    "content": "-- name: JoinWhereClause :many\nSELECT foo.*\nFROM foo\nJOIN bar ON bar.id = barid\nWHERE owner = ?;\n\n-- name: JoinParamWhereClause :many\nSELECT foo.*\nFROM foo\nJOIN bar ON bar.id = ?\nWHERE owner = ?;\n\n-- name: JoinNoConstraints :many\nSELECT foo.*\nFROM foo\nCROSS JOIN bar\nWHERE bar.id = ? AND owner = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/mysql/schema.sql",
    "content": "CREATE TABLE foo (barid serial not null);\nCREATE TABLE bar (id serial not null, owner text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID    int32\n\tOwner string\n}\n\ntype Foo struct {\n\tBarid int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst joinNoConstraints = `-- name: JoinNoConstraints :many\nSELECT foo.barid\nFROM foo\nCROSS JOIN bar\nWHERE bar.id = $2 AND owner = $1\n`\n\ntype JoinNoConstraintsParams struct {\n\tOwner string\n\tID    int32\n}\n\nfunc (q *Queries) JoinNoConstraints(ctx context.Context, arg JoinNoConstraintsParams) ([]int32, error) {\n\trows, err := q.db.Query(ctx, joinNoConstraints, arg.Owner, arg.ID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar barid int32\n\t\tif err := rows.Scan(&barid); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, barid)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst joinParamWhereClause = `-- name: JoinParamWhereClause :many\nSELECT foo.barid\nFROM foo\nJOIN bar ON bar.id = $2\nWHERE owner = $1\n`\n\ntype JoinParamWhereClauseParams struct {\n\tOwner string\n\tID    int32\n}\n\nfunc (q *Queries) JoinParamWhereClause(ctx context.Context, arg JoinParamWhereClauseParams) ([]int32, error) {\n\trows, err := q.db.Query(ctx, joinParamWhereClause, arg.Owner, arg.ID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar barid int32\n\t\tif err := rows.Scan(&barid); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, barid)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst joinWhereClause = `-- name: JoinWhereClause :many\nSELECT foo.barid\nFROM foo\nJOIN bar ON bar.id = barid\nWHERE owner = $1\n`\n\nfunc (q *Queries) JoinWhereClause(ctx context.Context, owner string) ([]int32, error) {\n\trows, err := q.db.Query(ctx, joinWhereClause, owner)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar barid int32\n\t\tif err := rows.Scan(&barid); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, barid)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/pgx/v4/query.sql",
    "content": "-- name: JoinWhereClause :many\nSELECT foo.*\nFROM foo\nJOIN bar ON bar.id = barid\nWHERE owner = $1;\n\n-- name: JoinParamWhereClause :many\nSELECT foo.*\nFROM foo\nJOIN bar ON bar.id = $2\nWHERE owner = $1;\n\n-- name: JoinNoConstraints :many\nSELECT foo.*\nFROM foo\nCROSS JOIN bar\nWHERE bar.id = $2 AND owner = $1;"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (barid serial not null);\nCREATE TABLE bar (id serial not null, owner text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID    int32\n\tOwner string\n}\n\ntype Foo struct {\n\tBarid int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst joinNoConstraints = `-- name: JoinNoConstraints :many\nSELECT foo.barid\nFROM foo\nCROSS JOIN bar\nWHERE bar.id = $2 AND owner = $1\n`\n\ntype JoinNoConstraintsParams struct {\n\tOwner string\n\tID    int32\n}\n\nfunc (q *Queries) JoinNoConstraints(ctx context.Context, arg JoinNoConstraintsParams) ([]int32, error) {\n\trows, err := q.db.Query(ctx, joinNoConstraints, arg.Owner, arg.ID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar barid int32\n\t\tif err := rows.Scan(&barid); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, barid)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst joinParamWhereClause = `-- name: JoinParamWhereClause :many\nSELECT foo.barid\nFROM foo\nJOIN bar ON bar.id = $2\nWHERE owner = $1\n`\n\ntype JoinParamWhereClauseParams struct {\n\tOwner string\n\tID    int32\n}\n\nfunc (q *Queries) JoinParamWhereClause(ctx context.Context, arg JoinParamWhereClauseParams) ([]int32, error) {\n\trows, err := q.db.Query(ctx, joinParamWhereClause, arg.Owner, arg.ID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar barid int32\n\t\tif err := rows.Scan(&barid); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, barid)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst joinWhereClause = `-- name: JoinWhereClause :many\nSELECT foo.barid\nFROM foo\nJOIN bar ON bar.id = barid\nWHERE owner = $1\n`\n\nfunc (q *Queries) JoinWhereClause(ctx context.Context, owner string) ([]int32, error) {\n\trows, err := q.db.Query(ctx, joinWhereClause, owner)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar barid int32\n\t\tif err := rows.Scan(&barid); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, barid)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/pgx/v5/query.sql",
    "content": "-- name: JoinWhereClause :many\nSELECT foo.*\nFROM foo\nJOIN bar ON bar.id = barid\nWHERE owner = $1;\n\n-- name: JoinParamWhereClause :many\nSELECT foo.*\nFROM foo\nJOIN bar ON bar.id = $2\nWHERE owner = $1;\n\n-- name: JoinNoConstraints :many\nSELECT foo.*\nFROM foo\nCROSS JOIN bar\nWHERE bar.id = $2 AND owner = $1;"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (barid serial not null);\nCREATE TABLE bar (id serial not null, owner text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID    int32\n\tOwner string\n}\n\ntype Foo struct {\n\tBarid int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst joinNoConstraints = `-- name: JoinNoConstraints :many\nSELECT foo.barid\nFROM foo\nCROSS JOIN bar\nWHERE bar.id = $2 AND owner = $1\n`\n\ntype JoinNoConstraintsParams struct {\n\tOwner string\n\tID    int32\n}\n\nfunc (q *Queries) JoinNoConstraints(ctx context.Context, arg JoinNoConstraintsParams) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, joinNoConstraints, arg.Owner, arg.ID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar barid int32\n\t\tif err := rows.Scan(&barid); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, barid)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst joinParamWhereClause = `-- name: JoinParamWhereClause :many\nSELECT foo.barid\nFROM foo\nJOIN bar ON bar.id = $2\nWHERE owner = $1\n`\n\ntype JoinParamWhereClauseParams struct {\n\tOwner string\n\tID    int32\n}\n\nfunc (q *Queries) JoinParamWhereClause(ctx context.Context, arg JoinParamWhereClauseParams) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, joinParamWhereClause, arg.Owner, arg.ID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar barid int32\n\t\tif err := rows.Scan(&barid); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, barid)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst joinWhereClause = `-- name: JoinWhereClause :many\nSELECT foo.barid\nFROM foo\nJOIN bar ON bar.id = barid\nWHERE owner = $1\n`\n\nfunc (q *Queries) JoinWhereClause(ctx context.Context, owner string) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, joinWhereClause, owner)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar barid int32\n\t\tif err := rows.Scan(&barid); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, barid)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/stdlib/query.sql",
    "content": "-- name: JoinWhereClause :many\nSELECT foo.*\nFROM foo\nJOIN bar ON bar.id = barid\nWHERE owner = $1;\n\n-- name: JoinParamWhereClause :many\nSELECT foo.*\nFROM foo\nJOIN bar ON bar.id = $2\nWHERE owner = $1;\n\n-- name: JoinNoConstraints :many\nSELECT foo.*\nFROM foo\nCROSS JOIN bar\nWHERE bar.id = $2 AND owner = $1;"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (barid serial not null);\nCREATE TABLE bar (id serial not null, owner text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID    int64\n\tOwner string\n}\n\ntype Foo struct {\n\tBarid int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst joinNoConstraints = `-- name: JoinNoConstraints :many\nSELECT foo.barid\nFROM foo\nCROSS JOIN bar\nWHERE bar.id = ? AND owner = ?\n`\n\ntype JoinNoConstraintsParams struct {\n\tID    int64\n\tOwner string\n}\n\nfunc (q *Queries) JoinNoConstraints(ctx context.Context, arg JoinNoConstraintsParams) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, joinNoConstraints, arg.ID, arg.Owner)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar barid int64\n\t\tif err := rows.Scan(&barid); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, barid)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst joinParamWhereClause = `-- name: JoinParamWhereClause :many\nSELECT foo.barid\nFROM foo\nJOIN bar ON bar.id = ?\nWHERE owner = ?\n`\n\ntype JoinParamWhereClauseParams struct {\n\tID    int64\n\tOwner string\n}\n\nfunc (q *Queries) JoinParamWhereClause(ctx context.Context, arg JoinParamWhereClauseParams) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, joinParamWhereClause, arg.ID, arg.Owner)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar barid int64\n\t\tif err := rows.Scan(&barid); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, barid)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst joinWhereClause = `-- name: JoinWhereClause :many\nSELECT foo.barid\nFROM foo\nJOIN bar ON bar.id = barid\nWHERE owner = ?\n`\n\nfunc (q *Queries) JoinWhereClause(ctx context.Context, owner string) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, joinWhereClause, owner)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar barid int64\n\t\tif err := rows.Scan(&barid); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, barid)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/sqlite/query.sql",
    "content": "-- name: JoinWhereClause :many\nSELECT foo.*\nFROM foo\nJOIN bar ON bar.id = barid\nWHERE owner = ?;\n\n-- name: JoinParamWhereClause :many\nSELECT foo.*\nFROM foo\nJOIN bar ON bar.id = ?\nWHERE owner = ?;\n\n-- name: JoinNoConstraints :many\nSELECT foo.*\nFROM foo\nCROSS JOIN bar\nWHERE bar.id = ? AND owner = ?;"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/sqlite/schema.sql",
    "content": "CREATE TABLE foo (barid integer not null);\nCREATE TABLE bar (id integer not null, owner text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/join_where_clause/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/json/mysql/go/copyfrom.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: copyfrom.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"io\"\n\t\"sync/atomic\"\n\n\t\"github.com/go-sql-driver/mysql\"\n\t\"github.com/hexon/mysqltsv\"\n)\n\nvar readerHandlerSequenceForBulkInsert uint32 = 1\n\nfunc convertRowsForBulkInsert(w *io.PipeWriter, arg []BulkInsertParams) {\n\te := mysqltsv.NewEncoder(w, 2, nil)\n\tfor _, row := range arg {\n\t\te.AppendBytes(row.A)\n\t\te.AppendBytes(row.B)\n\t}\n\tw.CloseWithError(e.Close())\n}\n\n// BulkInsert uses MySQL's LOAD DATA LOCAL INFILE and is not atomic.\n//\n// Errors and duplicate keys are treated as warnings and insertion will\n// continue, even without an error for some cases.  Use this in a transaction\n// and use SHOW WARNINGS to check for any problems and roll back if you want to.\n//\n// Check the documentation for more information:\n// https://dev.mysql.com/doc/refman/8.0/en/load-data.html#load-data-error-handling\nfunc (q *Queries) BulkInsert(ctx context.Context, arg []BulkInsertParams) (int64, error) {\n\tpr, pw := io.Pipe()\n\tdefer pr.Close()\n\trh := fmt.Sprintf(\"BulkInsert_%d\", atomic.AddUint32(&readerHandlerSequenceForBulkInsert, 1))\n\tmysql.RegisterReaderHandler(rh, func() io.Reader { return pr })\n\tdefer mysql.DeregisterReaderHandler(rh)\n\tgo convertRowsForBulkInsert(pw, arg)\n\t// The string interpolation is necessary because LOAD DATA INFILE requires\n\t// the file name to be given as a literal string.\n\tresult, err := q.db.ExecContext(ctx, fmt.Sprintf(\"LOAD DATA LOCAL INFILE '%s' INTO TABLE `foo` %s (a, b)\", \"Reader::\"+rh, mysqltsv.Escaping))\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"encoding/json\"\n)\n\ntype Foo struct {\n\tA json.RawMessage\n\tB json.RawMessage\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"encoding/json\"\n)\n\nconst bulkInsert = `-- name: BulkInsert :copyfrom\nINSERT INTO foo (a, b) VALUES (?, ?)\n`\n\ntype BulkInsertParams struct {\n\tA json.RawMessage\n\tB json.RawMessage\n}\n\nconst selectFoo = `-- name: SelectFoo :exec\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectFoo(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, selectFoo)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/mysql/query.sql",
    "content": "-- name: SelectFoo :exec\nSELECT * FROM foo;\n\n-- name: BulkInsert :copyfrom\nINSERT INTO foo (a, b) VALUES (?, ?);\n"
  },
  {
    "path": "internal/endtoend/testdata/json/mysql/schema.sql",
    "content": "CREATE TABLE foo (\n    a json not null,\n    b json\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"sql_driver\": \"github.com/go-sql-driver/mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgtype\"\n)\n\ntype Foo struct {\n\tA pgtype.JSON\n\tB pgtype.JSONB\n\tC pgtype.JSON\n\tD pgtype.JSONB\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectFoo = `-- name: SelectFoo :exec\nSELECT a, b, c, d FROM foo\n`\n\nfunc (q *Queries) SelectFoo(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, selectFoo)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/pgx/v4/query.sql",
    "content": "-- name: SelectFoo :exec\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (\n    a json not null,\n    b jsonb not null,\n    c json,\n    d jsonb\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tA []byte\n\tB []byte\n\tC []byte\n\tD []byte\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectFoo = `-- name: SelectFoo :exec\nSELECT a, b, c, d FROM foo\n`\n\nfunc (q *Queries) SelectFoo(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, selectFoo)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/pgx/v5/query.sql",
    "content": "-- name: SelectFoo :exec\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (\n    a json not null,\n    b jsonb not null,\n    c json,\n    d jsonb\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"encoding/json\"\n\n\t\"github.com/sqlc-dev/pqtype\"\n)\n\ntype Foo struct {\n\tA json.RawMessage\n\tB json.RawMessage\n\tC pqtype.NullRawMessage\n\tD pqtype.NullRawMessage\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectFoo = `-- name: SelectFoo :exec\nSELECT a, b, c, d FROM foo\n`\n\nfunc (q *Queries) SelectFoo(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, selectFoo)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/stdlib/query.sql",
    "content": "-- name: SelectFoo :exec\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (\n    a json not null,\n    b jsonb not null,\n    c json,\n    d jsonb\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_array_elements/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/2731\n"
  },
  {
    "path": "internal/endtoend/testdata/json_array_elements/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_array_elements/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_array_elements/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype SysAction struct {\n\tID        int64\n\tCode      string\n\tMenu      string\n\tTitle     string\n\tResources []byte\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_array_elements/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getActionCodeByResource = `-- name: GetActionCodeByResource :one\nSELECT code, arr.item_object ->> 'code'  as resource_code\nFROM sys_actions,\n    jsonb_array_elements(resources) with ordinality arr(item_object, resource)\n    WHERE item_object->>'resource' = $1\n    LIMIT 1\n`\n\ntype GetActionCodeByResourceRow struct {\n\tCode         string\n\tResourceCode pgtype.Text\n}\n\nfunc (q *Queries) GetActionCodeByResource(ctx context.Context, resource pgtype.Text) (GetActionCodeByResourceRow, error) {\n\trow := q.db.QueryRow(ctx, getActionCodeByResource, resource)\n\tvar i GetActionCodeByResourceRow\n\terr := row.Scan(&i.Code, &i.ResourceCode)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_array_elements/postgresql/pgx/query.sql",
    "content": "-- name: GetActionCodeByResource :one\nSELECT code, arr.item_object ->> 'code'  as resource_code\nFROM sys_actions,\n    jsonb_array_elements(resources) with ordinality arr(item_object, resource)\n    WHERE item_object->>'resource' = sqlc.arg('resource')\n    LIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/json_array_elements/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE \"sys_actions\" (\n    \"id\" int8 NOT NULL,\n    \"code\" varchar(20) NOT NULL,\n    \"menu\" varchar(255) NOT NULL,\n    \"title\" varchar(20) NOT NULL,\n    \"resources\" jsonb,\n    PRIMARY KEY (\"id\")\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/json_array_elements/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgtype\"\n)\n\nconst selectJSONBBuildArray = `-- name: SelectJSONBBuildArray :one\nSELECT \n  jsonb_build_array(),\n  jsonb_build_array(1),\n  jsonb_build_array(1, 2),\n  jsonb_build_array(1, 2, 'foo'),\n  jsonb_build_array(1, 2, 'foo', 4)\n`\n\ntype SelectJSONBBuildArrayRow struct {\n\tJsonbBuildArray   pgtype.JSONB\n\tJsonbBuildArray_2 pgtype.JSONB\n\tJsonbBuildArray_3 pgtype.JSONB\n\tJsonbBuildArray_4 pgtype.JSONB\n\tJsonbBuildArray_5 pgtype.JSONB\n}\n\nfunc (q *Queries) SelectJSONBBuildArray(ctx context.Context) (SelectJSONBBuildArrayRow, error) {\n\trow := q.db.QueryRow(ctx, selectJSONBBuildArray)\n\tvar i SelectJSONBBuildArrayRow\n\terr := row.Scan(\n\t\t&i.JsonbBuildArray,\n\t\t&i.JsonbBuildArray_2,\n\t\t&i.JsonbBuildArray_3,\n\t\t&i.JsonbBuildArray_4,\n\t\t&i.JsonbBuildArray_5,\n\t)\n\treturn i, err\n}\n\nconst selectJSONBBuildObject = `-- name: SelectJSONBBuildObject :one\nSELECT\n  jsonb_build_object(),\n  jsonb_build_object('foo'),\n  jsonb_build_object('foo', 1),\n  jsonb_build_object('foo', 1, 2),\n  jsonb_build_object('foo', 1, 2, 'bar')\n`\n\ntype SelectJSONBBuildObjectRow struct {\n\tJsonbBuildObject   pgtype.JSONB\n\tJsonbBuildObject_2 pgtype.JSONB\n\tJsonbBuildObject_3 pgtype.JSONB\n\tJsonbBuildObject_4 pgtype.JSONB\n\tJsonbBuildObject_5 pgtype.JSONB\n}\n\nfunc (q *Queries) SelectJSONBBuildObject(ctx context.Context) (SelectJSONBBuildObjectRow, error) {\n\trow := q.db.QueryRow(ctx, selectJSONBBuildObject)\n\tvar i SelectJSONBBuildObjectRow\n\terr := row.Scan(\n\t\t&i.JsonbBuildObject,\n\t\t&i.JsonbBuildObject_2,\n\t\t&i.JsonbBuildObject_3,\n\t\t&i.JsonbBuildObject_4,\n\t\t&i.JsonbBuildObject_5,\n\t)\n\treturn i, err\n}\n\nconst selectJSONBuildArray = `-- name: SelectJSONBuildArray :one\nSELECT \n  json_build_array(),\n  json_build_array(1),\n  json_build_array(1, 2),\n  json_build_array(1, 2, 'foo'),\n  json_build_array(1, 2, 'foo', 4)\n`\n\ntype SelectJSONBuildArrayRow struct {\n\tJsonBuildArray   pgtype.JSON\n\tJsonBuildArray_2 pgtype.JSON\n\tJsonBuildArray_3 pgtype.JSON\n\tJsonBuildArray_4 pgtype.JSON\n\tJsonBuildArray_5 pgtype.JSON\n}\n\nfunc (q *Queries) SelectJSONBuildArray(ctx context.Context) (SelectJSONBuildArrayRow, error) {\n\trow := q.db.QueryRow(ctx, selectJSONBuildArray)\n\tvar i SelectJSONBuildArrayRow\n\terr := row.Scan(\n\t\t&i.JsonBuildArray,\n\t\t&i.JsonBuildArray_2,\n\t\t&i.JsonBuildArray_3,\n\t\t&i.JsonBuildArray_4,\n\t\t&i.JsonBuildArray_5,\n\t)\n\treturn i, err\n}\n\nconst selectJSONBuildObject = `-- name: SelectJSONBuildObject :one\nSELECT\n  json_build_object(),\n  json_build_object('foo'),\n  json_build_object('foo', 1),\n  json_build_object('foo', 1, 2),\n  json_build_object('foo', 1, 2, 'bar')\n`\n\ntype SelectJSONBuildObjectRow struct {\n\tJsonBuildObject   pgtype.JSON\n\tJsonBuildObject_2 pgtype.JSON\n\tJsonBuildObject_3 pgtype.JSON\n\tJsonBuildObject_4 pgtype.JSON\n\tJsonBuildObject_5 pgtype.JSON\n}\n\nfunc (q *Queries) SelectJSONBuildObject(ctx context.Context) (SelectJSONBuildObjectRow, error) {\n\trow := q.db.QueryRow(ctx, selectJSONBuildObject)\n\tvar i SelectJSONBuildObjectRow\n\terr := row.Scan(\n\t\t&i.JsonBuildObject,\n\t\t&i.JsonBuildObject_2,\n\t\t&i.JsonBuildObject_3,\n\t\t&i.JsonBuildObject_4,\n\t\t&i.JsonBuildObject_5,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/pgx/v4/query.sql",
    "content": "-- name: SelectJSONBuildObject :one\nSELECT\n  json_build_object(),\n  json_build_object('foo'),\n  json_build_object('foo', 1),\n  json_build_object('foo', 1, 2),\n  json_build_object('foo', 1, 2, 'bar');\n\n-- name: SelectJSONBuildArray :one\nSELECT \n  json_build_array(),\n  json_build_array(1),\n  json_build_array(1, 2),\n  json_build_array(1, 2, 'foo'),\n  json_build_array(1, 2, 'foo', 4);\n\n-- name: SelectJSONBBuildObject :one\nSELECT\n  jsonb_build_object(),\n  jsonb_build_object('foo'),\n  jsonb_build_object('foo', 1),\n  jsonb_build_object('foo', 1, 2),\n  jsonb_build_object('foo', 1, 2, 'bar');\n\n-- name: SelectJSONBBuildArray :one\nSELECT \n  jsonb_build_array(),\n  jsonb_build_array(1),\n  jsonb_build_array(1, 2),\n  jsonb_build_array(1, 2, 'foo'),\n  jsonb_build_array(1, 2, 'foo', 4);\n"
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/pgx/v4/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectJSONBBuildArray = `-- name: SelectJSONBBuildArray :one\nSELECT \n  jsonb_build_array(),\n  jsonb_build_array(1),\n  jsonb_build_array(1, 2),\n  jsonb_build_array(1, 2, 'foo'),\n  jsonb_build_array(1, 2, 'foo', 4)\n`\n\ntype SelectJSONBBuildArrayRow struct {\n\tJsonbBuildArray   []byte\n\tJsonbBuildArray_2 []byte\n\tJsonbBuildArray_3 []byte\n\tJsonbBuildArray_4 []byte\n\tJsonbBuildArray_5 []byte\n}\n\nfunc (q *Queries) SelectJSONBBuildArray(ctx context.Context) (SelectJSONBBuildArrayRow, error) {\n\trow := q.db.QueryRow(ctx, selectJSONBBuildArray)\n\tvar i SelectJSONBBuildArrayRow\n\terr := row.Scan(\n\t\t&i.JsonbBuildArray,\n\t\t&i.JsonbBuildArray_2,\n\t\t&i.JsonbBuildArray_3,\n\t\t&i.JsonbBuildArray_4,\n\t\t&i.JsonbBuildArray_5,\n\t)\n\treturn i, err\n}\n\nconst selectJSONBBuildObject = `-- name: SelectJSONBBuildObject :one\nSELECT\n  jsonb_build_object(),\n  jsonb_build_object('foo'),\n  jsonb_build_object('foo', 1),\n  jsonb_build_object('foo', 1, 2),\n  jsonb_build_object('foo', 1, 2, 'bar')\n`\n\ntype SelectJSONBBuildObjectRow struct {\n\tJsonbBuildObject   []byte\n\tJsonbBuildObject_2 []byte\n\tJsonbBuildObject_3 []byte\n\tJsonbBuildObject_4 []byte\n\tJsonbBuildObject_5 []byte\n}\n\nfunc (q *Queries) SelectJSONBBuildObject(ctx context.Context) (SelectJSONBBuildObjectRow, error) {\n\trow := q.db.QueryRow(ctx, selectJSONBBuildObject)\n\tvar i SelectJSONBBuildObjectRow\n\terr := row.Scan(\n\t\t&i.JsonbBuildObject,\n\t\t&i.JsonbBuildObject_2,\n\t\t&i.JsonbBuildObject_3,\n\t\t&i.JsonbBuildObject_4,\n\t\t&i.JsonbBuildObject_5,\n\t)\n\treturn i, err\n}\n\nconst selectJSONBuildArray = `-- name: SelectJSONBuildArray :one\nSELECT \n  json_build_array(),\n  json_build_array(1),\n  json_build_array(1, 2),\n  json_build_array(1, 2, 'foo'),\n  json_build_array(1, 2, 'foo', 4)\n`\n\ntype SelectJSONBuildArrayRow struct {\n\tJsonBuildArray   []byte\n\tJsonBuildArray_2 []byte\n\tJsonBuildArray_3 []byte\n\tJsonBuildArray_4 []byte\n\tJsonBuildArray_5 []byte\n}\n\nfunc (q *Queries) SelectJSONBuildArray(ctx context.Context) (SelectJSONBuildArrayRow, error) {\n\trow := q.db.QueryRow(ctx, selectJSONBuildArray)\n\tvar i SelectJSONBuildArrayRow\n\terr := row.Scan(\n\t\t&i.JsonBuildArray,\n\t\t&i.JsonBuildArray_2,\n\t\t&i.JsonBuildArray_3,\n\t\t&i.JsonBuildArray_4,\n\t\t&i.JsonBuildArray_5,\n\t)\n\treturn i, err\n}\n\nconst selectJSONBuildObject = `-- name: SelectJSONBuildObject :one\nSELECT\n  json_build_object(),\n  json_build_object('foo'),\n  json_build_object('foo', 1),\n  json_build_object('foo', 1, 2),\n  json_build_object('foo', 1, 2, 'bar')\n`\n\ntype SelectJSONBuildObjectRow struct {\n\tJsonBuildObject   []byte\n\tJsonBuildObject_2 []byte\n\tJsonBuildObject_3 []byte\n\tJsonBuildObject_4 []byte\n\tJsonBuildObject_5 []byte\n}\n\nfunc (q *Queries) SelectJSONBuildObject(ctx context.Context) (SelectJSONBuildObjectRow, error) {\n\trow := q.db.QueryRow(ctx, selectJSONBuildObject)\n\tvar i SelectJSONBuildObjectRow\n\terr := row.Scan(\n\t\t&i.JsonBuildObject,\n\t\t&i.JsonBuildObject_2,\n\t\t&i.JsonBuildObject_3,\n\t\t&i.JsonBuildObject_4,\n\t\t&i.JsonBuildObject_5,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/pgx/v5/query.sql",
    "content": "-- name: SelectJSONBuildObject :one\nSELECT\n  json_build_object(),\n  json_build_object('foo'),\n  json_build_object('foo', 1),\n  json_build_object('foo', 1, 2),\n  json_build_object('foo', 1, 2, 'bar');\n\n-- name: SelectJSONBuildArray :one\nSELECT \n  json_build_array(),\n  json_build_array(1),\n  json_build_array(1, 2),\n  json_build_array(1, 2, 'foo'),\n  json_build_array(1, 2, 'foo', 4);\n\n-- name: SelectJSONBBuildObject :one\nSELECT\n  jsonb_build_object(),\n  jsonb_build_object('foo'),\n  jsonb_build_object('foo', 1),\n  jsonb_build_object('foo', 1, 2),\n  jsonb_build_object('foo', 1, 2, 'bar');\n\n-- name: SelectJSONBBuildArray :one\nSELECT \n  jsonb_build_array(),\n  jsonb_build_array(1),\n  jsonb_build_array(1, 2),\n  jsonb_build_array(1, 2, 'foo'),\n  jsonb_build_array(1, 2, 'foo', 4);\n"
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/pgx/v5/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"encoding/json\"\n)\n\nconst selectJSONBBuildArray = `-- name: SelectJSONBBuildArray :one\nSELECT \n  jsonb_build_array(),\n  jsonb_build_array(1),\n  jsonb_build_array(1, 2),\n  jsonb_build_array(1, 2, 'foo'),\n  jsonb_build_array(1, 2, 'foo', 4)\n`\n\ntype SelectJSONBBuildArrayRow struct {\n\tJsonbBuildArray   json.RawMessage\n\tJsonbBuildArray_2 json.RawMessage\n\tJsonbBuildArray_3 json.RawMessage\n\tJsonbBuildArray_4 json.RawMessage\n\tJsonbBuildArray_5 json.RawMessage\n}\n\nfunc (q *Queries) SelectJSONBBuildArray(ctx context.Context) (SelectJSONBBuildArrayRow, error) {\n\trow := q.db.QueryRowContext(ctx, selectJSONBBuildArray)\n\tvar i SelectJSONBBuildArrayRow\n\terr := row.Scan(\n\t\t&i.JsonbBuildArray,\n\t\t&i.JsonbBuildArray_2,\n\t\t&i.JsonbBuildArray_3,\n\t\t&i.JsonbBuildArray_4,\n\t\t&i.JsonbBuildArray_5,\n\t)\n\treturn i, err\n}\n\nconst selectJSONBBuildObject = `-- name: SelectJSONBBuildObject :one\nSELECT\n  jsonb_build_object(),\n  jsonb_build_object('foo'),\n  jsonb_build_object('foo', 1),\n  jsonb_build_object('foo', 1, 2),\n  jsonb_build_object('foo', 1, 2, 'bar')\n`\n\ntype SelectJSONBBuildObjectRow struct {\n\tJsonbBuildObject   json.RawMessage\n\tJsonbBuildObject_2 json.RawMessage\n\tJsonbBuildObject_3 json.RawMessage\n\tJsonbBuildObject_4 json.RawMessage\n\tJsonbBuildObject_5 json.RawMessage\n}\n\nfunc (q *Queries) SelectJSONBBuildObject(ctx context.Context) (SelectJSONBBuildObjectRow, error) {\n\trow := q.db.QueryRowContext(ctx, selectJSONBBuildObject)\n\tvar i SelectJSONBBuildObjectRow\n\terr := row.Scan(\n\t\t&i.JsonbBuildObject,\n\t\t&i.JsonbBuildObject_2,\n\t\t&i.JsonbBuildObject_3,\n\t\t&i.JsonbBuildObject_4,\n\t\t&i.JsonbBuildObject_5,\n\t)\n\treturn i, err\n}\n\nconst selectJSONBuildArray = `-- name: SelectJSONBuildArray :one\nSELECT \n  json_build_array(),\n  json_build_array(1),\n  json_build_array(1, 2),\n  json_build_array(1, 2, 'foo'),\n  json_build_array(1, 2, 'foo', 4)\n`\n\ntype SelectJSONBuildArrayRow struct {\n\tJsonBuildArray   json.RawMessage\n\tJsonBuildArray_2 json.RawMessage\n\tJsonBuildArray_3 json.RawMessage\n\tJsonBuildArray_4 json.RawMessage\n\tJsonBuildArray_5 json.RawMessage\n}\n\nfunc (q *Queries) SelectJSONBuildArray(ctx context.Context) (SelectJSONBuildArrayRow, error) {\n\trow := q.db.QueryRowContext(ctx, selectJSONBuildArray)\n\tvar i SelectJSONBuildArrayRow\n\terr := row.Scan(\n\t\t&i.JsonBuildArray,\n\t\t&i.JsonBuildArray_2,\n\t\t&i.JsonBuildArray_3,\n\t\t&i.JsonBuildArray_4,\n\t\t&i.JsonBuildArray_5,\n\t)\n\treturn i, err\n}\n\nconst selectJSONBuildObject = `-- name: SelectJSONBuildObject :one\nSELECT\n  json_build_object(),\n  json_build_object('foo'),\n  json_build_object('foo', 1),\n  json_build_object('foo', 1, 2),\n  json_build_object('foo', 1, 2, 'bar')\n`\n\ntype SelectJSONBuildObjectRow struct {\n\tJsonBuildObject   json.RawMessage\n\tJsonBuildObject_2 json.RawMessage\n\tJsonBuildObject_3 json.RawMessage\n\tJsonBuildObject_4 json.RawMessage\n\tJsonBuildObject_5 json.RawMessage\n}\n\nfunc (q *Queries) SelectJSONBuildObject(ctx context.Context) (SelectJSONBuildObjectRow, error) {\n\trow := q.db.QueryRowContext(ctx, selectJSONBuildObject)\n\tvar i SelectJSONBuildObjectRow\n\terr := row.Scan(\n\t\t&i.JsonBuildObject,\n\t\t&i.JsonBuildObject_2,\n\t\t&i.JsonBuildObject_3,\n\t\t&i.JsonBuildObject_4,\n\t\t&i.JsonBuildObject_5,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/stdlib/query.sql",
    "content": "-- name: SelectJSONBuildObject :one\nSELECT\n  json_build_object(),\n  json_build_object('foo'),\n  json_build_object('foo', 1),\n  json_build_object('foo', 1, 2),\n  json_build_object('foo', 1, 2, 'bar');\n\n-- name: SelectJSONBuildArray :one\nSELECT \n  json_build_array(),\n  json_build_array(1),\n  json_build_array(1, 2),\n  json_build_array(1, 2, 'foo'),\n  json_build_array(1, 2, 'foo', 4);\n\n-- name: SelectJSONBBuildObject :one\nSELECT\n  jsonb_build_object(),\n  jsonb_build_object('foo'),\n  jsonb_build_object('foo', 1),\n  jsonb_build_object('foo', 1, 2),\n  jsonb_build_object('foo', 1, 2, 'bar');\n\n-- name: SelectJSONBBuildArray :one\nSELECT \n  jsonb_build_array(),\n  jsonb_build_array(1),\n  jsonb_build_array(1, 2),\n  jsonb_build_array(1, 2, 'foo'),\n  jsonb_build_array(1, 2, 'foo', 4);\n"
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/stdlib/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/json_build/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_param_type/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/743"
  },
  {
    "path": "internal/endtoend/testdata/json_param_type/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_param_type/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_param_type/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype User struct {\n\tID       int32\n\tMetadata []byte\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_param_type/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst findByAddress = `-- name: FindByAddress :one\nSELECT id, metadata FROM \"user\" WHERE \"metadata\"->>'address1' = $1 LIMIT 1\n`\n\nfunc (q *Queries) FindByAddress(ctx context.Context, metadata pgtype.Text) (User, error) {\n\trow := q.db.QueryRow(ctx, findByAddress, metadata)\n\tvar i User\n\terr := row.Scan(&i.ID, &i.Metadata)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_param_type/postgresql/pgx/query.sql",
    "content": "-- name: FindByAddress :one\nSELECT * FROM \"user\" WHERE \"metadata\"->>'address1' = $1 LIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/json_param_type/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE \"user\" (\n    \"id\" INT PRIMARY KEY GENERATED ALWAYS AS IDENTITY,\n    \"metadata\" JSONB\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/json_param_type/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\""
  },
  {
    "path": "internal/endtoend/testdata/json_param_type/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_param_type/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID       sql.NullInt64\n\tMetadata sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_param_type/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst findByAddress = `-- name: FindByAddress :one\nSELECT id, metadata FROM \"user\" WHERE \"metadata\"->>'address1' = ?1 LIMIT 1\n`\n\nfunc (q *Queries) FindByAddress(ctx context.Context, metadata sql.NullString) (User, error) {\n\trow := q.db.QueryRowContext(ctx, findByAddress, metadata)\n\tvar i User\n\terr := row.Scan(&i.ID, &i.Metadata)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_param_type/sqlite/query.sql",
    "content": "-- name: FindByAddress :one\nSELECT * FROM \"user\" WHERE \"metadata\"->>'address1' = ?1 LIMIT 1;"
  },
  {
    "path": "internal/endtoend/testdata/json_param_type/sqlite/schema.sql",
    "content": "CREATE TABLE \"user\" (\n    \"id\" INT,\n    \"metadata\" TEXT\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/json_param_type/sqlite/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"sqlite\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\""
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tFirstName sql.NullString `json:\"firstName\"`\n\tLastName  sql.NullString `json:\"lastName\"`\n\tAge       sql.NullInt16  `json:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName, &i.Age); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE users (\n    first_name varchar(255),\n    last_name  varchar(255),\n    age        smallint\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"json_tags_case_style\": \"camel\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype User struct {\n\tFirstName pgtype.Text `json:\"firstName\"`\n\tLastName  pgtype.Text `json:\"lastName\"`\n\tAge       pgtype.Int2 `json:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName, &i.Age); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE users (\n    first_name varchar(255),\n    last_name  varchar(255),\n    age        smallint\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"json_tags_case_style\": \"camel\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tFirstName sql.NullString `json:\"firstName\"`\n\tLastName  sql.NullString `json:\"lastName\"`\n\tAge       sql.NullInt16  `json:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName, &i.Age); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/stdlib/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE users (\n    first_name varchar(255),\n    last_name  varchar(255),\n    age        smallint\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/camel_case/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"json_tags_case_style\": \"camel\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tFirstName sql.NullString `json:\"FirstName\"`\n\tLastName  sql.NullString `json:\"LastName\"`\n\tAge       sql.NullInt16  `json:\"Age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName, &i.Age); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE users (\n    first_name varchar(255),\n    last_name  varchar(255),\n    age        smallint\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"json_tags_case_style\": \"pascal\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype User struct {\n\tFirstName pgtype.Text `json:\"FirstName\"`\n\tLastName  pgtype.Text `json:\"LastName\"`\n\tAge       pgtype.Int2 `json:\"Age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName, &i.Age); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE users (\n    first_name varchar(255),\n    last_name  varchar(255),\n    age        smallint\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"json_tags_case_style\": \"pascal\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tFirstName sql.NullString `json:\"FirstName\"`\n\tLastName  sql.NullString `json:\"LastName\"`\n\tAge       sql.NullInt16  `json:\"Age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName, &i.Age); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/stdlib/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE users (\n    first_name varchar(255),\n    last_name  varchar(255),\n    age        smallint\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/pascal_case/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"json_tags_case_style\": \"pascal\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tFirstName sql.NullString `json:\"first_name\"`\n\tLastName  sql.NullString `json:\"last_name\"`\n\tAge       sql.NullInt16  `json:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName, &i.Age); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE users (\n    first_name varchar(255),\n    last_name  varchar(255),\n    age        smallint\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"json_tags_case_style\": \"snake\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype User struct {\n\tFirstName pgtype.Text `json:\"first_name\"`\n\tLastName  pgtype.Text `json:\"last_name\"`\n\tAge       pgtype.Int2 `json:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName, &i.Age); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE users (\n    first_name varchar(255),\n    last_name  varchar(255),\n    age        smallint\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"json_tags_case_style\": \"snake\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tFirstName sql.NullString `json:\"first_name\"`\n\tLastName  sql.NullString `json:\"last_name\"`\n\tAge       sql.NullInt16  `json:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName, &i.Age); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/stdlib/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE users (\n    first_name varchar(255),\n    last_name  varchar(255),\n    age        smallint\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags/snake_case/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"json_tags_case_style\": \"snake\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/camel_case/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/camel_case/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype JobPostLocationType string\n\nconst (\n\tJobPostLocationTypeRemote   JobPostLocationType = \"remote\"\n\tJobPostLocationTypeInOffice JobPostLocationType = \"in_office\"\n\tJobPostLocationTypeHybrid   JobPostLocationType = \"hybrid\"\n)\n\nfunc (e *JobPostLocationType) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = JobPostLocationType(s)\n\tcase string:\n\t\t*e = JobPostLocationType(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for JobPostLocationType: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullJobPostLocationType struct {\n\tJobPostLocationType JobPostLocationType `json:\"jobPostLocationType\"`\n\tValid               bool                `json:\"valid\"` // Valid is true if JobPostLocationType is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullJobPostLocationType) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.JobPostLocationType, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.JobPostLocationType.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullJobPostLocationType) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.JobPostLocationType), nil\n}\n\ntype Author struct {\n\tID   int64                   `json:\"id\"`\n\tType NullJobPostLocationType `json:\"type\"`\n\tName string                  `json:\"name\"`\n\tBio  sql.NullString          `json:\"bio\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/camel_case/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, type, name, bio FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Type,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/camel_case/postgresql/stdlib/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/camel_case/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE job_post_location_type AS ENUM('remote', 'in_office', 'hybrid');\n\nCREATE TABLE authors (\n    id   BIGSERIAL PRIMARY KEY,\n    type job_post_location_type,\n    name text      NOT NULL,\n    bio  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/camel_case/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"db\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"json_tags_case_style\": \"camel\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/none/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/none/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype JobPostLocationType string\n\nconst (\n\tJobPostLocationTypeRemote   JobPostLocationType = \"remote\"\n\tJobPostLocationTypeInOffice JobPostLocationType = \"in_office\"\n\tJobPostLocationTypeHybrid   JobPostLocationType = \"hybrid\"\n)\n\nfunc (e *JobPostLocationType) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = JobPostLocationType(s)\n\tcase string:\n\t\t*e = JobPostLocationType(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for JobPostLocationType: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullJobPostLocationType struct {\n\tJobPostLocationType JobPostLocationType `json:\"job_post_location_type\"`\n\tValid               bool                `json:\"valid\"` // Valid is true if JobPostLocationType is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullJobPostLocationType) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.JobPostLocationType, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.JobPostLocationType.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullJobPostLocationType) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.JobPostLocationType), nil\n}\n\ntype Author struct {\n\tID   int64                   `json:\"id\"`\n\tType NullJobPostLocationType `json:\"type\"`\n\tName string                  `json:\"name\"`\n\tBio  sql.NullString          `json:\"bio\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/none/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, type, name, bio FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Type,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/none/postgresql/stdlib/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/none/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE job_post_location_type AS ENUM('remote', 'in_office', 'hybrid');\n\nCREATE TABLE authors (\n    id   BIGSERIAL PRIMARY KEY,\n    type job_post_location_type,\n    name text      NOT NULL,\n    bio  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/none/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"db\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"json_tags_case_style\": \"none\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/pascal_case/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/pascal_case/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype JobPostLocationType string\n\nconst (\n\tJobPostLocationTypeRemote   JobPostLocationType = \"remote\"\n\tJobPostLocationTypeInOffice JobPostLocationType = \"in_office\"\n\tJobPostLocationTypeHybrid   JobPostLocationType = \"hybrid\"\n)\n\nfunc (e *JobPostLocationType) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = JobPostLocationType(s)\n\tcase string:\n\t\t*e = JobPostLocationType(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for JobPostLocationType: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullJobPostLocationType struct {\n\tJobPostLocationType JobPostLocationType `json:\"JobPostLocationType\"`\n\tValid               bool                `json:\"Valid\"` // Valid is true if JobPostLocationType is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullJobPostLocationType) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.JobPostLocationType, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.JobPostLocationType.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullJobPostLocationType) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.JobPostLocationType), nil\n}\n\ntype Author struct {\n\tID   int64                   `json:\"ID\"`\n\tType NullJobPostLocationType `json:\"Type\"`\n\tName string                  `json:\"Name\"`\n\tBio  sql.NullString          `json:\"Bio\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/pascal_case/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, type, name, bio FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Type,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/pascal_case/postgresql/stdlib/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/pascal_case/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE job_post_location_type AS ENUM('remote', 'in_office', 'hybrid');\n\nCREATE TABLE authors (\n    id   BIGSERIAL PRIMARY KEY,\n    type job_post_location_type,\n    name text      NOT NULL,\n    bio  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/pascal_case/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"db\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"json_tags_case_style\": \"pascal\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/snake_case/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/snake_case/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype JobPostLocationType string\n\nconst (\n\tJobPostLocationTypeRemote   JobPostLocationType = \"remote\"\n\tJobPostLocationTypeInOffice JobPostLocationType = \"in_office\"\n\tJobPostLocationTypeHybrid   JobPostLocationType = \"hybrid\"\n)\n\nfunc (e *JobPostLocationType) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = JobPostLocationType(s)\n\tcase string:\n\t\t*e = JobPostLocationType(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for JobPostLocationType: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullJobPostLocationType struct {\n\tJobPostLocationType JobPostLocationType `json:\"job_post_location_type\"`\n\tValid               bool                `json:\"valid\"` // Valid is true if JobPostLocationType is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullJobPostLocationType) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.JobPostLocationType, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.JobPostLocationType.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullJobPostLocationType) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.JobPostLocationType), nil\n}\n\ntype Author struct {\n\tID   int64                   `json:\"id\"`\n\tType NullJobPostLocationType `json:\"type\"`\n\tName string                  `json:\"name\"`\n\tBio  sql.NullString          `json:\"bio\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/snake_case/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, type, name, bio FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Type,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/snake_case/postgresql/stdlib/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/snake_case/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE job_post_location_type AS ENUM('remote', 'in_office', 'hybrid');\n\nCREATE TABLE authors (\n    id   BIGSERIAL PRIMARY KEY,\n    type job_post_location_type,\n    name text      NOT NULL,\n    bio  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/snake_case/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"db\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"json_tags_case_style\": \"snake\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/v2_config/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/v2_config/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype JobPostLocationType string\n\nconst (\n\tJobPostLocationTypeRemote   JobPostLocationType = \"remote\"\n\tJobPostLocationTypeInOffice JobPostLocationType = \"in_office\"\n\tJobPostLocationTypeHybrid   JobPostLocationType = \"hybrid\"\n)\n\nfunc (e *JobPostLocationType) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = JobPostLocationType(s)\n\tcase string:\n\t\t*e = JobPostLocationType(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for JobPostLocationType: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullJobPostLocationType struct {\n\tJobPostLocationType JobPostLocationType `json:\"job_post_location_type\"`\n\tValid               bool                `json:\"valid\"` // Valid is true if JobPostLocationType is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullJobPostLocationType) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.JobPostLocationType, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.JobPostLocationType.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullJobPostLocationType) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.JobPostLocationType), nil\n}\n\ntype Author struct {\n\tID   int64                   `json:\"id\"`\n\tType NullJobPostLocationType `json:\"type\"`\n\tName string                  `json:\"name\"`\n\tBio  sql.NullString          `json:\"bio\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/v2_config/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, type, name, bio FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Type,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/v2_config/postgresql/stdlib/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/v2_config/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE job_post_location_type AS ENUM('remote', 'in_office', 'hybrid');\n\nCREATE TABLE authors (\n    id   BIGSERIAL PRIMARY KEY,\n    type job_post_location_type,\n    name text      NOT NULL,\n    bio  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/json_tags_null_enum/v2_config/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"gen\": {\n        \"go\": {\n          \"out\": \"go\",\n          \"package\": \"db\",\n          \"emit_json_tags\": true\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/jsonb/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/jsonb/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tA []byte\n\tB []byte\n\tC []byte\n\tD []byte\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/jsonb/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst insertFoo = `-- name: InsertFoo :exec\nINSERT INTO foo (\n    a,\n    b,\n    c,\n    d\n) VALUES (\n    $1,\n    $2,\n    $3,\n    $4\n) RETURNING a, b, c, d\n`\n\ntype InsertFooParams struct {\n\tA []byte\n\tB []byte\n\tC []byte\n\tD []byte\n}\n\nfunc (q *Queries) InsertFoo(ctx context.Context, arg InsertFooParams) error {\n\t_, err := q.db.Exec(ctx, insertFoo,\n\t\targ.A,\n\t\targ.B,\n\t\targ.C,\n\t\targ.D,\n\t)\n\treturn err\n}\n\nconst selectFoo = `-- name: SelectFoo :exec\nSELECT a, b, c, d FROM foo\n`\n\nfunc (q *Queries) SelectFoo(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, selectFoo)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/jsonb/pgx/query.sql",
    "content": "-- name: InsertFoo :exec\nINSERT INTO foo (\n    a,\n    b,\n    c,\n    d\n) VALUES (\n    @a,\n    @b,\n    @c,\n    @d\n) RETURNING *;\n\n-- name: SelectFoo :exec\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/jsonb/pgx/schema.sql",
    "content": "CREATE TABLE foo (\n    a json not null,\n    b jsonb not null,\n    c json,\n    d jsonb\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/jsonb/pgx/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/jsonb/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/jsonb/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"encoding/json\"\n)\n\ntype Foo struct {\n\tA json.RawMessage\n\tB json.RawMessage\n\tC json.RawMessage\n\tD json.RawMessage\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/jsonb/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"encoding/json\"\n)\n\nconst insertFoo = `-- name: InsertFoo :exec\nINSERT INTO foo (\n    a,\n    b,\n    c,\n    d\n) VALUES (\n    ?1,\n    ?2,\n    ?3,\n    ?4\n) RETURNING a, json(b), c, json(d)\n`\n\ntype InsertFooParams struct {\n\tA json.RawMessage\n\tB json.RawMessage\n\tC json.RawMessage\n\tD json.RawMessage\n}\n\nfunc (q *Queries) InsertFoo(ctx context.Context, arg InsertFooParams) error {\n\t_, err := q.db.ExecContext(ctx, insertFoo,\n\t\targ.A,\n\t\targ.B,\n\t\targ.C,\n\t\targ.D,\n\t)\n\treturn err\n}\n\nconst selectFoo = `-- name: SelectFoo :exec\nSELECT a, json(b), c, json(d) FROM foo\n`\n\nfunc (q *Queries) SelectFoo(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, selectFoo)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/jsonb/sqlite/query.sql",
    "content": "-- name: InsertFoo :exec\nINSERT INTO foo (\n    a,\n    b,\n    c,\n    d\n) VALUES (\n    @a,\n    @b,\n    @c,\n    @d\n) RETURNING *;\n\n-- name: SelectFoo :exec\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/jsonb/sqlite/schema.sql",
    "content": "CREATE TABLE foo (\n    a json not null,\n    b jsonb not null,\n    c json,\n    d jsonb\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/jsonb/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst limitMe = `-- name: LimitMe :exec\nUPDATE foo SET bar='baz' LIMIT ?\n`\n\nfunc (q *Queries) LimitMe(ctx context.Context, limit int32) error {\n\t_, err := q.db.ExecContext(ctx, limitMe, limit)\n\treturn err\n}\n\nconst limitMeToo = `-- name: LimitMeToo :exec\nDELETE FROM foo LIMIT ?\n`\n\nfunc (q *Queries) LimitMeToo(ctx context.Context, limit int32) error {\n\t_, err := q.db.ExecContext(ctx, limitMeToo, limit)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/mysql/query.sql",
    "content": "-- name: LimitMe :exec\nUPDATE foo SET bar='baz' LIMIT ?;\n\n-- name: LimitMeToo :exec\nDELETE FROM foo LIMIT ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n\t\t\t\"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/pgx/v4/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst limitMe = `-- name: LimitMe :many\nSELECT bar FROM foo LIMIT $1\n`\n\nfunc (q *Queries) LimitMe(ctx context.Context, limit int32) ([]bool, error) {\n\trows, err := q.db.Query(ctx, limitMe, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar bar bool\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/pgx/v4/query.sql",
    "content": "-- name: LimitMe :many\nSELECT bar FROM foo LIMIT $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/pgx/v5/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst limitMe = `-- name: LimitMe :many\nSELECT bar FROM foo LIMIT $1\n`\n\nfunc (q *Queries) LimitMe(ctx context.Context, limit int32) ([]bool, error) {\n\trows, err := q.db.Query(ctx, limitMe, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar bar bool\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/pgx/v5/query.sql",
    "content": "-- name: LimitMe :many\nSELECT bar FROM foo LIMIT $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst limitMe = `-- name: LimitMe :many\nSELECT bar FROM foo LIMIT ?\n`\n\nfunc (q *Queries) LimitMe(ctx context.Context, limit int64) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, limitMe, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar bar bool\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/sqlite/query.sql",
    "content": "-- name: LimitMe :many\nSELECT bar FROM foo LIMIT ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/sqlite/schema.sql",
    "content": "CREATE TABLE foo (bar bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/limit/stdlib/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst limitMe = `-- name: LimitMe :many\nSELECT bar FROM foo LIMIT $1\n`\n\nfunc (q *Queries) LimitMe(ctx context.Context, limit int32) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, limitMe, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar bar bool\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/stdlib/query.sql",
    "content": "-- name: LimitMe :many\nSELECT bar FROM foo LIMIT $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/limit/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar string\n\tBat string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst lower = `-- name: Lower :many\nSELECT bar FROM foo WHERE bar = $1 AND LOWER(bat) = $2\n`\n\ntype LowerParams struct {\n\tBar string\n\tBat string\n}\n\nfunc (q *Queries) Lower(ctx context.Context, arg LowerParams) ([]string, error) {\n\trows, err := q.db.Query(ctx, lower, arg.Bar, arg.Bat)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/pgx/v4/query.sql",
    "content": "-- name: Lower :many\nSELECT bar FROM foo WHERE bar = $1 AND LOWER(bat) = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text not null, bat text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar string\n\tBat string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst lower = `-- name: Lower :many\nSELECT bar FROM foo WHERE bar = $1 AND LOWER(bat) = $2\n`\n\ntype LowerParams struct {\n\tBar string\n\tBat string\n}\n\nfunc (q *Queries) Lower(ctx context.Context, arg LowerParams) ([]string, error) {\n\trows, err := q.db.Query(ctx, lower, arg.Bar, arg.Bat)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/pgx/v5/query.sql",
    "content": "-- name: Lower :many\nSELECT bar FROM foo WHERE bar = $1 AND LOWER(bat) = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text not null, bat text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar string\n\tBat string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst lower = `-- name: Lower :many\nSELECT bar FROM foo WHERE bar = $1 AND LOWER(bat) = $2\n`\n\ntype LowerParams struct {\n\tBar string\n\tBat string\n}\n\nfunc (q *Queries) Lower(ctx context.Context, arg LowerParams) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, lower, arg.Bar, arg.Bat)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/stdlib/query.sql",
    "content": "-- name: Lower :many\nSELECT bar FROM foo WHERE bar = $1 AND LOWER(bat) = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text not null, bat text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/lower/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar string\n\tBat string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst lowerSwitchedOrder = `-- name: LowerSwitchedOrder :many\nSELECT bar FROM foo WHERE bar = $1 AND bat = LOWER($2)\n`\n\ntype LowerSwitchedOrderParams struct {\n\tBar   string\n\tLower string\n}\n\nfunc (q *Queries) LowerSwitchedOrder(ctx context.Context, arg LowerSwitchedOrderParams) ([]string, error) {\n\trows, err := q.db.Query(ctx, lowerSwitchedOrder, arg.Bar, arg.Lower)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/pgx/v4/query.sql",
    "content": "-- name: LowerSwitchedOrder :many\nSELECT bar FROM foo WHERE bar = $1 AND bat = LOWER($2);\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text not null, bat text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar string\n\tBat string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst lowerSwitchedOrder = `-- name: LowerSwitchedOrder :many\nSELECT bar FROM foo WHERE bar = $1 AND bat = LOWER($2)\n`\n\ntype LowerSwitchedOrderParams struct {\n\tBar   string\n\tLower string\n}\n\nfunc (q *Queries) LowerSwitchedOrder(ctx context.Context, arg LowerSwitchedOrderParams) ([]string, error) {\n\trows, err := q.db.Query(ctx, lowerSwitchedOrder, arg.Bar, arg.Lower)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/pgx/v5/query.sql",
    "content": "-- name: LowerSwitchedOrder :many\nSELECT bar FROM foo WHERE bar = $1 AND bat = LOWER($2);\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text not null, bat text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar string\n\tBat string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst lowerSwitchedOrder = `-- name: LowerSwitchedOrder :many\nSELECT bar FROM foo WHERE bar = $1 AND bat = LOWER($2)\n`\n\ntype LowerSwitchedOrderParams struct {\n\tBar   string\n\tLower string\n}\n\nfunc (q *Queries) LowerSwitchedOrder(ctx context.Context, arg LowerSwitchedOrderParams) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, lowerSwitchedOrder, arg.Bar, arg.Lower)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/stdlib/query.sql",
    "content": "-- name: LowerSwitchedOrder :many\nSELECT bar FROM foo WHERE bar = $1 AND bat = LOWER($2);\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text not null, bat text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/lower_switched_order/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID     int64\n\tName   string\n\tBio    sql.NullString\n\tGender sql.NullInt32\n}\n\ntype AuthorsName struct {\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio, gender FROM authors\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.Query(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.Bio,\n\t\t\t&i.Gender,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/pgx/v4/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT * FROM authors;\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE authors (\n    id   BIGSERIAL PRIMARY KEY,\n    name TEXT NOT NULL,\n    bio  TEXT\n);\n\nALTER TABLE authors ADD COLUMN gender INTEGER NULL;\n\nCREATE MATERIALIZED VIEW authors_names as SELECT name from authors;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID     int64\n\tName   string\n\tBio    pgtype.Text\n\tGender pgtype.Int4\n}\n\ntype AuthorsName struct {\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio, gender FROM authors\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.Query(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.Bio,\n\t\t\t&i.Gender,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/pgx/v5/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT * FROM authors;\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE authors (\n    id   BIGSERIAL PRIMARY KEY,\n    name TEXT NOT NULL,\n    bio  TEXT\n);\n\nALTER TABLE authors ADD COLUMN gender INTEGER NULL;\n\nCREATE MATERIALIZED VIEW authors_names as SELECT name from authors;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID     int64\n\tName   string\n\tBio    sql.NullString\n\tGender sql.NullInt32\n}\n\ntype AuthorsName struct {\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio, gender FROM authors\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.Bio,\n\t\t\t&i.Gender,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/stdlib/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT * FROM authors;\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE authors (\n    id   BIGSERIAL PRIMARY KEY,\n    name TEXT NOT NULL,\n    bio  TEXT\n);\n\nALTER TABLE authors ADD COLUMN gender INTEGER NULL;\n\nCREATE MATERIALIZED VIEW authors_names as SELECT name from authors;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/materialized_views/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tNum int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst math = `-- name: Math :many\nSELECT num, num / 1024 as division FROM foo\n`\n\ntype MathRow struct {\n\tNum      int32\n\tDivision int32\n}\n\nfunc (q *Queries) Math(ctx context.Context) ([]MathRow, error) {\n\trows, err := q.db.Query(ctx, math)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []MathRow\n\tfor rows.Next() {\n\t\tvar i MathRow\n\t\tif err := rows.Scan(&i.Num, &i.Division); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/pgx/v4/query.sql",
    "content": "-- name: Math :many\nSELECT *, num / 1024 as division FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (num integer not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tNum int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst math = `-- name: Math :many\nSELECT num, num / 1024 as division FROM foo\n`\n\ntype MathRow struct {\n\tNum      int32\n\tDivision int32\n}\n\nfunc (q *Queries) Math(ctx context.Context) ([]MathRow, error) {\n\trows, err := q.db.Query(ctx, math)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []MathRow\n\tfor rows.Next() {\n\t\tvar i MathRow\n\t\tif err := rows.Scan(&i.Num, &i.Division); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/pgx/v5/query.sql",
    "content": "-- name: Math :many\nSELECT *, num / 1024 as division FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (num integer not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tNum int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst math = `-- name: Math :many\nSELECT num, num / 1024 as division FROM foo\n`\n\ntype MathRow struct {\n\tNum      int32\n\tDivision int32\n}\n\nfunc (q *Queries) Math(ctx context.Context) ([]MathRow, error) {\n\trows, err := q.db.QueryContext(ctx, math)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []MathRow\n\tfor rows.Next() {\n\t\tvar i MathRow\n\t\tif err := rows.Scan(&i.Num, &i.Division); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/stdlib/query.sql",
    "content": "-- name: Math :many\nSELECT *, num / 1024 as division FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/stdlib/schema.sql",
    "content": "CREATE TABLE foo (num integer not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/mathmatical_operator/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/min_max_date/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1574\n"
  },
  {
    "path": "internal/endtoend/testdata/min_max_date/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/min_max_date/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/min_max_date/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Activity struct {\n\tAccountID int64\n\tEventTime pgtype.Timestamptz\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/min_max_date/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst activityStats = `-- name: ActivityStats :one\nSELECT COUNT(*) as NumOfActivities,\n        MIN(event_time) as MinDate, \n        MAX(event_time) as MaxDate \nFROM activities \nWHERE account_id = $1\n`\n\ntype ActivityStatsRow struct {\n\tNumofactivities int64\n\tMindate         pgtype.Timestamptz\n\tMaxdate         pgtype.Timestamptz\n}\n\nfunc (q *Queries) ActivityStats(ctx context.Context, accountID int64) (ActivityStatsRow, error) {\n\trow := q.db.QueryRow(ctx, activityStats, accountID)\n\tvar i ActivityStatsRow\n\terr := row.Scan(&i.Numofactivities, &i.Mindate, &i.Maxdate)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/min_max_date/postgresql/pgx/query.sql",
    "content": "-- name: ActivityStats :one\nSELECT COUNT(*) as NumOfActivities,\n        MIN(event_time) as MinDate, \n        MAX(event_time) as MaxDate \nFROM activities \nWHERE account_id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/min_max_date/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE activities (\n    account_id BIGINT NOT NULL,\n    event_time TIMESTAMP WITH TIME ZONE NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/min_max_date/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int32\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst setAuthor = `-- name: SetAuthor :exec\nUPDATE  authors\nSET     name = ?\nWHERE   id = ?\n`\n\ntype SetAuthorParams struct {\n\tName string\n\tID   int32\n}\n\nfunc (q *Queries) SetAuthor(ctx context.Context, arg SetAuthorParams) error {\n\t_, err := q.db.ExecContext(ctx, setAuthor, arg.Name, arg.ID)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/mysql/query.sql",
    "content": "-- name: SetAuthor :exec\nUPDATE  authors\nSET     name = ?\nWHERE   id = ?\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/mysql/schema.sql",
    "content": "-- https://github.com/sqlc-dev/sqlc/issues/1198\nCREATE TABLE authors (\n  id   INT PRIMARY KEY,\n  name VARCHAR(255) NOT NULL,\n  bio  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/pgx/v4/query.sql",
    "content": "-- name: FirstQuery :many\nSELECT * FROM foo;\n\n-- name: SecondQuery :many\nSELECT * FROM foo WHERE email = $1\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (email text not null);\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/pgx/v4/stderr.txt",
    "content": "# package querytest\nquery.sql:5:1: missing semicolon at end of file\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/pgx/v5/query.sql",
    "content": "-- name: FirstQuery :many\nSELECT * FROM foo;\n\n-- name: SecondQuery :many\nSELECT * FROM foo WHERE email = $1\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (email text not null);"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/pgx/v5/stderr.txt",
    "content": "# package querytest\nquery.sql:5:1: missing semicolon at end of file\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/stdlib/query.sql",
    "content": "-- name: FirstQuery :many\nSELECT * FROM foo;\n\n-- name: SecondQuery :many\nSELECT * FROM foo WHERE email = $1\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/stdlib/schema.sql",
    "content": "CREATE TABLE foo (email text not null);"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/missing_semicolon/stdlib/stderr.txt",
    "content": "# package querytest\nquery.sql:5:1: missing semicolon at end of file\n"
  },
  {
    "path": "internal/endtoend/testdata/mix_param_types/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mix_param_types/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID    uint64\n\tName  string\n\tPhone string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mix_param_types/mysql/go/test.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: test.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst countOne = `-- name: CountOne :one\nSELECT count(1) FROM bar WHERE id = ? AND name <> ?\n`\n\ntype CountOneParams struct {\n\tID   uint64\n\tName string\n}\n\nfunc (q *Queries) CountOne(ctx context.Context, arg CountOneParams) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, countOne, arg.ID, arg.Name)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n\nconst countThree = `-- name: CountThree :one\nSELECT count(1) FROM bar WHERE id > ? AND phone <> ? AND name <> ?\n`\n\ntype CountThreeParams struct {\n\tID    uint64\n\tPhone string\n\tName  string\n}\n\nfunc (q *Queries) CountThree(ctx context.Context, arg CountThreeParams) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, countThree, arg.ID, arg.Phone, arg.Name)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n\nconst countTwo = `-- name: CountTwo :one\nSELECT count(1) FROM bar WHERE id = ? AND name <> ?\n`\n\ntype CountTwoParams struct {\n\tID   uint64\n\tName string\n}\n\nfunc (q *Queries) CountTwo(ctx context.Context, arg CountTwoParams) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, countTwo, arg.ID, arg.Name)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mix_param_types/mysql/schema.sql",
    "content": "CREATE TABLE bar (\n       id serial not null,\n       name text not null,\n       phone text not null\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/mix_param_types/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"test.sql\",\n      \"engine\": \"mysql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mix_param_types/mysql/test.sql",
    "content": "-- name: CountOne :one\nSELECT count(1) FROM bar WHERE id = sqlc.arg(id) AND name <> ?; \n\n-- name: CountTwo :one\nSELECT count(1) FROM bar WHERE id = ? AND name <> sqlc.arg(name);\n\n-- name: CountThree :one\nSELECT count(1) FROM bar WHERE id > ? AND phone <> sqlc.arg(phone) AND name <> ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/mix_param_types/postgresql/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mix_param_types/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mix_param_types/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID    int32\n\tName  string\n\tPhone string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mix_param_types/postgresql/go/test.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: test.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst countOne = `-- name: CountOne :one\nSELECT count(1) FROM bar WHERE id = $2 AND name <> $1 LIMIT $3\n`\n\ntype CountOneParams struct {\n\tName  string\n\tID    int32\n\tLimit int32\n}\n\nfunc (q *Queries) CountOne(ctx context.Context, arg CountOneParams) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, countOne, arg.Name, arg.ID, arg.Limit)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n\nconst countThree = `-- name: CountThree :one\nSELECT count(1) FROM bar WHERE id > $2 AND phone <> $3 AND name <> $1\n`\n\ntype CountThreeParams struct {\n\tName  string\n\tID    int32\n\tPhone string\n}\n\nfunc (q *Queries) CountThree(ctx context.Context, arg CountThreeParams) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, countThree, arg.Name, arg.ID, arg.Phone)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n\nconst countTwo = `-- name: CountTwo :one\nSELECT count(1) FROM bar WHERE id = $1 AND name <> $2\n`\n\ntype CountTwoParams struct {\n\tID   int32\n\tName string\n}\n\nfunc (q *Queries) CountTwo(ctx context.Context, arg CountTwoParams) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, countTwo, arg.ID, arg.Name)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mix_param_types/postgresql/schema.sql",
    "content": "CREATE TABLE bar (\n       id serial not null,\n       name text not null,\n       phone text not null\n);"
  },
  {
    "path": "internal/endtoend/testdata/mix_param_types/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"test.sql\",\n      \"engine\": \"postgresql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mix_param_types/postgresql/test.sql",
    "content": "-- name: CountOne :one\nSELECT count(1) FROM bar WHERE id = sqlc.arg(id) AND name <> $1 LIMIT sqlc.arg('limit');\n\n-- name: CountTwo :one\nSELECT count(1) FROM bar WHERE id = $1 AND name <> sqlc.arg(name);\n\n-- name: CountThree :one\nSELECT count(1) FROM bar WHERE id > $2 AND phone <> sqlc.arg(phone) AND name <> $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tTags [][]string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst textArray = `-- name: TextArray :many\nSELECT tags FROM bar\n`\n\nfunc (q *Queries) TextArray(ctx context.Context) ([][][]string, error) {\n\trows, err := q.db.Query(ctx, textArray)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items [][][]string\n\tfor rows.Next() {\n\t\tvar tags [][]string\n\t\tif err := rows.Scan(&tags); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, tags)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/pgx/v4/query.sql",
    "content": "-- name: TextArray :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (tags text[][] not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tTags [][]string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst textArray = `-- name: TextArray :many\nSELECT tags FROM bar\n`\n\nfunc (q *Queries) TextArray(ctx context.Context) ([][][]string, error) {\n\trows, err := q.db.Query(ctx, textArray)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items [][][]string\n\tfor rows.Next() {\n\t\tvar tags [][]string\n\t\tif err := rows.Scan(&tags); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, tags)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/pgx/v5/query.sql",
    "content": "-- name: TextArray :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (tags text[][] not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tTags [][]string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/lib/pq\"\n)\n\nconst textArray = `-- name: TextArray :many\nSELECT tags FROM bar\n`\n\nfunc (q *Queries) TextArray(ctx context.Context) ([][][]string, error) {\n\trows, err := q.db.QueryContext(ctx, textArray)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items [][][]string\n\tfor rows.Next() {\n\t\tvar tags [][]string\n\t\tif err := rows.Scan(pq.Array(&tags)); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, tags)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/stdlib/query.sql",
    "content": "-- name: TextArray :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/stdlib/schema.sql",
    "content": "CREATE TABLE bar (tags text[][] not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/multidimension_array/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID int32\n}\n\ntype Foo struct {\n\tID  int32\n\tBar sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT id FROM bar\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT id, bar FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.ID, &i.Bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/pgx/v4/query.sql",
    "content": "CREATE TABLE bar (id serial not null);\nCREATE TABLE foo (id serial not null, bar serial);\n\n-- name: ListBar :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/pgx/v4/sql/ignore.txt",
    "content": "Hello!\n\nThis file should be ignored\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/pgx/v4/sql/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": [\n        \"query.sql\",\n        \"sql\"\n      ],\n      \"queries\": [\n        \"query.sql\",\n        \"sql\"\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Bar struct {\n\tID int32\n}\n\ntype Foo struct {\n\tID  int32\n\tBar pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT id FROM bar\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT id, bar FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.ID, &i.Bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/pgx/v5/query.sql",
    "content": "CREATE TABLE bar (id serial not null);\nCREATE TABLE foo (id serial not null, bar serial);\n\n-- name: ListBar :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/pgx/v5/sql/ignore.txt",
    "content": "Hello!\n\nThis file should be ignored\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/pgx/v5/sql/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": [\n        \"query.sql\",\n        \"sql\"\n      ],\n      \"queries\": [\n        \"query.sql\",\n        \"sql\"\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID int32\n}\n\ntype Foo struct {\n\tID  int32\n\tBar sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT id FROM bar\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT id, bar FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.ID, &i.Bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/stdlib/query.sql",
    "content": "CREATE TABLE bar (id serial not null);\nCREATE TABLE foo (id serial not null, bar serial);\n\n-- name: ListBar :many\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/stdlib/sql/ignore.txt",
    "content": "Hello!\n\nThis file should be ignored\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/stdlib/sql/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/multischema/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": [\n        \"query.sql\",\n        \"sql\"\n      ],\n      \"queries\": [\n        \"query.sql\",\n        \"sql\"\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_default_value/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_default_value/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Author struct {\n\tID          int32\n\tName        string\n\tBio         string\n\tExplanation string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_default_value/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectAuthor = `-- name: SelectAuthor :many\nSELECT id, name, bio, explanation FROM authors\n`\n\nfunc (q *Queries) SelectAuthor(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, selectAuthor)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.Bio,\n\t\t\t&i.Explanation,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_default_value/mysql/query.sql",
    "content": "-- name: SelectAuthor :many\nSELECT * FROM authors;\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_default_value/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n  id   INT  PRIMARY KEY,\n  name text NOT NULL,\n  bio  text NOT NULL\n);\n\nALTER TABLE authors ADD COLUMN explanation text NOT NULL DEFAULT ('');\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_default_value/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"sql_package\": \"database/sql\",\n      \"sql_driver\": \"github.com/go-sql-driver/mysql\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_reference_manual/README.md",
    "content": "All queries and examples in this directory come from the [MySQL Reference\nManual](https://dev.mysql.com/doc/refman/8.0/en/).\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_reference_manual/aggregate_functions/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage aggregate_functions\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_reference_manual/aggregate_functions/go/group_concat.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: group_concat.sql\n\npackage aggregate_functions\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst groupConcat = `-- name: GroupConcat :many\nSELECT student_name, GROUP_CONCAT(test_score)\nFROM student\nGROUP BY student_name\n`\n\ntype GroupConcatRow struct {\n\tStudentName sql.NullString\n\tGroupConcat sql.NullString\n}\n\nfunc (q *Queries) GroupConcat(ctx context.Context) ([]GroupConcatRow, error) {\n\trows, err := q.db.QueryContext(ctx, groupConcat)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GroupConcatRow\n\tfor rows.Next() {\n\t\tvar i GroupConcatRow\n\t\tif err := rows.Scan(&i.StudentName, &i.GroupConcat); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst groupConcatOrderBy = `-- name: GroupConcatOrderBy :many\nSELECT student_name,\n    GROUP_CONCAT(DISTINCT test_score ORDER BY test_score DESC SEPARATOR ' ')\nFROM student\nGROUP BY student_name\n`\n\ntype GroupConcatOrderByRow struct {\n\tStudentName sql.NullString\n\tGroupConcat sql.NullString\n}\n\nfunc (q *Queries) GroupConcatOrderBy(ctx context.Context) ([]GroupConcatOrderByRow, error) {\n\trows, err := q.db.QueryContext(ctx, groupConcatOrderBy)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GroupConcatOrderByRow\n\tfor rows.Next() {\n\t\tvar i GroupConcatOrderByRow\n\t\tif err := rows.Scan(&i.StudentName, &i.GroupConcat); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_reference_manual/aggregate_functions/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage aggregate_functions\n\nimport (\n\t\"database/sql\"\n)\n\ntype Student struct {\n\tStudentName sql.NullString\n\tTestScore   sql.NullFloat64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_reference_manual/aggregate_functions/group_concat.sql",
    "content": "-- name: GroupConcat :many\nSELECT student_name, GROUP_CONCAT(test_score)\nFROM student\nGROUP BY student_name;\n\n-- name: GroupConcatOrderBy :many\nSELECT student_name,\n    GROUP_CONCAT(DISTINCT test_score ORDER BY test_score DESC SEPARATOR ' ')\nFROM student\nGROUP BY student_name;\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_reference_manual/date_and_time_functions/date_add.sql",
    "content": "-- https://dev.mysql.com/doc/refman/8.0/en/date-and-time-functions.html#function_date-add\n\n-- name: DateAddOneDay :one\nSELECT DATE_ADD('2018-05-01',INTERVAL 1 DAY);\n\n-- name: DateAddOneSecond :one\nSELECT DATE_ADD('2020-12-31 23:59:59',\n                INTERVAL 1 SECOND);\n\n-- name: DateAddTimestampOneSecond :one\nSELECT DATE_ADD('2018-12-31 23:59:59',\n                INTERVAL 1 DAY);\n\n-- name: DateAddMinuteSecond :one\nSELECT DATE_ADD('2100-12-31 23:59:59',\n                INTERVAL '1:1' MINUTE_SECOND);\n\n-- name: DateAddDayHour :one\nSELECT DATE_ADD('1900-01-01 00:00:00',\n                INTERVAL '-1 10' DAY_HOUR);\n\n-- name: DateAddSecondMicrosecond :one\nSELECT DATE_ADD('1992-12-31 23:59:59.000002',\n           INTERVAL '1.999999' SECOND_MICROSECOND);\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_reference_manual/date_and_time_functions/date_sub.sql",
    "content": "-- name: DateSubOneYear :one\nSELECT DATE_SUB('2018-05-01',INTERVAL 1 YEAR);\n\n-- name: DateSubDaySecond :one\nSELECT DATE_SUB('2025-01-01 00:00:00',\n                INTERVAL '1 1:1:1' DAY_SECOND);\n\n-- name: DateSub31Days :one\nSELECT DATE_SUB('1998-01-02', INTERVAL 31 DAY);\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_reference_manual/date_and_time_functions/go/date_add.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: date_add.sql\n\npackage date_and_time_functions\n\nimport (\n\t\"context\"\n\t\"time\"\n)\n\nconst dateAddDayHour = `-- name: DateAddDayHour :one\nSELECT DATE_ADD('1900-01-01 00:00:00',\n                INTERVAL '-1 10' DAY_HOUR)\n`\n\nfunc (q *Queries) DateAddDayHour(ctx context.Context) (time.Time, error) {\n\trow := q.db.QueryRowContext(ctx, dateAddDayHour)\n\tvar date_add time.Time\n\terr := row.Scan(&date_add)\n\treturn date_add, err\n}\n\nconst dateAddMinuteSecond = `-- name: DateAddMinuteSecond :one\nSELECT DATE_ADD('2100-12-31 23:59:59',\n                INTERVAL '1:1' MINUTE_SECOND)\n`\n\nfunc (q *Queries) DateAddMinuteSecond(ctx context.Context) (time.Time, error) {\n\trow := q.db.QueryRowContext(ctx, dateAddMinuteSecond)\n\tvar date_add time.Time\n\terr := row.Scan(&date_add)\n\treturn date_add, err\n}\n\nconst dateAddOneDay = `-- name: DateAddOneDay :one\n\nSELECT DATE_ADD('2018-05-01',INTERVAL 1 DAY)\n`\n\n// https://dev.mysql.com/doc/refman/8.0/en/date-and-time-functions.html#function_date-add\nfunc (q *Queries) DateAddOneDay(ctx context.Context) (time.Time, error) {\n\trow := q.db.QueryRowContext(ctx, dateAddOneDay)\n\tvar date_add time.Time\n\terr := row.Scan(&date_add)\n\treturn date_add, err\n}\n\nconst dateAddOneSecond = `-- name: DateAddOneSecond :one\nSELECT DATE_ADD('2020-12-31 23:59:59',\n                INTERVAL 1 SECOND)\n`\n\nfunc (q *Queries) DateAddOneSecond(ctx context.Context) (time.Time, error) {\n\trow := q.db.QueryRowContext(ctx, dateAddOneSecond)\n\tvar date_add time.Time\n\terr := row.Scan(&date_add)\n\treturn date_add, err\n}\n\nconst dateAddSecondMicrosecond = `-- name: DateAddSecondMicrosecond :one\nSELECT DATE_ADD('1992-12-31 23:59:59.000002',\n           INTERVAL '1.999999' SECOND_MICROSECOND)\n`\n\nfunc (q *Queries) DateAddSecondMicrosecond(ctx context.Context) (time.Time, error) {\n\trow := q.db.QueryRowContext(ctx, dateAddSecondMicrosecond)\n\tvar date_add time.Time\n\terr := row.Scan(&date_add)\n\treturn date_add, err\n}\n\nconst dateAddTimestampOneSecond = `-- name: DateAddTimestampOneSecond :one\nSELECT DATE_ADD('2018-12-31 23:59:59',\n                INTERVAL 1 DAY)\n`\n\nfunc (q *Queries) DateAddTimestampOneSecond(ctx context.Context) (time.Time, error) {\n\trow := q.db.QueryRowContext(ctx, dateAddTimestampOneSecond)\n\tvar date_add time.Time\n\terr := row.Scan(&date_add)\n\treturn date_add, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_reference_manual/date_and_time_functions/go/date_sub.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: date_sub.sql\n\npackage date_and_time_functions\n\nimport (\n\t\"context\"\n\t\"time\"\n)\n\nconst dateSub31Days = `-- name: DateSub31Days :one\nSELECT DATE_SUB('1998-01-02', INTERVAL 31 DAY)\n`\n\nfunc (q *Queries) DateSub31Days(ctx context.Context) (time.Time, error) {\n\trow := q.db.QueryRowContext(ctx, dateSub31Days)\n\tvar date_sub time.Time\n\terr := row.Scan(&date_sub)\n\treturn date_sub, err\n}\n\nconst dateSubDaySecond = `-- name: DateSubDaySecond :one\nSELECT DATE_SUB('2025-01-01 00:00:00',\n                INTERVAL '1 1:1:1' DAY_SECOND)\n`\n\nfunc (q *Queries) DateSubDaySecond(ctx context.Context) (time.Time, error) {\n\trow := q.db.QueryRowContext(ctx, dateSubDaySecond)\n\tvar date_sub time.Time\n\terr := row.Scan(&date_sub)\n\treturn date_sub, err\n}\n\nconst dateSubOneYear = `-- name: DateSubOneYear :one\nSELECT DATE_SUB('2018-05-01',INTERVAL 1 YEAR)\n`\n\nfunc (q *Queries) DateSubOneYear(ctx context.Context) (time.Time, error) {\n\trow := q.db.QueryRowContext(ctx, dateSubOneYear)\n\tvar date_sub time.Time\n\terr := row.Scan(&date_sub)\n\treturn date_sub, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_reference_manual/date_and_time_functions/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage date_and_time_functions\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_reference_manual/date_and_time_functions/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage date_and_time_functions\n\nimport (\n\t\"database/sql\"\n)\n\ntype Student struct {\n\tStudentName sql.NullString\n\tTestScore   sql.NullFloat64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_reference_manual/schema.sql",
    "content": "CREATE TABLE student (\n    student_name VARCHAR(255),\n    test_score DOUBLE\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_reference_manual/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"date_and_time_functions\",\n      \"path\": \"date_and_time_functions/go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"date_and_time_functions\",\n      \"engine\": \"mysql\"\n    },\n    {\n      \"name\": \"aggregate_functions\",\n      \"path\": \"aggregate_functions/go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"aggregate_functions\",\n      \"engine\": \"mysql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_vector/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_vector/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID        int32\n\tEmbedding interface{}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_vector/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst insertVector = `-- name: InsertVector :exec\nINSERT INTO foo(embedding) VALUES (STRING_TO_VECTOR('[0.1, 0.2, 0.3, 0.4]'))\n`\n\nfunc (q *Queries) InsertVector(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, insertVector)\n\treturn err\n}\n\nconst selectVector = `-- name: SelectVector :many\nSELECT id FROM foo\nORDER BY DISTANCE(STRING_TO_VECTOR('[1.2, 3.4, 5.6]'), embedding, 'L2_squared')\nLIMIT 10\n`\n\nfunc (q *Queries) SelectVector(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, selectVector)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_vector/mysql/query.sql",
    "content": "-- name: InsertVector :exec\nINSERT INTO foo(embedding) VALUES (STRING_TO_VECTOR('[0.1, 0.2, 0.3, 0.4]'));\n\n-- name: SelectVector :many\nSELECT id FROM foo\nORDER BY DISTANCE(STRING_TO_VECTOR('[1.2, 3.4, 5.6]'), embedding, 'L2_squared')\nLIMIT 10;\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_vector/mysql/schema.sql",
    "content": "CREATE TABLE foo(\n    id INT PRIMARY KEY auto_increment,\n    embedding VECTOR(4)\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/mysql_vector/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"sql_package\": \"database/sql\",\n      \"sql_driver\": \"github.com/go-sql-driver/mysql\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n\tBio  string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst atParams = `-- name: AtParams :many\nSELECT name FROM foo WHERE name = $1 AND $2::bool\n`\n\ntype AtParamsParams struct {\n\tSlug   string\n\tFilter bool\n}\n\nfunc (q *Queries) AtParams(ctx context.Context, arg AtParamsParams) ([]string, error) {\n\trows, err := q.db.Query(ctx, atParams, arg.Slug, arg.Filter)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParams = `-- name: FuncParams :many\nSELECT name FROM foo WHERE name = $1 AND $2::bool\n`\n\ntype FuncParamsParams struct {\n\tSlug   string\n\tFilter bool\n}\n\nfunc (q *Queries) FuncParams(ctx context.Context, arg FuncParamsParams) ([]string, error) {\n\trows, err := q.db.Query(ctx, funcParams, arg.Slug, arg.Filter)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst insertAtParams = `-- name: InsertAtParams :one\nINSERT INTO foo(name, bio) values ($1, $2) returning name\n`\n\ntype InsertAtParamsParams struct {\n\tName string\n\tBio  string\n}\n\nfunc (q *Queries) InsertAtParams(ctx context.Context, arg InsertAtParamsParams) (string, error) {\n\trow := q.db.QueryRow(ctx, insertAtParams, arg.Name, arg.Bio)\n\tvar name string\n\terr := row.Scan(&name)\n\treturn name, err\n}\n\nconst insertFuncParams = `-- name: InsertFuncParams :one\nINSERT INTO foo(name, bio) values ($1, $2) returning name\n`\n\ntype InsertFuncParamsParams struct {\n\tName string\n\tBio  string\n}\n\nfunc (q *Queries) InsertFuncParams(ctx context.Context, arg InsertFuncParamsParams) (string, error) {\n\trow := q.db.QueryRow(ctx, insertFuncParams, arg.Name, arg.Bio)\n\tvar name string\n\terr := row.Scan(&name)\n\treturn name, err\n}\n\nconst update = `-- name: Update :one\nUPDATE foo\nSET\n  name = CASE WHEN $1::bool\n    THEN $2::text\n    ELSE name\n    END\nRETURNING name, bio\n`\n\ntype UpdateParams struct {\n\tSetName bool\n\tName    string\n}\n\nfunc (q *Queries) Update(ctx context.Context, arg UpdateParams) (Foo, error) {\n\trow := q.db.QueryRow(ctx, update, arg.SetName, arg.Name)\n\tvar i Foo\n\terr := row.Scan(&i.Name, &i.Bio)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/pgx/v4/query.sql",
    "content": "-- name: FuncParams :many\nSELECT name FROM foo WHERE name = sqlc.arg('slug') AND sqlc.arg(filter)::bool;\n\n-- name: AtParams :many\nSELECT name FROM foo WHERE name = @slug AND @filter::bool;\n\n-- name: InsertFuncParams :one\nINSERT INTO foo(name, bio) values (sqlc.arg('name'), sqlc.arg('bio')) returning name;\n\n-- name: InsertAtParams :one\nINSERT INTO foo(name, bio) values (@name, @bio) returning name;\n\n\n-- name: Update :one\nUPDATE foo\nSET\n  name = CASE WHEN @set_name::bool\n    THEN @name::text\n    ELSE name\n    END\nRETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (name text not null, bio text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n\tBio  string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst atParams = `-- name: AtParams :many\nSELECT name FROM foo WHERE name = $1 AND $2::bool\n`\n\ntype AtParamsParams struct {\n\tSlug   string\n\tFilter bool\n}\n\nfunc (q *Queries) AtParams(ctx context.Context, arg AtParamsParams) ([]string, error) {\n\trows, err := q.db.Query(ctx, atParams, arg.Slug, arg.Filter)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParams = `-- name: FuncParams :many\nSELECT name FROM foo WHERE name = $1 AND $2::bool\n`\n\ntype FuncParamsParams struct {\n\tSlug   string\n\tFilter bool\n}\n\nfunc (q *Queries) FuncParams(ctx context.Context, arg FuncParamsParams) ([]string, error) {\n\trows, err := q.db.Query(ctx, funcParams, arg.Slug, arg.Filter)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst insertAtParams = `-- name: InsertAtParams :one\nINSERT INTO foo(name, bio) values ($1, $2) returning name\n`\n\ntype InsertAtParamsParams struct {\n\tName string\n\tBio  string\n}\n\nfunc (q *Queries) InsertAtParams(ctx context.Context, arg InsertAtParamsParams) (string, error) {\n\trow := q.db.QueryRow(ctx, insertAtParams, arg.Name, arg.Bio)\n\tvar name string\n\terr := row.Scan(&name)\n\treturn name, err\n}\n\nconst insertFuncParams = `-- name: InsertFuncParams :one\nINSERT INTO foo(name, bio) values ($1, $2) returning name\n`\n\ntype InsertFuncParamsParams struct {\n\tName string\n\tBio  string\n}\n\nfunc (q *Queries) InsertFuncParams(ctx context.Context, arg InsertFuncParamsParams) (string, error) {\n\trow := q.db.QueryRow(ctx, insertFuncParams, arg.Name, arg.Bio)\n\tvar name string\n\terr := row.Scan(&name)\n\treturn name, err\n}\n\nconst update = `-- name: Update :one\nUPDATE foo\nSET\n  name = CASE WHEN $1::bool\n    THEN $2::text\n    ELSE name\n    END\nRETURNING name, bio\n`\n\ntype UpdateParams struct {\n\tSetName bool\n\tName    string\n}\n\nfunc (q *Queries) Update(ctx context.Context, arg UpdateParams) (Foo, error) {\n\trow := q.db.QueryRow(ctx, update, arg.SetName, arg.Name)\n\tvar i Foo\n\terr := row.Scan(&i.Name, &i.Bio)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/pgx/v5/query.sql",
    "content": "-- name: FuncParams :many\nSELECT name FROM foo WHERE name = sqlc.arg('slug') AND sqlc.arg(filter)::bool;\n\n-- name: AtParams :many\nSELECT name FROM foo WHERE name = @slug AND @filter::bool;\n\n-- name: InsertFuncParams :one\nINSERT INTO foo(name, bio) values (sqlc.arg('name'), sqlc.arg('bio')) returning name;\n\n-- name: InsertAtParams :one\nINSERT INTO foo(name, bio) values (@name, @bio) returning name;\n\n\n-- name: Update :one\nUPDATE foo\nSET\n  name = CASE WHEN @set_name::bool\n    THEN @name::text\n    ELSE name\n    END\nRETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (name text not null, bio text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n\tBio  string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst atParams = `-- name: AtParams :many\nSELECT name FROM foo WHERE name = ?1\n`\n\nfunc (q *Queries) AtParams(ctx context.Context, slug string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, atParams, slug)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParams = `-- name: FuncParams :many\nSELECT name FROM foo WHERE name = ?1\n`\n\nfunc (q *Queries) FuncParams(ctx context.Context, slug string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, funcParams, slug)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst insertAtParams = `-- name: InsertAtParams :one\nINSERT INTO foo(name, bio) values (?1, ?2) returning name\n`\n\ntype InsertAtParamsParams struct {\n\tName string\n\tBio  string\n}\n\nfunc (q *Queries) InsertAtParams(ctx context.Context, arg InsertAtParamsParams) (string, error) {\n\trow := q.db.QueryRowContext(ctx, insertAtParams, arg.Name, arg.Bio)\n\tvar name string\n\terr := row.Scan(&name)\n\treturn name, err\n}\n\nconst insertFuncParams = `-- name: InsertFuncParams :one\nINSERT INTO foo(name, bio) values (?1, ?2) returning name\n`\n\ntype InsertFuncParamsParams struct {\n\tName string\n\tBio  string\n}\n\nfunc (q *Queries) InsertFuncParams(ctx context.Context, arg InsertFuncParamsParams) (string, error) {\n\trow := q.db.QueryRowContext(ctx, insertFuncParams, arg.Name, arg.Bio)\n\tvar name string\n\terr := row.Scan(&name)\n\treturn name, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/sqlite/query.sql",
    "content": "-- name: FuncParams :many\nSELECT name FROM foo WHERE name = sqlc.arg('slug');\n\n-- name: AtParams :many\nSELECT name FROM foo WHERE name = @slug;\n\n-- name: InsertFuncParams :one\nINSERT INTO foo(name, bio) values (sqlc.arg('name'), sqlc.arg('bio')) returning name;\n\n-- name: InsertAtParams :one\nINSERT INTO foo(name, bio) values (@name, @bio) returning name;\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/sqlite/schema.sql",
    "content": "CREATE TABLE foo (name text not null, bio text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n\tBio  string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst atParams = `-- name: AtParams :many\nSELECT name FROM foo WHERE name = $1 AND $2::bool\n`\n\ntype AtParamsParams struct {\n\tSlug   string\n\tFilter bool\n}\n\nfunc (q *Queries) AtParams(ctx context.Context, arg AtParamsParams) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, atParams, arg.Slug, arg.Filter)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParams = `-- name: FuncParams :many\nSELECT name FROM foo WHERE name = $1 AND $2::bool\n`\n\ntype FuncParamsParams struct {\n\tSlug   string\n\tFilter bool\n}\n\nfunc (q *Queries) FuncParams(ctx context.Context, arg FuncParamsParams) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, funcParams, arg.Slug, arg.Filter)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst insertAtParams = `-- name: InsertAtParams :one\nINSERT INTO foo(name, bio) values ($1, $2) returning name\n`\n\ntype InsertAtParamsParams struct {\n\tName string\n\tBio  string\n}\n\nfunc (q *Queries) InsertAtParams(ctx context.Context, arg InsertAtParamsParams) (string, error) {\n\trow := q.db.QueryRowContext(ctx, insertAtParams, arg.Name, arg.Bio)\n\tvar name string\n\terr := row.Scan(&name)\n\treturn name, err\n}\n\nconst insertFuncParams = `-- name: InsertFuncParams :one\nINSERT INTO foo(name, bio) values ($1, $2) returning name\n`\n\ntype InsertFuncParamsParams struct {\n\tName string\n\tBio  string\n}\n\nfunc (q *Queries) InsertFuncParams(ctx context.Context, arg InsertFuncParamsParams) (string, error) {\n\trow := q.db.QueryRowContext(ctx, insertFuncParams, arg.Name, arg.Bio)\n\tvar name string\n\terr := row.Scan(&name)\n\treturn name, err\n}\n\nconst update = `-- name: Update :one\nUPDATE foo\nSET\n  name = CASE WHEN $1::bool\n    THEN $2::text\n    ELSE name\n    END\nRETURNING name, bio\n`\n\ntype UpdateParams struct {\n\tSetName bool\n\tName    string\n}\n\nfunc (q *Queries) Update(ctx context.Context, arg UpdateParams) (Foo, error) {\n\trow := q.db.QueryRowContext(ctx, update, arg.SetName, arg.Name)\n\tvar i Foo\n\terr := row.Scan(&i.Name, &i.Bio)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/stdlib/query.sql",
    "content": "-- name: FuncParams :many\nSELECT name FROM foo WHERE name = sqlc.arg('slug') AND sqlc.arg(filter)::bool;\n\n-- name: AtParams :many\nSELECT name FROM foo WHERE name = @slug AND @filter::bool;\n\n-- name: InsertFuncParams :one\nINSERT INTO foo(name, bio) values (sqlc.arg('name'), sqlc.arg('bio')) returning name;\n\n-- name: InsertAtParams :one\nINSERT INTO foo(name, bio) values (@name, @bio) returning name;\n\n\n-- name: Update :one\nUPDATE foo\nSET\n  name = CASE WHEN @set_name::bool\n    THEN @name::text\n    ELSE name\n    END\nRETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/stdlib/schema.sql",
    "content": "CREATE TABLE foo (name text not null, bio text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/named_param/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/nested_select/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/708\n"
  },
  {
    "path": "internal/endtoend/testdata/nested_select/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/nested_select/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/nested_select/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Test struct {\n\tID         int64\n\tUpdateTime int64\n\tCount      int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/nested_select/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst nestedSelect = `-- name: NestedSelect :one\nSELECT latest.id, t.count\nFROM (\n  SELECT id, max(update_time) AS update_time\n  FROM test\n  WHERE id = ANY ($1::bigint[])\n    -- ERROR HERE on update_time\n    AND update_time >= $2\n  GROUP BY id\n) latest\nINNER JOIN test t USING (id, update_time)\n`\n\ntype NestedSelectParams struct {\n\tIDs       []int64\n\tStartTime pgtype.Int8\n}\n\ntype NestedSelectRow struct {\n\tID    int64\n\tCount int64\n}\n\nfunc (q *Queries) NestedSelect(ctx context.Context, arg NestedSelectParams) (NestedSelectRow, error) {\n\trow := q.db.QueryRow(ctx, nestedSelect, arg.IDs, arg.StartTime)\n\tvar i NestedSelectRow\n\terr := row.Scan(&i.ID, &i.Count)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/nested_select/postgresql/pgx/query.sql",
    "content": "-- name: NestedSelect :one\nSELECT latest.id, t.count\nFROM (\n  SELECT id, max(update_time) AS update_time\n  FROM test\n  WHERE id = ANY (sqlc.arg('IDs')::bigint[])\n    -- ERROR HERE on update_time\n    AND update_time >= sqlc.arg('StartTime')\n  GROUP BY id\n) latest\nINNER JOIN test t USING (id, update_time);\n"
  },
  {
    "path": "internal/endtoend/testdata/nested_select/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE test (\n  id          bigint NOT NULL,\n  update_time bigint NOT NULL,\n  count       bigint NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/nested_select/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\ncloud:\n  project: \"01HAQMMECEYQYKFJN8MP16QC41\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n    database:\n      managed: true\n"
  },
  {
    "path": "internal/endtoend/testdata/nextval/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/nextval/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Author struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/nextval/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getNextID = `-- name: GetNextID :one\nSELECT pk, pk FROM\n (SELECT nextval('authors_id_seq') as pk) AS alias\n`\n\ntype GetNextIDRow struct {\n\tPk   int64\n\tPk_2 int64\n}\n\nfunc (q *Queries) GetNextID(ctx context.Context) (GetNextIDRow, error) {\n\trow := q.db.QueryRowContext(ctx, getNextID)\n\tvar i GetNextIDRow\n\terr := row.Scan(&i.Pk, &i.Pk_2)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/nextval/postgresql/query.sql",
    "content": "-- name: GetNextID :one\nSELECT pk, pk FROM\n (SELECT nextval('authors_id_seq') as pk) AS alias;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/nextval/postgresql/schema.sql",
    "content": "-- Simple table\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/nextval/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/notifylisten/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/notifylisten/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/notifylisten/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listenTest = `-- name: ListenTest :exec\nLISTEN test\n`\n\nfunc (q *Queries) ListenTest(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, listenTest)\n\treturn err\n}\n\nconst notifyTest = `-- name: NotifyTest :exec\nNOTIFY test\n`\n\nfunc (q *Queries) NotifyTest(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, notifyTest)\n\treturn err\n}\n\nconst notifyWithMessage = `-- name: NotifyWithMessage :exec\nNOTIFY test, 'msg'\n`\n\nfunc (q *Queries) NotifyWithMessage(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, notifyWithMessage)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/notifylisten/postgresql/pgx/v5/query.sql",
    "content": "-- name: NotifyTest :exec\nNOTIFY test;\n\n-- name: NotifyWithMessage :exec\nNOTIFY test, 'msg';\n\n-- name: ListenTest :exec\nLISTEN test;\n"
  },
  {
    "path": "internal/endtoend/testdata/notifylisten/postgresql/pgx/v5/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/notifylisten/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/null_if_type/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/133\n"
  },
  {
    "path": "internal/endtoend/testdata/null_if_type/postgresql/pganalyzer/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/null_if_type/postgresql/pganalyzer/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\ntype Author struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/null_if_type/postgresql/pganalyzer/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst getRestrictedId = `-- name: GetRestrictedId :one\nSELECT\n  NULLIF(id, $1) restricted_id\nFROM\n  author\n`\n\nfunc (q *Queries) GetRestrictedId(ctx context.Context, id int64) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getRestrictedId, id)\n\tvar restricted_id int64\n\terr := row.Scan(&restricted_id)\n\treturn restricted_id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/null_if_type/postgresql/pganalyzer/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/null_if_type/postgresql/pganalyzer/query.sql",
    "content": "-- name: GetRestrictedId :one\nSELECT\n  NULLIF(id, $1) restricted_id\nFROM\n  author;\n"
  },
  {
    "path": "internal/endtoend/testdata/null_if_type/postgresql/pganalyzer/schema.sql",
    "content": "CREATE TABLE author (\n  id bigserial NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/null_if_type/postgresql/pganalyzer/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"db\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n\n"
  },
  {
    "path": "internal/endtoend/testdata/null_if_type/postgresql/stdlib/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/null_if_type/postgresql/stdlib/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\ntype Author struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/null_if_type/postgresql/stdlib/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst getRestrictedId = `-- name: GetRestrictedId :one\nSELECT\n  NULLIF(id, $1) restricted_id\nFROM\n  author\n`\n\nfunc (q *Queries) GetRestrictedId(ctx context.Context, id int64) (bool, error) {\n\trow := q.db.QueryRowContext(ctx, getRestrictedId, id)\n\tvar restricted_id bool\n\terr := row.Scan(&restricted_id)\n\treturn restricted_id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/null_if_type/postgresql/stdlib/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/null_if_type/postgresql/stdlib/query.sql",
    "content": "-- name: GetRestrictedId :one\nSELECT\n  NULLIF(id, $1) restricted_id\nFROM\n  author;\n"
  },
  {
    "path": "internal/endtoend/testdata/null_if_type/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE author (\n  id bigserial NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/null_if_type/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"db\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n\n"
  },
  {
    "path": "internal/endtoend/testdata/omit_sqlc_version/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/omit_sqlc_version/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/omit_sqlc_version/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING id, name, bio\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, createAuthor, arg.Name, arg.Bio)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst deleteAuthor = `-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthor, id)\n\treturn err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio FROM authors\nORDER BY name\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/omit_sqlc_version/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/omit_sqlc_version/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/omit_sqlc_version/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [{\n    \"schema\": \"schema.sql\",\n    \"queries\": \"query.sql\",\n    \"engine\": \"postgresql\",\n    \"gen\": {\n      \"go\": {\n        \"out\": \"db\",\n        \"omit_sqlc_version\": true\n      }\n    }\n  }]\n}\n\n"
  },
  {
    "path": "internal/endtoend/testdata/omit_unused_structs/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/omit_unused_structs/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype ArrayEnum string\n\nconst (\n\tArrayEnumO ArrayEnum = \"o\"\n\tArrayEnumP ArrayEnum = \"p\"\n)\n\nfunc (e *ArrayEnum) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = ArrayEnum(s)\n\tcase string:\n\t\t*e = ArrayEnum(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for ArrayEnum: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullArrayEnum struct {\n\tArrayEnum ArrayEnum\n\tValid     bool // Valid is true if ArrayEnum is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullArrayEnum) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.ArrayEnum, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.ArrayEnum.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullArrayEnum) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.ArrayEnum), nil\n}\n\ntype QueryParamEnumTableEnum string\n\nconst (\n\tQueryParamEnumTableEnumG QueryParamEnumTableEnum = \"g\"\n\tQueryParamEnumTableEnumH QueryParamEnumTableEnum = \"h\"\n)\n\nfunc (e *QueryParamEnumTableEnum) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = QueryParamEnumTableEnum(s)\n\tcase string:\n\t\t*e = QueryParamEnumTableEnum(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for QueryParamEnumTableEnum: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullQueryParamEnumTableEnum struct {\n\tQueryParamEnumTableEnum QueryParamEnumTableEnum\n\tValid                   bool // Valid is true if QueryParamEnumTableEnum is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullQueryParamEnumTableEnum) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.QueryParamEnumTableEnum, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.QueryParamEnumTableEnum.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullQueryParamEnumTableEnum) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.QueryParamEnumTableEnum), nil\n}\n\ntype QueryParamStructEnumTableEnum string\n\nconst (\n\tQueryParamStructEnumTableEnumI QueryParamStructEnumTableEnum = \"i\"\n\tQueryParamStructEnumTableEnumJ QueryParamStructEnumTableEnum = \"j\"\n)\n\nfunc (e *QueryParamStructEnumTableEnum) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = QueryParamStructEnumTableEnum(s)\n\tcase string:\n\t\t*e = QueryParamStructEnumTableEnum(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for QueryParamStructEnumTableEnum: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullQueryParamStructEnumTableEnum struct {\n\tQueryParamStructEnumTableEnum QueryParamStructEnumTableEnum\n\tValid                         bool // Valid is true if QueryParamStructEnumTableEnum is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullQueryParamStructEnumTableEnum) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.QueryParamStructEnumTableEnum, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.QueryParamStructEnumTableEnum.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullQueryParamStructEnumTableEnum) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.QueryParamStructEnumTableEnum), nil\n}\n\ntype QueryReturnEnumTableEnum string\n\nconst (\n\tQueryReturnEnumTableEnumK QueryReturnEnumTableEnum = \"k\"\n\tQueryReturnEnumTableEnumL QueryReturnEnumTableEnum = \"l\"\n)\n\nfunc (e *QueryReturnEnumTableEnum) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = QueryReturnEnumTableEnum(s)\n\tcase string:\n\t\t*e = QueryReturnEnumTableEnum(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for QueryReturnEnumTableEnum: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullQueryReturnEnumTableEnum struct {\n\tQueryReturnEnumTableEnum QueryReturnEnumTableEnum\n\tValid                    bool // Valid is true if QueryReturnEnumTableEnum is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullQueryReturnEnumTableEnum) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.QueryReturnEnumTableEnum, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.QueryReturnEnumTableEnum.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullQueryReturnEnumTableEnum) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.QueryReturnEnumTableEnum), nil\n}\n\ntype QueryReturnFullTableEnum string\n\nconst (\n\tQueryReturnFullTableEnumE QueryReturnFullTableEnum = \"e\"\n\tQueryReturnFullTableEnumF QueryReturnFullTableEnum = \"f\"\n)\n\nfunc (e *QueryReturnFullTableEnum) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = QueryReturnFullTableEnum(s)\n\tcase string:\n\t\t*e = QueryReturnFullTableEnum(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for QueryReturnFullTableEnum: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullQueryReturnFullTableEnum struct {\n\tQueryReturnFullTableEnum QueryReturnFullTableEnum\n\tValid                    bool // Valid is true if QueryReturnFullTableEnum is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullQueryReturnFullTableEnum) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.QueryReturnFullTableEnum, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.QueryReturnFullTableEnum.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullQueryReturnFullTableEnum) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.QueryReturnFullTableEnum), nil\n}\n\ntype QueryReturnStructEnumTableEnum string\n\nconst (\n\tQueryReturnStructEnumTableEnumK QueryReturnStructEnumTableEnum = \"k\"\n\tQueryReturnStructEnumTableEnumL QueryReturnStructEnumTableEnum = \"l\"\n)\n\nfunc (e *QueryReturnStructEnumTableEnum) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = QueryReturnStructEnumTableEnum(s)\n\tcase string:\n\t\t*e = QueryReturnStructEnumTableEnum(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for QueryReturnStructEnumTableEnum: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullQueryReturnStructEnumTableEnum struct {\n\tQueryReturnStructEnumTableEnum QueryReturnStructEnumTableEnum\n\tValid                          bool // Valid is true if QueryReturnStructEnumTableEnum is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullQueryReturnStructEnumTableEnum) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.QueryReturnStructEnumTableEnum, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.QueryReturnStructEnumTableEnum.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullQueryReturnStructEnumTableEnum) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.QueryReturnStructEnumTableEnum), nil\n}\n\ntype QuerySqlcEmbedEnum string\n\nconst (\n\tQuerySqlcEmbedEnumM QuerySqlcEmbedEnum = \"m\"\n\tQuerySqlcEmbedEnumN QuerySqlcEmbedEnum = \"n\"\n)\n\nfunc (e *QuerySqlcEmbedEnum) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = QuerySqlcEmbedEnum(s)\n\tcase string:\n\t\t*e = QuerySqlcEmbedEnum(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for QuerySqlcEmbedEnum: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullQuerySqlcEmbedEnum struct {\n\tQuerySqlcEmbedEnum QuerySqlcEmbedEnum\n\tValid              bool // Valid is true if QuerySqlcEmbedEnum is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullQuerySqlcEmbedEnum) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.QuerySqlcEmbedEnum, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.QuerySqlcEmbedEnum.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullQuerySqlcEmbedEnum) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.QuerySqlcEmbedEnum), nil\n}\n\ntype ArrayEnumTable struct {\n\tID    int32\n\tValue []ArrayEnum\n}\n\ntype QueryParamEnumTable struct {\n\tID    int32\n\tOther QueryParamEnumTableEnum\n\tValue NullQueryParamEnumTableEnum\n}\n\ntype QueryReturnFullTable struct {\n\tID    int32\n\tValue NullQueryReturnFullTableEnum\n}\n\ntype QuerySqlcEmbedTable struct {\n\tID    int32\n\tValue NullQuerySqlcEmbedEnum\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/omit_unused_structs/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\n\t\"github.com/lib/pq\"\n)\n\nconst query_enum_array_table = `-- name: query_enum_array_table :many\nSELECT id, value FROM array_enum_table\n`\n\nfunc (q *Queries) query_enum_array_table(ctx context.Context) ([]ArrayEnumTable, error) {\n\trows, err := q.db.QueryContext(ctx, query_enum_array_table)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ArrayEnumTable\n\tfor rows.Next() {\n\t\tvar i ArrayEnumTable\n\t\tif err := rows.Scan(&i.ID, pq.Array(&i.Value)); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst query_param_enum_table = `-- name: query_param_enum_table :one\nSELECT id, other, value FROM query_param_enum_table WHERE value = $1\n`\n\nfunc (q *Queries) query_param_enum_table(ctx context.Context, value NullQueryParamEnumTableEnum) (QueryParamEnumTable, error) {\n\trow := q.db.QueryRowContext(ctx, query_param_enum_table, value)\n\tvar i QueryParamEnumTable\n\terr := row.Scan(&i.ID, &i.Other, &i.Value)\n\treturn i, err\n}\n\nconst query_param_struct_enum_table = `-- name: query_param_struct_enum_table :one\nSELECT id FROM query_param_struct_enum_table WHERE id = $1 AND value = $2\n`\n\ntype query_param_struct_enum_tableParams struct {\n\tID    int32\n\tValue NullQueryParamStructEnumTableEnum\n}\n\nfunc (q *Queries) query_param_struct_enum_table(ctx context.Context, arg query_param_struct_enum_tableParams) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, query_param_struct_enum_table, arg.ID, arg.Value)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst query_return_enum_table = `-- name: query_return_enum_table :one\nSELECT value FROM query_return_enum_table WHERE id = $1\n`\n\nfunc (q *Queries) query_return_enum_table(ctx context.Context, id int32) (NullQueryReturnEnumTableEnum, error) {\n\trow := q.db.QueryRowContext(ctx, query_return_enum_table, id)\n\tvar value NullQueryReturnEnumTableEnum\n\terr := row.Scan(&value)\n\treturn value, err\n}\n\nconst query_return_full_table = `-- name: query_return_full_table :many\nSELECT id, value FROM query_return_full_table\n`\n\nfunc (q *Queries) query_return_full_table(ctx context.Context) ([]QueryReturnFullTable, error) {\n\trows, err := q.db.QueryContext(ctx, query_return_full_table)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []QueryReturnFullTable\n\tfor rows.Next() {\n\t\tvar i QueryReturnFullTable\n\t\tif err := rows.Scan(&i.ID, &i.Value); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst query_return_struct_enum_table = `-- name: query_return_struct_enum_table :one\nSELECT value, another FROM query_return_struct_enum_table WHERE id = $1\n`\n\ntype query_return_struct_enum_tableRow struct {\n\tValue   NullQueryReturnStructEnumTableEnum\n\tAnother sql.NullInt32\n}\n\nfunc (q *Queries) query_return_struct_enum_table(ctx context.Context, id int32) (query_return_struct_enum_tableRow, error) {\n\trow := q.db.QueryRowContext(ctx, query_return_struct_enum_table, id)\n\tvar i query_return_struct_enum_tableRow\n\terr := row.Scan(&i.Value, &i.Another)\n\treturn i, err\n}\n\nconst query_sqlc_embed_table = `-- name: query_sqlc_embed_table :one\nSELECT query_sqlc_embed_table.id, query_sqlc_embed_table.value FROM query_sqlc_embed_table WHERE id = $1\n`\n\ntype query_sqlc_embed_tableRow struct {\n\tQuerySqlcEmbedTable QuerySqlcEmbedTable\n}\n\nfunc (q *Queries) query_sqlc_embed_table(ctx context.Context, id int32) (query_sqlc_embed_tableRow, error) {\n\trow := q.db.QueryRowContext(ctx, query_sqlc_embed_table, id)\n\tvar i query_sqlc_embed_tableRow\n\terr := row.Scan(&i.QuerySqlcEmbedTable.ID, &i.QuerySqlcEmbedTable.Value)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/omit_unused_structs/postgresql/stdlib/query.sql",
    "content": "-- name: query_return_full_table :many\nSELECT * FROM query_return_full_table;\n\n-- name: query_param_enum_table :one\nSELECT * FROM query_param_enum_table WHERE value = $1;\n\n-- name: query_param_struct_enum_table :one\nSELECT id FROM query_param_struct_enum_table WHERE id = $1 AND value = $2;\n\n-- name: query_return_enum_table :one\nSELECT value FROM query_return_enum_table WHERE id = $1;\n\n-- name: query_return_struct_enum_table :one\nSELECT value, another FROM query_return_struct_enum_table WHERE id = $1;\n\n-- name: query_sqlc_embed_table :one\nSELECT sqlc.embed(query_sqlc_embed_table) FROM query_sqlc_embed_table WHERE id = $1;\n\n-- name: query_enum_array_table :many\nSELECT * FROM array_enum_table;\n"
  },
  {
    "path": "internal/endtoend/testdata/omit_unused_structs/postgresql/stdlib/schema.sql",
    "content": "CREATE TYPE unused_enum AS ENUM (\n    'a', 'b'\n);\n\nCREATE TYPE unused_table_enum AS ENUM (\n    'c', 'd'\n);\nCREATE TABLE unused_table (\n    id      INTEGER PRIMARY KEY,\n    value   unused_table_enum\n);\n\nCREATE TYPE query_return_full_table_enum AS ENUM (\n    'e', 'f'\n);\nCREATE TABLE query_return_full_table (\n    id      INTEGER PRIMARY KEY,\n    value   query_return_full_table_enum\n);\n\nCREATE TYPE query_param_enum_table_enum AS ENUM (\n    'g', 'h'\n);\nCREATE TABLE query_param_enum_table (\n    id      INTEGER PRIMARY KEY,\n    other   query_param_enum_table_enum NOT NULL,\n    value   query_param_enum_table_enum\n);\n\nCREATE TYPE query_param_struct_enum_table_enum AS ENUM (\n    'i', 'j'\n);\nCREATE TABLE query_param_struct_enum_table (\n    id      INTEGER PRIMARY KEY,\n    value   query_param_struct_enum_table_enum\n);\n\nCREATE TYPE query_return_enum_table_enum AS ENUM (\n    'k', 'l'\n);\nCREATE TABLE query_return_enum_table (\n    id      INTEGER PRIMARY KEY,\n    value   query_return_enum_table_enum\n);\n\nCREATE TYPE query_return_struct_enum_table_enum AS ENUM (\n    'k', 'l'\n);\nCREATE TABLE query_return_struct_enum_table (\n    id      INTEGER PRIMARY KEY,\n    value   query_return_struct_enum_table_enum,\n    another INTEGER\n);\n\nCREATE TYPE query_sqlc_embed_enum AS ENUM (\n    'm', 'n'\n);\nCREATE TABLE query_sqlc_embed_table (\n    id      INTEGER PRIMARY KEY,\n    value   query_sqlc_embed_enum\n);\n\nCREATE TYPE array_enum AS ENUM (\n    'o', 'p'\n);\nCREATE TABLE array_enum_table (\n    id      INTEGER PRIMARY KEY,\n    value   array_enum[]\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/omit_unused_structs/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"db\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"omit_unused_structs\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/on_duplicate_key_update/mysql/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/on_duplicate_key_update/mysql/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/on_duplicate_key_update/mysql/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst upsertAuthor = `-- name: UpsertAuthor :exec\nINSERT INTO authors (name, bio)\nVALUES (?, ?)\nON DUPLICATE KEY\n    UPDATE bio = ?\n`\n\ntype UpsertAuthorParams struct {\n\tName  string\n\tBio   sql.NullString\n\tBio_2 sql.NullString\n}\n\nfunc (q *Queries) UpsertAuthor(ctx context.Context, arg UpsertAuthorParams) error {\n\t_, err := q.db.ExecContext(ctx, upsertAuthor, arg.Name, arg.Bio, arg.Bio_2)\n\treturn err\n}\n\nconst upsertAuthorNamed = `-- name: UpsertAuthorNamed :exec\nINSERT INTO authors (name, bio)\nVALUES (?, ?)\nON DUPLICATE KEY\n    UPDATE bio = ?\n`\n\ntype UpsertAuthorNamedParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) UpsertAuthorNamed(ctx context.Context, arg UpsertAuthorNamedParams) error {\n\t_, err := q.db.ExecContext(ctx, upsertAuthorNamed, arg.Name, arg.Bio, arg.Bio)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/on_duplicate_key_update/mysql/query.sql",
    "content": "-- name: UpsertAuthor :exec\nINSERT INTO authors (name, bio)\nVALUES (?, ?)\nON DUPLICATE KEY\n    UPDATE bio = ?;\n\n-- name: UpsertAuthorNamed :exec\nINSERT INTO authors (name, bio)\nVALUES (?, sqlc.arg(bio))\nON DUPLICATE KEY\n    UPDATE bio = sqlc.arg(bio);\n"
  },
  {
    "path": "internal/endtoend/testdata/on_duplicate_key_update/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGINT PRIMARY KEY AUTO_INCREMENT,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/on_duplicate_key_update/mysql/sqlc.json",
    "content": "{\n\t\"version\":\"1\",\n\t\"packages\":[\n\t\t{\n\t\t\t\"path\":\"db\",\n\t\t\t\"engine\":\"mysql\",\n\t\t\t\"schema\":\"schema.sql\",\n\t\t\t\"queries\":\"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/on_duplicate_key_update/postgresql/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/on_duplicate_key_update/postgresql/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/on_duplicate_key_update/postgresql/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst upsertAuthor = `-- name: UpsertAuthor :exec\nINSERT INTO authors (name, bio)\nVALUES ($1, $2)\nON CONFLICT (name) DO UPDATE\nSET bio = $2\n`\n\ntype UpsertAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) UpsertAuthor(ctx context.Context, arg UpsertAuthorParams) error {\n\t_, err := q.db.ExecContext(ctx, upsertAuthor, arg.Name, arg.Bio)\n\treturn err\n}\n\nconst upsertAuthorNamed = `-- name: UpsertAuthorNamed :exec\nINSERT INTO authors (name, bio)\nVALUES ($1, $2)\nON CONFLICT (name) DO UPDATE\nSET bio = $2\n`\n\ntype UpsertAuthorNamedParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) UpsertAuthorNamed(ctx context.Context, arg UpsertAuthorNamedParams) error {\n\t_, err := q.db.ExecContext(ctx, upsertAuthorNamed, arg.Name, arg.Bio)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/on_duplicate_key_update/postgresql/query.sql",
    "content": "-- name: UpsertAuthor :exec\nINSERT INTO authors (name, bio)\nVALUES ($1, $2)\nON CONFLICT (name) DO UPDATE\nSET bio = $2;\n\n-- name: UpsertAuthorNamed :exec\nINSERT INTO authors (name, bio)\nVALUES ($1, sqlc.arg(bio))\nON CONFLICT (name) DO UPDATE\nSET bio = sqlc.arg(bio);\n"
  },
  {
    "path": "internal/endtoend/testdata/on_duplicate_key_update/postgresql/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/on_duplicate_key_update/postgresql/sqlc.json",
    "content": "{\n\t\"version\":\"1\",\n\t\"packages\":[\n\t\t{\n\t\t\t\"path\":\"db\",\n\t\t\t\"engine\":\"postgresql\",\n\t\t\t\"schema\":\"schema.sql\",\n\t\t\t\"queries\":\"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Demo struct {\n\tTxt string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst test2 = `-- name: Test2 :one\nselect txt from Demo\nwhere txt like '%' || $1::text || '%'\n`\n\nfunc (q *Queries) Test2(ctx context.Context, val string) (string, error) {\n\trow := q.db.QueryRow(ctx, test2, val)\n\tvar txt string\n\terr := row.Scan(&txt)\n\treturn txt, err\n}\n\nconst test3 = `-- name: Test3 :one\nselect txt from Demo\nwhere txt like concat('%', $1::text, '%')\n`\n\nfunc (q *Queries) Test3(ctx context.Context, val string) (string, error) {\n\trow := q.db.QueryRow(ctx, test3, val)\n\tvar txt string\n\terr := row.Scan(&txt)\n\treturn txt, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v4/query.sql",
    "content": "-- name: Test2 :one\nselect * from Demo\nwhere txt like '%' || sqlc.arg('val')::text || '%';\n\n-- name: Test3 :one\nselect * from Demo\nwhere txt like concat('%', sqlc.arg('val')::text, '%');\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE demo (txt text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Demo struct {\n\tTxt string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst test2 = `-- name: Test2 :one\nselect txt from Demo\nwhere txt like '%' || $1::text || '%'\n`\n\nfunc (q *Queries) Test2(ctx context.Context, val string) (string, error) {\n\trow := q.db.QueryRow(ctx, test2, val)\n\tvar txt string\n\terr := row.Scan(&txt)\n\treturn txt, err\n}\n\nconst test3 = `-- name: Test3 :one\nselect txt from Demo\nwhere txt like concat('%', $1::text, '%')\n`\n\nfunc (q *Queries) Test3(ctx context.Context, val string) (string, error) {\n\trow := q.db.QueryRow(ctx, test3, val)\n\tvar txt string\n\terr := row.Scan(&txt)\n\treturn txt, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v5/query.sql",
    "content": "-- name: Test2 :one\nselect * from Demo\nwhere txt like '%' || sqlc.arg('val')::text || '%';\n\n-- name: Test3 :one\nselect * from Demo\nwhere txt like concat('%', sqlc.arg('val')::text, '%');\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE demo (txt text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Demo struct {\n\tTxt string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst test2 = `-- name: Test2 :one\nselect txt from Demo\nwhere txt like '%' || $1::text || '%'\n`\n\nfunc (q *Queries) Test2(ctx context.Context, val string) (string, error) {\n\trow := q.db.QueryRowContext(ctx, test2, val)\n\tvar txt string\n\terr := row.Scan(&txt)\n\treturn txt, err\n}\n\nconst test3 = `-- name: Test3 :one\nselect txt from Demo\nwhere txt like concat('%', $1::text, '%')\n`\n\nfunc (q *Queries) Test3(ctx context.Context, val string) (string, error) {\n\trow := q.db.QueryRowContext(ctx, test3, val)\n\tvar txt string\n\terr := row.Scan(&txt)\n\treturn txt, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/stdlib/query.sql",
    "content": "-- name: Test2 :one\nselect * from Demo\nwhere txt like '%' || sqlc.arg('val')::text || '%';\n\n-- name: Test3 :one\nselect * from Demo\nwhere txt like concat('%', sqlc.arg('val')::text, '%');\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE demo (txt text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/operator_string_concat/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthorsColumnSort = `-- name: ListAuthorsColumnSort :many\nSELECT  id, name, bio FROM authors\nWHERE   id > ? \nORDER   BY CASE WHEN ? = 'name' THEN name END\n`\n\ntype ListAuthorsColumnSortParams struct {\n\tMinID      int64\n\tSortColumn interface{}\n}\n\nfunc (q *Queries) ListAuthorsColumnSort(ctx context.Context, arg ListAuthorsColumnSortParams) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthorsColumnSort, arg.MinID, arg.SortColumn)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listAuthorsColumnSortFnWtihArg = `-- name: ListAuthorsColumnSortFnWtihArg :many\nSELECT  id, name, bio FROM authors\nORDER   BY MOD(id, ?)\n`\n\nfunc (q *Queries) ListAuthorsColumnSortFnWtihArg(ctx context.Context, modArg int64) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthorsColumnSortFnWtihArg, modArg)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listAuthorsNameSort = `-- name: ListAuthorsNameSort :many\nSELECT  id, name, bio FROM authors\nWHERE   id > ?\nORDER   BY name ASC\n`\n\nfunc (q *Queries) ListAuthorsNameSort(ctx context.Context, minID int64) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthorsNameSort, minID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/mysql/query.sql",
    "content": "-- name: ListAuthorsColumnSort :many\nSELECT  * FROM authors\nWHERE   id > sqlc.arg(min_id) \nORDER   BY CASE WHEN sqlc.arg(sort_column) = 'name' THEN name END;\n\n-- name: ListAuthorsColumnSortFnWtihArg :many\nSELECT  * FROM authors\nORDER   BY MOD(id, sqlc.arg(mod_arg));\n\n-- name: ListAuthorsNameSort :many\nSELECT  * FROM authors\nWHERE   id > sqlc.arg(min_id)\nORDER   BY name ASC;\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGINT PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/pganalyze/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/pganalyze/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/pganalyze/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/pganalyze/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst listAuthorsColumnSort = `-- name: ListAuthorsColumnSort :many\nSELECT  id, name, bio FROM authors\nWHERE   id > $1 \nORDER   BY CASE WHEN $2 = 'name' THEN name END\n`\n\ntype ListAuthorsColumnSortParams struct {\n\tMinID      int64\n\tSortColumn sql.NullString\n}\n\nfunc (q *Queries) ListAuthorsColumnSort(ctx context.Context, arg ListAuthorsColumnSortParams) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthorsColumnSort, arg.MinID, arg.SortColumn)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listAuthorsNameSort = `-- name: ListAuthorsNameSort :many\nSELECT  id, name, bio FROM authors\nWHERE   id > $1\nORDER   BY name ASC\n`\n\nfunc (q *Queries) ListAuthorsNameSort(ctx context.Context, minID int64) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthorsNameSort, minID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/pganalyze/query.sql",
    "content": "-- name: ListAuthorsColumnSort :many\nSELECT  * FROM authors\nWHERE   id > sqlc.arg(min_id) \nORDER   BY CASE WHEN sqlc.arg(sort_column) = 'name' THEN name END;\n\n-- name: ListAuthorsNameSort :many\nSELECT  * FROM authors\nWHERE   id > sqlc.arg(min_id)\nORDER   BY name ASC;\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/pganalyze/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/pganalyze/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"postgresql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/postgresql/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthorsColumnSort = `-- name: ListAuthorsColumnSort :many\nSELECT  id, name, bio FROM authors\nWHERE   id > $1 \nORDER   BY CASE WHEN $2 = 'name' THEN name END\n`\n\ntype ListAuthorsColumnSortParams struct {\n\tMinID      int64\n\tSortColumn interface{}\n}\n\nfunc (q *Queries) ListAuthorsColumnSort(ctx context.Context, arg ListAuthorsColumnSortParams) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthorsColumnSort, arg.MinID, arg.SortColumn)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listAuthorsColumnSortFnWtihArg = `-- name: ListAuthorsColumnSortFnWtihArg :many\nSELECT  id, name, bio FROM authors\nORDER   BY MOD(id, $1)\n`\n\nfunc (q *Queries) ListAuthorsColumnSortFnWtihArg(ctx context.Context, mod int64) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthorsColumnSortFnWtihArg, mod)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listAuthorsNameSort = `-- name: ListAuthorsNameSort :many\nSELECT  id, name, bio FROM authors\nWHERE   id > $1\nORDER   BY name ASC\n`\n\nfunc (q *Queries) ListAuthorsNameSort(ctx context.Context, minID int64) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthorsNameSort, minID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/postgresql/query.sql",
    "content": "-- name: ListAuthorsColumnSort :many\nSELECT  * FROM authors\nWHERE   id > sqlc.arg(min_id) \nORDER   BY CASE WHEN sqlc.arg(sort_column) = 'name' THEN name END;\n\n-- name: ListAuthorsColumnSortFnWtihArg :many\nSELECT  * FROM authors\nORDER   BY MOD(id, $1);\n\n-- name: ListAuthorsNameSort :many\nSELECT  * FROM authors\nWHERE   id > sqlc.arg(min_id)\nORDER   BY name ASC;\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/postgresql/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_binds/postgresql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"postgresql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_non_existing_column/postgresql/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT id FROM authors\nORDER BY adfadsf;"
  },
  {
    "path": "internal/endtoend/testdata/order_by_non_existing_column/postgresql/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   INT\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_non_existing_column/postgresql/sqlc.yaml",
    "content": "version: 1\npackages:\n  - path: \"go\"\n    name: \"querytest\"\n    engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\""
  },
  {
    "path": "internal/endtoend/testdata/order_by_non_existing_column/postgresql/stderr/base.txt",
    "content": "# package querytest\nquery.sql:1:1: column reference \"adfadsf\" not found: if you want to skip this validation, set 'strict_order_by' to false\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_non_existing_column/postgresql/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:3:10: column \"adfadsf\" does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_union/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_union/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tName string\n\tBio  sql.NullString\n}\n\ntype Person struct {\n\tFirstName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_union/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthorsUnion = `-- name: ListAuthorsUnion :many\nSELECT name as foo FROM authors\nUNION\nSELECT first_name as foo FROM people\nORDER BY foo\n`\n\nfunc (q *Queries) ListAuthorsUnion(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthorsUnion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar foo string\n\t\tif err := rows.Scan(&foo); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, foo)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_union/mysql/query.sql",
    "content": "-- name: ListAuthorsUnion :many\nSELECT name as foo FROM authors\nUNION\nSELECT first_name as foo FROM people\nORDER BY foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_union/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n  name text      NOT NULL,\n  bio  text\n);\n\nCREATE TABLE people (\n  first_name text      NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_union/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_union/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_union/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype Person struct {\n\tFirstName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_union/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthorsUnion = `-- name: ListAuthorsUnion :many\nSELECT name as foo FROM authors\nUNION\nSELECT first_name as foo FROM people\nORDER BY foo\n`\n\nfunc (q *Queries) ListAuthorsUnion(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthorsUnion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar foo string\n\t\tif err := rows.Scan(&foo); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, foo)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_union/postgresql/query.sql",
    "content": "-- name: ListAuthorsUnion :many\nSELECT name as foo FROM authors\nUNION\nSELECT first_name as foo FROM people\nORDER BY foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_union/postgresql/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n\nCREATE TABLE people (\n  first_name text      NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/order_by_union/postgresql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"postgresql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v4/go/batch_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: batch_gen.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"errors\"\n\n\t\"github.com/jackc/pgx/v4\"\n)\n\nvar (\n\tErrBatchAlreadyClosed = errors.New(\"batch already closed\")\n)\n\nconst usersB = `-- name: UsersB :batchmany\nSELECT id FROM \"user\"\nWHERE id = $1\n`\n\ntype UsersBBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\nfunc (q *Queries) UsersB(ctx context.Context, id []int64) *UsersBBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range id {\n\t\tvals := []interface{}{\n\t\t\ta,\n\t\t}\n\t\tbatch.Queue(usersB, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &UsersBBatchResults{br, len(id), false}\n}\n\nfunc (b *UsersBBatchResults) Query(f func(int, []int64, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tvar items []int64\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, items, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\terr := func() error {\n\t\t\trows, err := b.br.Query()\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tdefer rows.Close()\n\t\t\tfor rows.Next() {\n\t\t\t\tvar id int64\n\t\t\t\tif err := rows.Scan(&id); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\titems = append(items, id)\n\t\t\t}\n\t\t\treturn rows.Err()\n\t\t}()\n\t\tif f != nil {\n\t\t\tf(t, items, err)\n\t\t}\n\t}\n}\n\nfunc (b *UsersBBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v4/go/copyfrom_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: copyfrom_gen.go\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\n// iteratorForUsersC implements pgx.CopyFromSource.\ntype iteratorForUsersC struct {\n\trows                 []int64\n\tskippedFirstNextCall bool\n}\n\nfunc (r *iteratorForUsersC) Next() bool {\n\tif len(r.rows) == 0 {\n\t\treturn false\n\t}\n\tif !r.skippedFirstNextCall {\n\t\tr.skippedFirstNextCall = true\n\t\treturn true\n\t}\n\tr.rows = r.rows[1:]\n\treturn len(r.rows) > 0\n}\n\nfunc (r iteratorForUsersC) Values() ([]interface{}, error) {\n\treturn []interface{}{\n\t\tr.rows[0],\n\t}, nil\n}\n\nfunc (r iteratorForUsersC) Err() error {\n\treturn nil\n}\n\nfunc (q *Queries) UsersC(ctx context.Context, id []int64) (int64, error) {\n\treturn q.db.CopyFrom(ctx, []string{\"user\"}, []string{\"id\"}, &iteratorForUsersC{rows: id})\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v4/go/db_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tCopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error)\n\tSendBatch(context.Context, *pgx.Batch) pgx.BatchResults\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v4/go/models_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype User struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v4/go/querier_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tUser(ctx context.Context) ([]int64, error)\n\tUsersB(ctx context.Context, id []int64) *UsersBBatchResults\n\tUsersC(ctx context.Context, id []int64) (int64, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst user = `-- name: User :many\nSELECT \"user\".id FROM \"user\"\n`\n\nfunc (q *Queries) User(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.Query(ctx, user)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar id int64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v4/query.sql",
    "content": "-- name: User :many\nSELECT \"user\".* FROM \"user\";\n\n-- name: UsersB :batchmany\nSELECT * FROM \"user\"\nWHERE id = $1;\n\n-- name: UsersC :copyfrom\nINSERT INTO \"user\"\n(id)\nVALUES\n($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v4/schema.sql",
    "content": "CREATE TABLE \"user\" (id bigserial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true,\n      \"output_batch_file_name\": \"batch_gen.go\",\n      \"output_db_file_name\": \"db_gen.go\",\n      \"output_models_file_name\": \"models_gen.go\",\n      \"output_querier_file_name\": \"querier_gen.go\",\n      \"output_copyfrom_file_name\": \"copyfrom_gen.go\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v5/go/batch_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: batch_gen.go\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"errors\"\n\n\t\"github.com/jackc/pgx/v5\"\n)\n\nvar (\n\tErrBatchAlreadyClosed = errors.New(\"batch already closed\")\n)\n\nconst usersB = `-- name: UsersB :batchmany\nSELECT id FROM \"user\"\nWHERE id = $1\n`\n\ntype UsersBBatchResults struct {\n\tbr     pgx.BatchResults\n\ttot    int\n\tclosed bool\n}\n\nfunc (q *Queries) UsersB(ctx context.Context, id []int64) *UsersBBatchResults {\n\tbatch := &pgx.Batch{}\n\tfor _, a := range id {\n\t\tvals := []interface{}{\n\t\t\ta,\n\t\t}\n\t\tbatch.Queue(usersB, vals...)\n\t}\n\tbr := q.db.SendBatch(ctx, batch)\n\treturn &UsersBBatchResults{br, len(id), false}\n}\n\nfunc (b *UsersBBatchResults) Query(f func(int, []int64, error)) {\n\tdefer b.br.Close()\n\tfor t := 0; t < b.tot; t++ {\n\t\tvar items []int64\n\t\tif b.closed {\n\t\t\tif f != nil {\n\t\t\t\tf(t, items, ErrBatchAlreadyClosed)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\terr := func() error {\n\t\t\trows, err := b.br.Query()\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tdefer rows.Close()\n\t\t\tfor rows.Next() {\n\t\t\t\tvar id int64\n\t\t\t\tif err := rows.Scan(&id); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\titems = append(items, id)\n\t\t\t}\n\t\t\treturn rows.Err()\n\t\t}()\n\t\tif f != nil {\n\t\t\tf(t, items, err)\n\t\t}\n\t}\n}\n\nfunc (b *UsersBBatchResults) Close() error {\n\tb.closed = true\n\treturn b.br.Close()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v5/go/copyfrom_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: copyfrom_gen.go\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\n// iteratorForUsersC implements pgx.CopyFromSource.\ntype iteratorForUsersC struct {\n\trows                 []int64\n\tskippedFirstNextCall bool\n}\n\nfunc (r *iteratorForUsersC) Next() bool {\n\tif len(r.rows) == 0 {\n\t\treturn false\n\t}\n\tif !r.skippedFirstNextCall {\n\t\tr.skippedFirstNextCall = true\n\t\treturn true\n\t}\n\tr.rows = r.rows[1:]\n\treturn len(r.rows) > 0\n}\n\nfunc (r iteratorForUsersC) Values() ([]interface{}, error) {\n\treturn []interface{}{\n\t\tr.rows[0],\n\t}, nil\n}\n\nfunc (r iteratorForUsersC) Err() error {\n\treturn nil\n}\n\nfunc (q *Queries) UsersC(ctx context.Context, id []int64) (int64, error) {\n\treturn q.db.CopyFrom(ctx, []string{\"user\"}, []string{\"id\"}, &iteratorForUsersC{rows: id})\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v5/go/db_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n\tCopyFrom(ctx context.Context, tableName pgx.Identifier, columnNames []string, rowSrc pgx.CopyFromSource) (int64, error)\n\tSendBatch(context.Context, *pgx.Batch) pgx.BatchResults\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v5/go/models_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype User struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v5/go/querier_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tUser(ctx context.Context) ([]int64, error)\n\tUsersB(ctx context.Context, id []int64) *UsersBBatchResults\n\tUsersC(ctx context.Context, id []int64) (int64, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst user = `-- name: User :many\nSELECT \"user\".id FROM \"user\"\n`\n\nfunc (q *Queries) User(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.Query(ctx, user)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar id int64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v5/query.sql",
    "content": "-- name: User :many\nSELECT \"user\".* FROM \"user\";\n\n-- name: UsersB :batchmany\nSELECT * FROM \"user\"\nWHERE id = $1;\n\n-- name: UsersC :copyfrom\nINSERT INTO \"user\"\n(id)\nVALUES\n    ($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v5/schema.sql",
    "content": "CREATE TABLE \"user\" (id bigserial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true,\n      \"output_batch_file_name\": \"batch_gen.go\",\n      \"output_db_file_name\": \"db_gen.go\",\n      \"output_models_file_name\": \"models_gen.go\",\n      \"output_querier_file_name\": \"querier_gen.go\",\n      \"output_copyfrom_file_name\": \"copyfrom_gen.go\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/stdlib/go/db_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/stdlib/go/models_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype User struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/stdlib/go/querier_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tUser(ctx context.Context) ([]int64, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst user = `-- name: User :many\nSELECT \"user\".id FROM \"user\"\n`\n\nfunc (q *Queries) User(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, user)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar id int64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/stdlib/query.sql",
    "content": "-- name: User :many\nSELECT \"user\".* FROM \"user\";\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/stdlib/schema.sql",
    "content": "CREATE TABLE \"user\" (id bigserial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/output_file_names/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true,\n      \"output_db_file_name\": \"db_gen.go\",\n      \"output_models_file_name\": \"models_gen.go\",\n      \"output_querier_file_name\": \"querier_gen.go\",\n      \"output_copyfrom_file_name\": \"copyfrom_gen.go\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype User struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/pgx/v4/go/query.sql_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst user = `-- name: User :many\nSELECT \"user\".id FROM \"user\"\n`\n\nfunc (q *Queries) User(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.Query(ctx, user)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar id int64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/pgx/v4/query.sql",
    "content": "-- name: User :many\nSELECT \"user\".* FROM \"user\";\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/pgx/v4/schema.sql",
    "content": "CREATE TABLE \"user\" (id bigserial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"output_files_suffix\": \"_gen.go\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype User struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/pgx/v5/go/query.sql_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst user = `-- name: User :many\nSELECT \"user\".id FROM \"user\"\n`\n\nfunc (q *Queries) User(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.Query(ctx, user)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar id int64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/pgx/v5/query.sql",
    "content": "-- name: User :many\nSELECT \"user\".* FROM \"user\";\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/pgx/v5/schema.sql",
    "content": "CREATE TABLE \"user\" (id bigserial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"output_files_suffix\": \"_gen.go\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype User struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/stdlib/go/query.sql_gen.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst user = `-- name: User :many\nSELECT \"user\".id FROM \"user\"\n`\n\nfunc (q *Queries) User(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, user)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar id int64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/stdlib/query.sql",
    "content": "-- name: User :many\nSELECT \"user\".* FROM \"user\";\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/stdlib/schema.sql",
    "content": "CREATE TABLE \"user\" (id bigserial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/output_files_suffix/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"output_files_suffix\": \"_gen.go\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"github.com/sqlc-dev/sqlc-testdata/pkg\"\n)\n\ntype Foo struct {\n\tOther   string\n\tTotal   int64\n\tRetyped pkg.CustomType\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/mysql/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/mysql/schema.sql",
    "content": "CREATE TABLE foo (\n    other     text NOT NULL,\n    total     bigint NOT NULL,\n    retyped   text NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"override\",\n      \"engine\": \"mysql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"go_type\": \"github.com/sqlc-dev/sqlc-testdata/pkg.CustomType\",\n          \"column\": \"foo.retyped\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"github.com/lib/pq\"\n\t\"github.com/sqlc-dev/sqlc-testdata/pkg\"\n)\n\ntype Foo struct {\n\tOther   string\n\tTotal   int64\n\tTags    []string\n\tByteSeq []byte\n\tRetyped pkg.CustomType\n\tLangs   pq.StringArray\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRow(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/pgx/v4/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (\n    other     text NOT NULL,\n    total     bigint NOT NULL,\n    tags      text[] NOT NULL,\n    byte_seq  bytea NOT NULL,\n    retyped   text NOT NULL,\n    langs     text[]\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"override\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"go_type\": \"github.com/sqlc-dev/sqlc-testdata/pkg.CustomType\",\n          \"column\": \"foo.retyped\"\n        },\n        {\n          \"go_type\": \"github.com/lib/pq.StringArray\",\n          \"column\": \"foo.langs\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"github.com/lib/pq\"\n\t\"github.com/sqlc-dev/sqlc-testdata/pkg\"\n)\n\ntype Foo struct {\n\tOther   string\n\tTotal   int64\n\tTags    []string\n\tByteSeq []byte\n\tRetyped pkg.CustomType\n\tLangs   pq.StringArray\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRow(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/pgx/v5/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (\n    other     text NOT NULL,\n    total     bigint NOT NULL,\n    tags      text[] NOT NULL,\n    byte_seq  bytea NOT NULL,\n    retyped   text NOT NULL,\n    langs     text[]\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"override\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"go_type\": \"github.com/sqlc-dev/sqlc-testdata/pkg.CustomType\",\n          \"column\": \"foo.retyped\"\n        },\n        {\n          \"go_type\": \"github.com/lib/pq.StringArray\",\n          \"column\": \"foo.langs\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"github.com/lib/pq\"\n\t\"github.com/sqlc-dev/sqlc-testdata/pkg\"\n)\n\ntype Foo struct {\n\tOther   string\n\tTotal   int64\n\tTags    []string\n\tByteSeq []byte\n\tRetyped pkg.CustomType\n\tLangs   pq.StringArray\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/stdlib/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (\n    other     text NOT NULL,\n    total     bigint NOT NULL,\n    tags      text[] NOT NULL,\n    byte_seq  bytea NOT NULL,\n    retyped   text NOT NULL,\n    langs     text[]\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"override\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"go_type\": \"github.com/sqlc-dev/sqlc-testdata/pkg.CustomType\",\n          \"column\": \"foo.retyped\"\n        },\n        {\n          \"go_type\": \"github.com/lib/pq.StringArray\",\n          \"column\": \"foo.langs\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"github.com/sqlc-dev/sqlc-testdata/pkg\"\n)\n\ntype Foo struct {\n\tOther   string\n\tTotal   int64\n\tRetyped pkg.CustomType\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar column_1 int64\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/sqlite/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/sqlite/schema.sql",
    "content": "CREATE TABLE foo (\n    other     text NOT NULL,\n    total     bigint NOT NULL,\n    retyped   text NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"override\",\n      \"engine\": \"sqlite\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"go_type\": \"github.com/sqlc-dev/sqlc-testdata/pkg.CustomType\",\n          \"column\": \"foo.retyped\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/pgx/v4/query/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage query\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/pgx/v4/query/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage query\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n\tTags []sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/pgx/v4/query/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage query\n\nimport (\n\t\"context\"\n)\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio, tags FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRow(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t\t&i.Tags,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/pgx/v4/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text,\n  tags text[]\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/pgx/v4/sqlc.json",
    "content": "{\n    \"version\": \"2\",\n    \"sql\": [{\n        \"schema\": \"schema.sql\",\n        \"queries\": \"query.sql\",\n        \"engine\": \"postgresql\",\n        \"gen\": {\n            \"go\": {\n                \"sql_package\": \"pgx/v4\",\n                \"package\": \"query\",\n                \"out\": \"query\",\n                \"overrides\": [{\n                    \"column\": \"authors.tags\",\n                    \"go_type\": {\n                      \"type\": \"NullInt64\",\n                      \"import\": \"database/sql\",\n                      \"slice\": true\n                    }\n                }]\n            }\n        }\n    }]\n}"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/pgx/v5/query/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage query\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/pgx/v5/query/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage query\n\nimport (\n\t\"database/sql\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n\tTags []sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/pgx/v5/query/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage query\n\nimport (\n\t\"context\"\n)\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio, tags FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRow(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t\t&i.Tags,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/pgx/v5/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text,\n  tags text[]\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/pgx/v5/sqlc.json",
    "content": "{\n    \"version\": \"2\",\n    \"sql\": [{\n        \"schema\": \"schema.sql\",\n        \"queries\": \"query.sql\",\n        \"engine\": \"postgresql\",\n        \"gen\": {\n            \"go\": {\n              \"sql_package\": \"pgx/v5\",\n              \"package\": \"query\",\n              \"out\": \"query\",\n              \"overrides\": [{\n                \"column\": \"authors.tags\",\n                \"go_type\": {\n                  \"type\": \"NullInt64\",\n                  \"import\": \"database/sql\",\n                  \"slice\": true\n                }\n              }]\n            }\n      }\n    }]\n  }"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/stdlib/query/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage query\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/stdlib/query/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage query\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n\tTags []sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/stdlib/query/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage query\n\nimport (\n\t\"context\"\n\n\t\"github.com/lib/pq\"\n)\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio, tags FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t\tpq.Array(&i.Tags),\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/stdlib/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/stdlib/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text,\n  tags text[]\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_array/postgresql/stdlib/sqlc.json",
    "content": "{\n    \"version\": \"2\",\n    \"sql\": [{\n        \"schema\": \"schema.sql\",\n        \"queries\": \"query.sql\",\n        \"engine\": \"postgresql\",\n        \"gen\": {\n            \"go\": {\n                \"package\": \"query\",\n                \"out\": \"query\",\n                \"overrides\": [{\n                  \"column\": \"authors.tags\",\n                  \"go_type\": {\n                    \"type\": \"NullInt64\",\n                    \"import\": \"database/sql\",\n                    \"slice\": true\n                  }\n                }]\n            }\n      }\n    }]\n  }"
  },
  {
    "path": "internal/endtoend/testdata/overrides_config/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_config/schema.sql",
    "content": "CREATE TABLE overrides (\n    one     text NOT NULL,\n    two     bigint NOT NULL,\n    three   text[] NOT NULL,\n    four    bytea NOT NULL,\n    five    text[]\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_config/v2/yaml/global/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_config/v2/yaml/global/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"github.com/sqlc-dev/sqlc-testdata/pkg\"\n)\n\ntype Override struct {\n\tONE   pkg.CustomType\n\tTwo   int64\n\tThree pkg.CustomType\n\tFour  []byte\n\tFive  []pkg.CustomType\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_config/v2/yaml/global/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_config/v2/yaml/global/sqlc.yaml",
    "content": "version: \"2\"\noverrides:\n  go:\n    rename:\n      one: \"ONE\"\n    overrides:\n      - db_type: \"text\"\n        go_type: \"github.com/sqlc-dev/sqlc-testdata/pkg.CustomType\"\n      - column: \"overrides.three\"\n        go_type:\n          import: \"github.com/sqlc-dev/sqlc-testdata/pkg\"\n          type: \"CustomType\"\nsql:\n- schema: \"../../../schema.sql\"\n  queries: \"../../../query.sql\"\n  engine: \"postgresql\"\n  gen:\n    go: \n      out: \"db\"\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_config/v2/yaml/global_and_queryset/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_config/v2/yaml/global_and_queryset/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"github.com/sqlc-dev/sqlc-testdata/pkg\"\n)\n\ntype Override struct {\n\tONE   pkg.CustomType\n\tTwo   int64\n\tThree pkg.CustomType\n\tFour  []byte\n\tFive  []pkg.CustomType\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_config/v2/yaml/global_and_queryset/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_config/v2/yaml/global_and_queryset/sqlc.yaml",
    "content": "version: \"2\"\noverrides:\n  go:\n    rename:\n      one: \"ONE\"\n    overrides:\n      - db_type: \"text\"\n        go_type: \"github.com/sqlc-dev/sqlc-testdata/pkg.CustomType\"\n      - column: \"overrides.three\"\n        go_type:\n          import: \"github.com/sqlc-dev/sqlc-testdata/pkg\"\n          type: \"CustomType\"\nsql:\n- schema: \"../../../schema.sql\"\n  queries: \"../../../query.sql\"\n  engine: \"postgresql\"\n  gen:\n    go: \n      out: \"db\"\n      rename:\n        one: \"ONE\"\n      overrides:\n        - column: \"overrides.three\"\n          go_type:\n            import: \"invalid/import\"\n            type: \"ShouldNotSeeThis\"\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_config/v2/yaml/queryset/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_config/v2/yaml/queryset/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"github.com/sqlc-dev/sqlc-testdata/pkg\"\n)\n\ntype Override struct {\n\tONE   pkg.CustomType\n\tTwo   int64\n\tThree pkg.CustomType\n\tFour  []byte\n\tFive  []pkg.CustomType\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_config/v2/yaml/queryset/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_config/v2/yaml/queryset/sqlc.yaml",
    "content": "version: \"2\"  \nsql:\n- schema: \"../../../schema.sql\"\n  queries: \"../../../query.sql\"\n  engine: \"postgresql\"\n  gen:\n    go: \n      out: \"db\"\n      rename:\n        one: \"ONE\"\n      overrides:\n        - db_type: \"text\"\n          go_type: \"github.com/sqlc-dev/sqlc-testdata/pkg.CustomType\"\n        - column: \"overrides.three\"\n          go_type:\n            import: \"github.com/sqlc-dev/sqlc-testdata/pkg\"\n            type: \"CustomType\"\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/invalid_tags/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/invalid_tags/schema.sql",
    "content": "CREATE TABLE foo (\n    other     text NOT NULL,\n    tagged    text NOT NULL\n);\n\nCREATE TABLE bar (\n    other          text NOT NULL,\n    also_tagged    text NOT NULL\n);\n\nCREATE TABLE baz (\n    other          text NOT NULL,\n    also_tagged    text NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/invalid_tags/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"override\",\n      \"engine\": \"mysql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"go_struct_tag\": \"abc\",\n          \"column\": \"foo.tagged\"\n        },\n        {\n          \"go_struct_tag\": \"a:b\",\n          \"column\": \"*.also_tagged\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/invalid_tags/stderr.txt",
    "content": "# package override\nerror generating code: bad syntax for struct tag pair\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\ntype Bar struct {\n\tOther      string `utype:\"notnull_text\"`\n\tAlsoTagged string `also:\"tagged\" utype:\"notnull_text\"`\n}\n\ntype Baz struct {\n\tOther      string `utype:\"notnull_text\"`\n\tAlsoTagged string `also:\"tagged\" utype:\"notnull_text\"`\n}\n\ntype Foo struct {\n\tOther    string `utype:\"notnull_text\"`\n\tTagged   string `a:\"b\" utype:\"notnull_text\" x:\"y,z\"`\n\tNulltext string `utype:\"nullable_text\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/mysql/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/mysql/schema.sql",
    "content": "CREATE TABLE foo (\n    other     text NOT NULL,\n    tagged    text NOT NULL,\n    nulltext text\n);\n\nCREATE TABLE bar (\n    other          text NOT NULL,\n    also_tagged    text NOT NULL\n);\n\nCREATE TABLE baz (\n    other          text NOT NULL,\n    also_tagged    text NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"override\",\n      \"engine\": \"mysql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"go_struct_tag\": \"a:\\\"b\\\" x:\\\"y,z\\\"\",\n          \"column\": \"foo.tagged\"\n        },\n        {\n          \"go_struct_tag\": \"also:\\\"tagged\\\"\",\n          \"column\": \"*.also_tagged\"\n        },\n        {\n          \"db_type\": \"text\",\n          \"go_struct_tag\": \"utype:\\\"notnull_text\\\"\"\n        },\n        {\n          \"db_type\": \"text\",\n          \"go_type\": \"string\",\n          \"nullable\": true,\n          \"go_struct_tag\": \"utype:\\\"nullable_text\\\"\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\ntype Bar struct {\n\tID      string `type:\"id\" utype:\"nullable_text\"`\n\tOtherID string `type:\"other_id\" utype:\"nullable_text\"`\n\tAbout   string `utype:\"nullable_text\"`\n\tOther   string `type:\"other\" utype:\"nullable_text\"`\n}\n\ntype Foo struct {\n\tID          string `source:\"foo\" type:\"id\" utype:\"nullable_text\"`\n\tOtherID     string `type:\"other_id\" utype:\"nullable_text\"`\n\tAbout       string `type:\"about\" utype:\"nullable_text\"`\n\tOther       string `type:\"this\" utype:\"nullable_text\"`\n\tNotnulltext string `utype:\"notnull_text\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRow(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v4/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (\n    id       text,\n    other_id text,\n    about    text,\n    other    text,\n    notnulltext text not null\n);\n\nCREATE TABLE bar (\n    id       text,\n    other_id text,\n    about    text,\n    other    text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"override\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"column\": \"*.id\",\n          \"go_struct_tag\": \"type:\\\"id\\\"\"\n        },\n        {\n          \"column\": \"*.*_id\",\n          \"go_struct_tag\": \"type:\\\"other_id\\\"\"\n        },\n        {\n          \"column\": \"foo.about\",\n          \"go_struct_tag\": \"type:\\\"about\\\"\"\n        },\n        {\n          \"column\": \"foo.id\",\n          \"go_struct_tag\": \"source:\\\"foo\\\"\"\n        },\n        {\n          \"column\": \"*.other\",\n          \"go_struct_tag\": \"type:\\\"other\\\"\"\n        },\n        {\n          \"column\": \"foo.other\",\n          \"go_struct_tag\": \"type:\\\"this\\\"\"\n        },\n        {\n          \"db_type\": \"text\",\n          \"go_struct_tag\": \"utype:\\\"notnull_text\\\"\"\n        },\n        {\n          \"db_type\": \"text\",\n          \"go_type\": \"string\",\n          \"nullable\": true,\n          \"go_struct_tag\": \"utype:\\\"nullable_text\\\"\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\ntype Bar struct {\n\tID      string `type:\"id\" utype:\"nullable_text\"`\n\tOtherID string `type:\"other_id\" utype:\"nullable_text\"`\n\tAbout   string `utype:\"nullable_text\"`\n\tOther   string `type:\"other\" utype:\"nullable_text\"`\n}\n\ntype Foo struct {\n\tID          string `source:\"foo\" type:\"id\" utype:\"nullable_text\"`\n\tOtherID     string `type:\"other_id\" utype:\"nullable_text\"`\n\tAbout       string `type:\"about\" utype:\"nullable_text\"`\n\tOther       string `type:\"this\" utype:\"nullable_text\"`\n\tNotnulltext string `utype:\"notnull_text\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRow(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v5/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (\n    id       text,\n    other_id text,\n    about    text,\n    other    text,\n    notnulltext text not null\n);\n\nCREATE TABLE bar (\n    id       text,\n    other_id text,\n    about    text,\n    other    text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"override\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"column\": \"*.id\",\n          \"go_struct_tag\": \"type:\\\"id\\\"\"\n        },\n        {\n          \"column\": \"*.*_id\",\n          \"go_struct_tag\": \"type:\\\"other_id\\\"\"\n        },\n        {\n          \"column\": \"foo.about\",\n          \"go_struct_tag\": \"type:\\\"about\\\"\"\n        },\n        {\n          \"column\": \"foo.id\",\n          \"go_struct_tag\": \"source:\\\"foo\\\"\"\n        },\n        {\n          \"column\": \"*.other\",\n          \"go_struct_tag\": \"type:\\\"other\\\"\"\n        },\n        {\n          \"column\": \"foo.other\",\n          \"go_struct_tag\": \"type:\\\"this\\\"\"\n        },\n        {\n          \"db_type\": \"text\",\n          \"go_struct_tag\": \"utype:\\\"notnull_text\\\"\"\n        },\n        {\n          \"db_type\": \"text\",\n          \"go_type\": \"string\",\n          \"nullable\": true,\n          \"go_struct_tag\": \"utype:\\\"nullable_text\\\"\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\ntype Foo struct {\n\tID          string `utype:\"nullable_text\" x:\"y\"`\n\tOtherID     string `utype:\"nullable_text\"`\n\tNotnulltext string `utype:\"notnull_text\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/stdlib/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (\n    id       text,\n    other_id text,\n    notnulltext text not null\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"override\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"column\": \"foo.id\",\n          \"go_struct_tag\": \"x:\\\"y\\\"\"\n        },\n        {\n          \"db_type\": \"text\",\n          \"go_struct_tag\": \"utype:\\\"notnull_text\\\"\"\n        },\n        {\n          \"db_type\": \"text\",\n          \"go_type\": \"string\",\n          \"nullable\": true,\n          \"go_struct_tag\": \"utype:\\\"nullable_text\\\"\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\ntype Bar struct {\n\tOther      string `utype:\"notnull_text\"`\n\tAlsoTagged string `also:\"tagged\" utype:\"notnull_text\"`\n\tTag3       string `tag_with_space:\" it's legal!\" utype:\"notnull_text\"`\n}\n\ntype Baz struct {\n\tOther      string `utype:\"notnull_text\"`\n\tAlsoTagged string `also:\"tagged\" utype:\"notnull_text\"`\n\tTag3       string `tag_with_space:\" it's legal!\" utype:\"notnull_text\"`\n}\n\ntype Foo struct {\n\tOther    string `utype:\"notnull_text\"`\n\tTagged   string `a:\"b\" utype:\"notnull_text\" x:\"y,z\"`\n\tTag3     string `tag_with_space:\" it's legal!\" utype:\"notnull_text\"`\n\tNulltext string `utype:\"nullable_text\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar column_1 int64\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/sqlite/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/sqlite/schema.sql",
    "content": "CREATE TABLE foo (\n    other     text NOT NULL,\n    tagged    text NOT NULL,\n    tag3      text NOT NULL,\n    nulltext text\n);\n\nCREATE TABLE bar (\n    other          text NOT NULL,\n    also_tagged    text NOT NULL,\n    tag3           text NOT NULL\n);\n\nCREATE TABLE baz (\n    other          text NOT NULL,\n    also_tagged    text NOT NULL,\n    tag3           text NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_struct_tags/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"override\",\n      \"engine\": \"sqlite\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"go_struct_tag\": \"a:\\\"b\\\" x:\\\"y,z\\\"\",\n          \"column\": \"foo.tagged\"\n        },\n        {\n          \"go_struct_tag\": \"also:\\\"tagged\\\"\",\n          \"column\": \"*.also_tagged\"\n        },\n        {\n          \"go_struct_tag\": \"tag_with_space:\\\" it's legal!\\\"\",\n          \"column\": \"*.tag3\"\n        },\n        {\n          \"db_type\": \"text\",\n          \"go_struct_tag\": \"utype:\\\"notnull_text\\\"\"\n        },\n        {\n          \"db_type\": \"text\",\n          \"go_type\": \"string\",\n          \"nullable\": true,\n          \"go_struct_tag\": \"utype:\\\"nullable_text\\\"\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"github.com/sqlc-dev/sqlc-testdata/pkg\"\n)\n\ntype Bar struct {\n\tOther       string\n\tTotal       int64\n\tAlsoRetyped pkg.CustomType\n}\n\ntype Baz struct {\n\tOther       string\n\tTotal       int64\n\tAlsoRetyped pkg.CustomType\n}\n\ntype Foo struct {\n\tOther   string\n\tTotal   int64\n\tRetyped pkg.CustomType\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc-testdata/pkg\"\n)\n\nconst testIN = `-- name: TestIN :many\nSELECT other, total, retyped FROM foo WHERE retyped IN (/*SLICE:paramname*/?)\n`\n\nfunc (q *Queries) TestIN(ctx context.Context, paramname []pkg.CustomType) ([]Foo, error) {\n\tquery := testIN\n\tvar queryParams []interface{}\n\tif len(paramname) > 0 {\n\t\tfor _, v := range paramname {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:paramname*/?\", strings.Repeat(\",?\", len(paramname))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:paramname*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.db.QueryContext(ctx, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Other, &i.Total, &i.Retyped); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/mysql/query.sql",
    "content": "-- name: TestIN :many\nSELECT * FROM foo WHERE retyped IN (sqlc.slice(paramName));\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/mysql/schema.sql",
    "content": "CREATE TABLE foo (\n    other     text NOT NULL,\n    total     bigint NOT NULL,\n    retyped   text NOT NULL\n);\n\nCREATE TABLE bar (\n    other          text NOT NULL,\n    total          bigint NOT NULL,\n    also_retyped   text NOT NULL\n);\n\nCREATE TABLE baz (\n    other          text NOT NULL,\n    total          bigint NOT NULL,\n    also_retyped   text NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"override\",\n      \"engine\": \"mysql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"go_type\": \"github.com/sqlc-dev/sqlc-testdata/pkg.CustomType\",\n          \"column\": \"foo.retyped\"\n        },\n        {\n          \"go_type\": \"github.com/sqlc-dev/sqlc-testdata/pkg.CustomType\",\n          \"column\": \"*.also_retyped\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"database/sql\"\n\n\torm \"database/sql\"\n\tfuid \"github.com/gofrs/uuid\"\n\tuuid \"github.com/gofrs/uuid\"\n\tnull \"github.com/volatiletech/null/v8\"\n\tnull_v4 \"gopkg.in/guregu/null.v4\"\n)\n\ntype Bar struct {\n\tID      uuid.UUID\n\tOtherID fuid.UUID\n\tMoreID  fuid.UUID\n\tAge     sql.NullInt32\n\tBalance sql.NullFloat64\n\tBio     sql.NullString\n\tAbout   sql.NullString\n}\n\ntype Foo struct {\n\tID      uuid.UUID\n\tOtherID fuid.UUID\n\tAge     orm.NullInt32\n\tBalance null.Float32\n\tBio     null_v4.String\n\tAbout   *string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n\n\torm \"database/sql\"\n\tfuid \"github.com/gofrs/uuid\"\n\tuuid \"github.com/gofrs/uuid\"\n\tnull \"github.com/volatiletech/null/v8\"\n\tnull_v4 \"gopkg.in/guregu/null.v4\"\n)\n\nconst loadFoo = `-- name: LoadFoo :many\nSELECT id, other_id, age, balance, bio, about FROM foo WHERE id = $1\n`\n\nfunc (q *Queries) LoadFoo(ctx context.Context, id uuid.UUID) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, loadFoo, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.OtherID,\n\t\t\t&i.Age,\n\t\t\t&i.Balance,\n\t\t\t&i.Bio,\n\t\t\t&i.About,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst loadFooWithAliases = `-- name: LoadFooWithAliases :many\nSELECT\n  id AS aliased_id,\n  other_id AS aliased_other_id,\n  age AS aliased_age,\n  balance AS aliased_balance,\n  bio AS aliased_bio,\n  about AS aliased_about\nFROM foo\nWHERE id = $1\n`\n\ntype LoadFooWithAliasesRow struct {\n\tAliasedID      uuid.UUID\n\tAliasedOtherID fuid.UUID\n\tAliasedAge     orm.NullInt32\n\tAliasedBalance null.Float32\n\tAliasedBio     null_v4.String\n\tAliasedAbout   *string\n}\n\nfunc (q *Queries) LoadFooWithAliases(ctx context.Context, namedParameterID uuid.UUID) ([]LoadFooWithAliasesRow, error) {\n\trows, err := q.db.Query(ctx, loadFooWithAliases, namedParameterID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []LoadFooWithAliasesRow\n\tfor rows.Next() {\n\t\tvar i LoadFooWithAliasesRow\n\t\tif err := rows.Scan(\n\t\t\t&i.AliasedID,\n\t\t\t&i.AliasedOtherID,\n\t\t\t&i.AliasedAge,\n\t\t\t&i.AliasedBalance,\n\t\t\t&i.AliasedBio,\n\t\t\t&i.AliasedAbout,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v4/query.sql",
    "content": "-- name: LoadFoo :many\nSELECT * FROM foo WHERE id = $1;\n\n-- name: LoadFooWithAliases :many\nSELECT\n  id AS aliased_id,\n  other_id AS aliased_other_id,\n  age AS aliased_age,\n  balance AS aliased_balance,\n  bio AS aliased_bio,\n  about AS aliased_about\nFROM foo\nWHERE id = @named_parameter_id;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (\n    id         uuid NOT NULL,\n    other_id   uuid NOT NULL,\n    age        integer,\n    balance    double precision,\n    bio        text,\n    about      text\n);\n\nCREATE TABLE bar (\n    id         uuid NOT NULL,\n    other_id   uuid NOT NULL,\n    more_id    uuid NOT NULL,\n    age        integer,\n    balance    double precision,\n    bio        text,\n    about      text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"override\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"column\": \"*.id\",\n          \"go_type\": {\n            \"import\": \"github.com/gofrs/uuid\",\n            \"package\": \"uuid\",\n            \"type\": \"UUID\"\n          }\n        },\n        {\n          \"column\": \"*.*_id\",\n          \"go_type\": {\n            \"import\": \"github.com/gofrs/uuid\",\n            \"package\": \"fuid\",\n            \"type\": \"UUID\"\n          }\n        },\n        {\n          \"column\": \"foo.age\",\n          \"nullable\": true,\n          \"go_type\": {\n            \"import\": \"database/sql\",\n            \"package\": \"orm\",\n            \"type\": \"NullInt32\"\n          }\n        },\n        {\n          \"column\": \"foo.balance\",\n          \"nullable\": true,\n          \"go_type\": {\n            \"import\": \"github.com/volatiletech/null/v8\",\n            \"type\": \"Float32\"\n          }\n        },\n        {\n          \"column\": \"foo.bio\",\n          \"nullable\": true,\n          \"go_type\": {\n            \"import\": \"gopkg.in/guregu/null.v4\",\n            \"type\": \"String\"\n          }\n        },\n        {\n          \"column\": \"foo.about\",\n          \"nullable\": true,\n          \"go_type\": {\n            \"type\": \"string\",\n            \"pointer\": true\n          }\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\torm \"database/sql\"\n\tfuid \"github.com/gofrs/uuid\"\n\tuuid \"github.com/gofrs/uuid\"\n\t\"github.com/jackc/pgx/v5/pgtype\"\n\tnull \"github.com/volatiletech/null/v8\"\n\tnull_v4 \"gopkg.in/guregu/null.v4\"\n)\n\ntype Bar struct {\n\tID      uuid.UUID\n\tOtherID fuid.UUID\n\tMoreID  fuid.UUID\n\tAge     pgtype.Int4\n\tBalance pgtype.Float8\n\tBio     pgtype.Text\n\tAbout   pgtype.Text\n}\n\ntype Foo struct {\n\tID      uuid.UUID\n\tOtherID fuid.UUID\n\tAge     orm.NullInt32\n\tBalance null.Float32\n\tBio     null_v4.String\n\tAbout   *string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n\n\tuuid \"github.com/gofrs/uuid\"\n)\n\nconst loadFoo = `-- name: LoadFoo :many\nSELECT id, other_id, age, balance, bio, about FROM foo WHERE id = $1\n`\n\nfunc (q *Queries) LoadFoo(ctx context.Context, id uuid.UUID) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, loadFoo, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.OtherID,\n\t\t\t&i.Age,\n\t\t\t&i.Balance,\n\t\t\t&i.Bio,\n\t\t\t&i.About,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v5/query.sql",
    "content": "-- name: LoadFoo :many\nSELECT * FROM foo WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (\n    id         uuid NOT NULL,\n    other_id   uuid NOT NULL,\n    age        integer,\n    balance    double precision,\n    bio        text,\n    about      text\n);\n\nCREATE TABLE bar (\n    id         uuid NOT NULL,\n    other_id   uuid NOT NULL,\n    more_id    uuid NOT NULL,\n    age        integer,\n    balance    double precision,\n    bio        text,\n    about      text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"override\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"column\": \"*.id\",\n          \"go_type\": {\n            \"import\": \"github.com/gofrs/uuid\",\n            \"package\": \"uuid\",\n            \"type\": \"UUID\"\n          }\n        },\n        {\n          \"column\": \"*.*_id\",\n          \"go_type\": {\n            \"import\": \"github.com/gofrs/uuid\",\n            \"package\": \"fuid\",\n            \"type\": \"UUID\"\n          }\n        },\n        {\n          \"column\": \"foo.age\",\n          \"nullable\": true,\n          \"go_type\": {\n            \"import\": \"database/sql\",\n            \"package\": \"orm\",\n            \"type\": \"NullInt32\"\n          }\n        },\n        {\n          \"column\": \"foo.balance\",\n          \"nullable\": true,\n          \"go_type\": {\n            \"import\": \"github.com/volatiletech/null/v8\",\n            \"type\": \"Float32\"\n          }\n        },\n        {\n          \"column\": \"foo.bio\",\n          \"nullable\": true,\n          \"go_type\": {\n            \"import\": \"gopkg.in/guregu/null.v4\",\n            \"type\": \"String\"\n          }\n        },\n        {\n          \"column\": \"foo.about\",\n          \"nullable\": true,\n          \"go_type\": {\n            \"type\": \"string\",\n            \"pointer\": true\n          }\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\torm \"database/sql\"\n\t\"github.com/gofrs/uuid\"\n\tfuid \"github.com/gofrs/uuid\"\n\tnull \"github.com/volatiletech/null/v8\"\n\tnull_v4 \"gopkg.in/guregu/null.v4\"\n)\n\ntype Foo struct {\n\tID      uuid.UUID\n\tOtherID fuid.UUID\n\tAge     orm.NullInt32\n\tBalance null.Float32\n\tBio     null_v4.String\n\tAbout   *string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n\n\t\"github.com/gofrs/uuid\"\n)\n\nconst loadFoo = `-- name: LoadFoo :many\nSELECT id, other_id, age, balance, bio, about FROM foo WHERE id = $1\n`\n\nfunc (q *Queries) LoadFoo(ctx context.Context, id uuid.UUID) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, loadFoo, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.OtherID,\n\t\t\t&i.Age,\n\t\t\t&i.Balance,\n\t\t\t&i.Bio,\n\t\t\t&i.About,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/stdlib/query.sql",
    "content": "-- name: LoadFoo :many\nSELECT * FROM foo WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (\n    id         uuid NOT NULL,\n    other_id   uuid NOT NULL,\n    age        integer,\n    balance    double precision,\n    bio        text,\n    about      text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"override\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"column\": \"foo.id\",\n          \"go_type\": {\n            \"import\": \"github.com/gofrs/uuid\",\n            \"type\": \"UUID\"\n          }\n        },\n        {\n          \"column\": \"foo.other_id\",\n          \"go_type\": {\n            \"import\": \"github.com/gofrs/uuid\",\n            \"package\": \"fuid\",\n            \"type\": \"UUID\"\n          }\n        },\n        {\n          \"column\": \"foo.age\",\n          \"nullable\": true,\n          \"go_type\": {\n            \"import\": \"database/sql\",\n            \"package\": \"orm\",\n            \"type\": \"NullInt32\"\n          }\n        },\n        {\n          \"column\": \"foo.balance\",\n          \"nullable\": true,\n          \"go_type\": {\n            \"import\": \"github.com/volatiletech/null/v8\",\n            \"type\": \"Float32\"\n          }\n        },\n        {\n          \"column\": \"foo.bio\",\n          \"nullable\": true,\n          \"go_type\": {\n            \"import\": \"gopkg.in/guregu/null.v4\",\n            \"type\": \"String\"\n          }\n        },\n        {\n          \"column\": \"foo.about\",\n          \"nullable\": true,\n          \"go_type\": {\n            \"type\": \"string\",\n            \"pointer\": true\n          }\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"github.com/sqlc-dev/sqlc-testdata/pkg\"\n)\n\ntype Bar struct {\n\tOther       string\n\tTotal       int64\n\tAlsoRetyped pkg.CustomType\n}\n\ntype Baz struct {\n\tOther       string\n\tTotal       int64\n\tAlsoRetyped pkg.CustomType\n}\n\ntype Foo struct {\n\tOther   string\n\tTotal   int64\n\tRetyped pkg.CustomType\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar column_1 int64\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/sqlite/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/sqlite/schema.sql",
    "content": "CREATE TABLE foo (\n    other     text NOT NULL,\n    total     bigint NOT NULL,\n    retyped   text NOT NULL\n);\n\nCREATE TABLE bar (\n    other          text NOT NULL,\n    total          bigint NOT NULL,\n    also_retyped   text NOT NULL\n);\n\nCREATE TABLE baz (\n    other          text NOT NULL,\n    total          bigint NOT NULL,\n    also_retyped   text NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_go_types/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"override\",\n      \"engine\": \"sqlite\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"go_type\": \"github.com/sqlc-dev/sqlc-testdata/pkg.CustomType\",\n          \"column\": \"foo.retyped\"\n        },\n        {\n          \"go_type\": \"github.com/sqlc-dev/sqlc-testdata/pkg.CustomType\",\n          \"column\": \"*.also_retyped\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgtype\"\n)\n\ntype Foo struct {\n\tBar pgtype.Text\n\tBam pgtype.Name\n\tBaz pgtype.Name\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listFoo = `-- name: ListFoo :many\nSELECT bar, bam, baz FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Bar, &i.Bam, &i.Baz); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v4/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (\n  bar text,\n  bam name,\n  baz name not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ],\n  \"overrides\": [\n    {\n      \"db_type\": \"name\",\n      \"go_type\": \"github.com/jackc/pgtype.Name\"\n    },\n    {\n      \"db_type\": \"name\",\n      \"go_type\": \"github.com/jackc/pgtype.Name\",\n      \"nullable\": true\n    },\n    {\n      \"db_type\": \"text\",\n      \"go_type\": \"github.com/jackc/pgtype.Text\",\n      \"null\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar pgtype.UndecodedBytes\n\tBam pgtype.DriverBytes\n\tBaz pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listFoo = `-- name: ListFoo :many\nSELECT bar, bam, baz FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Bar, &i.Bam, &i.Baz); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v5/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (\n  bar text,\n  bam jsonb,\n  baz jsonb not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ],\n  \"overrides\": [\n    {\n      \"db_type\": \"jsonb\",\n      \"go_type\": \"github.com/jackc/pgx/v5/pgtype.Text\"\n    },\n    {\n      \"db_type\": \"jsonb\",\n      \"go_type\": \"github.com/jackc/pgx/v5/pgtype.DriverBytes\",\n      \"nullable\": true\n    },\n    {\n      \"db_type\": \"text\",\n      \"go_type\": \"github.com/jackc/pgx/v5/pgtype.UndecodedBytes\",\n      \"null\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgtype\"\n)\n\ntype Foo struct {\n\tBar pgtype.Text\n\tBam pgtype.Name\n\tBaz pgtype.Name\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listFoo = `-- name: ListFoo :many\nSELECT bar, bam, baz FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Bar, &i.Bam, &i.Baz); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/stdlib/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (\n  bar text,\n  bam name,\n  baz name not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_nullable/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ],\n  \"overrides\": [\n    {\n      \"db_type\": \"name\",\n      \"go_type\": \"github.com/jackc/pgtype.Name\"\n    },\n    {\n      \"db_type\": \"name\",\n      \"go_type\": \"github.com/jackc/pgtype.Name\",\n      \"nullable\": true\n    },\n    {\n      \"db_type\": \"text\",\n      \"go_type\": \"github.com/jackc/pgtype.Text\",\n      \"null\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\tt \"github.com/jackc/pgtype\"\n)\n\ntype Foo struct {\n\tOther   string\n\tTotal   int64\n\tRetyped *t.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n\n\tt \"github.com/jackc/pgtype\"\n)\n\nconst test = `-- name: test :exec\nSELECT other, total, retyped FROM foo WHERE other = ? and retyped = ?\n`\n\ntype testParams struct {\n\tOther   string\n\tRetyped *t.Text\n}\n\nfunc (q *Queries) test(ctx context.Context, arg testParams) error {\n\t_, err := q.db.ExecContext(ctx, test, arg.Other, arg.Retyped)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/mysql/query.sql",
    "content": "-- name: test :exec\nSELECT * FROM foo WHERE other = ? and retyped = ?;"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/mysql/schema.sql",
    "content": "CREATE TABLE foo (\n    other     text NOT NULL,\n    total     bigint NOT NULL,\n    retyped   text NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"override\",\n      \"engine\": \"mysql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"go_type\": {\n            \"import\": \"github.com/jackc/pgtype\",\n            \"type\": \"Text\",\n            \"package\": \"t\",\n            \"pointer\": true\n          },\n          \"column\": \"foo.retyped\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\tt \"github.com/jackc/pgtype\"\n)\n\ntype Foo struct {\n\tOther   string\n\tTotal   int64\n\tTags    []string\n\tByteSeq []byte\n\tRetyped string\n\tLangs   *t.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n\n\tt \"github.com/jackc/pgtype\"\n)\n\nconst test = `-- name: test :exec\nUPDATE foo SET langs = $1\n`\n\nfunc (q *Queries) test(ctx context.Context, langs *t.Text) error {\n\t_, err := q.db.Exec(ctx, test, langs)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v4/query.sql",
    "content": "-- name: test :exec\nUPDATE foo SET langs = $1;"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (\n    other     text NOT NULL,\n    total     bigint NOT NULL,\n    tags      text[] NOT NULL,\n    byte_seq  bytea NOT NULL,\n    retyped   text NOT NULL,\n    langs     text[]\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"override\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"go_type\": {\n            \"import\": \"github.com/jackc/pgtype\",\n            \"type\": \"Text\",\n            \"package\": \"t\",\n            \"pointer\": true\n          },\n          \"column\": \"foo.langs\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\tt \"github.com/jackc/pgtype\"\n)\n\ntype Foo struct {\n\tOther   string\n\tTotal   int64\n\tTags    []string\n\tByteSeq []byte\n\tRetyped string\n\tLangs   *t.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n\n\tt \"github.com/jackc/pgtype\"\n)\n\nconst test = `-- name: test :exec\nUPDATE foo SET langs = $1\n`\n\nfunc (q *Queries) test(ctx context.Context, langs *t.Text) error {\n\t_, err := q.db.Exec(ctx, test, langs)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v5/query.sql",
    "content": "-- name: test :exec\nUPDATE foo SET langs = $1;"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (\n    other     text NOT NULL,\n    total     bigint NOT NULL,\n    tags      text[] NOT NULL,\n    byte_seq  bytea NOT NULL,\n    retyped   text NOT NULL,\n    langs     text[]\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"override\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"go_type\": {\n            \"import\": \"github.com/jackc/pgtype\",\n            \"type\": \"Text\",\n            \"package\": \"t\",\n            \"pointer\": true\n          },\n          \"column\": \"foo.langs\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\tt \"github.com/jackc/pgtype\"\n)\n\ntype Foo struct {\n\tOther   string\n\tTotal   int64\n\tTags    []string\n\tByteSeq []byte\n\tRetyped string\n\tLangs   *t.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n\n\tt \"github.com/jackc/pgtype\"\n)\n\nconst test = `-- name: test :exec\nUPDATE foo SET langs = $1\n`\n\nfunc (q *Queries) test(ctx context.Context, langs *t.Text) error {\n\t_, err := q.db.ExecContext(ctx, test, langs)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/stdlib/query.sql",
    "content": "-- name: test :exec\nUPDATE foo SET langs = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (\n    other     text NOT NULL,\n    total     bigint NOT NULL,\n    tags      text[] NOT NULL,\n    byte_seq  bytea NOT NULL,\n    retyped   text NOT NULL,\n    langs     text[]\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_pointers/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"override\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"overrides\": [\n        {\n          \"go_type\": {\n            \"import\": \"github.com/jackc/pgtype\",\n            \"type\": \"Text\",\n            \"package\": \"t\",\n            \"pointer\": true\n          },\n          \"column\": \"foo.langs\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_result_tag/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_result_tag/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\n\t\"github.com/google/uuid\"\n)\n\ntype Account struct {\n\tID    uuid.UUID `sometagtype:\"some_value\"`\n\tState sql.NullString\n}\n\ntype UsersAccount struct {\n\tId2  uuid.UUID\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_result_tag/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\n\t\"github.com/google/uuid\"\n)\n\nconst findAccount = `-- name: FindAccount :one\nSELECT\n    a.id, a.state,\n    ua.name\n    -- other fields\nFROM\n    accounts a\n    INNER JOIN users_accounts ua ON a.id = ua.id2\nWHERE\n    a.id = $1\n`\n\ntype FindAccountRow struct {\n\tID    uuid.UUID `sometagtype:\"some_value\"`\n\tState sql.NullString\n\tName  sql.NullString\n}\n\nfunc (q *Queries) FindAccount(ctx context.Context, accountID uuid.UUID) (FindAccountRow, error) {\n\trow := q.db.QueryRowContext(ctx, findAccount, accountID)\n\tvar i FindAccountRow\n\terr := row.Scan(&i.ID, &i.State, &i.Name)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_result_tag/stdlib/query.sql",
    "content": "-- name: FindAccount :one\nSELECT\n    a.*,\n    ua.name\n    -- other fields\nFROM\n    accounts a\n    INNER JOIN users_accounts ua ON a.id = ua.id2\nWHERE\n    a.id = @account_id;\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_result_tag/stdlib/schema.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";\n\nCREATE TABLE public.accounts (\n    id uuid DEFAULT public.uuid_generate_v4() NOT NULL,\n    state character varying\n);\n\nCREATE TABLE public.users_accounts (\n    ID2 uuid DEFAULT public.uuid_generate_v4() NOT NULL,\n    name character varying\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_result_tag/stdlib/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - schema: \"schema.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        overrides:\n          - column: accounts.id\n            go_struct_tag: sometagtype:\"some_value\""
  },
  {
    "path": "internal/endtoend/testdata/overrides_unsigned/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_unsigned/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID     int64\n\tName   string\n\tRating int64\n\tScore  uint32\n\tBio    sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_unsigned/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :exec\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  ?, ?\n)\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) error {\n\t_, err := q.db.ExecContext(ctx, createAuthor, arg.Name, arg.Bio)\n\treturn err\n}\n\nconst deleteAuthor = `-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = ?\n`\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthor, id)\n\treturn err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, rating, score, bio FROM authors\nWHERE id = ? LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Name,\n\t\t&i.Rating,\n\t\t&i.Score,\n\t\t&i.Bio,\n\t)\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, rating, score, bio FROM authors\nORDER BY name\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.Rating,\n\t\t\t&i.Score,\n\t\t\t&i.Bio,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_unsigned/mysql/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = ? LIMIT 1;\n\n-- name: CreateAuthor :exec\nINSERT INTO authors (\n  name, bio\n) VALUES (\n  ?, ?\n);\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = ?;"
  },
  {
    "path": "internal/endtoend/testdata/overrides_unsigned/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n  id     SERIAL,\n  name   text NOT NULL,\n  rating bigint NOT NULL,\n  score  int UNSIGNED NOT NULL,\n  bio  text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/overrides_unsigned/mysql/sqlc.json",
    "content": "{\n    \"version\": \"2\",\n    \"sql\": [\n        {\n            \"schema\": \"schema.sql\",\n            \"queries\": \"query.sql\",\n            \"engine\": \"mysql\",\n            \"gen\": {\n                \"go\": {\n                    \"package\": \"db\",\n                    \"out\": \"go\",\n                    \"overrides\": [\n                        {\n                            \"db_type\": \"bigint\",\n                            \"go_type\": \"int64\",\n                            \"unsigned\": true\n                        }\n                    ]\n                }\n            }\n        }\n    ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/params_duplicate/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_duplicate/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int32\n\tFirstName sql.NullString\n\tLastName  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_duplicate/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst selectUserByID = `-- name: SelectUserByID :many\nSELECT first_name from\nusers where (? = id OR ? = 0)\n`\n\ntype SelectUserByIDParams struct {\n\tID int32\n}\n\nfunc (q *Queries) SelectUserByID(ctx context.Context, arg SelectUserByIDParams) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, selectUserByID, arg.ID, arg.ID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar first_name sql.NullString\n\t\tif err := rows.Scan(&first_name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, first_name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUserByName = `-- name: SelectUserByName :many\nSELECT first_name\nFROM users\nWHERE first_name = ?\n   OR last_name = ?\n`\n\ntype SelectUserByNameParams struct {\n\tName sql.NullString\n}\n\nfunc (q *Queries) SelectUserByName(ctx context.Context, arg SelectUserByNameParams) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, selectUserByName, arg.Name, arg.Name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar first_name sql.NullString\n\t\tif err := rows.Scan(&first_name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, first_name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUserQuestion = `-- name: SelectUserQuestion :many\nSELECT first_name from\nusers where (? = id OR  ? = 0)\n`\n\ntype SelectUserQuestionParams struct {\n\tID      int32\n\tColumn2 interface{}\n}\n\nfunc (q *Queries) SelectUserQuestion(ctx context.Context, arg SelectUserQuestionParams) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, selectUserQuestion, arg.ID, arg.Column2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar first_name sql.NullString\n\t\tif err := rows.Scan(&first_name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, first_name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_duplicate/mysql/query.sql",
    "content": "/* name: SelectUserByID :many */\nSELECT first_name from\nusers where (sqlc.arg(id) = id OR sqlc.arg(id) = 0);\n\n/* name: SelectUserByName :many */\nSELECT first_name\nFROM users\nWHERE first_name = sqlc.arg(name)\n   OR last_name = sqlc.arg(name);\n\n/* name: SelectUserQuestion :many */\nSELECT first_name from\nusers where (? = id OR  ? = 0);\n"
  },
  {
    "path": "internal/endtoend/testdata/params_duplicate/mysql/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,\n    first_name varchar(255),\n    last_name varchar(255)\n) ENGINE=InnoDB;\n"
  },
  {
    "path": "internal/endtoend/testdata/params_duplicate/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"path\": \"go\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\",\n\t\t\t\"engine\": \"mysql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_duplicate/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_duplicate/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int32\n\tFirstName sql.NullString\n\tLastName  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_duplicate/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst selectUserByID = `-- name: SelectUserByID :many\nSELECT first_name from\nusers where ($1 = id OR $1 = 0)\n`\n\nfunc (q *Queries) SelectUserByID(ctx context.Context, id int32) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, selectUserByID, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar first_name sql.NullString\n\t\tif err := rows.Scan(&first_name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, first_name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUserByName = `-- name: SelectUserByName :many\nSELECT first_name\nFROM users\nWHERE first_name = $1\n   OR last_name = $1\n`\n\nfunc (q *Queries) SelectUserByName(ctx context.Context, name sql.NullString) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, selectUserByName, name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar first_name sql.NullString\n\t\tif err := rows.Scan(&first_name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, first_name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUserQuestion = `-- name: SelectUserQuestion :many\nSELECT first_name from\nusers where ($1 = id OR  $1 = 0)\n`\n\nfunc (q *Queries) SelectUserQuestion(ctx context.Context, id int32) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, selectUserQuestion, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar first_name sql.NullString\n\t\tif err := rows.Scan(&first_name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, first_name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_duplicate/postgresql/query.sql",
    "content": "/* name: SelectUserByID :many */\nSELECT first_name from\nusers where (sqlc.arg(id) = id OR sqlc.arg(id) = 0);\n\n/* name: SelectUserByName :many */\nSELECT first_name\nFROM users\nWHERE first_name = sqlc.arg(name)\n   OR last_name = sqlc.arg(name);\n\n/* name: SelectUserQuestion :many */\nSELECT first_name from\nusers where ($1 = id OR  $1 = 0);\n"
  },
  {
    "path": "internal/endtoend/testdata/params_duplicate/postgresql/schema.sql",
    "content": "CREATE TABLE users (\n    id INT PRIMARY KEY,\n    first_name varchar(255),\n    last_name varchar(255)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/params_duplicate/postgresql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"path\": \"go\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\",\n\t\t\t\"engine\": \"postgresql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_go_keywords/issue.md",
    "content": "# TODO"
  },
  {
    "path": "internal/endtoend/testdata/params_go_keywords/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_go_keywords/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype GoKeyword struct {\n\tBreak       pgtype.Text\n\tDefault     pgtype.Text\n\tFunc        pgtype.Text\n\tInterface   pgtype.Text\n\tSelect      pgtype.Text\n\tCase        pgtype.Text\n\tDefer       pgtype.Text\n\tGo          pgtype.Text\n\tMap         pgtype.Text\n\tStruct      pgtype.Text\n\tChan        pgtype.Text\n\tElse        pgtype.Text\n\tGoto        pgtype.Text\n\tPackage     pgtype.Text\n\tSwitch      pgtype.Text\n\tConst       pgtype.Text\n\tFallthrough pgtype.Text\n\tIf          pgtype.Text\n\tRange       pgtype.Text\n\tType        pgtype.Text\n\tContinue    pgtype.Text\n\tFor         pgtype.Text\n\tImport      pgtype.Text\n\tReturn      pgtype.Text\n\tVar         pgtype.Text\n\tQ           pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_go_keywords/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst keywordBreak = `-- name: KeywordBreak :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordBreak(ctx context.Context, break_ string) error {\n\t_, err := q.db.Exec(ctx, keywordBreak, break_)\n\treturn err\n}\n\nconst keywordCase = `-- name: KeywordCase :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordCase(ctx context.Context, case_ string) error {\n\t_, err := q.db.Exec(ctx, keywordCase, case_)\n\treturn err\n}\n\nconst keywordChan = `-- name: KeywordChan :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordChan(ctx context.Context, chan_ string) error {\n\t_, err := q.db.Exec(ctx, keywordChan, chan_)\n\treturn err\n}\n\nconst keywordConst = `-- name: KeywordConst :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordConst(ctx context.Context, const_ string) error {\n\t_, err := q.db.Exec(ctx, keywordConst, const_)\n\treturn err\n}\n\nconst keywordContinue = `-- name: KeywordContinue :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordContinue(ctx context.Context, continue_ string) error {\n\t_, err := q.db.Exec(ctx, keywordContinue, continue_)\n\treturn err\n}\n\nconst keywordDefault = `-- name: KeywordDefault :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordDefault(ctx context.Context, default_ string) error {\n\t_, err := q.db.Exec(ctx, keywordDefault, default_)\n\treturn err\n}\n\nconst keywordDefer = `-- name: KeywordDefer :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordDefer(ctx context.Context, defer_ string) error {\n\t_, err := q.db.Exec(ctx, keywordDefer, defer_)\n\treturn err\n}\n\nconst keywordElse = `-- name: KeywordElse :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordElse(ctx context.Context, else_ string) error {\n\t_, err := q.db.Exec(ctx, keywordElse, else_)\n\treturn err\n}\n\nconst keywordFallthrough = `-- name: KeywordFallthrough :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordFallthrough(ctx context.Context, fallthrough_ string) error {\n\t_, err := q.db.Exec(ctx, keywordFallthrough, fallthrough_)\n\treturn err\n}\n\nconst keywordFor = `-- name: KeywordFor :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordFor(ctx context.Context, for_ string) error {\n\t_, err := q.db.Exec(ctx, keywordFor, for_)\n\treturn err\n}\n\nconst keywordFunc = `-- name: KeywordFunc :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordFunc(ctx context.Context, func_ string) error {\n\t_, err := q.db.Exec(ctx, keywordFunc, func_)\n\treturn err\n}\n\nconst keywordGo = `-- name: KeywordGo :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordGo(ctx context.Context, go_ string) error {\n\t_, err := q.db.Exec(ctx, keywordGo, go_)\n\treturn err\n}\n\nconst keywordGoto = `-- name: KeywordGoto :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordGoto(ctx context.Context, goto_ string) error {\n\t_, err := q.db.Exec(ctx, keywordGoto, goto_)\n\treturn err\n}\n\nconst keywordIf = `-- name: KeywordIf :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordIf(ctx context.Context, if_ string) error {\n\t_, err := q.db.Exec(ctx, keywordIf, if_)\n\treturn err\n}\n\nconst keywordImport = `-- name: KeywordImport :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordImport(ctx context.Context, import_ string) error {\n\t_, err := q.db.Exec(ctx, keywordImport, import_)\n\treturn err\n}\n\nconst keywordInterface = `-- name: KeywordInterface :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordInterface(ctx context.Context, interface_ string) error {\n\t_, err := q.db.Exec(ctx, keywordInterface, interface_)\n\treturn err\n}\n\nconst keywordMap = `-- name: KeywordMap :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordMap(ctx context.Context, map_ string) error {\n\t_, err := q.db.Exec(ctx, keywordMap, map_)\n\treturn err\n}\n\nconst keywordPackage = `-- name: KeywordPackage :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordPackage(ctx context.Context, package_ string) error {\n\t_, err := q.db.Exec(ctx, keywordPackage, package_)\n\treturn err\n}\n\nconst keywordQ = `-- name: KeywordQ :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordQ(ctx context.Context, q_ string) error {\n\t_, err := q.db.Exec(ctx, keywordQ, q_)\n\treturn err\n}\n\nconst keywordRange = `-- name: KeywordRange :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordRange(ctx context.Context, range_ string) error {\n\t_, err := q.db.Exec(ctx, keywordRange, range_)\n\treturn err\n}\n\nconst keywordReturn = `-- name: KeywordReturn :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordReturn(ctx context.Context, return_ string) error {\n\t_, err := q.db.Exec(ctx, keywordReturn, return_)\n\treturn err\n}\n\nconst keywordSelect = `-- name: KeywordSelect :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordSelect(ctx context.Context, select_ string) error {\n\t_, err := q.db.Exec(ctx, keywordSelect, select_)\n\treturn err\n}\n\nconst keywordStruct = `-- name: KeywordStruct :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordStruct(ctx context.Context, struct_ string) error {\n\t_, err := q.db.Exec(ctx, keywordStruct, struct_)\n\treturn err\n}\n\nconst keywordSwitch = `-- name: KeywordSwitch :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordSwitch(ctx context.Context, switch_ string) error {\n\t_, err := q.db.Exec(ctx, keywordSwitch, switch_)\n\treturn err\n}\n\nconst keywordType = `-- name: KeywordType :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordType(ctx context.Context, type_ string) error {\n\t_, err := q.db.Exec(ctx, keywordType, type_)\n\treturn err\n}\n\nconst keywordVar = `-- name: KeywordVar :exec\nSELECT $1::text\n`\n\nfunc (q *Queries) KeywordVar(ctx context.Context, var_ string) error {\n\t_, err := q.db.Exec(ctx, keywordVar, var_)\n\treturn err\n}\n\nconst selectBreak = `-- name: SelectBreak :one\nSELECT \"break\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectBreak(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectBreak)\n\tvar break_ pgtype.Text\n\terr := row.Scan(&break_)\n\treturn break_, err\n}\n\nconst selectCase = `-- name: SelectCase :one\nSELECT \"case\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectCase(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectCase)\n\tvar case_ pgtype.Text\n\terr := row.Scan(&case_)\n\treturn case_, err\n}\n\nconst selectChan = `-- name: SelectChan :one\nSELECT \"chan\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectChan(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectChan)\n\tvar chan_ pgtype.Text\n\terr := row.Scan(&chan_)\n\treturn chan_, err\n}\n\nconst selectConst = `-- name: SelectConst :one\nSELECT \"const\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectConst(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectConst)\n\tvar const_ pgtype.Text\n\terr := row.Scan(&const_)\n\treturn const_, err\n}\n\nconst selectContinue = `-- name: SelectContinue :one\nSELECT \"continue\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectContinue(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectContinue)\n\tvar continue_ pgtype.Text\n\terr := row.Scan(&continue_)\n\treturn continue_, err\n}\n\nconst selectDefault = `-- name: SelectDefault :one\nSELECT \"default\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectDefault(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectDefault)\n\tvar default_ pgtype.Text\n\terr := row.Scan(&default_)\n\treturn default_, err\n}\n\nconst selectDefer = `-- name: SelectDefer :one\nSELECT \"defer\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectDefer(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectDefer)\n\tvar defer_ pgtype.Text\n\terr := row.Scan(&defer_)\n\treturn defer_, err\n}\n\nconst selectElse = `-- name: SelectElse :one\nSELECT \"else\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectElse(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectElse)\n\tvar else_ pgtype.Text\n\terr := row.Scan(&else_)\n\treturn else_, err\n}\n\nconst selectFallthrough = `-- name: SelectFallthrough :one\nSELECT \"fallthrough\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectFallthrough(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectFallthrough)\n\tvar fallthrough_ pgtype.Text\n\terr := row.Scan(&fallthrough_)\n\treturn fallthrough_, err\n}\n\nconst selectFor = `-- name: SelectFor :one\nSELECT \"for\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectFor(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectFor)\n\tvar for_ pgtype.Text\n\terr := row.Scan(&for_)\n\treturn for_, err\n}\n\nconst selectFunc = `-- name: SelectFunc :one\nSELECT \"func\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectFunc(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectFunc)\n\tvar func_ pgtype.Text\n\terr := row.Scan(&func_)\n\treturn func_, err\n}\n\nconst selectGo = `-- name: SelectGo :one\nSELECT \"go\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectGo(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectGo)\n\tvar go_ pgtype.Text\n\terr := row.Scan(&go_)\n\treturn go_, err\n}\n\nconst selectGoto = `-- name: SelectGoto :one\nSELECT \"goto\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectGoto(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectGoto)\n\tvar goto_ pgtype.Text\n\terr := row.Scan(&goto_)\n\treturn goto_, err\n}\n\nconst selectIf = `-- name: SelectIf :one\nSELECT \"if\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectIf(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectIf)\n\tvar if_ pgtype.Text\n\terr := row.Scan(&if_)\n\treturn if_, err\n}\n\nconst selectImport = `-- name: SelectImport :one\nSELECT \"import\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectImport(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectImport)\n\tvar import_ pgtype.Text\n\terr := row.Scan(&import_)\n\treturn import_, err\n}\n\nconst selectInterface = `-- name: SelectInterface :one\nSELECT \"interface\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectInterface(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectInterface)\n\tvar interface_ pgtype.Text\n\terr := row.Scan(&interface_)\n\treturn interface_, err\n}\n\nconst selectMap = `-- name: SelectMap :one\nSELECT \"map\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectMap(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectMap)\n\tvar map_ pgtype.Text\n\terr := row.Scan(&map_)\n\treturn map_, err\n}\n\nconst selectPackage = `-- name: SelectPackage :one\nSELECT \"package\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectPackage(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectPackage)\n\tvar package_ pgtype.Text\n\terr := row.Scan(&package_)\n\treturn package_, err\n}\n\nconst selectQ = `-- name: SelectQ :one\nSELECT \"q\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectQ(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectQ)\n\tvar q_ pgtype.Text\n\terr := row.Scan(&q_)\n\treturn q_, err\n}\n\nconst selectRange = `-- name: SelectRange :one\nSELECT \"range\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectRange(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectRange)\n\tvar range_ pgtype.Text\n\terr := row.Scan(&range_)\n\treturn range_, err\n}\n\nconst selectReturn = `-- name: SelectReturn :one\nSELECT \"return\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectReturn(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectReturn)\n\tvar return_ pgtype.Text\n\terr := row.Scan(&return_)\n\treturn return_, err\n}\n\nconst selectSelect = `-- name: SelectSelect :one\nSELECT \"select\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectSelect(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectSelect)\n\tvar select_ pgtype.Text\n\terr := row.Scan(&select_)\n\treturn select_, err\n}\n\nconst selectStruct = `-- name: SelectStruct :one\nSELECT \"struct\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectStruct(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectStruct)\n\tvar struct_ pgtype.Text\n\terr := row.Scan(&struct_)\n\treturn struct_, err\n}\n\nconst selectSwitch = `-- name: SelectSwitch :one\nSELECT \"switch\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectSwitch(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectSwitch)\n\tvar switch_ pgtype.Text\n\terr := row.Scan(&switch_)\n\treturn switch_, err\n}\n\nconst selectType = `-- name: SelectType :one\nSELECT \"type\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectType(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectType)\n\tvar type_ pgtype.Text\n\terr := row.Scan(&type_)\n\treturn type_, err\n}\n\nconst selectVar = `-- name: SelectVar :one\nSELECT \"var\" FROM go_keywords\n`\n\nfunc (q *Queries) SelectVar(ctx context.Context) (pgtype.Text, error) {\n\trow := q.db.QueryRow(ctx, selectVar)\n\tvar var_ pgtype.Text\n\terr := row.Scan(&var_)\n\treturn var_, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_go_keywords/postgresql/query.sql",
    "content": "-- name: KeywordBreak :exec\nSELECT sqlc.arg('break')::text;\n\n-- name: KeywordDefault :exec\nSELECT sqlc.arg('default')::text;\n\n-- name: KeywordFunc :exec\nSELECT sqlc.arg('func')::text;\n\n-- name: KeywordInterface :exec\nSELECT sqlc.arg('interface')::text;\n\n-- name: KeywordSelect :exec\nSELECT sqlc.arg('select')::text;\n\n-- name: KeywordCase :exec\nSELECT sqlc.arg('case')::text;\n\n-- name: KeywordDefer :exec\nSELECT sqlc.arg('defer')::text;\n\n-- name: KeywordGo :exec\nSELECT sqlc.arg('go')::text;\n\n-- name: KeywordMap :exec\nSELECT sqlc.arg('map')::text;\n\n-- name: KeywordStruct :exec\nSELECT sqlc.arg('struct')::text;\n\n-- name: KeywordChan :exec\nSELECT sqlc.arg('chan')::text;\n\n-- name: KeywordElse :exec\nSELECT sqlc.arg('else')::text;\n\n-- name: KeywordGoto :exec\nSELECT sqlc.arg('goto')::text;\n\n-- name: KeywordPackage :exec\nSELECT sqlc.arg('package')::text;\n\n-- name: KeywordSwitch :exec\nSELECT sqlc.arg('switch')::text;\n\n-- name: KeywordConst :exec\nSELECT sqlc.arg('const')::text;\n\n-- name: KeywordFallthrough :exec\nSELECT sqlc.arg('fallthrough')::text;\n\n-- name: KeywordIf :exec\nSELECT sqlc.arg('if')::text;\n\n-- name: KeywordRange :exec\nSELECT sqlc.arg('range')::text;\n\n-- name: KeywordType :exec\nSELECT sqlc.arg('type')::text;\n\n-- name: KeywordContinue :exec\nSELECT sqlc.arg('continue')::text;\n\n-- name: KeywordFor :exec\nSELECT sqlc.arg('for')::text;\n\n-- name: KeywordImport :exec\nSELECT sqlc.arg('import')::text;\n\n-- name: KeywordReturn :exec\nSELECT sqlc.arg('return')::text;\n\n-- name: KeywordVar :exec\nSELECT sqlc.arg('var')::text;\n\n-- name: KeywordQ :exec\nSELECT sqlc.arg('q')::text;\n\n-- name: SelectBreak :one\nSELECT \"break\" FROM go_keywords;\n\n-- name: SelectDefault :one\nSELECT \"default\" FROM go_keywords;\n\n-- name: SelectFunc :one\nSELECT \"func\" FROM go_keywords;\n\n-- name: SelectInterface :one\nSELECT \"interface\" FROM go_keywords;\n\n-- name: SelectSelect :one\nSELECT \"select\" FROM go_keywords;\n\n-- name: SelectCase :one\nSELECT \"case\" FROM go_keywords;\n\n-- name: SelectDefer :one\nSELECT \"defer\" FROM go_keywords;\n\n-- name: SelectGo :one\nSELECT \"go\" FROM go_keywords;\n\n-- name: SelectMap :one\nSELECT \"map\" FROM go_keywords;\n\n-- name: SelectStruct :one\nSELECT \"struct\" FROM go_keywords;\n\n-- name: SelectChan :one\nSELECT \"chan\" FROM go_keywords;\n\n-- name: SelectElse :one\nSELECT \"else\" FROM go_keywords;\n\n-- name: SelectGoto :one\nSELECT \"goto\" FROM go_keywords;\n\n-- name: SelectPackage :one\nSELECT \"package\" FROM go_keywords;\n\n-- name: SelectSwitch :one\nSELECT \"switch\" FROM go_keywords;\n\n-- name: SelectConst :one\nSELECT \"const\" FROM go_keywords;\n\n-- name: SelectFallthrough :one\nSELECT \"fallthrough\" FROM go_keywords;\n\n-- name: SelectIf :one\nSELECT \"if\" FROM go_keywords;\n\n-- name: SelectRange :one\nSELECT \"range\" FROM go_keywords;\n\n-- name: SelectType :one\nSELECT \"type\" FROM go_keywords;\n\n-- name: SelectContinue :one\nSELECT \"continue\" FROM go_keywords;\n\n-- name: SelectFor :one\nSELECT \"for\" FROM go_keywords;\n\n-- name: SelectImport :one\nSELECT \"import\" FROM go_keywords;\n\n-- name: SelectReturn :one\nSELECT \"return\" FROM go_keywords;\n\n-- name: SelectVar :one\nSELECT \"var\" FROM go_keywords;\n\n-- name: SelectQ :one\nSELECT \"q\" FROM go_keywords;\n"
  },
  {
    "path": "internal/endtoend/testdata/params_go_keywords/postgresql/schema.sql",
    "content": "CREATE TABLE go_keywords (\n    \"break\" TEXT,\n    \"default\" TEXT,\n    \"func\" TEXT,\n    \"interface\" TEXT,\n    \"select\" TEXT,\n    \"case\" TEXT,\n    \"defer\" TEXT,\n    \"go\" TEXT,\n    \"map\" TEXT,\n    \"struct\" TEXT,\n    \"chan\" TEXT,\n    \"else\" TEXT,\n    \"goto\" TEXT,\n    \"package\" TEXT,\n    \"switch\" TEXT,\n    \"const\" TEXT,\n    \"fallthrough\" TEXT,\n    \"if\" TEXT,\n    \"range\" TEXT,\n    \"type\" TEXT,\n    \"continue\" TEXT,\n    \"for\" TEXT,\n    \"import\" TEXT,\n    \"return\" TEXT,\n    \"var\" TEXT,\n    \"q\" TEXT\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/params_go_keywords/postgresql/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/params_in_nested_func/mysql/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_in_nested_func/mysql/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Routergroup struct {\n\tGroupid                uint32\n\tGroupname              string\n\tDefaultconfigid        sql.NullInt32\n\tDefaultfirmwareversion sql.NullString\n\tParentgroupid          sql.NullInt32\n\tFirmwarepolicy         sql.NullString\n\tStyles                 sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_in_nested_func/mysql/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getGroups = `-- name: GetGroups :many\nSELECT\n    rg.groupId,\n    rg.groupName\nFROM \n    RouterGroup rg\nWHERE\n    rg.groupName LIKE CONCAT('%', COALESCE(?, rg.groupName), '%') AND\n    rg.groupId = COALESCE(?, rg.groupId)\n`\n\ntype GetGroupsParams struct {\n\tGroupName interface{}\n\tGroupId   sql.NullInt32\n}\n\ntype GetGroupsRow struct {\n\tGroupid   uint32\n\tGroupname string\n}\n\nfunc (q *Queries) GetGroups(ctx context.Context, arg GetGroupsParams) ([]GetGroupsRow, error) {\n\trows, err := q.db.QueryContext(ctx, getGroups, arg.GroupName, arg.GroupId)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetGroupsRow\n\tfor rows.Next() {\n\t\tvar i GetGroupsRow\n\t\tif err := rows.Scan(&i.Groupid, &i.Groupname); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_in_nested_func/mysql/query.sql",
    "content": "-- name: GetGroups :many\nSELECT\n    rg.groupId,\n    rg.groupName\nFROM \n    RouterGroup rg\nWHERE\n    rg.groupName LIKE CONCAT('%', COALESCE(sqlc.narg('groupName'), rg.groupName), '%') AND\n    rg.groupId = COALESCE(sqlc.narg('groupId'), rg.groupId);\n"
  },
  {
    "path": "internal/endtoend/testdata/params_in_nested_func/mysql/schema.sql",
    "content": "create table RouterGroup\n(\n    groupId                int unsigned auto_increment primary key,\n    groupName              varchar(100)         not null,\n    defaultConfigId        int unsigned         null,\n    defaultFirmwareVersion varchar(12)          null,\n    parentGroupId int unsigned      null,\n    firmwarePolicy         varchar(45)          null,\n    styles                 text                 null\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/params_in_nested_func/mysql/sqlc.yaml",
    "content": "version: '2'\nsql:\n- schema: schema.sql\n  queries: query.sql\n  engine: mysql\n  gen:\n    go:\n      out: db\n"
  },
  {
    "path": "internal/endtoend/testdata/params_in_nested_func/postgresql/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_in_nested_func/postgresql/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Routergroup struct {\n\tGroupid                int32\n\tGroupname              string\n\tDefaultconfigid        sql.NullInt32\n\tDefaultfirmwareversion sql.NullString\n\tParentgroupid          sql.NullInt32\n\tFirmwarepolicy         sql.NullString\n\tStyles                 sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_in_nested_func/postgresql/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getGroups = `-- name: GetGroups :many\nSELECT\n    rg.groupId,\n    rg.groupName\nFROM \n    RouterGroup rg\nWHERE\n    rg.groupName LIKE CONCAT('%', COALESCE($1::text, rg.groupName), '%') AND\n    rg.groupId = COALESCE($2, rg.groupId)\n`\n\ntype GetGroupsParams struct {\n\tGroupName sql.NullString\n\tGroupId   sql.NullInt32\n}\n\ntype GetGroupsRow struct {\n\tGroupid   int32\n\tGroupname string\n}\n\nfunc (q *Queries) GetGroups(ctx context.Context, arg GetGroupsParams) ([]GetGroupsRow, error) {\n\trows, err := q.db.QueryContext(ctx, getGroups, arg.GroupName, arg.GroupId)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetGroupsRow\n\tfor rows.Next() {\n\t\tvar i GetGroupsRow\n\t\tif err := rows.Scan(&i.Groupid, &i.Groupname); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_in_nested_func/postgresql/query.sql",
    "content": "-- name: GetGroups :many\nSELECT\n    rg.groupId,\n    rg.groupName\nFROM \n    RouterGroup rg\nWHERE\n    rg.groupName LIKE CONCAT('%', COALESCE(sqlc.narg('groupName')::text, rg.groupName), '%') AND\n    rg.groupId = COALESCE(sqlc.narg('groupId'), rg.groupId);\n"
  },
  {
    "path": "internal/endtoend/testdata/params_in_nested_func/postgresql/schema.sql",
    "content": "create table RouterGroup\n(\n    groupId                serial primary key,\n    groupName              varchar(100)         not null,\n    defaultConfigId        int         null,\n    defaultFirmwareVersion varchar(12)          null,\n    parentGroupId int      null,\n    firmwarePolicy         varchar(45)          null,\n    styles                 text                 null\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/params_in_nested_func/postgresql/sqlc.yaml",
    "content": "version: '2'\nsql:\n- schema: schema.sql\n  queries: query.sql\n  engine: postgresql\n  gen:\n    go:\n      out: db\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Order struct {\n\tID     int32\n\tPrice  string\n\tUserID int32\n}\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int32\n\tJobStatus string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getUserByID = `-- name: GetUserByID :one\nSELECT first_name, id, last_name FROM users WHERE id = ?\n`\n\ntype GetUserByIDRow struct {\n\tFirstName string\n\tID        int32\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) GetUserByID(ctx context.Context, targetID int32) (GetUserByIDRow, error) {\n\trow := q.db.QueryRowContext(ctx, getUserByID, targetID)\n\tvar i GetUserByIDRow\n\terr := row.Scan(&i.FirstName, &i.ID, &i.LastName)\n\treturn i, err\n}\n\nconst insertNewUser = `-- name: InsertNewUser :exec\nINSERT INTO users (first_name, last_name) VALUES (?, ?)\n`\n\ntype InsertNewUserParams struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) InsertNewUser(ctx context.Context, arg InsertNewUserParams) error {\n\t_, err := q.db.ExecContext(ctx, insertNewUser, arg.FirstName, arg.LastName)\n\treturn err\n}\n\nconst limitSQLCArg = `-- name: LimitSQLCArg :many\nselect first_name, id FROM users LIMIT ?\n`\n\ntype LimitSQLCArgRow struct {\n\tFirstName string\n\tID        int32\n}\n\nfunc (q *Queries) LimitSQLCArg(ctx context.Context, limit int32) ([]LimitSQLCArgRow, error) {\n\trows, err := q.db.QueryContext(ctx, limitSQLCArg, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []LimitSQLCArgRow\n\tfor rows.Next() {\n\t\tvar i LimitSQLCArgRow\n\t\tif err := rows.Scan(&i.FirstName, &i.ID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUserOrders = `-- name: ListUserOrders :many\nSELECT\n\tusers.id,\n\tusers.first_name,\n\torders.price\nFROM\n\torders\nLEFT JOIN users ON orders.user_id = users.id\nWHERE orders.price > ?\n`\n\ntype ListUserOrdersRow struct {\n\tID        sql.NullInt32\n\tFirstName sql.NullString\n\tPrice     string\n}\n\nfunc (q *Queries) ListUserOrders(ctx context.Context, minPrice string) ([]ListUserOrdersRow, error) {\n\trows, err := q.db.QueryContext(ctx, listUserOrders, minPrice)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUserOrdersRow\n\tfor rows.Next() {\n\t\tvar i ListUserOrdersRow\n\t\tif err := rows.Scan(&i.ID, &i.FirstName, &i.Price); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUserParenExpr = `-- name: ListUserParenExpr :many\nSELECT id, first_name, last_name, age, job_status FROM users WHERE (job_status = 'APPLIED' OR job_status = 'PENDING')\nAND id > ?\nORDER BY id\nLIMIT ?\n`\n\ntype ListUserParenExprParams struct {\n\tID    int32\n\tLimit int32\n}\n\nfunc (q *Queries) ListUserParenExpr(ctx context.Context, arg ListUserParenExprParams) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, listUserParenExpr, arg.ID, arg.Limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t\t&i.JobStatus,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUsersByFamily = `-- name: ListUsersByFamily :many\nSELECT first_name, last_name FROM users WHERE age < ? AND last_name = ?\n`\n\ntype ListUsersByFamilyParams struct {\n\tMaxAge   int32\n\tInFamily sql.NullString\n}\n\ntype ListUsersByFamilyRow struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) ListUsersByFamily(ctx context.Context, arg ListUsersByFamilyParams) ([]ListUsersByFamilyRow, error) {\n\trows, err := q.db.QueryContext(ctx, listUsersByFamily, arg.MaxAge, arg.InFamily)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUsersByFamilyRow\n\tfor rows.Next() {\n\t\tvar i ListUsersByFamilyRow\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUsersByID = `-- name: ListUsersByID :many\nSELECT first_name, id, last_name FROM users WHERE id < ?\n`\n\ntype ListUsersByIDRow struct {\n\tFirstName string\n\tID        int32\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) ListUsersByID(ctx context.Context, id int32) ([]ListUsersByIDRow, error) {\n\trows, err := q.db.QueryContext(ctx, listUsersByID, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUsersByIDRow\n\tfor rows.Next() {\n\t\tvar i ListUsersByIDRow\n\t\tif err := rows.Scan(&i.FirstName, &i.ID, &i.LastName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUsersWithLimit = `-- name: ListUsersWithLimit :many\nSELECT first_name, last_name FROM users LIMIT ?\n`\n\ntype ListUsersWithLimitRow struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) ListUsersWithLimit(ctx context.Context, limit int32) ([]ListUsersWithLimitRow, error) {\n\trows, err := q.db.QueryContext(ctx, listUsersWithLimit, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUsersWithLimitRow\n\tfor rows.Next() {\n\t\tvar i ListUsersWithLimitRow\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/mysql/query.sql",
    "content": "/* name: ListUsersByID :many */\nSELECT first_name, id, last_name FROM users WHERE id < ?;\n\n/* name: ListUserOrders :many */\nSELECT\n\tusers.id,\n\tusers.first_name,\n\torders.price\nFROM\n\torders\nLEFT JOIN users ON orders.user_id = users.id\nWHERE orders.price > sqlc.arg('min_price');\n\n/* name: GetUserByID :one */\nSELECT first_name, id, last_name FROM users WHERE id = sqlc.arg('target_id');\n\n/* name: ListUsersByFamily :many */\nSELECT first_name, last_name FROM users WHERE age < sqlc.arg('max_age') AND last_name = sqlc.arg('in_family');\n\n/* name: ListUsersWithLimit :many */\nSELECT first_name, last_name FROM users LIMIT ?;\n\n/* name: LimitSQLCArg :many */\nselect first_name, id FROM users LIMIT ?;\n\n/* name: InsertNewUser :exec */\nINSERT INTO users (first_name, last_name) VALUES (?, ?);\n\n/* name: ListUserParenExpr :many */\nSELECT * FROM users WHERE (job_status = 'APPLIED' OR job_status = 'PENDING')\nAND id > ?\nORDER BY id\nLIMIT ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/mysql/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL,\n    job_status varchar(10) NOT NULL\n) ENGINE=InnoDB;\n\nCREATE TABLE orders (\n    id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,\n    price DECIMAL(13, 4) NOT NULL,\n    user_id integer NOT NULL\n) ENGINE=InnoDB;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"mysql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/pgx/v4/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\n\t\"github.com/jackc/pgtype\"\n)\n\ntype Order struct {\n\tID     int32\n\tPrice  pgtype.Numeric\n\tUserID int32\n}\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int32\n\tJobStatus string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\n\t\"github.com/jackc/pgtype\"\n)\n\nconst getUserByID = `-- name: GetUserByID :one\nSELECT first_name, id, last_name FROM users WHERE id = $1\n`\n\ntype GetUserByIDRow struct {\n\tFirstName string\n\tID        int32\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) GetUserByID(ctx context.Context, targetID int32) (GetUserByIDRow, error) {\n\trow := q.db.QueryRow(ctx, getUserByID, targetID)\n\tvar i GetUserByIDRow\n\terr := row.Scan(&i.FirstName, &i.ID, &i.LastName)\n\treturn i, err\n}\n\nconst insertNewUser = `-- name: InsertNewUser :exec\nINSERT INTO users (first_name, last_name) VALUES ($1, $2)\n`\n\ntype InsertNewUserParams struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) InsertNewUser(ctx context.Context, arg InsertNewUserParams) error {\n\t_, err := q.db.Exec(ctx, insertNewUser, arg.FirstName, arg.LastName)\n\treturn err\n}\n\nconst limitSQLCArg = `-- name: LimitSQLCArg :many\nselect first_name, id FROM users LIMIT $1\n`\n\ntype LimitSQLCArgRow struct {\n\tFirstName string\n\tID        int32\n}\n\nfunc (q *Queries) LimitSQLCArg(ctx context.Context, limit int32) ([]LimitSQLCArgRow, error) {\n\trows, err := q.db.Query(ctx, limitSQLCArg, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []LimitSQLCArgRow\n\tfor rows.Next() {\n\t\tvar i LimitSQLCArgRow\n\t\tif err := rows.Scan(&i.FirstName, &i.ID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUserOrders = `-- name: ListUserOrders :many\nSELECT\n\tusers.id,\n\tusers.first_name,\n\torders.price\nFROM\n\torders\nLEFT JOIN users ON orders.user_id = users.id\nWHERE orders.price > $1\n`\n\ntype ListUserOrdersRow struct {\n\tID        sql.NullInt32\n\tFirstName sql.NullString\n\tPrice     pgtype.Numeric\n}\n\nfunc (q *Queries) ListUserOrders(ctx context.Context, minPrice pgtype.Numeric) ([]ListUserOrdersRow, error) {\n\trows, err := q.db.Query(ctx, listUserOrders, minPrice)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUserOrdersRow\n\tfor rows.Next() {\n\t\tvar i ListUserOrdersRow\n\t\tif err := rows.Scan(&i.ID, &i.FirstName, &i.Price); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUserParenExpr = `-- name: ListUserParenExpr :many\nSELECT id, first_name, last_name, age, job_status FROM users WHERE (job_status = 'APPLIED' OR job_status = 'PENDING')\nAND id > $1\nORDER BY id\nLIMIT $2\n`\n\ntype ListUserParenExprParams struct {\n\tID    int32\n\tLimit int32\n}\n\nfunc (q *Queries) ListUserParenExpr(ctx context.Context, arg ListUserParenExprParams) ([]User, error) {\n\trows, err := q.db.Query(ctx, listUserParenExpr, arg.ID, arg.Limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t\t&i.JobStatus,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUsersByFamily = `-- name: ListUsersByFamily :many\nSELECT first_name, last_name FROM users WHERE age < $1 AND last_name = $2\n`\n\ntype ListUsersByFamilyParams struct {\n\tMaxAge   int32\n\tInFamily sql.NullString\n}\n\ntype ListUsersByFamilyRow struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) ListUsersByFamily(ctx context.Context, arg ListUsersByFamilyParams) ([]ListUsersByFamilyRow, error) {\n\trows, err := q.db.Query(ctx, listUsersByFamily, arg.MaxAge, arg.InFamily)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUsersByFamilyRow\n\tfor rows.Next() {\n\t\tvar i ListUsersByFamilyRow\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUsersByID = `-- name: ListUsersByID :many\nSELECT first_name, id, last_name FROM users WHERE id < $1\n`\n\ntype ListUsersByIDRow struct {\n\tFirstName string\n\tID        int32\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) ListUsersByID(ctx context.Context, id int32) ([]ListUsersByIDRow, error) {\n\trows, err := q.db.Query(ctx, listUsersByID, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUsersByIDRow\n\tfor rows.Next() {\n\t\tvar i ListUsersByIDRow\n\t\tif err := rows.Scan(&i.FirstName, &i.ID, &i.LastName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUsersWithLimit = `-- name: ListUsersWithLimit :many\nSELECT first_name, last_name FROM users LIMIT $1\n`\n\ntype ListUsersWithLimitRow struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) ListUsersWithLimit(ctx context.Context, limit int32) ([]ListUsersWithLimitRow, error) {\n\trows, err := q.db.Query(ctx, listUsersWithLimit, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUsersWithLimitRow\n\tfor rows.Next() {\n\t\tvar i ListUsersWithLimitRow\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/pgx/v4/query.sql",
    "content": "/* name: ListUsersByID :many */\nSELECT first_name, id, last_name FROM users WHERE id < $1;\n\n/* name: ListUserOrders :many */\nSELECT\n\tusers.id,\n\tusers.first_name,\n\torders.price\nFROM\n\torders\nLEFT JOIN users ON orders.user_id = users.id\nWHERE orders.price > sqlc.arg('min_price');\n\n/* name: GetUserByID :one */\nSELECT first_name, id, last_name FROM users WHERE id = sqlc.arg('target_id');\n\n/* name: ListUsersByFamily :many */\nSELECT first_name, last_name FROM users WHERE age < sqlc.arg('max_age') AND last_name = sqlc.arg('in_family');\n\n/* name: ListUsersWithLimit :many */\nSELECT first_name, last_name FROM users LIMIT $1;\n\n/* name: LimitSQLCArg :many */\nselect first_name, id FROM users LIMIT $1;\n\n/* name: InsertNewUser :exec */\nINSERT INTO users (first_name, last_name) VALUES ($1, $2);\n\n/* name: ListUserParenExpr :many */\nSELECT * FROM users WHERE (job_status = 'APPLIED' OR job_status = 'PENDING')\nAND id > $1\nORDER BY id\nLIMIT $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE users (\n    id SERIAL NOT NULL,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL,\n    job_status varchar(10) NOT NULL\n);\n\nCREATE TABLE orders (\n    id SERIAL NOT NULL,\n    price DECIMAL(13, 4) NOT NULL,\n    user_id integer NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/pgx/v5/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Order struct {\n\tID     int32\n\tPrice  pgtype.Numeric\n\tUserID int32\n}\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  pgtype.Text\n\tAge       int32\n\tJobStatus string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getUserByID = `-- name: GetUserByID :one\nSELECT first_name, id, last_name FROM users WHERE id = $1\n`\n\ntype GetUserByIDRow struct {\n\tFirstName string\n\tID        int32\n\tLastName  pgtype.Text\n}\n\nfunc (q *Queries) GetUserByID(ctx context.Context, targetID int32) (GetUserByIDRow, error) {\n\trow := q.db.QueryRow(ctx, getUserByID, targetID)\n\tvar i GetUserByIDRow\n\terr := row.Scan(&i.FirstName, &i.ID, &i.LastName)\n\treturn i, err\n}\n\nconst insertNewUser = `-- name: InsertNewUser :exec\nINSERT INTO users (first_name, last_name) VALUES ($1, $2)\n`\n\ntype InsertNewUserParams struct {\n\tFirstName string\n\tLastName  pgtype.Text\n}\n\nfunc (q *Queries) InsertNewUser(ctx context.Context, arg InsertNewUserParams) error {\n\t_, err := q.db.Exec(ctx, insertNewUser, arg.FirstName, arg.LastName)\n\treturn err\n}\n\nconst limitSQLCArg = `-- name: LimitSQLCArg :many\nselect first_name, id FROM users LIMIT $1\n`\n\ntype LimitSQLCArgRow struct {\n\tFirstName string\n\tID        int32\n}\n\nfunc (q *Queries) LimitSQLCArg(ctx context.Context, limit int32) ([]LimitSQLCArgRow, error) {\n\trows, err := q.db.Query(ctx, limitSQLCArg, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []LimitSQLCArgRow\n\tfor rows.Next() {\n\t\tvar i LimitSQLCArgRow\n\t\tif err := rows.Scan(&i.FirstName, &i.ID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUserOrders = `-- name: ListUserOrders :many\nSELECT\n\tusers.id,\n\tusers.first_name,\n\torders.price\nFROM\n\torders\nLEFT JOIN users ON orders.user_id = users.id\nWHERE orders.price > $1\n`\n\ntype ListUserOrdersRow struct {\n\tID        pgtype.Int4\n\tFirstName pgtype.Text\n\tPrice     pgtype.Numeric\n}\n\nfunc (q *Queries) ListUserOrders(ctx context.Context, minPrice pgtype.Numeric) ([]ListUserOrdersRow, error) {\n\trows, err := q.db.Query(ctx, listUserOrders, minPrice)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUserOrdersRow\n\tfor rows.Next() {\n\t\tvar i ListUserOrdersRow\n\t\tif err := rows.Scan(&i.ID, &i.FirstName, &i.Price); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUserParenExpr = `-- name: ListUserParenExpr :many\nSELECT id, first_name, last_name, age, job_status FROM users WHERE (job_status = 'APPLIED' OR job_status = 'PENDING')\nAND id > $1\nORDER BY id\nLIMIT $2\n`\n\ntype ListUserParenExprParams struct {\n\tID    int32\n\tLimit int32\n}\n\nfunc (q *Queries) ListUserParenExpr(ctx context.Context, arg ListUserParenExprParams) ([]User, error) {\n\trows, err := q.db.Query(ctx, listUserParenExpr, arg.ID, arg.Limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t\t&i.JobStatus,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUsersByFamily = `-- name: ListUsersByFamily :many\nSELECT first_name, last_name FROM users WHERE age < $1 AND last_name = $2\n`\n\ntype ListUsersByFamilyParams struct {\n\tMaxAge   int32\n\tInFamily pgtype.Text\n}\n\ntype ListUsersByFamilyRow struct {\n\tFirstName string\n\tLastName  pgtype.Text\n}\n\nfunc (q *Queries) ListUsersByFamily(ctx context.Context, arg ListUsersByFamilyParams) ([]ListUsersByFamilyRow, error) {\n\trows, err := q.db.Query(ctx, listUsersByFamily, arg.MaxAge, arg.InFamily)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUsersByFamilyRow\n\tfor rows.Next() {\n\t\tvar i ListUsersByFamilyRow\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUsersByID = `-- name: ListUsersByID :many\nSELECT first_name, id, last_name FROM users WHERE id < $1\n`\n\ntype ListUsersByIDRow struct {\n\tFirstName string\n\tID        int32\n\tLastName  pgtype.Text\n}\n\nfunc (q *Queries) ListUsersByID(ctx context.Context, id int32) ([]ListUsersByIDRow, error) {\n\trows, err := q.db.Query(ctx, listUsersByID, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUsersByIDRow\n\tfor rows.Next() {\n\t\tvar i ListUsersByIDRow\n\t\tif err := rows.Scan(&i.FirstName, &i.ID, &i.LastName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUsersWithLimit = `-- name: ListUsersWithLimit :many\nSELECT first_name, last_name FROM users LIMIT $1\n`\n\ntype ListUsersWithLimitRow struct {\n\tFirstName string\n\tLastName  pgtype.Text\n}\n\nfunc (q *Queries) ListUsersWithLimit(ctx context.Context, limit int32) ([]ListUsersWithLimitRow, error) {\n\trows, err := q.db.Query(ctx, listUsersWithLimit, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUsersWithLimitRow\n\tfor rows.Next() {\n\t\tvar i ListUsersWithLimitRow\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/pgx/v5/query.sql",
    "content": "/* name: ListUsersByID :many */\nSELECT first_name, id, last_name FROM users WHERE id < $1;\n\n/* name: ListUserOrders :many */\nSELECT\n\tusers.id,\n\tusers.first_name,\n\torders.price\nFROM\n\torders\nLEFT JOIN users ON orders.user_id = users.id\nWHERE orders.price > sqlc.arg('min_price');\n\n/* name: GetUserByID :one */\nSELECT first_name, id, last_name FROM users WHERE id = sqlc.arg('target_id');\n\n/* name: ListUsersByFamily :many */\nSELECT first_name, last_name FROM users WHERE age < sqlc.arg('max_age') AND last_name = sqlc.arg('in_family');\n\n/* name: ListUsersWithLimit :many */\nSELECT first_name, last_name FROM users LIMIT $1;\n\n/* name: LimitSQLCArg :many */\nselect first_name, id FROM users LIMIT $1;\n\n/* name: InsertNewUser :exec */\nINSERT INTO users (first_name, last_name) VALUES ($1, $2);\n\n/* name: ListUserParenExpr :many */\nSELECT * FROM users WHERE (job_status = 'APPLIED' OR job_status = 'PENDING')\nAND id > $1\nORDER BY id\nLIMIT $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE users (\n    id SERIAL NOT NULL,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL,\n    job_status varchar(10) NOT NULL\n);\n\nCREATE TABLE orders (\n    id SERIAL NOT NULL,\n    price DECIMAL(13, 4) NOT NULL,\n    user_id integer NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/stdlib/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Order struct {\n\tID     int32\n\tPrice  string\n\tUserID int32\n}\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int32\n\tJobStatus string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getUserByID = `-- name: GetUserByID :one\nSELECT first_name, id, last_name FROM users WHERE id = $1\n`\n\ntype GetUserByIDRow struct {\n\tFirstName string\n\tID        int32\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) GetUserByID(ctx context.Context, targetID int32) (GetUserByIDRow, error) {\n\trow := q.db.QueryRowContext(ctx, getUserByID, targetID)\n\tvar i GetUserByIDRow\n\terr := row.Scan(&i.FirstName, &i.ID, &i.LastName)\n\treturn i, err\n}\n\nconst insertNewUser = `-- name: InsertNewUser :exec\nINSERT INTO users (first_name, last_name) VALUES ($1, $2)\n`\n\ntype InsertNewUserParams struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) InsertNewUser(ctx context.Context, arg InsertNewUserParams) error {\n\t_, err := q.db.ExecContext(ctx, insertNewUser, arg.FirstName, arg.LastName)\n\treturn err\n}\n\nconst limitSQLCArg = `-- name: LimitSQLCArg :many\nselect first_name, id FROM users LIMIT $1\n`\n\ntype LimitSQLCArgRow struct {\n\tFirstName string\n\tID        int32\n}\n\nfunc (q *Queries) LimitSQLCArg(ctx context.Context, limit int32) ([]LimitSQLCArgRow, error) {\n\trows, err := q.db.QueryContext(ctx, limitSQLCArg, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []LimitSQLCArgRow\n\tfor rows.Next() {\n\t\tvar i LimitSQLCArgRow\n\t\tif err := rows.Scan(&i.FirstName, &i.ID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUserOrders = `-- name: ListUserOrders :many\nSELECT\n\tusers.id,\n\tusers.first_name,\n\torders.price\nFROM\n\torders\nLEFT JOIN users ON orders.user_id = users.id\nWHERE orders.price > $1\n`\n\ntype ListUserOrdersRow struct {\n\tID        sql.NullInt32\n\tFirstName sql.NullString\n\tPrice     string\n}\n\nfunc (q *Queries) ListUserOrders(ctx context.Context, minPrice string) ([]ListUserOrdersRow, error) {\n\trows, err := q.db.QueryContext(ctx, listUserOrders, minPrice)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUserOrdersRow\n\tfor rows.Next() {\n\t\tvar i ListUserOrdersRow\n\t\tif err := rows.Scan(&i.ID, &i.FirstName, &i.Price); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUserParenExpr = `-- name: ListUserParenExpr :many\nSELECT id, first_name, last_name, age, job_status FROM users WHERE (job_status = 'APPLIED' OR job_status = 'PENDING')\nAND id > $1\nORDER BY id\nLIMIT $2\n`\n\ntype ListUserParenExprParams struct {\n\tID    int32\n\tLimit int32\n}\n\nfunc (q *Queries) ListUserParenExpr(ctx context.Context, arg ListUserParenExprParams) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, listUserParenExpr, arg.ID, arg.Limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t\t&i.JobStatus,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUsersByFamily = `-- name: ListUsersByFamily :many\nSELECT first_name, last_name FROM users WHERE age < $1 AND last_name = $2\n`\n\ntype ListUsersByFamilyParams struct {\n\tMaxAge   int32\n\tInFamily sql.NullString\n}\n\ntype ListUsersByFamilyRow struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) ListUsersByFamily(ctx context.Context, arg ListUsersByFamilyParams) ([]ListUsersByFamilyRow, error) {\n\trows, err := q.db.QueryContext(ctx, listUsersByFamily, arg.MaxAge, arg.InFamily)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUsersByFamilyRow\n\tfor rows.Next() {\n\t\tvar i ListUsersByFamilyRow\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUsersByID = `-- name: ListUsersByID :many\nSELECT first_name, id, last_name FROM users WHERE id < $1\n`\n\ntype ListUsersByIDRow struct {\n\tFirstName string\n\tID        int32\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) ListUsersByID(ctx context.Context, id int32) ([]ListUsersByIDRow, error) {\n\trows, err := q.db.QueryContext(ctx, listUsersByID, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUsersByIDRow\n\tfor rows.Next() {\n\t\tvar i ListUsersByIDRow\n\t\tif err := rows.Scan(&i.FirstName, &i.ID, &i.LastName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listUsersWithLimit = `-- name: ListUsersWithLimit :many\nSELECT first_name, last_name FROM users LIMIT $1\n`\n\ntype ListUsersWithLimitRow struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) ListUsersWithLimit(ctx context.Context, limit int32) ([]ListUsersWithLimitRow, error) {\n\trows, err := q.db.QueryContext(ctx, listUsersWithLimit, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUsersWithLimitRow\n\tfor rows.Next() {\n\t\tvar i ListUsersWithLimitRow\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/stdlib/query.sql",
    "content": "/* name: ListUsersByID :many */\nSELECT first_name, id, last_name FROM users WHERE id < $1;\n\n/* name: ListUserOrders :many */\nSELECT\n\tusers.id,\n\tusers.first_name,\n\torders.price\nFROM\n\torders\nLEFT JOIN users ON orders.user_id = users.id\nWHERE orders.price > sqlc.arg('min_price');\n\n/* name: GetUserByID :one */\nSELECT first_name, id, last_name FROM users WHERE id = sqlc.arg('target_id');\n\n/* name: ListUsersByFamily :many */\nSELECT first_name, last_name FROM users WHERE age < sqlc.arg('max_age') AND last_name = sqlc.arg('in_family');\n\n/* name: ListUsersWithLimit :many */\nSELECT first_name, last_name FROM users LIMIT $1;\n\n/* name: LimitSQLCArg :many */\nselect first_name, id FROM users LIMIT $1;\n\n/* name: InsertNewUser :exec */\nINSERT INTO users (first_name, last_name) VALUES ($1, $2);\n\n/* name: ListUserParenExpr :many */\nSELECT * FROM users WHERE (job_status = 'APPLIED' OR job_status = 'PENDING')\nAND id > $1\nORDER BY id\nLIMIT $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE users (\n    id SERIAL NOT NULL,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL,\n    job_status varchar(10) NOT NULL\n);\n\nCREATE TABLE orders (\n    id SERIAL NOT NULL,\n    price DECIMAL(13, 4) NOT NULL,\n    user_id integer NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/params_location/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_placeholder_in_left_expr/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_placeholder_in_left_expr/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID   int32\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_placeholder_in_left_expr/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst findByID = `-- name: FindByID :many\nSELECT id, name FROM users WHERE ? = id\n`\n\nfunc (q *Queries) FindByID(ctx context.Context, id int32) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, findByID, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(&i.ID, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst findByIDAndName = `-- name: FindByIDAndName :many\nSELECT id, name FROM users WHERE ? = id AND ? = name\n`\n\ntype FindByIDAndNameParams struct {\n\tID   int32\n\tName sql.NullString\n}\n\nfunc (q *Queries) FindByIDAndName(ctx context.Context, arg FindByIDAndNameParams) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, findByIDAndName, arg.ID, arg.Name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(&i.ID, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_placeholder_in_left_expr/mysql/query.sql",
    "content": "-- name: FindByID :many\nSELECT * FROM users WHERE ? = id;\n\n-- name: FindByIDAndName :many\nSELECT * FROM users WHERE ? = id AND ? = name;\n"
  },
  {
    "path": "internal/endtoend/testdata/params_placeholder_in_left_expr/mysql/schema.sql",
    "content": "CREATE TABLE users (\n    id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY,\n    name VARCHAR(255)\n) ENGINE=InnoDB;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/params_placeholder_in_left_expr/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_placeholder_in_left_expr/postgresql/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_placeholder_in_left_expr/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_placeholder_in_left_expr/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID   int32\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_placeholder_in_left_expr/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst findByID = `-- name: FindByID :many\nSELECT id, name FROM users WHERE $1 = id\n`\n\nfunc (q *Queries) FindByID(ctx context.Context, id int32) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, findByID, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(&i.ID, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst findByIDAndName = `-- name: FindByIDAndName :many\nSELECT id, name FROM users WHERE $1 = id AND $1 = name\n`\n\nfunc (q *Queries) FindByIDAndName(ctx context.Context, id int32) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, findByIDAndName, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(&i.ID, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_placeholder_in_left_expr/postgresql/query.sql",
    "content": "-- name: FindByID :many\nSELECT * FROM users WHERE $1 = id;\n\n-- name: FindByIDAndName :many\nSELECT * FROM users WHERE $1 = id AND $1 = name;\n"
  },
  {
    "path": "internal/endtoend/testdata/params_placeholder_in_left_expr/postgresql/schema.sql",
    "content": "CREATE TABLE users (\n    id INT PRIMARY KEY,\n    name VARCHAR(255)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/params_placeholder_in_left_expr/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst fooByAandB = `-- name: FooByAandB :many\nSELECT a, b FROM foo \nWHERE a = ? and b = ?\n`\n\ntype FooByAandBParams struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n\nfunc (q *Queries) FooByAandB(ctx context.Context, arg FooByAandBParams) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, fooByAandB, arg.A, arg.B)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/mysql/query.sql",
    "content": "/* name: FooByAandB :many */\nSELECT a, b FROM foo \nWHERE a = ? and b = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/mysql/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst fooByAandB = `-- name: FooByAandB :many\nSELECT a, b FROM foo \nWHERE a = $1 and b = $2\n`\n\ntype FooByAandBParams struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n\nfunc (q *Queries) FooByAandB(ctx context.Context, arg FooByAandBParams) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, fooByAandB, arg.A, arg.B)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/pgx/v4/query.sql",
    "content": "-- name: FooByAandB :many\nSELECT a, b FROM foo \nWHERE a = $1 and b = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tA pgtype.Text\n\tB pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst fooByAandB = `-- name: FooByAandB :many\nSELECT a, b FROM foo \nWHERE a = $1 and b = $2\n`\n\ntype FooByAandBParams struct {\n\tA pgtype.Text\n\tB pgtype.Text\n}\n\nfunc (q *Queries) FooByAandB(ctx context.Context, arg FooByAandBParams) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, fooByAandB, arg.A, arg.B)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/pgx/v5/query.sql",
    "content": "-- name: FooByAandB :many\nSELECT a, b FROM foo \nWHERE a = $1 and b = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst fooByAandB = `-- name: FooByAandB :many\nSELECT a, b FROM foo \nWHERE a = $1 and b = $2\n`\n\ntype FooByAandBParams struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n\nfunc (q *Queries) FooByAandB(ctx context.Context, arg FooByAandBParams) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, fooByAandB, arg.A, arg.B)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/stdlib/query.sql",
    "content": "-- name: FooByAandB :many\nSELECT a, b FROM foo \nWHERE a = $1 and b = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/params_two/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_in_expr/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_in_expr/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_in_expr/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst fooByBarB = `-- name: FooByBarB :many\nSELECT a, b from foo where foo.a in (select a from bar where bar.b = ?)\n`\n\nfunc (q *Queries) FooByBarB(ctx context.Context, b sql.NullString) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, fooByBarB, b)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst fooByList = `-- name: FooByList :many\nSELECT a, b from foo where foo.a in (?, ?)\n`\n\ntype FooByListParams struct {\n\tA   sql.NullString\n\tA_2 sql.NullString\n}\n\nfunc (q *Queries) FooByList(ctx context.Context, arg FooByListParams) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, fooByList, arg.A, arg.A_2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst fooByNotList = `-- name: FooByNotList :many\nSELECT a, b from foo where foo.a not in (?, ?)\n`\n\ntype FooByNotListParams struct {\n\tA   sql.NullString\n\tA_2 sql.NullString\n}\n\nfunc (q *Queries) FooByNotList(ctx context.Context, arg FooByNotListParams) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, fooByNotList, arg.A, arg.A_2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst fooByParamList = `-- name: FooByParamList :many\nSELECT a, b from foo where ? in (foo.a, foo.b)\n`\n\nfunc (q *Queries) FooByParamList(ctx context.Context, a sql.NullString) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, fooByParamList, a)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_in_expr/mysql/query.sql",
    "content": "/* name: FooByBarB :many */\nSELECT a, b from foo where foo.a in (select a from bar where bar.b = ?);\n\n/* name: FooByList :many */\nSELECT a, b from foo where foo.a in (?, ?);\n\n/* name: FooByNotList :many */\nSELECT a, b from foo where foo.a not in (?, ?);\n\n/* name: FooByParamList :many */\nSELECT a, b from foo where ? in (foo.a, foo.b);\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_in_expr/mysql/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (a text, b text);\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_in_expr/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_matching/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_matching/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Pet struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_matching/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst petsByName = `-- name: PetsByName :many\nSELECT name FROM pet WHERE name LIKE ?\n`\n\nfunc (q *Queries) PetsByName(ctx context.Context, name sql.NullString) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, petsByName, name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar name sql.NullString\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_matching/mysql/query.sql",
    "content": "-- name: PetsByName :many\nSELECT * FROM pet WHERE name LIKE ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_matching/mysql/schema.sql",
    "content": "CREATE TABLE pet (name text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_matching/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_matching/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_matching/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Pet struct {\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_matching/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst petsByName = `-- name: PetsByName :many\nSELECT name FROM pet WHERE name LIKE $1\n`\n\nfunc (q *Queries) PetsByName(ctx context.Context, name sql.NullString) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, petsByName, name)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar name sql.NullString\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_matching/postgresql/query.sql",
    "content": "-- name: PetsByName :many\nSELECT * FROM pet WHERE name LIKE $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_matching/postgresql/schema.sql",
    "content": "CREATE TABLE pet (name text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/pattern_matching/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v4/exec.sql",
    "content": "-- name: AdvisoryLockExec :exec\nSELECT pg_advisory_lock($1);\n\n-- name: AdvisoryLockExecRows :execrows\nSELECT pg_advisory_lock($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v4/go/exec.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: exec.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst advisoryLockExec = `-- name: AdvisoryLockExec :exec\nSELECT pg_advisory_lock($1)\n`\n\nfunc (q *Queries) AdvisoryLockExec(ctx context.Context, pgAdvisoryLock int64) error {\n\t_, err := q.db.Exec(ctx, advisoryLockExec, pgAdvisoryLock)\n\treturn err\n}\n\nconst advisoryLockExecRows = `-- name: AdvisoryLockExecRows :execrows\nSELECT pg_advisory_lock($1)\n`\n\nfunc (q *Queries) AdvisoryLockExecRows(ctx context.Context, pgAdvisoryLock int64) (int64, error) {\n\tresult, err := q.db.Exec(ctx, advisoryLockExecRows, pgAdvisoryLock)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected(), nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n)\n\nconst advisoryLockExecResult = `-- name: AdvisoryLockExecResult :execresult\nSELECT pg_advisory_lock($1)\n`\n\nfunc (q *Queries) AdvisoryLockExecResult(ctx context.Context, pgAdvisoryLock int64) (pgconn.CommandTag, error) {\n\treturn q.db.Exec(ctx, advisoryLockExecResult, pgAdvisoryLock)\n}\n\nconst advisoryLockOne = `-- name: AdvisoryLockOne :one\nSELECT pg_advisory_lock($1)\n`\n\nfunc (q *Queries) AdvisoryLockOne(ctx context.Context, pgAdvisoryLock int64) (interface{}, error) {\n\trow := q.db.QueryRow(ctx, advisoryLockOne, pgAdvisoryLock)\n\tvar pg_advisory_lock interface{}\n\terr := row.Scan(&pg_advisory_lock)\n\treturn pg_advisory_lock, err\n}\n\nconst advisoryUnlock = `-- name: AdvisoryUnlock :many\nSELECT pg_advisory_unlock($1)\n`\n\nfunc (q *Queries) AdvisoryUnlock(ctx context.Context, pgAdvisoryUnlock int64) ([]bool, error) {\n\trows, err := q.db.Query(ctx, advisoryUnlock, pgAdvisoryUnlock)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar pg_advisory_unlock bool\n\t\tif err := rows.Scan(&pg_advisory_unlock); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, pg_advisory_unlock)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v4/query.sql",
    "content": "-- name: AdvisoryLockOne :one\nSELECT pg_advisory_lock($1);\n\n-- name: AdvisoryUnlock :many\nSELECT pg_advisory_unlock($1);\n\n-- name: AdvisoryLockExecResult :execresult\nSELECT pg_advisory_lock($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v4/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": [\"query.sql\", \"exec.sql\"]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v5/exec.sql",
    "content": "-- name: AdvisoryLockExec :exec\nSELECT pg_advisory_lock($1);\n\n-- name: AdvisoryLockExecRows :execrows\nSELECT pg_advisory_lock($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v5/go/exec.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: exec.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst advisoryLockExec = `-- name: AdvisoryLockExec :exec\nSELECT pg_advisory_lock($1)\n`\n\nfunc (q *Queries) AdvisoryLockExec(ctx context.Context, pgAdvisoryLock int64) error {\n\t_, err := q.db.Exec(ctx, advisoryLockExec, pgAdvisoryLock)\n\treturn err\n}\n\nconst advisoryLockExecRows = `-- name: AdvisoryLockExecRows :execrows\nSELECT pg_advisory_lock($1)\n`\n\nfunc (q *Queries) AdvisoryLockExecRows(ctx context.Context, pgAdvisoryLock int64) (int64, error) {\n\tresult, err := q.db.Exec(ctx, advisoryLockExecRows, pgAdvisoryLock)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected(), nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\nconst advisoryLockExecResult = `-- name: AdvisoryLockExecResult :execresult\nSELECT pg_advisory_lock($1)\n`\n\nfunc (q *Queries) AdvisoryLockExecResult(ctx context.Context, pgAdvisoryLock int64) (pgconn.CommandTag, error) {\n\treturn q.db.Exec(ctx, advisoryLockExecResult, pgAdvisoryLock)\n}\n\nconst advisoryLockOne = `-- name: AdvisoryLockOne :one\nSELECT pg_advisory_lock($1)\n`\n\nfunc (q *Queries) AdvisoryLockOne(ctx context.Context, pgAdvisoryLock int64) (interface{}, error) {\n\trow := q.db.QueryRow(ctx, advisoryLockOne, pgAdvisoryLock)\n\tvar pg_advisory_lock interface{}\n\terr := row.Scan(&pg_advisory_lock)\n\treturn pg_advisory_lock, err\n}\n\nconst advisoryUnlock = `-- name: AdvisoryUnlock :many\nSELECT pg_advisory_unlock($1)\n`\n\nfunc (q *Queries) AdvisoryUnlock(ctx context.Context, pgAdvisoryUnlock int64) ([]bool, error) {\n\trows, err := q.db.Query(ctx, advisoryUnlock, pgAdvisoryUnlock)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar pg_advisory_unlock bool\n\t\tif err := rows.Scan(&pg_advisory_unlock); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, pg_advisory_unlock)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v5/query.sql",
    "content": "-- name: AdvisoryLockOne :one\nSELECT pg_advisory_lock($1);\n\n-- name: AdvisoryUnlock :many\nSELECT pg_advisory_unlock($1);\n\n-- name: AdvisoryLockExecResult :execresult\nSELECT pg_advisory_lock($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v5/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": [\"query.sql\", \"exec.sql\"]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/stdlib/exec.sql",
    "content": "-- name: AdvisoryLockExec :exec\nSELECT pg_advisory_lock($1);\n\n-- name: AdvisoryLockExecRows :execrows\nSELECT pg_advisory_lock($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/stdlib/go/exec.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: exec.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst advisoryLockExec = `-- name: AdvisoryLockExec :exec\nSELECT pg_advisory_lock($1)\n`\n\nfunc (q *Queries) AdvisoryLockExec(ctx context.Context, pgAdvisoryLock int64) error {\n\t_, err := q.db.ExecContext(ctx, advisoryLockExec, pgAdvisoryLock)\n\treturn err\n}\n\nconst advisoryLockExecRows = `-- name: AdvisoryLockExecRows :execrows\nSELECT pg_advisory_lock($1)\n`\n\nfunc (q *Queries) AdvisoryLockExecRows(ctx context.Context, pgAdvisoryLock int64) (int64, error) {\n\tresult, err := q.db.ExecContext(ctx, advisoryLockExecRows, pgAdvisoryLock)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected()\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst advisoryLockExecResult = `-- name: AdvisoryLockExecResult :execresult\nSELECT pg_advisory_lock($1)\n`\n\nfunc (q *Queries) AdvisoryLockExecResult(ctx context.Context, pgAdvisoryLock int64) (sql.Result, error) {\n\treturn q.db.ExecContext(ctx, advisoryLockExecResult, pgAdvisoryLock)\n}\n\nconst advisoryLockOne = `-- name: AdvisoryLockOne :one\nSELECT pg_advisory_lock($1)\n`\n\nfunc (q *Queries) AdvisoryLockOne(ctx context.Context, pgAdvisoryLock int64) (interface{}, error) {\n\trow := q.db.QueryRowContext(ctx, advisoryLockOne, pgAdvisoryLock)\n\tvar pg_advisory_lock interface{}\n\terr := row.Scan(&pg_advisory_lock)\n\treturn pg_advisory_lock, err\n}\n\nconst advisoryUnlock = `-- name: AdvisoryUnlock :many\nSELECT pg_advisory_unlock($1)\n`\n\nfunc (q *Queries) AdvisoryUnlock(ctx context.Context, pgAdvisoryUnlock int64) ([]bool, error) {\n\trows, err := q.db.QueryContext(ctx, advisoryUnlock, pgAdvisoryUnlock)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []bool\n\tfor rows.Next() {\n\t\tvar pg_advisory_unlock bool\n\t\tif err := rows.Scan(&pg_advisory_unlock); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, pg_advisory_unlock)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/stdlib/query.sql",
    "content": "-- name: AdvisoryLockOne :one\nSELECT pg_advisory_lock($1);\n\n-- name: AdvisoryUnlock :many\nSELECT pg_advisory_unlock($1);\n\n-- name: AdvisoryLockExecResult :execresult\nSELECT pg_advisory_lock($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/stdlib/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/pg_advisory_xact_lock/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": [\"query.sql\", \"exec.sql\"]\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_dump/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_dump/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_dump/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING id, name, bio\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, createAuthor, arg.Name, arg.Bio)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst deleteAuthor = `-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthor, id)\n\treturn err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio FROM authors\nORDER BY name\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_dump/exec.json",
    "content": "{\n    \"contexts\": [\"base\"],\n    \"meta\": {\n        \"invalid_schema\": true\n    }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_dump/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_dump/schema.sql",
    "content": "--\n-- PostgreSQL database dump\n--\n\n-- Dumped from database version 15.3 (Debian 15.3-1.pgdg120+1)\n-- Dumped by pg_dump version 15.3\n\nSET statement_timeout = 0;\nSET lock_timeout = 0;\nSET idle_in_transaction_session_timeout = 0;\nSET client_encoding = 'UTF8';\nSET standard_conforming_strings = on;\nSELECT pg_catalog.set_config('search_path', '', false);\nSET check_function_bodies = false;\nSET xmloption = content;\nSET client_min_messages = warning;\nSET row_security = off;\n\n--\n-- Name: public; Type: SCHEMA; Schema: -; Owner: pg_database_owner\n--\n\nCREATE SCHEMA public;\n\n\nALTER SCHEMA public OWNER TO pg_database_owner;\n\n--\n-- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: pg_database_owner\n--\n\nCOMMENT ON SCHEMA public IS 'standard public schema';\n\n\nSET default_table_access_method = heap;\n\n--\n-- Name: authors; Type: TABLE; Schema: public; Owner: postgres\n--\n\nCREATE TABLE public.authors (\n    id bigint NOT NULL,\n    name text NOT NULL,\n    bio text\n);\n\n\nALTER TABLE public.authors OWNER TO postgres;\n\n--\n-- Name: authors_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres\n--\n\nCREATE SEQUENCE public.authors_id_seq\n    START WITH 1\n    INCREMENT BY 1\n    NO MINVALUE\n    NO MAXVALUE\n    CACHE 1;\n\n\nALTER TABLE public.authors_id_seq OWNER TO postgres;\n\n--\n-- Name: authors_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres\n--\n\nALTER SEQUENCE public.authors_id_seq OWNED BY public.authors.id;\n\n\n--\n-- Name: authors id; Type: DEFAULT; Schema: public; Owner: postgres\n--\n\nALTER TABLE ONLY public.authors ALTER COLUMN id SET DEFAULT nextval('public.authors_id_seq'::regclass);\n\n\n--\n-- Name: authors authors_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres\n--\n\nALTER TABLE ONLY public.authors\n    ADD CONSTRAINT authors_pkey PRIMARY KEY (id);\n\n\n--\n-- PostgreSQL database dump complete\n--\n\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_dump/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"db\",\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tQualifiedName sql.NullString\n\tNameQuery     sql.NullString\n\tFtsNameQuery  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listFoo = `-- name: ListFoo :many\nSELECT qualified_name, name_query, fts_name_query FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.QualifiedName, &i.NameQuery, &i.FtsNameQuery); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v4/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v4/schema.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS ltree;\n\nCREATE TABLE foo (\n    qualified_name ltree,\n    name_query lquery,\n    fts_name_query ltxtquery\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tQualifiedName pgtype.Text\n\tNameQuery     pgtype.Text\n\tFtsNameQuery  pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listFoo = `-- name: ListFoo :many\nSELECT qualified_name, name_query, fts_name_query FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.QualifiedName, &i.NameQuery, &i.FtsNameQuery); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v5/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v5/schema.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS ltree;\n\nCREATE TABLE foo (\n    qualified_name ltree,\n    name_query lquery,\n    fts_name_query ltxtquery\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tQualifiedName sql.NullString\n\tNameQuery     sql.NullString\n\tFtsNameQuery  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listFoo = `-- name: ListFoo :many\nSELECT qualified_name, name_query, fts_name_query FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.QualifiedName, &i.NameQuery, &i.FtsNameQuery); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/stdlib/query.sql",
    "content": "-- name: ListFoo :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/stdlib/schema.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS ltree;\n\nCREATE TABLE foo (\n    qualified_name ltree,\n    name_query lquery,\n    fts_name_query ltxtquery\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_ext_ltree/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v4/go/pg_trgm.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: pg_trgm.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst wordSimilarity = `-- name: WordSimilarity :one\nSELECT word_similarity('word', 'two words')\n`\n\nfunc (q *Queries) WordSimilarity(ctx context.Context) (float32, error) {\n\trow := q.db.QueryRow(ctx, wordSimilarity)\n\tvar word_similarity float32\n\terr := row.Scan(&word_similarity)\n\treturn word_similarity, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v4/go/pgcrypto.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: pgcrypto.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst encodeDigest = `-- name: EncodeDigest :one\nSELECT encode(digest($1, 'sha1'), 'hex')\n`\n\nfunc (q *Queries) EncodeDigest(ctx context.Context, digest string) (string, error) {\n\trow := q.db.QueryRow(ctx, encodeDigest, digest)\n\tvar encode string\n\terr := row.Scan(&encode)\n\treturn encode, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v4/go/uuid_ossp.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: uuid_ossp.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/google/uuid\"\n)\n\nconst generateUUID = `-- name: GenerateUUID :one\nSELECT uuid_generate_v4()\n`\n\nfunc (q *Queries) GenerateUUID(ctx context.Context) (uuid.UUID, error) {\n\trow := q.db.QueryRow(ctx, generateUUID)\n\tvar uuid_generate_v4 uuid.UUID\n\terr := row.Scan(&uuid_generate_v4)\n\treturn uuid_generate_v4, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v4/schema.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS \"pg_trgm\";\nCREATE EXTENSION IF NOT EXISTS \"pgcrypto\";\nCREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v4/sql/pg_trgm.sql",
    "content": "-- name: WordSimilarity :one\nSELECT word_similarity('word', 'two words');\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v4/sql/pgcrypto.sql",
    "content": "-- name: EncodeDigest :one\nSELECT encode(digest($1, 'sha1'), 'hex');\n\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v4/sql/uuid_ossp.sql",
    "content": "-- name: GenerateUUID :one\nSELECT uuid_generate_v4();\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v5/go/pg_trgm.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: pg_trgm.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst wordSimilarity = `-- name: WordSimilarity :one\nSELECT word_similarity('word', 'two words')\n`\n\nfunc (q *Queries) WordSimilarity(ctx context.Context) (float32, error) {\n\trow := q.db.QueryRow(ctx, wordSimilarity)\n\tvar word_similarity float32\n\terr := row.Scan(&word_similarity)\n\treturn word_similarity, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v5/go/pgcrypto.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: pgcrypto.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst encodeDigest = `-- name: EncodeDigest :one\nSELECT encode(digest($1, 'sha1'), 'hex')\n`\n\nfunc (q *Queries) EncodeDigest(ctx context.Context, digest string) (string, error) {\n\trow := q.db.QueryRow(ctx, encodeDigest, digest)\n\tvar encode string\n\terr := row.Scan(&encode)\n\treturn encode, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v5/go/uuid_ossp.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: uuid_ossp.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst generateUUID = `-- name: GenerateUUID :one\nSELECT uuid_generate_v4()\n`\n\nfunc (q *Queries) GenerateUUID(ctx context.Context) (pgtype.UUID, error) {\n\trow := q.db.QueryRow(ctx, generateUUID)\n\tvar uuid_generate_v4 pgtype.UUID\n\terr := row.Scan(&uuid_generate_v4)\n\treturn uuid_generate_v4, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v5/schema.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS \"pg_trgm\";\nCREATE EXTENSION IF NOT EXISTS \"pgcrypto\";\nCREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v5/sql/pg_trgm.sql",
    "content": "-- name: WordSimilarity :one\nSELECT word_similarity('word', 'two words');\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v5/sql/pgcrypto.sql",
    "content": "-- name: EncodeDigest :one\nSELECT encode(digest($1, 'sha1'), 'hex');\n\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v5/sql/uuid_ossp.sql",
    "content": "-- name: GenerateUUID :one\nSELECT uuid_generate_v4();\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/stdlib/go/pg_trgm.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: pg_trgm.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst wordSimilarity = `-- name: WordSimilarity :one\nSELECT word_similarity('word', 'two words')\n`\n\nfunc (q *Queries) WordSimilarity(ctx context.Context) (float32, error) {\n\trow := q.db.QueryRowContext(ctx, wordSimilarity)\n\tvar word_similarity float32\n\terr := row.Scan(&word_similarity)\n\treturn word_similarity, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/stdlib/go/pgcrypto.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: pgcrypto.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst encodeDigest = `-- name: EncodeDigest :one\nSELECT encode(digest($1, 'sha1'), 'hex')\n`\n\nfunc (q *Queries) EncodeDigest(ctx context.Context, digest string) (string, error) {\n\trow := q.db.QueryRowContext(ctx, encodeDigest, digest)\n\tvar encode string\n\terr := row.Scan(&encode)\n\treturn encode, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/stdlib/go/uuid_ossp.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: uuid_ossp.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/google/uuid\"\n)\n\nconst generateUUID = `-- name: GenerateUUID :one\nSELECT uuid_generate_v4()\n`\n\nfunc (q *Queries) GenerateUUID(ctx context.Context) (uuid.UUID, error) {\n\trow := q.db.QueryRowContext(ctx, generateUUID)\n\tvar uuid_generate_v4 uuid.UUID\n\terr := row.Scan(&uuid_generate_v4)\n\treturn uuid_generate_v4, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/stdlib/schema.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS \"pg_trgm\";\nCREATE EXTENSION IF NOT EXISTS \"pgcrypto\";\nCREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/stdlib/sql/pg_trgm.sql",
    "content": "-- name: WordSimilarity :one\nSELECT word_similarity('word', 'two words');\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/stdlib/sql/pgcrypto.sql",
    "content": "-- name: EncodeDigest :one\nSELECT encode(digest($1, 'sha1'), 'hex');\n\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/stdlib/sql/uuid_ossp.sql",
    "content": "-- name: GenerateUUID :one\nSELECT uuid_generate_v4();\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_extensions/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v4/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"time\"\n)\n\nconst generateSeries = `-- name: GenerateSeries :many\nSELECT generate_series($1::timestamp, $2::timestamp, '10 hours')\n`\n\ntype GenerateSeriesParams struct {\n\tColumn1 time.Time `json:\"column_1\"`\n\tColumn2 time.Time `json:\"column_2\"`\n}\n\nfunc (q *Queries) GenerateSeries(ctx context.Context, arg GenerateSeriesParams) ([]int64, error) {\n\trows, err := q.db.Query(ctx, generateSeries, arg.Column1, arg.Column2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar generate_series int64\n\t\tif err := rows.Scan(&generate_series); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, generate_series)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v4/query.sql",
    "content": "-- name: GenerateSeries :many\nSELECT generate_series($1::timestamp, $2::timestamp, '10 hours');\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v4/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v5/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst generateSeries = `-- name: GenerateSeries :many\nSELECT generate_series($1::timestamp, $2::timestamp, '10 hours')\n`\n\ntype GenerateSeriesParams struct {\n\tColumn1 pgtype.Timestamp `json:\"column_1\"`\n\tColumn2 pgtype.Timestamp `json:\"column_2\"`\n}\n\nfunc (q *Queries) GenerateSeries(ctx context.Context, arg GenerateSeriesParams) ([]int64, error) {\n\trows, err := q.db.Query(ctx, generateSeries, arg.Column1, arg.Column2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar generate_series int64\n\t\tif err := rows.Scan(&generate_series); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, generate_series)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v5/query.sql",
    "content": "-- name: GenerateSeries :many\nSELECT generate_series($1::timestamp, $2::timestamp, '10 hours');\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v5/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/stdlib/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"time\"\n)\n\nconst generateSeries = `-- name: GenerateSeries :many\nSELECT generate_series($1::timestamp, $2::timestamp, '10 hours')\n`\n\ntype GenerateSeriesParams struct {\n\tColumn1 time.Time `json:\"column_1\"`\n\tColumn2 time.Time `json:\"column_2\"`\n}\n\nfunc (q *Queries) GenerateSeries(ctx context.Context, arg GenerateSeriesParams) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, generateSeries, arg.Column1, arg.Column2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar generate_series int64\n\t\tif err := rows.Scan(&generate_series); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, generate_series)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/stdlib/query.sql",
    "content": "-- name: GenerateSeries :many\nSELECT generate_series($1::timestamp, $2::timestamp, '10 hours');\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/stdlib/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/pg_generate_series/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_timezone_names/go_pgx/v4/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_timezone_names/go_pgx/v4/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_timezone_names/go_pgx/v4/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getColumns = `-- name: GetColumns :many\nSELECT table_name::text, column_name::text from information_schema.columns\n`\n\ntype GetColumnsRow struct {\n\tTableName  string\n\tColumnName string\n}\n\nfunc (q *Queries) GetColumns(ctx context.Context) ([]GetColumnsRow, error) {\n\trows, err := q.db.Query(ctx, getColumns)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetColumnsRow\n\tfor rows.Next() {\n\t\tvar i GetColumnsRow\n\t\tif err := rows.Scan(&i.TableName, &i.ColumnName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getTables = `-- name: GetTables :many\nSELECT table_name::text from information_schema.tables\n`\n\nfunc (q *Queries) GetTables(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, getTables)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar table_name string\n\t\tif err := rows.Scan(&table_name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, table_name)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getTimezones = `-- name: GetTimezones :many\nSELECT name, abbrev, utc_offset, is_dst from pg_catalog.pg_timezone_names\n`\n\ntype GetTimezonesRow struct {\n\tName      sql.NullString\n\tAbbrev    sql.NullString\n\tUtcOffset sql.NullInt64\n\tIsDst     sql.NullBool\n}\n\nfunc (q *Queries) GetTimezones(ctx context.Context) ([]GetTimezonesRow, error) {\n\trows, err := q.db.Query(ctx, getTimezones)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetTimezonesRow\n\tfor rows.Next() {\n\t\tvar i GetTimezonesRow\n\t\tif err := rows.Scan(\n\t\t\t&i.Name,\n\t\t\t&i.Abbrev,\n\t\t\t&i.UtcOffset,\n\t\t\t&i.IsDst,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_timezone_names/go_pgx/v5/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_timezone_names/go_pgx/v5/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_timezone_names/go_pgx/v5/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getColumns = `-- name: GetColumns :many\nSELECT table_name::text, column_name::text from information_schema.columns\n`\n\ntype GetColumnsRow struct {\n\tTableName  string\n\tColumnName string\n}\n\nfunc (q *Queries) GetColumns(ctx context.Context) ([]GetColumnsRow, error) {\n\trows, err := q.db.Query(ctx, getColumns)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetColumnsRow\n\tfor rows.Next() {\n\t\tvar i GetColumnsRow\n\t\tif err := rows.Scan(&i.TableName, &i.ColumnName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getTables = `-- name: GetTables :many\nSELECT table_name::text from information_schema.tables\n`\n\nfunc (q *Queries) GetTables(ctx context.Context) ([]string, error) {\n\trows, err := q.db.Query(ctx, getTables)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar table_name string\n\t\tif err := rows.Scan(&table_name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, table_name)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getTimezones = `-- name: GetTimezones :many\nSELECT name, abbrev, utc_offset, is_dst from pg_catalog.pg_timezone_names\n`\n\ntype GetTimezonesRow struct {\n\tName      pgtype.Text\n\tAbbrev    pgtype.Text\n\tUtcOffset pgtype.Interval\n\tIsDst     pgtype.Bool\n}\n\nfunc (q *Queries) GetTimezones(ctx context.Context) ([]GetTimezonesRow, error) {\n\trows, err := q.db.Query(ctx, getTimezones)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetTimezonesRow\n\tfor rows.Next() {\n\t\tvar i GetTimezonesRow\n\t\tif err := rows.Scan(\n\t\t\t&i.Name,\n\t\t\t&i.Abbrev,\n\t\t\t&i.UtcOffset,\n\t\t\t&i.IsDst,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_timezone_names/go_stdlib/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_timezone_names/go_stdlib/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_timezone_names/go_stdlib/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getColumns = `-- name: GetColumns :many\nSELECT table_name::text, column_name::text from information_schema.columns\n`\n\ntype GetColumnsRow struct {\n\tTableName  string\n\tColumnName string\n}\n\nfunc (q *Queries) GetColumns(ctx context.Context) ([]GetColumnsRow, error) {\n\trows, err := q.db.QueryContext(ctx, getColumns)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetColumnsRow\n\tfor rows.Next() {\n\t\tvar i GetColumnsRow\n\t\tif err := rows.Scan(&i.TableName, &i.ColumnName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getTables = `-- name: GetTables :many\nSELECT table_name::text from information_schema.tables\n`\n\nfunc (q *Queries) GetTables(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, getTables)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar table_name string\n\t\tif err := rows.Scan(&table_name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, table_name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getTimezones = `-- name: GetTimezones :many\nSELECT name, abbrev, utc_offset, is_dst from pg_catalog.pg_timezone_names\n`\n\ntype GetTimezonesRow struct {\n\tName      sql.NullString\n\tAbbrev    sql.NullString\n\tUtcOffset sql.NullInt64\n\tIsDst     sql.NullBool\n}\n\nfunc (q *Queries) GetTimezones(ctx context.Context) ([]GetTimezonesRow, error) {\n\trows, err := q.db.QueryContext(ctx, getTimezones)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetTimezonesRow\n\tfor rows.Next() {\n\t\tvar i GetTimezonesRow\n\t\tif err := rows.Scan(\n\t\t\t&i.Name,\n\t\t\t&i.Abbrev,\n\t\t\t&i.UtcOffset,\n\t\t\t&i.IsDst,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_timezone_names/query.sql",
    "content": "-- name: GetTimezones :many\nSELECT * from pg_catalog.pg_timezone_names;\n\n-- name: GetTables :many\nSELECT table_name::text from information_schema.tables;\n\n-- name: GetColumns :many\nSELECT table_name::text, column_name::text from information_schema.columns;\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_timezone_names/schema.sql",
    "content": "SELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_timezone_names/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"gen\": {\n        \"go\": {\n          \"sql_package\": \"pgx/v4\",\n          \"package\": \"querytest\",\n          \"out\": \"go_pgx/v4\"\n        }\n      }\n    },\n    {\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"gen\": {\n        \"go\": {\n          \"sql_package\": \"pgx/v5\",\n          \"package\": \"querytest\",\n          \"out\": \"go_pgx/v5\"\n        }\n      }\n    },\n    {\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"gen\": {\n        \"go\": {\n          \"package\": \"querytest\",\n          \"out\": \"go_stdlib\"\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype User struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst user = `-- name: User :many\nSELECT \"user\".id FROM \"user\"\n`\n\nfunc (q *Queries) User(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.Query(ctx, user)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar id int64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/pgx/v4/query.sql",
    "content": "-- name: User :many\nSELECT \"user\".* FROM \"user\";\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE \"user\" (id bigserial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype User struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst user = `-- name: User :many\nSELECT \"user\".id FROM \"user\"\n`\n\nfunc (q *Queries) User(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.Query(ctx, user)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar id int64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/pgx/v5/query.sql",
    "content": "-- name: User :many\nSELECT \"user\".* FROM \"user\";\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE \"user\" (id bigserial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype User struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst user = `-- name: User :many\nSELECT \"user\".id FROM \"user\"\n`\n\nfunc (q *Queries) User(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, user)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar id int64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/stdlib/query.sql",
    "content": "-- name: User :many\nSELECT \"user\".* FROM \"user\";\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE \"user\" (id bigserial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_user_table/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_vector/postgresql/pgx/exec.json",
    "content": "{\n    \"contexts\": [\"base\"],\n    \"meta\": {\n        \"invalid_schema\": true\n    }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_vector/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_vector/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/pgvector/pgvector-go\"\n)\n\ntype Item struct {\n\tID        int64\n\tEmbedding pgvector.Vector\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_vector/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/pgvector/pgvector-go\"\n)\n\nconst insertVector = `-- name: InsertVector :exec\nINSERT INTO items (embedding) VALUES ($1)\n`\n\nfunc (q *Queries) InsertVector(ctx context.Context, embedding pgvector.Vector) error {\n\t_, err := q.db.Exec(ctx, insertVector, embedding)\n\treturn err\n}\n\nconst nearestNeighbor = `-- name: NearestNeighbor :many\nSELECT id, embedding\nFROM items\nORDER BY embedding <-> $1\nLIMIT 5\n`\n\nfunc (q *Queries) NearestNeighbor(ctx context.Context, embedding pgvector.Vector) ([]Item, error) {\n\trows, err := q.db.Query(ctx, nearestNeighbor, embedding)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Item\n\tfor rows.Next() {\n\t\tvar i Item\n\t\tif err := rows.Scan(&i.ID, &i.Embedding); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_vector/postgresql/pgx/query.sql",
    "content": "-- name: InsertVector :exec\nINSERT INTO items (embedding) VALUES ($1);\n\n-- name: NearestNeighbor :many\nSELECT *\nFROM items\nORDER BY embedding <-> $1\nLIMIT 5;\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_vector/postgresql/pgx/schema.sql",
    "content": "CREATE EXTENSION IF NOT EXISTS \"vector\";\n\nCREATE TABLE items (id bigserial PRIMARY KEY, embedding vector(3));\n"
  },
  {
    "path": "internal/endtoend/testdata/pg_vector/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"time\"\n\n\t\"github.com/google/uuid\"\n)\n\ntype Foo struct {\n\tBar *time.Time\n\tBaz *uuid.UUID\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage datatype\n\nimport (\n\t\"context\"\n\t\"time\"\n\n\t\"github.com/google/uuid\"\n)\n\nconst find = `-- name: Find :one\nSELECT bar FROM foo WHERE baz = $1\n`\n\nfunc (q *Queries) Find(ctx context.Context, baz *uuid.UUID) (*time.Time, error) {\n\trow := q.db.QueryRow(ctx, find, baz)\n\tvar bar *time.Time\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n\nconst list = `-- name: List :many\nSELECT bar, baz FROM foo\n`\n\nfunc (q *Queries) List(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, list)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Bar, &i.Baz); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v4/query.sql",
    "content": "-- name: List :many\nSELECT * FROM foo;\n\n-- name: Find :one\nSELECT bar FROM foo WHERE baz = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar date, baz uuid);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"datatype\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_pointers_for_null_types\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v5/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage datatype\n\nimport (\n\t\"net/netip\"\n)\n\ntype Foo struct {\n\tBar *netip.Addr\n\tBaz *netip.Prefix\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage datatype\n\nimport (\n\t\"context\"\n\t\"net/netip\"\n)\n\nconst find = `-- name: Find :one\nSELECT bar FROM foo WHERE baz = $1\n`\n\nfunc (q *Queries) Find(ctx context.Context, baz *netip.Prefix) (*netip.Addr, error) {\n\trow := q.db.QueryRow(ctx, find, baz)\n\tvar bar *netip.Addr\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n\nconst list = `-- name: List :many\nSELECT bar, baz FROM foo\n`\n\nfunc (q *Queries) List(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, list)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Bar, &i.Baz); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v5/query.sql",
    "content": "-- name: List :many\nSELECT * FROM foo;\n\n-- name: Find :one\nSELECT bar FROM foo WHERE baz = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar inet, baz cidr);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/pointer_type_import/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"datatype\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/prepared_queries/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"fmt\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\nfunc Prepare(ctx context.Context, db DBTX) (*Queries, error) {\n\tq := Queries{db: db}\n\tvar err error\n\tif q.deleteUsersByNameStmt, err = db.PrepareContext(ctx, deleteUsersByName); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query DeleteUsersByName: %w\", err)\n\t}\n\tif q.getUserByIDStmt, err = db.PrepareContext(ctx, getUserByID); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query GetUserByID: %w\", err)\n\t}\n\tif q.insertNewUserStmt, err = db.PrepareContext(ctx, insertNewUser); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query InsertNewUser: %w\", err)\n\t}\n\tif q.insertNewUserWithResultStmt, err = db.PrepareContext(ctx, insertNewUserWithResult); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query InsertNewUserWithResult: %w\", err)\n\t}\n\tif q.listUsersStmt, err = db.PrepareContext(ctx, listUsers); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query ListUsers: %w\", err)\n\t}\n\treturn &q, nil\n}\n\nfunc (q *Queries) Close() error {\n\tvar err error\n\tif q.deleteUsersByNameStmt != nil {\n\t\tif cerr := q.deleteUsersByNameStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing deleteUsersByNameStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.getUserByIDStmt != nil {\n\t\tif cerr := q.getUserByIDStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing getUserByIDStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.insertNewUserStmt != nil {\n\t\tif cerr := q.insertNewUserStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing insertNewUserStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.insertNewUserWithResultStmt != nil {\n\t\tif cerr := q.insertNewUserWithResultStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing insertNewUserWithResultStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.listUsersStmt != nil {\n\t\tif cerr := q.listUsersStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing listUsersStmt: %w\", cerr)\n\t\t}\n\t}\n\treturn err\n}\n\nfunc (q *Queries) exec(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) (sql.Result, error) {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).ExecContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.ExecContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.ExecContext(ctx, query, args...)\n\t}\n}\n\nfunc (q *Queries) query(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) (*sql.Rows, error) {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).QueryContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.QueryContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.QueryContext(ctx, query, args...)\n\t}\n}\n\nfunc (q *Queries) queryRow(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) *sql.Row {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).QueryRowContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.QueryRowContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.QueryRowContext(ctx, query, args...)\n\t}\n}\n\ntype Queries struct {\n\tdb                          DBTX\n\ttx                          *sql.Tx\n\tdeleteUsersByNameStmt       *sql.Stmt\n\tgetUserByIDStmt             *sql.Stmt\n\tinsertNewUserStmt           *sql.Stmt\n\tinsertNewUserWithResultStmt *sql.Stmt\n\tlistUsersStmt               *sql.Stmt\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb:                          tx,\n\t\ttx:                          tx,\n\t\tdeleteUsersByNameStmt:       q.deleteUsersByNameStmt,\n\t\tgetUserByIDStmt:             q.getUserByIDStmt,\n\t\tinsertNewUserStmt:           q.insertNewUserStmt,\n\t\tinsertNewUserWithResultStmt: q.insertNewUserWithResultStmt,\n\t\tlistUsersStmt:               q.listUsersStmt,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/prepared_queries/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        uint64\n\tFirstName string\n\tLastName  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/prepared_queries/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst deleteUsersByName = `-- name: DeleteUsersByName :execrows\nDELETE FROM users WHERE first_name = ? AND last_name = ?\n`\n\ntype DeleteUsersByNameParams struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) DeleteUsersByName(ctx context.Context, arg DeleteUsersByNameParams) (int64, error) {\n\tresult, err := q.exec(ctx, q.deleteUsersByNameStmt, deleteUsersByName, arg.FirstName, arg.LastName)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected()\n}\n\nconst getUserByID = `-- name: GetUserByID :one\nSELECT first_name, id, last_name FROM users WHERE id = ?\n`\n\ntype GetUserByIDRow struct {\n\tFirstName string\n\tID        uint64\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) GetUserByID(ctx context.Context, targetID uint64) (GetUserByIDRow, error) {\n\trow := q.queryRow(ctx, q.getUserByIDStmt, getUserByID, targetID)\n\tvar i GetUserByIDRow\n\terr := row.Scan(&i.FirstName, &i.ID, &i.LastName)\n\treturn i, err\n}\n\nconst insertNewUser = `-- name: InsertNewUser :exec\nINSERT INTO users (first_name, last_name) VALUES (?, ?)\n`\n\ntype InsertNewUserParams struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) InsertNewUser(ctx context.Context, arg InsertNewUserParams) error {\n\t_, err := q.exec(ctx, q.insertNewUserStmt, insertNewUser, arg.FirstName, arg.LastName)\n\treturn err\n}\n\nconst insertNewUserWithResult = `-- name: InsertNewUserWithResult :execresult\nINSERT INTO users (first_name, last_name) VALUES (?, ?)\n`\n\ntype InsertNewUserWithResultParams struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) InsertNewUserWithResult(ctx context.Context, arg InsertNewUserWithResultParams) (sql.Result, error) {\n\treturn q.exec(ctx, q.insertNewUserWithResultStmt, insertNewUserWithResult, arg.FirstName, arg.LastName)\n}\n\nconst listUsers = `-- name: ListUsers :many\nSELECT first_name, last_name FROM users\n`\n\ntype ListUsersRow struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) ListUsers(ctx context.Context) ([]ListUsersRow, error) {\n\trows, err := q.query(ctx, q.listUsersStmt, listUsers)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUsersRow\n\tfor rows.Next() {\n\t\tvar i ListUsersRow\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/prepared_queries/mysql/query.sql",
    "content": "/* name: GetUserByID :one */\nSELECT first_name, id, last_name FROM users WHERE id = sqlc.arg('target_id');\n\n/* name: ListUsers :many */\nSELECT first_name, last_name FROM users;\n\n/* name: InsertNewUser :exec */\nINSERT INTO users (first_name, last_name) VALUES (?, ?);\n\n/* name: InsertNewUserWithResult :execresult */\nINSERT INTO users (first_name, last_name) VALUES (?, ?);\n\n/* name: DeleteUsersByName :execrows */\nDELETE FROM users WHERE first_name = ? AND last_name = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/prepared_queries/mysql/schema.sql",
    "content": "CREATE TABLE users (\n    id SERIAL NOT NULL,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/prepared_queries/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"mysql\",\n      \"emit_prepared_queries\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/prepared_queries/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"fmt\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\nfunc Prepare(ctx context.Context, db DBTX) (*Queries, error) {\n\tq := Queries{db: db}\n\tvar err error\n\tif q.deleteUsersByNameStmt, err = db.PrepareContext(ctx, deleteUsersByName); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query DeleteUsersByName: %w\", err)\n\t}\n\tif q.getUserByIDStmt, err = db.PrepareContext(ctx, getUserByID); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query GetUserByID: %w\", err)\n\t}\n\tif q.insertNewUserStmt, err = db.PrepareContext(ctx, insertNewUser); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query InsertNewUser: %w\", err)\n\t}\n\tif q.insertNewUserWithResultStmt, err = db.PrepareContext(ctx, insertNewUserWithResult); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query InsertNewUserWithResult: %w\", err)\n\t}\n\tif q.listUsersStmt, err = db.PrepareContext(ctx, listUsers); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query ListUsers: %w\", err)\n\t}\n\treturn &q, nil\n}\n\nfunc (q *Queries) Close() error {\n\tvar err error\n\tif q.deleteUsersByNameStmt != nil {\n\t\tif cerr := q.deleteUsersByNameStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing deleteUsersByNameStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.getUserByIDStmt != nil {\n\t\tif cerr := q.getUserByIDStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing getUserByIDStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.insertNewUserStmt != nil {\n\t\tif cerr := q.insertNewUserStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing insertNewUserStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.insertNewUserWithResultStmt != nil {\n\t\tif cerr := q.insertNewUserWithResultStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing insertNewUserWithResultStmt: %w\", cerr)\n\t\t}\n\t}\n\tif q.listUsersStmt != nil {\n\t\tif cerr := q.listUsersStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing listUsersStmt: %w\", cerr)\n\t\t}\n\t}\n\treturn err\n}\n\nfunc (q *Queries) exec(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) (sql.Result, error) {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).ExecContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.ExecContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.ExecContext(ctx, query, args...)\n\t}\n}\n\nfunc (q *Queries) query(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) (*sql.Rows, error) {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).QueryContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.QueryContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.QueryContext(ctx, query, args...)\n\t}\n}\n\nfunc (q *Queries) queryRow(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) *sql.Row {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).QueryRowContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.QueryRowContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.QueryRowContext(ctx, query, args...)\n\t}\n}\n\ntype Queries struct {\n\tdb                          DBTX\n\ttx                          *sql.Tx\n\tdeleteUsersByNameStmt       *sql.Stmt\n\tgetUserByIDStmt             *sql.Stmt\n\tinsertNewUserStmt           *sql.Stmt\n\tinsertNewUserWithResultStmt *sql.Stmt\n\tlistUsersStmt               *sql.Stmt\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb:                          tx,\n\t\ttx:                          tx,\n\t\tdeleteUsersByNameStmt:       q.deleteUsersByNameStmt,\n\t\tgetUserByIDStmt:             q.getUserByIDStmt,\n\t\tinsertNewUserStmt:           q.insertNewUserStmt,\n\t\tinsertNewUserWithResultStmt: q.insertNewUserWithResultStmt,\n\t\tlistUsersStmt:               q.listUsersStmt,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/prepared_queries/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/prepared_queries/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst deleteUsersByName = `-- name: DeleteUsersByName :execrows\nDELETE FROM users WHERE first_name = $1 AND last_name = $2\n`\n\ntype DeleteUsersByNameParams struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) DeleteUsersByName(ctx context.Context, arg DeleteUsersByNameParams) (int64, error) {\n\tresult, err := q.exec(ctx, q.deleteUsersByNameStmt, deleteUsersByName, arg.FirstName, arg.LastName)\n\tif err != nil {\n\t\treturn 0, err\n\t}\n\treturn result.RowsAffected()\n}\n\nconst getUserByID = `-- name: GetUserByID :one\nSELECT first_name, id, last_name FROM users WHERE id = $1\n`\n\ntype GetUserByIDRow struct {\n\tFirstName string\n\tID        int32\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) GetUserByID(ctx context.Context, targetID int32) (GetUserByIDRow, error) {\n\trow := q.queryRow(ctx, q.getUserByIDStmt, getUserByID, targetID)\n\tvar i GetUserByIDRow\n\terr := row.Scan(&i.FirstName, &i.ID, &i.LastName)\n\treturn i, err\n}\n\nconst insertNewUser = `-- name: InsertNewUser :exec\nINSERT INTO users (first_name, last_name) VALUES ($1, $2)\n`\n\ntype InsertNewUserParams struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) InsertNewUser(ctx context.Context, arg InsertNewUserParams) error {\n\t_, err := q.exec(ctx, q.insertNewUserStmt, insertNewUser, arg.FirstName, arg.LastName)\n\treturn err\n}\n\nconst insertNewUserWithResult = `-- name: InsertNewUserWithResult :execresult\nINSERT INTO users (first_name, last_name) VALUES ($1, $2)\n`\n\ntype InsertNewUserWithResultParams struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) InsertNewUserWithResult(ctx context.Context, arg InsertNewUserWithResultParams) (sql.Result, error) {\n\treturn q.exec(ctx, q.insertNewUserWithResultStmt, insertNewUserWithResult, arg.FirstName, arg.LastName)\n}\n\nconst listUsers = `-- name: ListUsers :many\nSELECT first_name, last_name FROM users\n`\n\ntype ListUsersRow struct {\n\tFirstName string\n\tLastName  sql.NullString\n}\n\nfunc (q *Queries) ListUsers(ctx context.Context) ([]ListUsersRow, error) {\n\trows, err := q.query(ctx, q.listUsersStmt, listUsers)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListUsersRow\n\tfor rows.Next() {\n\t\tvar i ListUsersRow\n\t\tif err := rows.Scan(&i.FirstName, &i.LastName); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/prepared_queries/postgresql/stdlib/query.sql",
    "content": "/* name: GetUserByID :one */\nSELECT first_name, id, last_name FROM users WHERE id = sqlc.arg('target_id');\n\n/* name: ListUsers :many */\nSELECT first_name, last_name FROM users;\n\n/* name: InsertNewUser :exec */\nINSERT INTO users (first_name, last_name) VALUES ($1, $2);\n\n/* name: InsertNewUserWithResult :execresult */\nINSERT INTO users (first_name, last_name) VALUES ($1, $2);\n\n/* name: DeleteUsersByName :execrows */\nDELETE FROM users WHERE first_name = $1 AND last_name = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/prepared_queries/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE users (\n    id SERIAL NOT NULL,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/prepared_queries/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"emit_prepared_queries\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage primary_key_later\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage primary_key_later\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/pgx/v4/go/queries.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: queries.sql\n\npackage primary_key_later\n\nimport (\n\t\"context\"\n)\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT\n    id, name, bio\nFROM\n    authors\nWHERE\n    id = $1\nLIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRow(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/pgx/v4/queries.sql",
    "content": "-- name: GetAuthor :one\nSELECT\n    *\nFROM\n    authors\nWHERE\n    id = $1\nLIMIT 1;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE authors (\n    id bigserial,\n    name text NOT NULL,\n    bio text,\n    PRIMARY KEY (id)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"primary_key_later\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"queries.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage primary_key_later\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage primary_key_later\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/pgx/v5/go/queries.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: queries.sql\n\npackage primary_key_later\n\nimport (\n\t\"context\"\n)\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT\n    id, name, bio\nFROM\n    authors\nWHERE\n    id = $1\nLIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRow(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/pgx/v5/queries.sql",
    "content": "-- name: GetAuthor :one\nSELECT\n    *\nFROM\n    authors\nWHERE\n    id = $1\nLIMIT 1;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE authors (\n    id bigserial,\n    name text NOT NULL,\n    bio text,\n    PRIMARY KEY (id)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"primary_key_later\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"queries.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage primary_key_later\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage primary_key_later\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/stdlib/go/queries.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: queries.sql\n\npackage primary_key_later\n\nimport (\n\t\"context\"\n)\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT\n    id, name, bio\nFROM\n    authors\nWHERE\n    id = $1\nLIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/stdlib/queries.sql",
    "content": "-- name: GetAuthor :one\nSELECT\n    *\nFROM\n    authors\nWHERE\n    id = $1\nLIMIT 1;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE authors (\n    id bigserial,\n    name text NOT NULL,\n    bio text,\n    PRIMARY KEY (id)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/primary_key_later/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"primary_key_later\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"queries.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_disabled/exec.json",
    "content": "{\n  \"process\": \"sqlc-gen-json\",\n  \"env\": {\n    \"SQLCDEBUG\": \"processplugins=0\"\n  }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_disabled/gen/codegen.json",
    "content": "{\n  \"settings\": {\n    \"version\": \"2\",\n    \"engine\": \"postgresql\",\n    \"schema\": [\n      \"schema.sql\"\n    ],\n    \"queries\": [\n      \"query.sql\"\n    ],\n    \"rename\": {},\n    \"overrides\": [],\n    \"codegen\": {\n      \"out\": \"gen\",\n      \"plugin\": \"jsonb\",\n      \"options\": \"eyJmaWxlbmFtZSI6ImNvZGVnZW4uanNvbiIsImluZGVudCI6IiAgIn0=\"\n    },\n    \"go\": {\n      \"emit_interface\": false,\n      \"emit_json_tags\": false,\n      \"emit_db_tags\": false,\n      \"emit_prepared_queries\": false,\n      \"emit_exact_table_names\": false,\n      \"emit_empty_slices\": false,\n      \"emit_exported_queries\": false,\n      \"emit_result_struct_pointers\": false,\n      \"emit_params_struct_pointers\": false,\n      \"emit_methods_with_db_argument\": false,\n      \"json_tags_case_style\": \"\",\n      \"package\": \"\",\n      \"out\": \"\",\n      \"sql_package\": \"\",\n      \"sql_driver\": \"\",\n      \"output_db_file_name\": \"\",\n      \"output_models_file_name\": \"\",\n      \"output_querier_file_name\": \"\",\n      \"output_copyfrom_file_name\": \"\",\n      \"output_files_suffix\": \"\",\n      \"emit_enum_valid_method\": false,\n      \"emit_all_enum_values\": false,\n      \"inflection_exclude_table_names\": [],\n      \"emit_pointers_for_null_types\": false,\n      \"query_parameter_limit\": 1,\n      \"output_batch_file_name\": \"\",\n      \"json_tags_id_uppercase\": false,\n      \"omit_unused_structs\": false,\n      \"emit_sql_as_comment\": false\n    },\n    \"json\": {\n      \"out\": \"\",\n      \"indent\": \"\",\n      \"filename\": \"\"\n    }\n  },\n  \"catalog\": {\n    \"comment\": \"\",\n    \"default_schema\": \"public\",\n    \"name\": \"\",\n    \"schemas\": [\n      {\n        \"comment\": \"\",\n        \"name\": \"public\",\n        \"tables\": [\n          {\n            \"rel\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"authors\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"id\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"authors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bigserial\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"name\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"authors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"bio\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"authors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          }\n        ],\n        \"enums\": [],\n        \"composite_types\": []\n      },\n      {\n        \"comment\": \"\",\n        \"name\": \"pg_temp\",\n        \"tables\": [],\n        \"enums\": [],\n        \"composite_types\": []\n      },\n      {\n        \"comment\": \"\",\n        \"name\": \"pg_catalog\",\n        \"tables\": [\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_aggregate\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggfnoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggkind\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggnumdirectargs\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggtransfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggfinalfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggcombinefn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggserialfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggdeserialfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmtransfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggminvtransfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmfinalfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggfinalextra\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmfinalextra\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggfinalmodify\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmfinalmodify\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggsortop\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggtranstype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggtransspace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmtranstype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmtransspace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"agginitval\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggminitval\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_am\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amhandler\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_amop\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amopfamily\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amoplefttype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amoprighttype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amopstrategy\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amoppurpose\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amopopr\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amopmethod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amopsortfamily\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_amproc\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amprocfamily\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amproclefttype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amprocrighttype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amprocnum\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amproc\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_attrdef\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"adrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"adnum\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"adbin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_attribute\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"atttypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attstattarget\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attlen\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attnum\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attndims\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attcacheoff\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"atttypmod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attbyval\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attalign\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attstorage\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attcompression\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attnotnull\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"atthasdef\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"atthasmissing\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attidentity\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attgenerated\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attisdropped\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attislocal\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attinhcount\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attcollation\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attfdwoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attmissingval\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_auth_members\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"roleid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"member\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantor\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"admin_option\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_authid\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolsuper\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolinherit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcreaterole\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcreatedb\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcanlogin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolreplication\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolbypassrls\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolconnlimit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolpassword\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolvaliduntil\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_available_extension_versions\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"installed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"superuser\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trusted\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relocatable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"requires\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comment\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_available_extensions\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extensions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extensions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"installed_version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extensions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comment\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extensions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_backend_memory_contexts\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ident\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parent\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"level\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_nblocks\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"free_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"free_chunks\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"used_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_cast\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"castsource\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"casttarget\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"castfunc\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"castcontext\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"castmethod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_class\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reltype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reloftype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relam\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relfilenode\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reltablespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relpages\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reltuples\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relallvisible\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reltoastrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relhasindex\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relisshared\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relpersistence\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relkind\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relnatts\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relchecks\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relhasrules\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relhastriggers\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relhassubclass\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relrowsecurity\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relforcerowsecurity\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relispopulated\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relreplident\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relispartition\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relrewrite\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relfrozenxid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relminmxid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reloptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relpartbound\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_collation\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collprovider\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collisdeterministic\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collencoding\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collcollate\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collctype\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"colliculocale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collversion\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_config\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setting\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_constraint\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"connamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"contype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"condeferrable\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"condeferred\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"convalidated\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"contypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conindid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conparentid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confupdtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confdeltype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confmatchtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conislocal\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"coninhcount\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"connoinherit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conkey\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confkey\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conpfeqop\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conppeqop\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conffeqop\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confdelsetcols\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conexclop\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conbin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_conversion\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"connamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conforencoding\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"contoencoding\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conproc\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"condefault\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_cursors\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statement\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_holdable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_binary\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_scrollable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"creation_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_database\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datdba\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"encoding\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datlocprovider\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datistemplate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datallowconn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datconnlimit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datfrozenxid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datminmxid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dattablespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datcollate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datctype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"daticulocale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datcollversion\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_db_role_setting\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setdatabase\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setrole\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_default_acl\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"defaclrole\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"defaclnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"defaclobjtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"defaclacl\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_depend\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"refclassid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"refobjid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"refobjsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"deptype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_description\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"description\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_enum\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"enumtypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"enumsortorder\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"enumlabel\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_event_trigger\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evtname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evtevent\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evtowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evtfoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evtenabled\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evttags\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_extension\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extrelocatable\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extversion\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extcondition\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_file_settings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"sourcefile\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sourceline\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqno\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setting\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"applied\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"error\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_foreign_data_wrapper\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwhandler\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwvalidator\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_foreign_server\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvfdw\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvtype\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvversion\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_foreign_table\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ftrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ftserver\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ftoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_group\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"groname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_group\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grosysid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_group\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grolist\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_group\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_hba_file_rules\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"line_number\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"database\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_name\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"address\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"netmask\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"auth_method\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"options\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"error\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ident_file_mappings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"line_number\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ident_file_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"map_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ident_file_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sys_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ident_file_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pg_username\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ident_file_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"error\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ident_file_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_index\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indnatts\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indnkeyatts\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisunique\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indnullsnotdistinct\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisprimary\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisexclusion\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indimmediate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisclustered\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisvalid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indcheckxmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisready\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indislive\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisreplident\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indkey\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indcollation\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oidvector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indclass\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oidvector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indoption\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexprs\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indpred\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablespace\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexdef\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_inherits\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inhrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inhparent\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inhseqno\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inhdetachpending\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_init_privs\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"initprivs\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_language\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanispl\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanpltrusted\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanplcallfoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"laninline\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanvalidator\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_largeobject\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"loid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pageno\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bytea\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_largeobject_metadata\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lomowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lomacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_locks\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"locktype\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"database\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"page\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tuple\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"virtualxid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"transactionid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"virtualtransaction\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"mode\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"granted\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fastpath\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"waitstart\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_matviews\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"matviewname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"matviewowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablespace\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"hasindexes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ispopulated\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"definition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_namespace\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"nspname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"nspowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"nspacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_opclass\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcmethod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcfamily\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcintype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcdefault\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opckeytype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_operator\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprkind\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprcanmerge\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprcanhash\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprleft\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprright\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprresult\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprcom\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprnegate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprcode\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprrest\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprjoin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_opfamily\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opfmethod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opfname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opfnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opfowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_parameter_acl\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"paracl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_partitioned_table\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partstrat\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partnatts\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partdefid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partattrs\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partclass\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oidvector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partcollation\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oidvector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partexprs\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_policies\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"policyname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"permissive\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"roles\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"qual\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"with_check\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_policy\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polcmd\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polpermissive\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polroles\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polqual\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polwithcheck\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_prepared_statements\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statement\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prepare_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parameter_types\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_regtype\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"from_sql\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"generic_plans\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"custom_plans\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_prepared_xacts\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"transaction\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_xacts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"gid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_xacts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prepared\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_xacts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"owner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_xacts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"database\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_xacts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_proc\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pronamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prolang\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"procost\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prorows\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"provariadic\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prosupport\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prokind\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prosecdef\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proleakproof\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proisstrict\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proretset\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"provolatile\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proparallel\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pronargs\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pronargdefaults\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prorettype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proargtypes\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oidvector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proallargtypes\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proargmodes\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proargnames\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proargdefaults\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"protrftypes\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prosrc\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"probin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prosqlbody\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_publication\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"puballtables\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubinsert\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubupdate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubdelete\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubtruncate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubviaroot\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_publication_namespace\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pnpubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pnnspid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_publication_rel\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prpubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prqual\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prattrs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_publication_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pubname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attnames\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rowfilter\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_range\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngtypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngsubtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngmultitypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngcollation\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngsubopc\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngcanonical\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngsubdiff\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_replication_origin\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"roident\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"roname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_replication_origin_status\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"local_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin_status\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"external_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin_status\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"remote_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin_status\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"local_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin_status\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_replication_slots\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"slot_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"plugin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"slot_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datoid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"database\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"temporary\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"active\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"active_pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"catalog_xmin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"restart_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confirmed_flush_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_status\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"safe_wal_size\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"two_phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_rewrite\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rulename\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ev_class\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ev_type\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ev_enabled\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_instead\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ev_qual\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ev_action\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_roles\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"rolname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolsuper\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolinherit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcreaterole\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcreatedb\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcanlogin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolreplication\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolconnlimit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolpassword\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolvaliduntil\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolbypassrls\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_rules\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rulename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"definition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_seclabel\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"provider\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"label\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_seclabels\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"objoid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objtype\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objnamespace\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"provider\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"label\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_sequence\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqtypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqstart\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqincrement\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqcache\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqcycle\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_sequences\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequencename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequenceowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regtype\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"start_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"min_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"max_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"increment_by\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cycle\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cache_size\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_settings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setting\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"unit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"category\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"short_desc\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extra_desc\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"context\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"vartype\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"source\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"min_val\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"max_val\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"enumvals\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"boot_val\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reset_val\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sourcefile\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sourceline\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pending_restart\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_shadow\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"usename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesysid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usecreatedb\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesuper\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"userepl\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usebypassrls\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"passwd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"valuntil\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"useconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_shdepend\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dbid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"refclassid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"refobjid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"deptype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_shdescription\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"description\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_shmem_allocations\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shmem_allocations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"off\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shmem_allocations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"size\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shmem_allocations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"allocated_size\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shmem_allocations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_shseclabel\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"provider\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"label\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_activity\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"leader_pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesysid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"application_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_addr\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"inet\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_hostname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_port\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_start\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xact_start\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"query_start\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"state_change\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wait_event_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wait_event\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"state\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_xid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_xmin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"query_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"query\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_all_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_all_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_live_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_dead_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_mod_since_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_ins_since_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autovacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autoanalyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"vacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autovacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"analyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autoanalyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_archiver\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"archived_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_archived_wal\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_archived_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"failed_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_failed_wal\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_failed_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_bgwriter\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"checkpoints_timed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"checkpoints_req\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"checkpoint_write_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"checkpoint_sync_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"buffers_checkpoint\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"buffers_clean\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maxwritten_clean\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"buffers_backend\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"buffers_backend_fsync\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"buffers_alloc\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_database\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numbackends\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xact_commit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xact_rollback\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tup_returned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tup_fetched\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tup_inserted\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tup_updated\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tup_deleted\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conflicts\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"temp_files\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"temp_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"deadlocks\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"checksum_failures\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"checksum_last_failure\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blk_read_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blk_write_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"session_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"active_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idle_in_transaction_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sessions\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sessions_abandoned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sessions_fatal\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sessions_killed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_database_conflicts\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confl_tablespace\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confl_lock\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confl_snapshot\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confl_bufferpin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confl_deadlock\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_gssapi\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_gssapi\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"gss_authenticated\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_gssapi\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"principal\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_gssapi\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"encrypted\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_gssapi\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_analyze\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sample_blks_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sample_blks_scanned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ext_stats_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ext_stats_computed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"child_tables_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"child_tables_done\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"current_child_table_relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_basebackup\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backup_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backup_streamed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablespaces_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablespaces_streamed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_cluster\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"command\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cluster_index_relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_tuples_scanned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_tuples_written\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_scanned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"index_rebuild_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_copy\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"command\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"bytes_processed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"bytes_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tuples_processed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tuples_excluded\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_create_index\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"index_relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"command\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lockers_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lockers_done\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"current_locker_pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blocks_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blocks_done\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tuples_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tuples_done\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partitions_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partitions_done\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_vacuum\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_scanned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_vacuumed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"index_vacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"max_dead_tuples\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"num_dead_tuples\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_recovery_prefetch\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prefetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"skip_init\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"skip_new\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"skip_fpw\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"skip_rep\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_distance\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"block_distance\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"io_depth\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_replication\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesysid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"application_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_addr\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"inet\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_hostname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_port\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_start\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_xmin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"state\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sent_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"write_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"flush_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"replay_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"write_lag\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 16,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"interval\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"flush_lag\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 16,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"interval\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"replay_lag\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 16,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"interval\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sync_priority\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sync_state\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reply_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_replication_slots\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"slot_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spill_txns\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spill_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spill_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stream_txns\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stream_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stream_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_txns\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_slru\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_zeroed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_written\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_exists\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"flushes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"truncates\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_ssl\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ssl\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cipher\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"bits\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_dn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_serial\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"numeric\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"issuer_dn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_subscription\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"subid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"received_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_msg_send_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_msg_receipt_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"latest_end_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"latest_end_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_subscription_stats\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"subid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"apply_error_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sync_error_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_sys_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_sys_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_live_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_dead_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_mod_since_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_ins_since_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autovacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autoanalyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"vacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autovacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"analyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autoanalyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_user_functions\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"funcid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"funcname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"calls\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"self_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_user_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_user_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_live_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_dead_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_mod_since_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_ins_since_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autovacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autoanalyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"vacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autovacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"analyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autoanalyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_wal\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"wal_records\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_fpi\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"numeric\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_buffers_full\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_write\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_sync\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_write_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_sync_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_wal_receiver\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"status\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"receive_start_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"receive_start_tli\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"written_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"flushed_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"received_tli\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_msg_send_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_msg_receipt_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"latest_end_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"latest_end_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"slot_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sender_host\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sender_port\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conninfo\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_xact_all_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_xact_sys_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_xact_user_functions\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"funcid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"funcname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"calls\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"self_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_xact_user_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_all_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_all_sequences\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_all_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_sys_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_sys_sequences\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_sys_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_user_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_user_sequences\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_user_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statistic\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"starelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staattnum\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stainherit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanullfrac\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stawidth\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stadistinct\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stakind1\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stakind2\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stakind3\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stakind4\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stakind5\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staop1\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staop2\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staop3\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staop4\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staop5\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stacoll1\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stacoll2\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stacoll3\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stacoll4\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stacoll5\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanumbers1\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanumbers2\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanumbers3\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanumbers4\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanumbers5\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stavalues1\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stavalues2\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stavalues3\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stavalues4\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stavalues5\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statistic_ext\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxstattarget\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxkeys\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxkind\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxexprs\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statistic_ext_data\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxdinherit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxdndistinct\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_ndistinct\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxddependencies\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_dependencies\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxdmcv\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_mcv_list\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxdexpr\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_pg_statistic\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stats\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inherited\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"null_frac\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"avg_width\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_distinct\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_vals\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"histogram_bounds\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"correlation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_elems\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_elem_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"elem_count_histogram\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stats_ext\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_owner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attnames\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"exprs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"kinds\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inherited\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_distinct\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_ndistinct\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dependencies\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_dependencies\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_vals\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_val_nulls\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_base_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stats_ext_exprs\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_owner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"expr\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inherited\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"null_frac\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"avg_width\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_distinct\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_vals\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"histogram_bounds\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"correlation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_elems\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_elem_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"elem_count_histogram\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_subscription\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subdbid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subskiplsn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subenabled\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subbinary\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"substream\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subtwophasestate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subdisableonerr\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subconninfo\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subslotname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subsynccommit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subpublications\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_subscription_rel\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srsubstate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srsublsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tableowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablespace\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"hasindexes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"hasrules\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"hastriggers\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rowsecurity\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_tablespace\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spcname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spcowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spcacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spcoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_timezone_abbrevs\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"abbrev\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_abbrevs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"utc_offset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 16,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_abbrevs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"interval\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_dst\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_abbrevs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_timezone_names\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_names\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"abbrev\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_names\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"utc_offset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 16,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_names\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"interval\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_dst\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_names\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_transform\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trftype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trflang\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trffromsql\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trftosql\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_trigger\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgparentid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgfoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgenabled\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgisinternal\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgconstrrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgconstrindid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgconstraint\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgdeferrable\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tginitdeferred\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgnargs\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgattr\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgargs\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bytea\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgqual\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgoldtable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgnewtable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ts_config\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cfgname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cfgnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cfgowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cfgparser\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ts_config_map\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"mapcfg\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maptokentype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"mapseqno\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"mapdict\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ts_dict\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dictname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dictnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dictowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dicttemplate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dictinitoption\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ts_parser\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prsname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prsnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prsstart\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prstoken\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prsend\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prsheadline\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prslextype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ts_template\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tmplname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tmplnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tmplinit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tmpllexize\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_type\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typlen\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typbyval\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typcategory\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typispreferred\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typisdefined\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typdelim\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typsubscript\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typelem\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typarray\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typinput\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typoutput\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typreceive\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typsend\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typmodin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typmodout\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typanalyze\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typalign\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typstorage\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typnotnull\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typbasetype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typtypmod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typndims\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typcollation\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typdefaultbin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typdefault\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_user\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"usename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesysid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usecreatedb\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesuper\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"userepl\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usebypassrls\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"passwd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"valuntil\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"useconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_user_mapping\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umuser\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umserver\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_user_mappings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"umid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umuser\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_views\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"viewname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"viewowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"definition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          }\n        ],\n        \"enums\": [],\n        \"composite_types\": []\n      },\n      {\n        \"comment\": \"\",\n        \"name\": \"information_schema\",\n        \"tables\": [\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"_pg_foreign_data_wrappers\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"oid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_language\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"_pg_foreign_servers\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"oid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"_pg_foreign_table_columns\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"nspname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_table_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_table_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_table_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attfdwoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_table_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"_pg_foreign_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ftoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"_pg_user_mappings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"oid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umuser\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"administrable_role_authorizations\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"administrable_role_authorizations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"role_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"administrable_role_authorizations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"administrable_role_authorizations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"applicable_roles\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"applicable_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"role_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"applicable_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"applicable_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"attributes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attribute_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordinal_position\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attribute_default\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_nullable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attribute_udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attribute_udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attribute_udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_derived_reference_attribute\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"character_sets\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_repertoire\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"form_of_use\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_collate_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_collate_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_collate_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"check_constraint_routine_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"check_constraints\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"check_clause\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"collation_character_set_applicability\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"collations\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pad_attribute\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"column_column_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dependent_column\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"column_domain_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"domain_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"column_options\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"column_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"column_udt_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"columns\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordinal_position\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_default\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_nullable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_self_referencing\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_identity\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_generation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_start\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_increment\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_maximum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_minimum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_cycle\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_generated\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"generation_expression\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_updatable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"constraint_column_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"constraint_table_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"data_type_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"data_type_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"data_type_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"data_type_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"data_type_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"data_type_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"domain_constraints\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_deferrable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"initially_deferred\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"domain_udt_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"domains\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"domain_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_default\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"element_types\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collection_type_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_default\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"enabled_roles\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"role_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"enabled_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_data_wrapper_options\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_data_wrapper_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrapper_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrapper_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrapper_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrapper_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_data_wrappers\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_data_wrapper_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"library_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_language\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_server_options\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_server_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_server_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_server_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_server_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_servers\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_table_options\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_table_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_table_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_table_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_table_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_table_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"information_schema_catalog_name\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"catalog_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"information_schema_catalog_name\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"key_column_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordinal_position\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"position_in_unique_constraint\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"parameters\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordinal_position\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parameter_mode\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_result\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"as_locator\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parameter_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parameter_default\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"referential_constraints\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"unique_constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"unique_constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"unique_constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"match_option\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"update_rule\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"delete_rule\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"role_column_grants\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"role_routine_grants\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"role_table_grants\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"with_hierarchy\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"role_udt_grants\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"role_usage_grants\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routine_column_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routine_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routine_routine_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routine_sequence_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequence_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequence_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequence_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routine_table_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routines\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"module_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"module_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"module_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"type_udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"type_udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"type_udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_body\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_definition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"external_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"external_language\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parameter_style\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_deterministic\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sql_data_access\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_null_call\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sql_path\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schema_level_routine\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"max_dynamic_result_sets\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_user_defined_cast\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_implicitly_invocable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"security_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"to_sql_specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"to_sql_specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"to_sql_specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"as_locator\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"created\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"time_stamp\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_altered\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"time_stamp\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"new_savepoint_level\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_udt_dependent\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_from_data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_as_locator\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_char_max_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_char_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_char_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_char_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_char_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_type_udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_type_udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_type_udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"schemata\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"catalog_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schema_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schema_owner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sql_path\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"sequences\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"sequence_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequence_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequence_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"start_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"minimum_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"increment\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cycle_option\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"sql_features\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"feature_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"feature_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sub_feature_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sub_feature_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_supported\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_verified_by\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comments\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"sql_implementation_info\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"implementation_info_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"implementation_info_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"integer_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comments\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"sql_parts\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"feature_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"feature_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_supported\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_verified_by\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comments\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"sql_sizing\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sizing_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sizing_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"supported_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comments\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"table_constraints\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_deferrable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"initially_deferred\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"enforced\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"nulls_distinct\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"table_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"with_hierarchy\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"self_referencing_column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reference_generation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_insertable_into\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_typed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"commit_action\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"transforms\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"group_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"transform_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"triggered_update_columns\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"trigger_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trigger_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trigger_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_table\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_column\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"triggers\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"trigger_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trigger_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trigger_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_manipulation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_table\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_order\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_condition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_statement\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_orientation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_timing\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_reference_old_table\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_reference_new_table\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_reference_old_row\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_reference_new_row\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"created\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"time_stamp\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"udt_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"usage_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"user_defined_types\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"user_defined_type_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_category\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_instantiable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_final\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordering_form\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordering_category\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordering_routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordering_routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordering_routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reference_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"source_dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ref_dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"user_mapping_options\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mapping_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mapping_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mapping_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mapping_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mapping_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"user_mappings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"view_column_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"view_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"view_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"view_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"view_routine_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"view_table_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"view_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"view_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"view_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"views\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"view_definition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"check_option\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_updatable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_insertable_into\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_trigger_updatable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_trigger_deletable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_trigger_insertable_into\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          }\n        ],\n        \"enums\": [],\n        \"composite_types\": []\n      }\n    ]\n  },\n  \"queries\": [\n    {\n      \"text\": \"SELECT id, name, bio FROM authors\\nWHERE id = $1 LIMIT 1\",\n      \"name\": \"GetAuthor\",\n      \"cmd\": \":one\",\n      \"columns\": [\n        {\n          \"name\": \"id\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"bigserial\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"id\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"name\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"name\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"bio\",\n          \"not_null\": false,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"bio\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        }\n      ],\n      \"params\": [\n        {\n          \"number\": 1,\n          \"column\": {\n            \"name\": \"id\",\n            \"not_null\": true,\n            \"is_array\": false,\n            \"comment\": \"\",\n            \"length\": -1,\n            \"is_named_param\": false,\n            \"is_func_call\": false,\n            \"scope\": \"\",\n            \"table\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"authors\"\n            },\n            \"table_alias\": \"\",\n            \"type\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"bigserial\"\n            },\n            \"is_sqlc_slice\": false,\n            \"embed_table\": null,\n            \"original_name\": \"id\",\n            \"unsigned\": false,\n            \"array_dims\": 0\n          }\n        }\n      ],\n      \"comments\": [],\n      \"filename\": \"query.sql\",\n      \"insert_into_table\": null\n    },\n    {\n      \"text\": \"SELECT id, name, bio FROM authors\\nORDER BY name\",\n      \"name\": \"ListAuthors\",\n      \"cmd\": \":many\",\n      \"columns\": [\n        {\n          \"name\": \"id\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"bigserial\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"id\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"name\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"name\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"bio\",\n          \"not_null\": false,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"bio\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        }\n      ],\n      \"params\": [],\n      \"comments\": [],\n      \"filename\": \"query.sql\",\n      \"insert_into_table\": null\n    },\n    {\n      \"text\": \"INSERT INTO authors (\\n          name, bio\\n) VALUES (\\n  $1, $2\\n)\\nRETURNING id, name, bio\",\n      \"name\": \"CreateAuthor\",\n      \"cmd\": \":one\",\n      \"columns\": [\n        {\n          \"name\": \"id\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"bigserial\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"id\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"name\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"name\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"bio\",\n          \"not_null\": false,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"bio\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        }\n      ],\n      \"params\": [\n        {\n          \"number\": 1,\n          \"column\": {\n            \"name\": \"name\",\n            \"not_null\": true,\n            \"is_array\": false,\n            \"comment\": \"\",\n            \"length\": -1,\n            \"is_named_param\": false,\n            \"is_func_call\": false,\n            \"scope\": \"\",\n            \"table\": {\n              \"catalog\": \"\",\n              \"schema\": \"public\",\n              \"name\": \"authors\"\n            },\n            \"table_alias\": \"\",\n            \"type\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"text\"\n            },\n            \"is_sqlc_slice\": false,\n            \"embed_table\": null,\n            \"original_name\": \"name\",\n            \"unsigned\": false,\n            \"array_dims\": 0\n          }\n        },\n        {\n          \"number\": 2,\n          \"column\": {\n            \"name\": \"bio\",\n            \"not_null\": false,\n            \"is_array\": false,\n            \"comment\": \"\",\n            \"length\": -1,\n            \"is_named_param\": false,\n            \"is_func_call\": false,\n            \"scope\": \"\",\n            \"table\": {\n              \"catalog\": \"\",\n              \"schema\": \"public\",\n              \"name\": \"authors\"\n            },\n            \"table_alias\": \"\",\n            \"type\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"text\"\n            },\n            \"is_sqlc_slice\": false,\n            \"embed_table\": null,\n            \"original_name\": \"bio\",\n            \"unsigned\": false,\n            \"array_dims\": 0\n          }\n        }\n      ],\n      \"comments\": [],\n      \"filename\": \"query.sql\",\n      \"insert_into_table\": {\n        \"catalog\": \"\",\n        \"schema\": \"\",\n        \"name\": \"authors\"\n      }\n    },\n    {\n      \"text\": \"DELETE FROM authors\\nWHERE id = $1\",\n      \"name\": \"DeleteAuthor\",\n      \"cmd\": \":exec\",\n      \"columns\": [],\n      \"params\": [\n        {\n          \"number\": 1,\n          \"column\": {\n            \"name\": \"id\",\n            \"not_null\": true,\n            \"is_array\": false,\n            \"comment\": \"\",\n            \"length\": -1,\n            \"is_named_param\": false,\n            \"is_func_call\": false,\n            \"scope\": \"\",\n            \"table\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"authors\"\n            },\n            \"table_alias\": \"\",\n            \"type\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"bigserial\"\n            },\n            \"is_sqlc_slice\": false,\n            \"embed_table\": null,\n            \"original_name\": \"id\",\n            \"unsigned\": false,\n            \"array_dims\": 0\n          }\n        }\n      ],\n      \"comments\": [],\n      \"filename\": \"query.sql\",\n      \"insert_into_table\": null\n    }\n  ],\n  \"sqlc_version\": \"v1.30.0\",\n  \"plugin_options\": \"eyJmaWxlbmFtZSI6ImNvZGVnZW4uanNvbiIsImluZGVudCI6IiAgIn0=\"\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_disabled/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_disabled/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_disabled/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"codegen\": [\n        {\n          \"out\": \"gen\",\n          \"plugin\": \"jsonb\",\n          \"options\": {\n            \"indent\": \"  \",\n            \"filename\": \"codegen.json\"\n          }\n        }\n      ]\n    }\n  ],\n  \"plugins\": [\n    {\n      \"name\": \"jsonb\",\n      \"process\": {\n        \"cmd\": \"sqlc-gen-json\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_disabled/stderr.txt",
    "content": "error validating sqlc.json: plugin: process-based plugins disabled via SQLCDEBUG=processplugins=0\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_format_json/exec.json",
    "content": "{\n  \"process\": \"test-json-process-plugin\",\n  \"os\": [ \"darwin\", \"linux\" ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_format_json/gen/hello.txt",
    "content": "SELECT id, name, bio FROM authors\nWHERE id = $1 LIMIT 1\nSELECT id, name, bio FROM authors\nORDER BY name\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING id, name, bio\nDELETE FROM authors\nWHERE id = $1\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_format_json/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_format_json/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_format_json/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"codegen\": [\n        {\n          \"out\": \"gen\",\n          \"plugin\": \"jsonb\"\n        }\n      ]\n    }\n  ],\n  \"plugins\": [\n    {\n      \"name\": \"jsonb\",\n      \"process\": {\n        \"cmd\": \"test-json-process-plugin\",\n        \"format\": \"json\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_sqlc_gen_json/exec.json",
    "content": "{\n  \"contexts\": [\"base\"],\n  \"process\": \"sqlc-gen-json\"\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_sqlc_gen_json/gen/codegen.json",
    "content": "{\n  \"settings\": {\n    \"version\": \"2\",\n    \"engine\": \"postgresql\",\n    \"schema\": [\n      \"schema.sql\"\n    ],\n    \"queries\": [\n      \"query.sql\"\n    ],\n    \"codegen\": {\n      \"out\": \"gen\",\n      \"plugin\": \"jsonb\",\n      \"options\": \"eyJmaWxlbmFtZSI6ImNvZGVnZW4uanNvbiIsImluZGVudCI6IiAgIn0=\",\n      \"env\": [],\n      \"process\": {\n        \"cmd\": \"sqlc-gen-json\"\n      },\n      \"wasm\": null\n    }\n  },\n  \"catalog\": {\n    \"comment\": \"\",\n    \"default_schema\": \"public\",\n    \"name\": \"\",\n    \"schemas\": [\n      {\n        \"comment\": \"\",\n        \"name\": \"public\",\n        \"tables\": [\n          {\n            \"rel\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"authors\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"id\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"authors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bigserial\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"name\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"authors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"bio\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"authors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          }\n        ],\n        \"enums\": [],\n        \"composite_types\": []\n      },\n      {\n        \"comment\": \"\",\n        \"name\": \"pg_temp\",\n        \"tables\": [],\n        \"enums\": [],\n        \"composite_types\": []\n      },\n      {\n        \"comment\": \"\",\n        \"name\": \"pg_catalog\",\n        \"tables\": [\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_aggregate\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggfnoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggkind\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggnumdirectargs\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggtransfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggfinalfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggcombinefn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggserialfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggdeserialfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmtransfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggminvtransfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmfinalfn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggfinalextra\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmfinalextra\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggfinalmodify\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmfinalmodify\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggsortop\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggtranstype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggtransspace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmtranstype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggmtransspace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"agginitval\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"aggminitval\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_aggregate\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_am\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amhandler\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_am\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_amop\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amopfamily\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amoplefttype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amoprighttype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amopstrategy\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amoppurpose\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amopopr\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amopmethod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amopsortfamily\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amop\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_amproc\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amprocfamily\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amproclefttype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amprocrighttype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amprocnum\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"amproc\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_amproc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_attrdef\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"adrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"adnum\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"adbin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attrdef\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_attribute\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"atttypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attstattarget\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attlen\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attnum\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attndims\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attcacheoff\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"atttypmod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attbyval\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attalign\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attstorage\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attcompression\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attnotnull\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"atthasdef\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"atthasmissing\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attidentity\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attgenerated\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attisdropped\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attislocal\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attinhcount\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attcollation\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attfdwoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attmissingval\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_attribute\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_auth_members\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"roleid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"member\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantor\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"admin_option\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_auth_members\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_authid\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolsuper\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolinherit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcreaterole\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcreatedb\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcanlogin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolreplication\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolbypassrls\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolconnlimit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolpassword\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolvaliduntil\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_authid\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_available_extension_versions\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"installed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"superuser\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trusted\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relocatable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"requires\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comment\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extension_versions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_available_extensions\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extensions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extensions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"installed_version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extensions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comment\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_available_extensions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_backend_memory_contexts\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ident\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parent\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"level\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_nblocks\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"free_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"free_chunks\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"used_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_backend_memory_contexts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_cast\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"castsource\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"casttarget\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"castfunc\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"castcontext\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"castmethod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cast\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_class\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reltype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reloftype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relam\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relfilenode\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reltablespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relpages\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reltuples\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relallvisible\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reltoastrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relhasindex\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relisshared\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relpersistence\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relkind\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relnatts\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relchecks\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relhasrules\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relhastriggers\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relhassubclass\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relrowsecurity\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relforcerowsecurity\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relispopulated\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relreplident\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relispartition\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relrewrite\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relfrozenxid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relminmxid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reloptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relpartbound\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_class\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_collation\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collprovider\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collisdeterministic\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collencoding\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collcollate\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collctype\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"colliculocale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collversion\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_collation\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_config\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setting\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_constraint\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"connamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"contype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"condeferrable\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"condeferred\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"convalidated\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"contypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conindid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conparentid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confupdtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confdeltype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confmatchtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conislocal\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"coninhcount\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"connoinherit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conkey\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confkey\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conpfeqop\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conppeqop\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conffeqop\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confdelsetcols\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conexclop\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conbin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_constraint\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_conversion\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"connamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conforencoding\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"contoencoding\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conproc\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"condefault\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_conversion\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_cursors\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statement\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_holdable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_binary\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_scrollable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"creation_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_cursors\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_database\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datdba\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"encoding\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datlocprovider\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datistemplate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datallowconn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datconnlimit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datfrozenxid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datminmxid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dattablespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datcollate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datctype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"daticulocale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datcollversion\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_db_role_setting\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setdatabase\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setrole\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_db_role_setting\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_default_acl\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"defaclrole\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"defaclnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"defaclobjtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"defaclacl\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_default_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_depend\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"refclassid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"refobjid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"refobjsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"deptype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_depend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_description\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"description\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_description\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_enum\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"enumtypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"enumsortorder\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"enumlabel\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_enum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_event_trigger\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evtname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evtevent\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evtowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evtfoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evtenabled\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"evttags\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_event_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_extension\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extrelocatable\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extversion\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extcondition\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_extension\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_file_settings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"sourcefile\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sourceline\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqno\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setting\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"applied\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"error\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_file_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_foreign_data_wrapper\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwhandler\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwvalidator\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_data_wrapper\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_foreign_server\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvfdw\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvtype\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvversion\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_server\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_foreign_table\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ftrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ftserver\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ftoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_foreign_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_group\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"groname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_group\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grosysid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_group\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grolist\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_group\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_hba_file_rules\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"line_number\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"database\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_name\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"address\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"netmask\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"auth_method\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"options\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"error\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_hba_file_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ident_file_mappings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"line_number\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ident_file_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"map_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ident_file_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sys_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ident_file_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pg_username\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ident_file_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"error\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ident_file_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_index\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indnatts\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indnkeyatts\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisunique\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indnullsnotdistinct\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisprimary\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisexclusion\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indimmediate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisclustered\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisvalid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indcheckxmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisready\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indislive\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indisreplident\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indkey\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indcollation\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oidvector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indclass\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oidvector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indoption\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexprs\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indpred\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablespace\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexdef\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_inherits\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inhrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inhparent\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inhseqno\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inhdetachpending\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_inherits\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_init_privs\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"initprivs\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_init_privs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_language\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanispl\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanpltrusted\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanplcallfoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"laninline\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanvalidator\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lanacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_language\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_largeobject\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"loid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pageno\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bytea\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_largeobject_metadata\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lomowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lomacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_largeobject_metadata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_locks\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"locktype\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"database\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"page\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tuple\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"virtualxid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"transactionid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"virtualtransaction\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"mode\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"granted\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fastpath\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"waitstart\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_locks\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_matviews\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"matviewname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"matviewowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablespace\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"hasindexes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ispopulated\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"definition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_matviews\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_namespace\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"nspname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"nspowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"nspacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_opclass\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcmethod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcfamily\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcintype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opcdefault\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opckeytype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opclass\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_operator\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprkind\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprcanmerge\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprcanhash\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprleft\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprright\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprresult\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprcom\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprnegate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprcode\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprrest\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oprjoin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_operator\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_opfamily\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opfmethod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opfname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opfnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"opfowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_opfamily\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_parameter_acl\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"paracl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_parameter_acl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_partitioned_table\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partstrat\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partnatts\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partdefid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partattrs\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partclass\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oidvector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partcollation\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oidvector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partexprs\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_partitioned_table\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_policies\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"policyname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"permissive\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"roles\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"qual\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"with_check\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policies\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_policy\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polcmd\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polpermissive\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polroles\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polqual\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"polwithcheck\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_policy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_prepared_statements\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statement\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prepare_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parameter_types\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_regtype\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"from_sql\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"generic_plans\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"custom_plans\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_statements\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_prepared_xacts\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"transaction\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_xacts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"gid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_xacts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prepared\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_xacts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"owner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_xacts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"database\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_prepared_xacts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_proc\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pronamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prolang\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"procost\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prorows\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"provariadic\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prosupport\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prokind\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prosecdef\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proleakproof\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proisstrict\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proretset\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"provolatile\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proparallel\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pronargs\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pronargdefaults\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prorettype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proargtypes\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oidvector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proallargtypes\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proargmodes\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proargnames\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proargdefaults\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"protrftypes\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prosrc\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"probin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prosqlbody\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"proacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_proc\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_publication\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"puballtables\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubinsert\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubupdate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubdelete\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubtruncate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pubviaroot\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_publication_namespace\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pnpubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pnnspid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_namespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_publication_rel\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prpubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prqual\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prattrs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_publication_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pubname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attnames\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rowfilter\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_publication_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_range\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngtypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngsubtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngmultitypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngcollation\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngsubopc\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngcanonical\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rngsubdiff\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_range\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_replication_origin\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"roident\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"roname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_replication_origin_status\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"local_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin_status\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"external_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin_status\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"remote_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin_status\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"local_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_origin_status\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_replication_slots\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"slot_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"plugin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"slot_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datoid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"database\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"temporary\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"active\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"active_pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"catalog_xmin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"restart_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confirmed_flush_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_status\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"safe_wal_size\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"two_phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_rewrite\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rulename\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ev_class\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ev_type\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ev_enabled\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_instead\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ev_qual\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ev_action\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rewrite\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_roles\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"rolname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolsuper\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolinherit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcreaterole\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcreatedb\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolcanlogin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolreplication\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolconnlimit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolpassword\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolvaliduntil\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolbypassrls\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rolconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_rules\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rulename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"definition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_rules\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_seclabel\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"provider\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"label\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_seclabels\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"objoid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objtype\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objnamespace\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"provider\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"label\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_seclabels\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_sequence\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqtypid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqstart\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqincrement\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqcache\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seqcycle\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequence\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_sequences\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequencename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequenceowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regtype\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"start_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"min_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"max_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"increment_by\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cycle\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cache_size\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_settings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"setting\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"unit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"category\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"short_desc\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"extra_desc\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"context\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"vartype\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"source\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"min_val\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"max_val\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"enumvals\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"boot_val\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reset_val\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sourcefile\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sourceline\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pending_restart\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_settings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_shadow\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"usename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesysid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usecreatedb\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesuper\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"userepl\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usebypassrls\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"passwd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"valuntil\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"useconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shadow\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_shdepend\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dbid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"refclassid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"refobjid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"deptype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdepend\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_shdescription\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"description\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shdescription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_shmem_allocations\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shmem_allocations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"off\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shmem_allocations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"size\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shmem_allocations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"allocated_size\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shmem_allocations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_shseclabel\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"objoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"classoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"provider\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"label\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_shseclabel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_activity\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"leader_pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesysid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"application_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_addr\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"inet\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_hostname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_port\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_start\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xact_start\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"query_start\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"state_change\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wait_event_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wait_event\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"state\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_xid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_xmin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"query_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"query\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_activity\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_all_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_all_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_live_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_dead_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_mod_since_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_ins_since_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autovacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autoanalyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"vacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autovacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"analyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autoanalyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_archiver\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"archived_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_archived_wal\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_archived_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"failed_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_failed_wal\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_failed_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_archiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_bgwriter\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"checkpoints_timed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"checkpoints_req\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"checkpoint_write_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"checkpoint_sync_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"buffers_checkpoint\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"buffers_clean\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maxwritten_clean\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"buffers_backend\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"buffers_backend_fsync\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"buffers_alloc\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_bgwriter\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_database\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numbackends\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xact_commit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xact_rollback\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tup_returned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tup_fetched\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tup_inserted\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tup_updated\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tup_deleted\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conflicts\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"temp_files\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"temp_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"deadlocks\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"checksum_failures\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"checksum_last_failure\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blk_read_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blk_write_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"session_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"active_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idle_in_transaction_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sessions\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sessions_abandoned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sessions_fatal\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sessions_killed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_database_conflicts\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confl_tablespace\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confl_lock\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confl_snapshot\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confl_bufferpin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"confl_deadlock\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_database_conflicts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_gssapi\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_gssapi\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"gss_authenticated\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_gssapi\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"principal\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_gssapi\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"encrypted\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_gssapi\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_analyze\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sample_blks_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sample_blks_scanned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ext_stats_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ext_stats_computed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"child_tables_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"child_tables_done\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"current_child_table_relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_analyze\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_basebackup\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backup_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backup_streamed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablespaces_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablespaces_streamed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_basebackup\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_cluster\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"command\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cluster_index_relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_tuples_scanned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_tuples_written\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_scanned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"index_rebuild_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_cluster\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_copy\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"command\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"bytes_processed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"bytes_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tuples_processed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tuples_excluded\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_copy\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_create_index\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"index_relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"command\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lockers_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"lockers_done\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"current_locker_pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blocks_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blocks_done\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tuples_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tuples_done\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partitions_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"partitions_done\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_create_index\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_progress_vacuum\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"phase\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_total\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_scanned\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_vacuumed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"index_vacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"max_dead_tuples\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"num_dead_tuples\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_progress_vacuum\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_recovery_prefetch\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prefetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"skip_init\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"skip_new\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"skip_fpw\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"skip_rep\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_distance\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"block_distance\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"io_depth\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_recovery_prefetch\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_replication\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesysid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"application_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_addr\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"inet\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_hostname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_port\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_start\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"backend_xmin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"state\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sent_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"write_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"flush_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"replay_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"write_lag\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 16,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"interval\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"flush_lag\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 16,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"interval\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"replay_lag\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 16,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"interval\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sync_priority\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sync_state\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reply_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_replication_slots\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"slot_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spill_txns\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spill_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spill_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stream_txns\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stream_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stream_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_txns\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_replication_slots\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_slru\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_zeroed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_written\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_exists\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"flushes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"truncates\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_slru\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_ssl\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ssl\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cipher\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"bits\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_dn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"client_serial\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"numeric\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"issuer_dn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_ssl\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_subscription\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"subid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"received_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_msg_send_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_msg_receipt_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"latest_end_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"latest_end_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_subscription_stats\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"subid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"apply_error_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sync_error_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_subscription_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_sys_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_sys_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_live_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_dead_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_mod_since_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_ins_since_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autovacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autoanalyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"vacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autovacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"analyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autoanalyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_user_functions\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"funcid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"funcname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"calls\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"self_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_user_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_user_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_live_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_dead_tup\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_mod_since_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_ins_since_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_vacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autovacuum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_analyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_autoanalyze\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"vacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autovacuum_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"analyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"autoanalyze_count\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_wal\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"wal_records\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_fpi\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_bytes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"numeric\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_buffers_full\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_write\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_sync\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_write_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"wal_sync_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stats_reset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_wal_receiver\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"pid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"status\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"receive_start_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"receive_start_tli\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"written_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"flushed_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"received_tli\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_msg_send_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_msg_receipt_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"latest_end_lsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"latest_end_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"slot_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sender_host\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sender_port\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"conninfo\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_wal_receiver\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_xact_all_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_xact_sys_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_xact_user_functions\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"funcid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"funcname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"calls\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"total_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"self_time\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_functions\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stat_xact_user_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"seq_tup_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_scan\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_tup_fetch\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_ins\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_del\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_tup_hot_upd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stat_xact_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_all_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_all_sequences\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_all_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_all_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_sys_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_sys_sequences\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_sys_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_sys_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_user_indexes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"indexrelname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_indexes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_user_sequences\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statio_user_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"relid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"heap_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"idx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"toast_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_read\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tidx_blks_hit\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statio_user_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statistic\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"starelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staattnum\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stainherit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanullfrac\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stawidth\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stadistinct\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stakind1\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stakind2\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stakind3\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stakind4\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stakind5\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staop1\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staop2\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staop3\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staop4\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"staop5\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stacoll1\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stacoll2\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stacoll3\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stacoll4\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stacoll5\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanumbers1\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanumbers2\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanumbers3\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanumbers4\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stanumbers5\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stavalues1\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stavalues2\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stavalues3\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stavalues4\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stavalues5\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statistic_ext\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxstattarget\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxkeys\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxkind\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxexprs\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_statistic_ext_data\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxdinherit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxdndistinct\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_ndistinct\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxddependencies\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_dependencies\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxdmcv\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_mcv_list\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"stxdexpr\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_statistic_ext_data\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_pg_statistic\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stats\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inherited\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"null_frac\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"avg_width\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_distinct\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_vals\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"histogram_bounds\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"correlation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_elems\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_elem_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"elem_count_histogram\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stats_ext\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_owner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attnames\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"exprs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"kinds\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inherited\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_distinct\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_ndistinct\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dependencies\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_dependencies\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_vals\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_val_nulls\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_base_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float8\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_stats_ext_exprs\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"statistics_owner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"expr\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"inherited\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"null_frac\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"avg_width\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"n_distinct\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_vals\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"histogram_bounds\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"correlation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_elems\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"anyarray\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"most_common_elem_freqs\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"elem_count_histogram\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_stats_ext_exprs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_float4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_subscription\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subdbid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subskiplsn\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subenabled\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subbinary\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"substream\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subtwophasestate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subdisableonerr\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subconninfo\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subslotname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subsynccommit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"subpublications\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_subscription_rel\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srsubid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srsubstate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srsublsn\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_subscription_rel\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_lsn\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tableowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tablespace\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"hasindexes\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"hasrules\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"hastriggers\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"rowsecurity\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_tablespace\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spcname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spcowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spcacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"spcoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_tablespace\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_timezone_abbrevs\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"abbrev\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_abbrevs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"utc_offset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 16,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_abbrevs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"interval\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_dst\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_abbrevs\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_timezone_names\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_names\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"abbrev\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_names\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"utc_offset\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 16,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_names\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"interval\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_dst\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_timezone_names\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_transform\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trftype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trflang\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trffromsql\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trftosql\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_transform\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_trigger\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgparentid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgfoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgenabled\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgisinternal\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgconstrrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgconstrindid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgconstraint\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgdeferrable\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tginitdeferred\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgnargs\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgattr\",\n                \"not_null\": true,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2vector\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgargs\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bytea\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgqual\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgoldtable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tgnewtable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_trigger\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ts_config\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cfgname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cfgnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cfgowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cfgparser\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ts_config_map\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"mapcfg\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maptokentype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"mapseqno\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"mapdict\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_config_map\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ts_dict\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dictname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dictnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dictowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dicttemplate\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dictinitoption\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_dict\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ts_parser\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prsname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prsnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prsstart\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prstoken\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prsend\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prsheadline\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"prslextype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_parser\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_ts_template\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tmplname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tmplnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tmplinit\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"tmpllexize\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_ts_template\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_type\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typname\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typnamespace\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typowner\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typlen\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 2,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int2\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typbyval\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typtype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typcategory\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typispreferred\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typisdefined\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typdelim\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typrelid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typsubscript\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typelem\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typarray\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typinput\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typoutput\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typreceive\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typsend\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typmodin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typmodout\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typanalyze\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"regproc\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typalign\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typstorage\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"char\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typnotnull\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typbasetype\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typtypmod\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typndims\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"int4\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typcollation\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typdefaultbin\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"pg_node_tree\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typdefault\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"typacl\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_type\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_aclitem\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_user\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"usename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesysid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usecreatedb\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usesuper\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"userepl\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usebypassrls\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"bool\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"passwd\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"valuntil\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"timestamptz\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"useconfig\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_user_mapping\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"oid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umuser\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umserver\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mapping\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_user_mappings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"umid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umuser\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"usename\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"pg_catalog\",\n              \"name\": \"pg_views\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"schemaname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"viewname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"viewowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"definition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"pg_catalog\",\n                  \"name\": \"pg_views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          }\n        ],\n        \"enums\": [],\n        \"composite_types\": []\n      },\n      {\n        \"comment\": \"\",\n        \"name\": \"information_schema\",\n        \"tables\": [\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"_pg_foreign_data_wrappers\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"oid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"fdwoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_language\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"_pg_foreign_servers\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"oid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"_pg_foreign_table_columns\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"nspname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_table_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"relname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_table_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attname\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_table_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"name\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attfdwoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_table_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"_pg_foreign_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ftoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"_pg_user_mappings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"oid\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umoptions\",\n                \"not_null\": false,\n                \"is_array\": true,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"_text\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"umuser\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"srvowner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"_pg_user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"administrable_role_authorizations\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"administrable_role_authorizations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"role_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"administrable_role_authorizations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"administrable_role_authorizations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"applicable_roles\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"applicable_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"role_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"applicable_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"applicable_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"attributes\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attribute_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordinal_position\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attribute_default\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_nullable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attribute_udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attribute_udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"attribute_udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_derived_reference_attribute\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"attributes\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"character_sets\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_repertoire\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"form_of_use\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_collate_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_collate_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_collate_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"character_sets\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"check_constraint_routine_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraint_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"check_constraints\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"check_clause\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"check_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"collation_character_set_applicability\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collation_character_set_applicability\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"collations\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"pad_attribute\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"collations\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"column_column_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dependent_column\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"column_domain_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"domain_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_domain_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"column_options\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"column_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"column_udt_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"column_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"columns\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordinal_position\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_default\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_nullable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_self_referencing\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_identity\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_generation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_start\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_increment\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_maximum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_minimum\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"identity_cycle\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_generated\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"generation_expression\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_updatable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"constraint_column_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"constraint_table_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"constraint_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"data_type_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"data_type_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"data_type_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"data_type_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"data_type_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"data_type_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"domain_constraints\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_deferrable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"initially_deferred\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"domain_udt_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domain_udt_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"domains\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"domain_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_default\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"domains\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"element_types\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collection_type_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"domain_default\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"element_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"enabled_roles\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"role_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"enabled_roles\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_data_wrapper_options\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_data_wrapper_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrapper_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrapper_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrapper_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrapper_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_data_wrappers\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_data_wrapper_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"library_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_language\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_data_wrappers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_server_options\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_server_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_server_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_server_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_server_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_servers\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_data_wrapper_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_version\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_servers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_table_options\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_table_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_table_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_table_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_table_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_table_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"foreign_tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"foreign_table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"foreign_tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"information_schema_catalog_name\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"catalog_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"information_schema_catalog_name\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"key_column_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordinal_position\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"position_in_unique_constraint\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"key_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"parameters\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordinal_position\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parameter_mode\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_result\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"as_locator\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parameter_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parameter_default\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"parameters\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"referential_constraints\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"unique_constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"unique_constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"unique_constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"match_option\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"update_rule\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"delete_rule\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"referential_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"role_column_grants\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_column_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"role_routine_grants\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_routine_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"role_table_grants\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"with_hierarchy\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_table_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"role_udt_grants\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_udt_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"role_usage_grants\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"role_usage_grants\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routine_column_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routine_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routine_routine_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routine_sequence_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequence_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequence_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequence_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_sequence_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routine_table_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routine_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"routines\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"module_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"module_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"module_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"type_udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"type_udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"type_udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_body\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"routine_definition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"external_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"external_language\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"parameter_style\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_deterministic\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sql_data_access\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_null_call\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sql_path\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schema_level_routine\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"max_dynamic_result_sets\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_user_defined_cast\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_implicitly_invocable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"security_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"to_sql_specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"to_sql_specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"to_sql_specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"as_locator\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"created\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"time_stamp\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"last_altered\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"time_stamp\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"new_savepoint_level\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_udt_dependent\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_from_data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_as_locator\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_char_max_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_char_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_char_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_char_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_char_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_type_udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_type_udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_type_udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_scope_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_scope_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_scope_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_maximum_cardinality\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"result_cast_dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"routines\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"schemata\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"catalog_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schema_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"schema_owner\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"default_character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sql_path\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"schemata\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"sequences\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"sequence_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequence_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sequence_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"start_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"minimum_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"maximum_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"increment\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cycle_option\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sequences\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"sql_features\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"feature_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"feature_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sub_feature_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sub_feature_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_supported\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_verified_by\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comments\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_features\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"sql_implementation_info\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"implementation_info_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"implementation_info_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"integer_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comments\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_implementation_info\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"sql_parts\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"feature_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"feature_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_supported\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_verified_by\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comments\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_parts\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"sql_sizing\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"tableoid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"oid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmax\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"cmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"xmin\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"xid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ctid\",\n                \"not_null\": true,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 6,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"tid\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sizing_id\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"sizing_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"supported_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"comments\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"sql_sizing\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"table_constraints\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"constraint_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"constraint_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_deferrable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"initially_deferred\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"enforced\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"nulls_distinct\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_constraints\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"table_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"with_hierarchy\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"table_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"tables\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"self_referencing_column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reference_generation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_insertable_into\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_typed\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"commit_action\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"tables\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"transforms\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"group_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"transform_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"transforms\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"triggered_update_columns\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"trigger_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trigger_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trigger_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_table\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_column\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggered_update_columns\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"triggers\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"trigger_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trigger_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"trigger_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_manipulation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"event_object_table\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_order\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_condition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_statement\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_orientation\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_timing\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_reference_old_table\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_reference_new_table\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_reference_old_row\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"action_reference_new_row\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"created\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 8,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"triggers\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"time_stamp\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"udt_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"udt_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"udt_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"usage_privileges\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"grantor\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"grantee\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"object_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"privilege_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_grantable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"usage_privileges\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"user_defined_types\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"user_defined_type_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"user_defined_type_category\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_instantiable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_final\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordering_form\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordering_category\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordering_routine_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordering_routine_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ordering_routine_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"reference_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"data_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_maximum_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_octet_length\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"character_set_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"collation_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_precision_radix\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"numeric_scale\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"datetime_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_type\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"interval_precision\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 4,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"cardinal_number\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"source_dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"ref_dtd_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_defined_types\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"user_mapping_options\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mapping_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mapping_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mapping_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mapping_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"option_value\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mapping_options\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"user_mappings\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"authorization_identifier\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"foreign_server_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"user_mappings\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"view_column_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"view_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"view_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"view_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"column_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_column_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"view_routine_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"specific_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_routine_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"view_table_usage\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"view_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"view_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"view_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"view_table_usage\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          },\n          {\n            \"rel\": {\n              \"catalog\": \"pg_catalog\",\n              \"schema\": \"information_schema\",\n              \"name\": \"views\"\n            },\n            \"columns\": [\n              {\n                \"name\": \"table_catalog\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_schema\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"table_name\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": 64,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"sql_identifier\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"view_definition\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"check_option\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"character_data\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_updatable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_insertable_into\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_trigger_updatable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_trigger_deletable\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              },\n              {\n                \"name\": \"is_trigger_insertable_into\",\n                \"not_null\": false,\n                \"is_array\": false,\n                \"comment\": \"\",\n                \"length\": -1,\n                \"is_named_param\": false,\n                \"is_func_call\": false,\n                \"scope\": \"\",\n                \"table\": {\n                  \"catalog\": \"pg_catalog\",\n                  \"schema\": \"information_schema\",\n                  \"name\": \"views\"\n                },\n                \"table_alias\": \"\",\n                \"type\": {\n                  \"catalog\": \"\",\n                  \"schema\": \"\",\n                  \"name\": \"yes_or_no\"\n                },\n                \"is_sqlc_slice\": false,\n                \"embed_table\": null,\n                \"original_name\": \"\",\n                \"unsigned\": false,\n                \"array_dims\": 0\n              }\n            ],\n            \"comment\": \"\"\n          }\n        ],\n        \"enums\": [],\n        \"composite_types\": []\n      }\n    ]\n  },\n  \"queries\": [\n    {\n      \"text\": \"SELECT id, name, bio FROM authors\\nWHERE id = $1 LIMIT 1\",\n      \"name\": \"GetAuthor\",\n      \"cmd\": \":one\",\n      \"columns\": [\n        {\n          \"name\": \"id\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"bigserial\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"id\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"name\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"name\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"bio\",\n          \"not_null\": false,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"bio\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        }\n      ],\n      \"params\": [\n        {\n          \"number\": 1,\n          \"column\": {\n            \"name\": \"id\",\n            \"not_null\": true,\n            \"is_array\": false,\n            \"comment\": \"\",\n            \"length\": -1,\n            \"is_named_param\": false,\n            \"is_func_call\": false,\n            \"scope\": \"\",\n            \"table\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"authors\"\n            },\n            \"table_alias\": \"\",\n            \"type\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"bigserial\"\n            },\n            \"is_sqlc_slice\": false,\n            \"embed_table\": null,\n            \"original_name\": \"id\",\n            \"unsigned\": false,\n            \"array_dims\": 0\n          }\n        }\n      ],\n      \"comments\": [],\n      \"filename\": \"query.sql\",\n      \"insert_into_table\": null\n    },\n    {\n      \"text\": \"SELECT id, name, bio FROM authors\\nORDER BY name\",\n      \"name\": \"ListAuthors\",\n      \"cmd\": \":many\",\n      \"columns\": [\n        {\n          \"name\": \"id\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"bigserial\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"id\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"name\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"name\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"bio\",\n          \"not_null\": false,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"bio\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        }\n      ],\n      \"params\": [],\n      \"comments\": [],\n      \"filename\": \"query.sql\",\n      \"insert_into_table\": null\n    },\n    {\n      \"text\": \"INSERT INTO authors (\\n          name, bio\\n) VALUES (\\n  $1, $2\\n)\\nRETURNING id, name, bio\",\n      \"name\": \"CreateAuthor\",\n      \"cmd\": \":one\",\n      \"columns\": [\n        {\n          \"name\": \"id\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"bigserial\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"id\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"name\",\n          \"not_null\": true,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"name\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        },\n        {\n          \"name\": \"bio\",\n          \"not_null\": false,\n          \"is_array\": false,\n          \"comment\": \"\",\n          \"length\": -1,\n          \"is_named_param\": false,\n          \"is_func_call\": false,\n          \"scope\": \"\",\n          \"table\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"authors\"\n          },\n          \"table_alias\": \"\",\n          \"type\": {\n            \"catalog\": \"\",\n            \"schema\": \"\",\n            \"name\": \"text\"\n          },\n          \"is_sqlc_slice\": false,\n          \"embed_table\": null,\n          \"original_name\": \"bio\",\n          \"unsigned\": false,\n          \"array_dims\": 0\n        }\n      ],\n      \"params\": [\n        {\n          \"number\": 1,\n          \"column\": {\n            \"name\": \"name\",\n            \"not_null\": true,\n            \"is_array\": false,\n            \"comment\": \"\",\n            \"length\": -1,\n            \"is_named_param\": false,\n            \"is_func_call\": false,\n            \"scope\": \"\",\n            \"table\": {\n              \"catalog\": \"\",\n              \"schema\": \"public\",\n              \"name\": \"authors\"\n            },\n            \"table_alias\": \"\",\n            \"type\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"text\"\n            },\n            \"is_sqlc_slice\": false,\n            \"embed_table\": null,\n            \"original_name\": \"name\",\n            \"unsigned\": false,\n            \"array_dims\": 0\n          }\n        },\n        {\n          \"number\": 2,\n          \"column\": {\n            \"name\": \"bio\",\n            \"not_null\": false,\n            \"is_array\": false,\n            \"comment\": \"\",\n            \"length\": -1,\n            \"is_named_param\": false,\n            \"is_func_call\": false,\n            \"scope\": \"\",\n            \"table\": {\n              \"catalog\": \"\",\n              \"schema\": \"public\",\n              \"name\": \"authors\"\n            },\n            \"table_alias\": \"\",\n            \"type\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"text\"\n            },\n            \"is_sqlc_slice\": false,\n            \"embed_table\": null,\n            \"original_name\": \"bio\",\n            \"unsigned\": false,\n            \"array_dims\": 0\n          }\n        }\n      ],\n      \"comments\": [],\n      \"filename\": \"query.sql\",\n      \"insert_into_table\": {\n        \"catalog\": \"\",\n        \"schema\": \"\",\n        \"name\": \"authors\"\n      }\n    },\n    {\n      \"text\": \"DELETE FROM authors\\nWHERE id = $1\",\n      \"name\": \"DeleteAuthor\",\n      \"cmd\": \":exec\",\n      \"columns\": [],\n      \"params\": [\n        {\n          \"number\": 1,\n          \"column\": {\n            \"name\": \"id\",\n            \"not_null\": true,\n            \"is_array\": false,\n            \"comment\": \"\",\n            \"length\": -1,\n            \"is_named_param\": false,\n            \"is_func_call\": false,\n            \"scope\": \"\",\n            \"table\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"authors\"\n            },\n            \"table_alias\": \"\",\n            \"type\": {\n              \"catalog\": \"\",\n              \"schema\": \"\",\n              \"name\": \"bigserial\"\n            },\n            \"is_sqlc_slice\": false,\n            \"embed_table\": null,\n            \"original_name\": \"id\",\n            \"unsigned\": false,\n            \"array_dims\": 0\n          }\n        }\n      ],\n      \"comments\": [],\n      \"filename\": \"query.sql\",\n      \"insert_into_table\": null\n    }\n  ],\n  \"sqlc_version\": \"v1.30.0\",\n  \"plugin_options\": \"eyJmaWxlbmFtZSI6ImNvZGVnZW4uanNvbiIsImluZGVudCI6IiAgIn0=\",\n  \"global_options\": \"\"\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_sqlc_gen_json/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_sqlc_gen_json/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_sqlc_gen_json/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"codegen\": [\n        {\n          \"out\": \"gen\",\n          \"plugin\": \"jsonb\",\n          \"options\": {\n            \"indent\": \"  \",\n            \"filename\": \"codegen.json\"\n          }\n        }\n      ]\n    }\n  ],\n  \"plugins\": [\n    {\n      \"name\": \"jsonb\",\n      \"process\": {\n        \"cmd\": \"sqlc-gen-json\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_sqlc_gen_test/exec.json",
    "content": "{\n  \"process\": \"sqlc-gen-test\",\n  \"os\": [\"linux\", \"darwin\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_sqlc_gen_test/gen/env.json",
    "content": "{\n  \"env\": [\n    \"SQLC_VERSION=v1.30.0\",\n    \"SQLC_DUMMY_VALUE=true\"\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_sqlc_gen_test/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_sqlc_gen_test/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/process_plugin_sqlc_gen_test/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"codegen\": [\n        {\n          \"out\": \"gen\",\n          \"plugin\": \"test\"\n        }\n      ]\n    }\n  ],\n  \"plugins\": [\n    {\n      \"name\": \"test\",\n      \"env\": [\"SQLC_DUMMY_VALUE\"],\n      \"process\": {\n        \"cmd\": \"sqlc-gen-test\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_invalid/postgresql/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE name = $1 AND country_code = $2 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n  name, bio, country_code\n) VALUES (\n  $1, $2, $3\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_invalid/postgresql/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text,\n  country_code CHAR(2) NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_invalid/postgresql/sqlc.json",
    "content": "{\n    \"version\": \"1\",\n    \"packages\": [\n      {\n        \"path\": \"go\",\n        \"engine\": \"postgresql\",\n        \"name\": \"querytest\",\n        \"schema\": \"schema.sql\",\n        \"queries\": \"query.sql\",\n        \"query_parameter_limit\": -1\n      }\n    ]\n  }\n  "
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_invalid/postgresql/stderr.txt",
    "content": "# package querytest\nerror generating code: invalid options: query parameter limit must not be negative\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_param_only/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_param_only/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype Notice struct {\n\tID        int32\n\tCnt       int32\n\tStatus    string\n\tNoticeAt  sql.NullTime\n\tCreatedAt time.Time\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_param_only/postgresql/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype Querier interface {\n\tCreateNotice(ctx context.Context, cnt int32, createdAt time.Time) error\n\tMarkNoticeDone(ctx context.Context, noticeAt sql.NullTime, iD int32) error\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_param_only/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"time\"\n)\n\nconst createNotice = `-- name: CreateNotice :exec\nINSERT INTO notice (cnt, created_at)\nVALUES ($1, $2)\n`\n\nfunc (q *Queries) CreateNotice(ctx context.Context, cnt int32, createdAt time.Time) error {\n\t_, err := q.db.ExecContext(ctx, createNotice, cnt, createdAt)\n\treturn err\n}\n\nconst markNoticeDone = `-- name: MarkNoticeDone :exec\nUPDATE notice\nSET status='done', notice_at=$1\nWHERE id=$2\n`\n\nfunc (q *Queries) MarkNoticeDone(ctx context.Context, noticeAt sql.NullTime, iD int32) error {\n\t_, err := q.db.ExecContext(ctx, markNoticeDone, noticeAt, iD)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_param_only/postgresql/query.sql",
    "content": "-- name: MarkNoticeDone :exec\nUPDATE notice\nSET status='done', notice_at=$1\nWHERE id=$2;\n\n-- name: CreateNotice :exec\nINSERT INTO notice (cnt, created_at)\nVALUES ($1, $2);"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_param_only/postgresql/schema.sql",
    "content": "CREATE TABLE notice (\n  id INTEGER NOT NULL,\n  cnt INTEGER NOT NULL,\n  status TEXT NOT NULL,\n  notice_at TIMESTAMP,\n  created_at TIMESTAMP NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_param_only/postgresql/sqlc.json",
    "content": "{\n    \"version\": \"1\",\n    \"packages\": [\n        {\n            \"path\": \"go\",\n            \"engine\": \"postgresql\",\n            \"schema\": \"schema.sql\",\n            \"queries\": \"query.sql\",\n            \"query_parameter_limit\": 2,\n            \"emit_interface\": true,\n            \"name\": \"querytest\"\n        }\n    ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_to_two/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_to_two/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID          int64\n\tName        string\n\tBio         sql.NullString\n\tCountryCode string\n\tTitles      []string\n}\n\ntype Client struct {\n\tID   int32\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_to_two/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"strings\"\n\n\t\"github.com/lib/pq\"\n)\n\nconst addNewClient = `-- name: AddNewClient :one\nINSERT INTO clients (\n  id, name\n) VALUES (\n  $1, $2\n)\nRETURNING id, name\n`\n\nfunc (q *Queries) AddNewClient(ctx context.Context, iD int32, name string) (Client, error) {\n\trow := q.db.QueryRowContext(ctx, addNewClient, iD, name)\n\tvar i Client\n\terr := row.Scan(&i.ID, &i.Name)\n\treturn i, err\n}\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (\n  name, bio, country_code, titles\n) VALUES (\n  $1, $2, $3, $4\n)\nRETURNING id, name, bio, country_code, titles\n`\n\ntype CreateAuthorParams struct {\n\tName        string\n\tBio         sql.NullString\n\tCountryCode string\n\tTitles      []string\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, createAuthor,\n\t\targ.Name,\n\t\targ.Bio,\n\t\targ.CountryCode,\n\t\tpq.Array(arg.Titles),\n\t)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t\t&i.CountryCode,\n\t\tpq.Array(&i.Titles),\n\t)\n\treturn i, err\n}\n\nconst createAuthorOnlyTitles = `-- name: CreateAuthorOnlyTitles :one\nINSERT INTO authors (name, titles) VALUES ($1, $2) RETURNING id, name, bio, country_code, titles\n`\n\nfunc (q *Queries) CreateAuthorOnlyTitles(ctx context.Context, name string, titles []string) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, createAuthorOnlyTitles, name, pq.Array(titles))\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t\t&i.CountryCode,\n\t\tpq.Array(&i.Titles),\n\t)\n\treturn i, err\n}\n\nconst deleteAuthor = `-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthor, id)\n\treturn err\n}\n\nconst deleteAuthors = `-- name: DeleteAuthors :exec\nDELETE FROM authors\nWHERE id IN ($2) AND name = $1\n`\n\nfunc (q *Queries) DeleteAuthors(ctx context.Context, name string, ids []int64) error {\n\tquery := deleteAuthors\n\tvar queryParams []interface{}\n\tqueryParams = append(queryParams, name)\n\tif len(ids) > 0 {\n\t\tfor _, v := range ids {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:ids*/?\", strings.Repeat(\",?\", len(ids))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:ids*/?\", \"NULL\", 1)\n\t}\n\t_, err := q.db.ExecContext(ctx, query, queryParams...)\n\treturn err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio, country_code, titles FROM authors\nWHERE name = $1 AND country_code = $2 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, name string, countryCode string) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, name, countryCode)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t\t&i.CountryCode,\n\t\tpq.Array(&i.Titles),\n\t)\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio, country_code, titles FROM authors\nORDER BY name\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.Bio,\n\t\t\t&i.CountryCode,\n\t\t\tpq.Array(&i.Titles),\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_to_two/postgresql/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE name = $1 AND country_code = $2 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n  name, bio, country_code, titles\n) VALUES (\n  $1, $2, $3, $4\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n\n-- name: DeleteAuthors :exec\nDELETE FROM authors\nWHERE id IN (sqlc.slice(ids)) AND name = $1;\n\n-- name: CreateAuthorOnlyTitles :one\nINSERT INTO authors (name, titles) VALUES ($1, $2) RETURNING *;\n\n-- name: AddNewClient :one\nINSERT INTO clients (\n  id, name\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_to_two/postgresql/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text,\n  country_code CHAR(2) NOT NULL,\n  titles TEXT[]\n);\n\nCREATE TABLE clients (\n  id INT PRIMARY KEY,\n  name TEXT NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_to_two/postgresql/sqlc.json",
    "content": "{\n    \"version\": \"1\",\n    \"packages\": [\n      {\n        \"path\": \"go\",\n        \"engine\": \"postgresql\",\n        \"name\": \"querytest\",\n        \"schema\": \"schema.sql\",\n        \"queries\": \"query.sql\",\n        \"query_parameter_limit\": 2\n      }\n    ]\n  }\n  "
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_to_zero/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_to_zero/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID          int64\n\tName        string\n\tBio         sql.NullString\n\tCountryCode string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_to_zero/postgresql/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tCreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error)\n\tDeleteAuthor(ctx context.Context, arg DeleteAuthorParams) error\n\tGetAuthor(ctx context.Context, arg GetAuthorParams) (Author, error)\n\tListAuthors(ctx context.Context) ([]Author, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_to_zero/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (\n  name, bio, country_code\n) VALUES (\n  $1, $2, $3\n)\nRETURNING id, name, bio, country_code\n`\n\ntype CreateAuthorParams struct {\n\tName        string\n\tBio         sql.NullString\n\tCountryCode string\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, createAuthor, arg.Name, arg.Bio, arg.CountryCode)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t\t&i.CountryCode,\n\t)\n\treturn i, err\n}\n\nconst deleteAuthor = `-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1\n`\n\ntype DeleteAuthorParams struct {\n\tID int64\n}\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, arg DeleteAuthorParams) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthor, arg.ID)\n\treturn err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio, country_code FROM authors\nWHERE name = $1 AND country_code = $2 LIMIT 1\n`\n\ntype GetAuthorParams struct {\n\tName        string\n\tCountryCode string\n}\n\nfunc (q *Queries) GetAuthor(ctx context.Context, arg GetAuthorParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, arg.Name, arg.CountryCode)\n\tvar i Author\n\terr := row.Scan(\n\t\t&i.ID,\n\t\t&i.Name,\n\t\t&i.Bio,\n\t\t&i.CountryCode,\n\t)\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio, country_code FROM authors\nORDER BY name\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.Bio,\n\t\t\t&i.CountryCode,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_to_zero/postgresql/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE name = $1 AND country_code = $2 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n  name, bio, country_code\n) VALUES (\n  $1, $2, $3\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_to_zero/postgresql/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text,\n  country_code CHAR(2) NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/query_parameter_limit_to_zero/postgresql/sqlc.json",
    "content": "{\n    \"version\": \"1\",\n    \"packages\": [\n      {\n        \"path\": \"go\",\n        \"engine\": \"postgresql\",\n        \"name\": \"querytest\",\n        \"schema\": \"schema.sql\",\n        \"queries\": \"query.sql\",\n        \"query_parameter_limit\": 0,\n        \"emit_interface\": true\n      }\n    ]\n  }\n  \n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_colname/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_colname/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Test struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_colname/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst testList = `-- name: TestList :many\nSELECT id FROM \"test\"\n`\n\nfunc (q *Queries) TestList(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, testList)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_colname/sqlite/query.sql",
    "content": "-- name: TestList :many\nSELECT * FROM \"test\";"
  },
  {
    "path": "internal/endtoend/testdata/quoted_colname/sqlite/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE \"test\"\n(\n    \"id\" TEXT NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_colname/sqlite/sqlc.json",
    "content": "{\n    \"version\": \"1\",\n    \"packages\": [\n        {\n            \"path\": \"go\",\n            \"engine\": \"sqlite\",\n            \"schema\": \"schema.sql\",\n            \"queries\": \"query.sql\",\n            \"name\": \"querytest\"\n        }\n    ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/quoted_names_complex/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_names_complex/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_names_complex/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst placeholder = `-- name: Placeholder :exec\nSELECT 1\n`\n\nfunc (q *Queries) Placeholder(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, placeholder)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_names_complex/sqlite/query.sql",
    "content": "-- name: Placeholder :exec\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_names_complex/sqlite/schema.sql",
    "content": "-- Test complex quoted table and column names with special characters\n-- Covers spaces, hyphens, uppercase, and mixed operations\nCREATE TABLE \"user profiles\" (id integer primary key, data text);\nCREATE TABLE \"ORDERS\" (id integer primary key, data text);\nCREATE TABLE products (id integer primary key, data text);\nCREATE TABLE \"item-categories\" (id integer primary key, data text);\n\n-- Test ALTER statements with complex identifiers\nALTER TABLE \"user profiles\" RENAME COLUMN data TO \"profile data\";\nALTER TABLE \"ORDERS\" RENAME TO \"customer_orders\";\nALTER TABLE products ADD COLUMN \"Price Info\" text;\n\n-- Test mixed case operations across different statement types\nINSERT INTO \"user profiles\" (\"profile data\") VALUES ('test data');\nUPDATE \"customer_orders\" SET data = 'updated' WHERE id = 1;\nDELETE FROM products WHERE id = 1;\n\n-- Test DROP with various identifier formats\nDROP TABLE \"user profiles\";\nDROP TABLE \"customer_orders\";\nDROP TABLE \"item-categories\";\nDROP TABLE products;\n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_names_complex/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_tablename/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_tablename/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype User struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_tablename/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst testList = `-- name: TestList :many\nSELECT id FROM users\n`\n\nfunc (q *Queries) TestList(ctx context.Context) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, testList)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar id string\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_tablename/sqlite/query.sql",
    "content": "-- name: TestList :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_tablename/sqlite/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE \"users\"\n(\n    id TEXT NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/quoted_tablename/sqlite/sqlc.json",
    "content": "{\n    \"version\": \"1\",\n    \"packages\": [\n        {\n            \"path\": \"go\",\n            \"engine\": \"sqlite\",\n            \"schema\": \"schema.sql\",\n            \"queries\": \"query.sql\",\n            \"name\": \"querytest\"\n        }\n    ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/ranges/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ranges/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype TestTable struct {\n\tVDaterangeNull      pgtype.Range[pgtype.Date]\n\tVDatemultirangeNull pgtype.Multirange[pgtype.Range[pgtype.Date]]\n\tVTsrangeNull        pgtype.Range[pgtype.Timestamp]\n\tVTsmultirangeNull   pgtype.Multirange[pgtype.Range[pgtype.Timestamp]]\n\tVTstzrangeNull      pgtype.Range[pgtype.Timestamptz]\n\tVTstzmultirangeNull pgtype.Multirange[pgtype.Range[pgtype.Timestamptz]]\n\tVNumrangeNull       pgtype.Range[pgtype.Numeric]\n\tVNummultirangeNull  pgtype.Multirange[pgtype.Range[pgtype.Numeric]]\n\tVInt4rangeNull      pgtype.Range[pgtype.Int4]\n\tVInt4multirangeNull pgtype.Multirange[pgtype.Range[pgtype.Int4]]\n\tVInt8rangeNull      pgtype.Range[pgtype.Int8]\n\tVInt8multirangeNull pgtype.Multirange[pgtype.Range[pgtype.Int8]]\n\tVDaterange          pgtype.Range[pgtype.Date]\n\tVDatemultirange     pgtype.Multirange[pgtype.Range[pgtype.Date]]\n\tVTsrange            pgtype.Range[pgtype.Timestamp]\n\tVTsmultirange       pgtype.Multirange[pgtype.Range[pgtype.Timestamp]]\n\tVTstzrange          pgtype.Range[pgtype.Timestamptz]\n\tVTstzmultirange     pgtype.Multirange[pgtype.Range[pgtype.Timestamptz]]\n\tVNumrange           pgtype.Range[pgtype.Numeric]\n\tVNummultirange      pgtype.Multirange[pgtype.Range[pgtype.Numeric]]\n\tVInt4range          pgtype.Range[pgtype.Int4]\n\tVInt4multirange     pgtype.Multirange[pgtype.Range[pgtype.Int4]]\n\tVInt8range          pgtype.Range[pgtype.Int8]\n\tVInt8multirange     pgtype.Multirange[pgtype.Range[pgtype.Int8]]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ranges/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectTest = `-- name: SelectTest :many\nSELECT v_daterange_null, v_datemultirange_null, v_tsrange_null, v_tsmultirange_null, v_tstzrange_null, v_tstzmultirange_null, v_numrange_null, v_nummultirange_null, v_int4range_null, v_int4multirange_null, v_int8range_null, v_int8multirange_null, v_daterange, v_datemultirange, v_tsrange, v_tsmultirange, v_tstzrange, v_tstzmultirange, v_numrange, v_nummultirange, v_int4range, v_int4multirange, v_int8range, v_int8multirange from test_table\n`\n\nfunc (q *Queries) SelectTest(ctx context.Context) ([]TestTable, error) {\n\trows, err := q.db.Query(ctx, selectTest)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []TestTable\n\tfor rows.Next() {\n\t\tvar i TestTable\n\t\tif err := rows.Scan(\n\t\t\t&i.VDaterangeNull,\n\t\t\t&i.VDatemultirangeNull,\n\t\t\t&i.VTsrangeNull,\n\t\t\t&i.VTsmultirangeNull,\n\t\t\t&i.VTstzrangeNull,\n\t\t\t&i.VTstzmultirangeNull,\n\t\t\t&i.VNumrangeNull,\n\t\t\t&i.VNummultirangeNull,\n\t\t\t&i.VInt4rangeNull,\n\t\t\t&i.VInt4multirangeNull,\n\t\t\t&i.VInt8rangeNull,\n\t\t\t&i.VInt8multirangeNull,\n\t\t\t&i.VDaterange,\n\t\t\t&i.VDatemultirange,\n\t\t\t&i.VTsrange,\n\t\t\t&i.VTsmultirange,\n\t\t\t&i.VTstzrange,\n\t\t\t&i.VTstzmultirange,\n\t\t\t&i.VNumrange,\n\t\t\t&i.VNummultirange,\n\t\t\t&i.VInt4range,\n\t\t\t&i.VInt4multirange,\n\t\t\t&i.VInt8range,\n\t\t\t&i.VInt8multirange,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/ranges/pgx/v5/query.sql",
    "content": "-- name: SelectTest :many\nSELECT * from test_table;\n"
  },
  {
    "path": "internal/endtoend/testdata/ranges/pgx/v5/schema.sql",
    "content": "CREATE TABLE test_table\n(\n    v_daterange_null      daterange,\n    v_datemultirange_null datemultirange,\n    v_tsrange_null        tsrange,\n    v_tsmultirange_null   tsmultirange,\n    v_tstzrange_null      tstzrange,\n    v_tstzmultirange_null tstzmultirange,\n    v_numrange_null       numrange,\n    v_nummultirange_null  nummultirange,\n    v_int4range_null      int4range,\n    v_int4multirange_null int4multirange,\n    v_int8range_null      int8range,\n    v_int8multirange_null int8multirange,\n    v_daterange           daterange      not null,\n    v_datemultirange      datemultirange not null,\n    v_tsrange             tsrange        not null,\n    v_tsmultirange        tsmultirange   not null,\n    v_tstzrange           tstzrange      not null,\n    v_tstzmultirange      tstzmultirange not null,\n    v_numrange            numrange       not null,\n    v_nummultirange       nummultirange  not null,\n    v_int4range           int4range      not null,\n    v_int4multirange      int4multirange not null,\n    v_int8range           int8range      not null,\n    v_int8multirange      int8multirange not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/ranges/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/refreshmatview/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/refreshmatview/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Myview struct {\n\tint32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/refreshmatview/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst refresh = `-- name: Refresh :exec\nREFRESH MATERIALIZED VIEW myview\n`\n\nfunc (q *Queries) Refresh(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, refresh)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/refreshmatview/postgresql/pgx/v4/query.sql",
    "content": "-- name: Refresh :exec\nREFRESH MATERIALIZED VIEW myview;\n"
  },
  {
    "path": "internal/endtoend/testdata/refreshmatview/postgresql/pgx/v4/schema.sql",
    "content": "CREATE MATERIALIZED VIEW myview AS (SELECT 1);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/refreshmatview/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/refreshmatview/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/refreshmatview/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Myview struct {\n\tint32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/refreshmatview/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst refresh = `-- name: Refresh :exec\nREFRESH MATERIALIZED VIEW myview\n`\n\nfunc (q *Queries) Refresh(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, refresh)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/refreshmatview/postgresql/pgx/v5/query.sql",
    "content": "-- name: Refresh :exec\nREFRESH MATERIALIZED VIEW myview;\n"
  },
  {
    "path": "internal/endtoend/testdata/refreshmatview/postgresql/pgx/v5/schema.sql",
    "content": "CREATE MATERIALIZED VIEW myview AS (SELECT 1);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/refreshmatview/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/relation_does_not_exist/postgresql/query.sql",
    "content": "-- name: MissingSelect :many\nSELECT * FROM nonexisting_relation WHERE name = 'foo';\n\n-- name: MissingParam :many\nSELECT * FROM nonexisting_relation WHERE name = $1;\n\n-- name: MissingUpdate :exec\nUPDATE nonexisting_relation SET name = $1;\n\n-- name: MisingInsert :exec\nINSERT INTO nonexisting_relation (id) VALUES ($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/relation_does_not_exist/postgresql/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/relation_does_not_exist/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/relation_does_not_exist/postgresql/stderr/base.txt",
    "content": "# package querytest\nquery.sql:1:1: relation \"nonexisting_relation\" does not exist\nquery.sql:5:1: relation \"nonexisting_relation\" does not exist\nquery.sql:8:1: relation \"nonexisting_relation\" does not exist\nquery.sql:11:1: relation \"nonexisting_relation\" does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/relation_does_not_exist/postgresql/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:2:15: relation \"nonexisting_relation\" does not exist\nquery.sql:5:15: relation \"nonexisting_relation\" does not exist\nquery.sql:8:8: relation \"nonexisting_relation\" does not exist\nquery.sql:11:13: relation \"nonexisting_relation\" does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype IPProtocol string\n\nconst (\n\tIPProtocolTCP  IPProtocol = \"tcp\"\n\tIpProtocolIp   IPProtocol = \"ip\"\n\tIpProtocolIcmp IPProtocol = \"icmp\"\n)\n\nfunc (e *IPProtocol) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = IPProtocol(s)\n\tcase string:\n\t\t*e = IPProtocol(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for IPProtocol: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullIPProtocol struct {\n\tIPProtocol IPProtocol\n\tValid      bool // Valid is true if IPProtocol is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullIPProtocol) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.IPProtocol, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.IPProtocol.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullIPProtocol) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.IPProtocol), nil\n}\n\ntype BarNew struct {\n\tIDNew int32\n\tIpOld IPProtocol\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT id_old, ip_old FROM bar_old\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]BarNew, error) {\n\trows, err := q.db.Query(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []BarNew\n\tfor rows.Next() {\n\t\tvar i BarNew\n\t\tif err := rows.Scan(&i.IDNew, &i.IpOld); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT id_old as foo_old, id_old as baz_old\nFROM bar_old\nWHERE ip_old = $1 AND id_old = $2\n`\n\ntype ListFooParams struct {\n\tIpOld IPProtocol\n\tIDNew int32\n}\n\ntype ListFooRow struct {\n\tFooNew int32\n\tBazOld int32\n}\n\nfunc (q *Queries) ListFoo(ctx context.Context, arg ListFooParams) ([]ListFooRow, error) {\n\trows, err := q.db.Query(ctx, listFoo, arg.IpOld, arg.IDNew)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListFooRow\n\tfor rows.Next() {\n\t\tvar i ListFooRow\n\t\tif err := rows.Scan(&i.FooNew, &i.BazOld); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/pgx/v4/query.sql",
    "content": "-- name: ListFoo :many\nSELECT id_old as foo_old, id_old as baz_old\nFROM bar_old\nWHERE ip_old = $1 AND id_old = $2;\n\n-- name: ListBar :many\nSELECT * FROM bar_old;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/pgx/v4/schema.sql",
    "content": "CREATE TYPE ip_protocol AS enum('tcp', 'ip', 'icmp');\n\nCREATE TABLE bar_old (id_old serial not null, ip_old ip_protocol NOT NULL);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ],\n  \"rename\": {\n    \"id_old\": \"IDNew\",\n    \"bar_old\": \"BarNew\",\n    \"foo_old\": \"FooNew\",\n    \"ip_protocol\": \"IPProtocol\",\n    \"ip_protocol_tcp\": \"IPProtocolTCP\"\n  }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype IPProtocol string\n\nconst (\n\tIPProtocolTCP  IPProtocol = \"tcp\"\n\tIpProtocolIp   IPProtocol = \"ip\"\n\tIpProtocolIcmp IPProtocol = \"icmp\"\n)\n\nfunc (e *IPProtocol) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = IPProtocol(s)\n\tcase string:\n\t\t*e = IPProtocol(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for IPProtocol: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullIPProtocol struct {\n\tIPProtocol IPProtocol\n\tValid      bool // Valid is true if IPProtocol is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullIPProtocol) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.IPProtocol, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.IPProtocol.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullIPProtocol) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.IPProtocol), nil\n}\n\ntype BarNew struct {\n\tIDNew int32\n\tIpOld IPProtocol\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT id_old, ip_old FROM bar_old\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]BarNew, error) {\n\trows, err := q.db.Query(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []BarNew\n\tfor rows.Next() {\n\t\tvar i BarNew\n\t\tif err := rows.Scan(&i.IDNew, &i.IpOld); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT id_old as foo_old, id_old as baz_old\nFROM bar_old\nWHERE ip_old = $1 AND id_old = $2\n`\n\ntype ListFooParams struct {\n\tIpOld IPProtocol\n\tIDNew int32\n}\n\ntype ListFooRow struct {\n\tFooNew int32\n\tBazOld int32\n}\n\nfunc (q *Queries) ListFoo(ctx context.Context, arg ListFooParams) ([]ListFooRow, error) {\n\trows, err := q.db.Query(ctx, listFoo, arg.IpOld, arg.IDNew)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListFooRow\n\tfor rows.Next() {\n\t\tvar i ListFooRow\n\t\tif err := rows.Scan(&i.FooNew, &i.BazOld); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/pgx/v5/query.sql",
    "content": "-- name: ListFoo :many\nSELECT id_old as foo_old, id_old as baz_old\nFROM bar_old\nWHERE ip_old = $1 AND id_old = $2;\n\n-- name: ListBar :many\nSELECT * FROM bar_old;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/pgx/v5/schema.sql",
    "content": "CREATE TYPE ip_protocol AS enum('tcp', 'ip', 'icmp');\n\nCREATE TABLE bar_old (id_old serial not null, ip_old ip_protocol NOT NULL);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ],\n  \"rename\": {\n    \"id_old\": \"IDNew\",\n    \"bar_old\": \"BarNew\",\n    \"foo_old\": \"FooNew\",\n    \"ip_protocol\": \"IPProtocol\",\n    \"ip_protocol_tcp\": \"IPProtocolTCP\"\n  }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype IPProtocol string\n\nconst (\n\tIPProtocolTCP  IPProtocol = \"tcp\"\n\tIpProtocolIp   IPProtocol = \"ip\"\n\tIpProtocolIcmp IPProtocol = \"icmp\"\n)\n\nfunc (e *IPProtocol) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = IPProtocol(s)\n\tcase string:\n\t\t*e = IPProtocol(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for IPProtocol: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullIPProtocol struct {\n\tIPProtocol IPProtocol\n\tValid      bool // Valid is true if IPProtocol is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullIPProtocol) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.IPProtocol, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.IPProtocol.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullIPProtocol) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.IPProtocol), nil\n}\n\ntype BarNew struct {\n\tIDNew int32\n\tIpOld IPProtocol\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT id_old, ip_old FROM bar_old\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]BarNew, error) {\n\trows, err := q.db.QueryContext(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []BarNew\n\tfor rows.Next() {\n\t\tvar i BarNew\n\t\tif err := rows.Scan(&i.IDNew, &i.IpOld); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT id_old as foo_old, id_old as baz_old\nFROM bar_old\nWHERE ip_old = $1 AND id_old = $2\n`\n\ntype ListFooParams struct {\n\tIpOld IPProtocol\n\tIDNew int32\n}\n\ntype ListFooRow struct {\n\tFooNew int32\n\tBazOld int32\n}\n\nfunc (q *Queries) ListFoo(ctx context.Context, arg ListFooParams) ([]ListFooRow, error) {\n\trows, err := q.db.QueryContext(ctx, listFoo, arg.IpOld, arg.IDNew)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListFooRow\n\tfor rows.Next() {\n\t\tvar i ListFooRow\n\t\tif err := rows.Scan(&i.FooNew, &i.BazOld); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/stdlib/query.sql",
    "content": "-- name: ListFoo :many\nSELECT id_old as foo_old, id_old as baz_old\nFROM bar_old\nWHERE ip_old = $1 AND id_old = $2;\n\n-- name: ListBar :many\nSELECT * FROM bar_old;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/stdlib/schema.sql",
    "content": "CREATE TYPE ip_protocol AS enum('tcp', 'ip', 'icmp');\n\nCREATE TABLE bar_old (id_old serial not null, ip_old ip_protocol NOT NULL);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v1/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ],\n  \"rename\": {\n    \"id_old\": \"IDNew\",\n    \"bar_old\": \"BarNew\",\n    \"foo_old\": \"FooNew\",\n    \"ip_protocol\": \"IPProtocol\",\n    \"ip_protocol_tcp\": \"IPProtocolTCP\"\n  }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype IPProtocol string\n\nconst (\n\tIPProtocolTCP  IPProtocol = \"tcp\"\n\tIpProtocolIp   IPProtocol = \"ip\"\n\tIpProtocolIcmp IPProtocol = \"icmp\"\n)\n\nfunc (e *IPProtocol) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = IPProtocol(s)\n\tcase string:\n\t\t*e = IPProtocol(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for IPProtocol: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullIPProtocol struct {\n\tIPProtocol IPProtocol\n\tValid      bool // Valid is true if IPProtocol is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullIPProtocol) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.IPProtocol, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.IPProtocol.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullIPProtocol) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.IPProtocol), nil\n}\n\ntype BarNew struct {\n\tIDNew int32\n\tIpOld IPProtocol\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT id_old, ip_old FROM bar_old\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]BarNew, error) {\n\trows, err := q.db.Query(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []BarNew\n\tfor rows.Next() {\n\t\tvar i BarNew\n\t\tif err := rows.Scan(&i.IDNew, &i.IpOld); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT id_old as foo_old, id_old as baz_old\nFROM bar_old\nWHERE ip_old = $1 AND id_old = $2\n`\n\ntype ListFooParams struct {\n\tIpOld IPProtocol\n\tIDNew int32\n}\n\ntype ListFooRow struct {\n\tFooNew int32\n\tBazOld int32\n}\n\nfunc (q *Queries) ListFoo(ctx context.Context, arg ListFooParams) ([]ListFooRow, error) {\n\trows, err := q.db.Query(ctx, listFoo, arg.IpOld, arg.IDNew)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListFooRow\n\tfor rows.Next() {\n\t\tvar i ListFooRow\n\t\tif err := rows.Scan(&i.FooNew, &i.BazOld); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/pgx/v4/query.sql",
    "content": "-- name: ListFoo :many\nSELECT id_old as foo_old, id_old as baz_old\nFROM bar_old\nWHERE ip_old = $1 AND id_old = $2;\n\n-- name: ListBar :many\nSELECT * FROM bar_old;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/pgx/v4/schema.sql",
    "content": "CREATE TYPE ip_protocol AS enum('tcp', 'ip', 'icmp');\n\nCREATE TABLE bar_old (id_old serial not null, ip_old ip_protocol NOT NULL);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"gen\": {\n        \"go\": {\n          \"sql_package\": \"pgx/v4\",\n          \"package\": \"querytest\",\n          \"out\": \"go\",\n          \"rename\": {\n            \"id_old\": \"IDNew\",\n            \"bar_old\": \"BarNew\",\n            \"foo_old\": \"FooNew\",\n            \"ip_protocol\": \"IPProtocol\",\n            \"ip_protocol_tcp\": \"IPProtocolTCP\"\n          }\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype IPProtocol string\n\nconst (\n\tIPProtocolTCP  IPProtocol = \"tcp\"\n\tIpProtocolIp   IPProtocol = \"ip\"\n\tIpProtocolIcmp IPProtocol = \"icmp\"\n)\n\nfunc (e *IPProtocol) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = IPProtocol(s)\n\tcase string:\n\t\t*e = IPProtocol(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for IPProtocol: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullIPProtocol struct {\n\tIPProtocol IPProtocol\n\tValid      bool // Valid is true if IPProtocol is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullIPProtocol) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.IPProtocol, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.IPProtocol.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullIPProtocol) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.IPProtocol), nil\n}\n\ntype BarNew struct {\n\tIDNew int32\n\tIpOld IPProtocol\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT id_old, ip_old FROM bar_old\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]BarNew, error) {\n\trows, err := q.db.Query(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []BarNew\n\tfor rows.Next() {\n\t\tvar i BarNew\n\t\tif err := rows.Scan(&i.IDNew, &i.IpOld); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT id_old as foo_old, id_old as baz_old\nFROM bar_old\nWHERE ip_old = $1 AND id_old = $2\n`\n\ntype ListFooParams struct {\n\tIpOld IPProtocol\n\tIDNew int32\n}\n\ntype ListFooRow struct {\n\tFooNew int32\n\tBazOld int32\n}\n\nfunc (q *Queries) ListFoo(ctx context.Context, arg ListFooParams) ([]ListFooRow, error) {\n\trows, err := q.db.Query(ctx, listFoo, arg.IpOld, arg.IDNew)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListFooRow\n\tfor rows.Next() {\n\t\tvar i ListFooRow\n\t\tif err := rows.Scan(&i.FooNew, &i.BazOld); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/pgx/v5/query.sql",
    "content": "-- name: ListFoo :many\nSELECT id_old as foo_old, id_old as baz_old\nFROM bar_old\nWHERE ip_old = $1 AND id_old = $2;\n\n-- name: ListBar :many\nSELECT * FROM bar_old;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/pgx/v5/schema.sql",
    "content": "CREATE TYPE ip_protocol AS enum('tcp', 'ip', 'icmp');\n\nCREATE TABLE bar_old (id_old serial not null, ip_old ip_protocol NOT NULL);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"gen\": {\n        \"go\": {\n          \"package\": \"querytest\",\n          \"out\": \"go\",\n          \"sql_package\": \"pgx/v5\",\n          \"rename\": {\n            \"id_old\": \"IDNew\",\n            \"bar_old\": \"BarNew\",\n            \"foo_old\": \"FooNew\",\n            \"ip_protocol\": \"IPProtocol\",\n            \"ip_protocol_tcp\": \"IPProtocolTCP\"\n          }\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype IPProtocol string\n\nconst (\n\tIPProtocolTCP  IPProtocol = \"tcp\"\n\tIpProtocolIp   IPProtocol = \"ip\"\n\tIpProtocolIcmp IPProtocol = \"icmp\"\n)\n\nfunc (e *IPProtocol) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = IPProtocol(s)\n\tcase string:\n\t\t*e = IPProtocol(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for IPProtocol: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullIPProtocol struct {\n\tIPProtocol IPProtocol\n\tValid      bool // Valid is true if IPProtocol is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullIPProtocol) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.IPProtocol, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.IPProtocol.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullIPProtocol) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.IPProtocol), nil\n}\n\ntype BarNew struct {\n\tIDNew int32\n\tIpOld IPProtocol\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listBar = `-- name: ListBar :many\nSELECT id_old, ip_old FROM bar_old\n`\n\nfunc (q *Queries) ListBar(ctx context.Context) ([]BarNew, error) {\n\trows, err := q.db.QueryContext(ctx, listBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []BarNew\n\tfor rows.Next() {\n\t\tvar i BarNew\n\t\tif err := rows.Scan(&i.IDNew, &i.IpOld); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT id_old as foo_old, id_old as baz_old\nFROM bar_old\nWHERE ip_old = $1 AND id_old = $2\n`\n\ntype ListFooParams struct {\n\tIpOld IPProtocol\n\tIDNew int32\n}\n\ntype ListFooRow struct {\n\tFooNew int32\n\tBazOld int32\n}\n\nfunc (q *Queries) ListFoo(ctx context.Context, arg ListFooParams) ([]ListFooRow, error) {\n\trows, err := q.db.QueryContext(ctx, listFoo, arg.IpOld, arg.IDNew)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListFooRow\n\tfor rows.Next() {\n\t\tvar i ListFooRow\n\t\tif err := rows.Scan(&i.FooNew, &i.BazOld); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/stdlib/query.sql",
    "content": "-- name: ListFoo :many\nSELECT id_old as foo_old, id_old as baz_old\nFROM bar_old\nWHERE ip_old = $1 AND id_old = $2;\n\n-- name: ListBar :many\nSELECT * FROM bar_old;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/stdlib/schema.sql",
    "content": "CREATE TYPE ip_protocol AS enum('tcp', 'ip', 'icmp');\n\nCREATE TABLE bar_old (id_old serial not null, ip_old ip_protocol NOT NULL);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/rename/v2/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"gen\": {\n        \"go\": {\n          \"package\": \"querytest\",\n          \"out\": \"go\",\n          \"rename\": {\n            \"id_old\": \"IDNew\",\n            \"bar_old\": \"BarNew\",\n            \"foo_old\": \"FooNew\",\n            \"ip_protocol\": \"IPProtocol\",\n            \"ip_protocol_tcp\": \"IPProtocolTCP\"\n          }\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tName sql.NullString\n\tID   int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst deleteUserAndReturnID = `-- name: DeleteUserAndReturnID :one\nDELETE FROM users\n  WHERE name = $1\n  RETURNING id\n`\n\nfunc (q *Queries) DeleteUserAndReturnID(ctx context.Context, name sql.NullString) (int32, error) {\n\trow := q.db.QueryRow(ctx, deleteUserAndReturnID, name)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst deleteUserAndReturnUser = `-- name: DeleteUserAndReturnUser :one\nDELETE FROM users\n  WHERE name = $1\n  RETURNING name, id\n`\n\nfunc (q *Queries) DeleteUserAndReturnUser(ctx context.Context, name sql.NullString) (User, error) {\n\trow := q.db.QueryRow(ctx, deleteUserAndReturnUser, name)\n\tvar i User\n\terr := row.Scan(&i.Name, &i.ID)\n\treturn i, err\n}\n\nconst insertUserAndReturnID = `-- name: InsertUserAndReturnID :one\nINSERT INTO users (name) VALUES ($1)\n  RETURNING id\n`\n\nfunc (q *Queries) InsertUserAndReturnID(ctx context.Context, name sql.NullString) (int32, error) {\n\trow := q.db.QueryRow(ctx, insertUserAndReturnID, name)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst insertUserAndReturnUser = `-- name: InsertUserAndReturnUser :one\nINSERT INTO users (name) VALUES ($1)\n  RETURNING name, id\n`\n\nfunc (q *Queries) InsertUserAndReturnUser(ctx context.Context, name sql.NullString) (User, error) {\n\trow := q.db.QueryRow(ctx, insertUserAndReturnUser, name)\n\tvar i User\n\terr := row.Scan(&i.Name, &i.ID)\n\treturn i, err\n}\n\nconst updateUserAndReturnID = `-- name: UpdateUserAndReturnID :one\nUPDATE users SET name = $1\n  WHERE name = $2\n  RETURNING id\n`\n\ntype UpdateUserAndReturnIDParams struct {\n\tName   sql.NullString\n\tName_2 sql.NullString\n}\n\nfunc (q *Queries) UpdateUserAndReturnID(ctx context.Context, arg UpdateUserAndReturnIDParams) (int32, error) {\n\trow := q.db.QueryRow(ctx, updateUserAndReturnID, arg.Name, arg.Name_2)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst updateUserAndReturnUser = `-- name: UpdateUserAndReturnUser :one\nUPDATE users SET name = $1\n  WHERE name = $2\n  RETURNING name, id\n`\n\ntype UpdateUserAndReturnUserParams struct {\n\tName   sql.NullString\n\tName_2 sql.NullString\n}\n\nfunc (q *Queries) UpdateUserAndReturnUser(ctx context.Context, arg UpdateUserAndReturnUserParams) (User, error) {\n\trow := q.db.QueryRow(ctx, updateUserAndReturnUser, arg.Name, arg.Name_2)\n\tvar i User\n\terr := row.Scan(&i.Name, &i.ID)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/pgx/v4/query.sql",
    "content": "-- name: InsertUserAndReturnID :one\nINSERT INTO users (name) VALUES ($1)\n  RETURNING id;\n\n-- name: InsertUserAndReturnUser :one\nINSERT INTO users (name) VALUES ($1)\n  RETURNING *;\n\n-- name: UpdateUserAndReturnID :one\nUPDATE users SET name = $1\n  WHERE name = $2\n  RETURNING id;\n\n-- name: UpdateUserAndReturnUser :one\nUPDATE users SET name = $1\n  WHERE name = $2\n  RETURNING *;\n\n-- name: DeleteUserAndReturnID :one\nDELETE FROM users\n  WHERE name = $1\n  RETURNING id;\n\n-- name: DeleteUserAndReturnUser :one\nDELETE FROM users\n  WHERE name = $1\n  RETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE users (name text, id serial primary key);\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype User struct {\n\tName pgtype.Text\n\tID   int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst deleteUserAndReturnID = `-- name: DeleteUserAndReturnID :one\nDELETE FROM users\n  WHERE name = $1\n  RETURNING id\n`\n\nfunc (q *Queries) DeleteUserAndReturnID(ctx context.Context, name pgtype.Text) (int32, error) {\n\trow := q.db.QueryRow(ctx, deleteUserAndReturnID, name)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst deleteUserAndReturnUser = `-- name: DeleteUserAndReturnUser :one\nDELETE FROM users\n  WHERE name = $1\n  RETURNING name, id\n`\n\nfunc (q *Queries) DeleteUserAndReturnUser(ctx context.Context, name pgtype.Text) (User, error) {\n\trow := q.db.QueryRow(ctx, deleteUserAndReturnUser, name)\n\tvar i User\n\terr := row.Scan(&i.Name, &i.ID)\n\treturn i, err\n}\n\nconst insertUserAndReturnID = `-- name: InsertUserAndReturnID :one\nINSERT INTO users (name) VALUES ($1)\n  RETURNING id\n`\n\nfunc (q *Queries) InsertUserAndReturnID(ctx context.Context, name pgtype.Text) (int32, error) {\n\trow := q.db.QueryRow(ctx, insertUserAndReturnID, name)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst insertUserAndReturnUser = `-- name: InsertUserAndReturnUser :one\nINSERT INTO users (name) VALUES ($1)\n  RETURNING name, id\n`\n\nfunc (q *Queries) InsertUserAndReturnUser(ctx context.Context, name pgtype.Text) (User, error) {\n\trow := q.db.QueryRow(ctx, insertUserAndReturnUser, name)\n\tvar i User\n\terr := row.Scan(&i.Name, &i.ID)\n\treturn i, err\n}\n\nconst updateUserAndReturnID = `-- name: UpdateUserAndReturnID :one\nUPDATE users SET name = $1\n  WHERE name = $2\n  RETURNING id\n`\n\ntype UpdateUserAndReturnIDParams struct {\n\tName   pgtype.Text\n\tName_2 pgtype.Text\n}\n\nfunc (q *Queries) UpdateUserAndReturnID(ctx context.Context, arg UpdateUserAndReturnIDParams) (int32, error) {\n\trow := q.db.QueryRow(ctx, updateUserAndReturnID, arg.Name, arg.Name_2)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst updateUserAndReturnUser = `-- name: UpdateUserAndReturnUser :one\nUPDATE users SET name = $1\n  WHERE name = $2\n  RETURNING name, id\n`\n\ntype UpdateUserAndReturnUserParams struct {\n\tName   pgtype.Text\n\tName_2 pgtype.Text\n}\n\nfunc (q *Queries) UpdateUserAndReturnUser(ctx context.Context, arg UpdateUserAndReturnUserParams) (User, error) {\n\trow := q.db.QueryRow(ctx, updateUserAndReturnUser, arg.Name, arg.Name_2)\n\tvar i User\n\terr := row.Scan(&i.Name, &i.ID)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/pgx/v5/query.sql",
    "content": "-- name: InsertUserAndReturnID :one\nINSERT INTO users (name) VALUES ($1)\n  RETURNING id;\n\n-- name: InsertUserAndReturnUser :one\nINSERT INTO users (name) VALUES ($1)\n  RETURNING *;\n\n-- name: UpdateUserAndReturnID :one\nUPDATE users SET name = $1\n  WHERE name = $2\n  RETURNING id;\n\n-- name: UpdateUserAndReturnUser :one\nUPDATE users SET name = $1\n  WHERE name = $2\n  RETURNING *;\n\n-- name: DeleteUserAndReturnID :one\nDELETE FROM users\n  WHERE name = $1\n  RETURNING id;\n\n-- name: DeleteUserAndReturnUser :one\nDELETE FROM users\n  WHERE name = $1\n  RETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE users (name text, id serial primary key);\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tName sql.NullString\n\tID   int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst deleteUserAndReturnID = `-- name: DeleteUserAndReturnID :one\nDELETE FROM users\n  WHERE name = $1\n  RETURNING id\n`\n\nfunc (q *Queries) DeleteUserAndReturnID(ctx context.Context, name sql.NullString) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, deleteUserAndReturnID, name)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst deleteUserAndReturnUser = `-- name: DeleteUserAndReturnUser :one\nDELETE FROM users\n  WHERE name = $1\n  RETURNING name, id\n`\n\nfunc (q *Queries) DeleteUserAndReturnUser(ctx context.Context, name sql.NullString) (User, error) {\n\trow := q.db.QueryRowContext(ctx, deleteUserAndReturnUser, name)\n\tvar i User\n\terr := row.Scan(&i.Name, &i.ID)\n\treturn i, err\n}\n\nconst insertUserAndReturnID = `-- name: InsertUserAndReturnID :one\nINSERT INTO users (name) VALUES ($1)\n  RETURNING id\n`\n\nfunc (q *Queries) InsertUserAndReturnID(ctx context.Context, name sql.NullString) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, insertUserAndReturnID, name)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst insertUserAndReturnUser = `-- name: InsertUserAndReturnUser :one\nINSERT INTO users (name) VALUES ($1)\n  RETURNING name, id\n`\n\nfunc (q *Queries) InsertUserAndReturnUser(ctx context.Context, name sql.NullString) (User, error) {\n\trow := q.db.QueryRowContext(ctx, insertUserAndReturnUser, name)\n\tvar i User\n\terr := row.Scan(&i.Name, &i.ID)\n\treturn i, err\n}\n\nconst updateUserAndReturnID = `-- name: UpdateUserAndReturnID :one\nUPDATE users SET name = $1\n  WHERE name = $2\n  RETURNING id\n`\n\ntype UpdateUserAndReturnIDParams struct {\n\tName   sql.NullString\n\tName_2 sql.NullString\n}\n\nfunc (q *Queries) UpdateUserAndReturnID(ctx context.Context, arg UpdateUserAndReturnIDParams) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, updateUserAndReturnID, arg.Name, arg.Name_2)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst updateUserAndReturnUser = `-- name: UpdateUserAndReturnUser :one\nUPDATE users SET name = $1\n  WHERE name = $2\n  RETURNING name, id\n`\n\ntype UpdateUserAndReturnUserParams struct {\n\tName   sql.NullString\n\tName_2 sql.NullString\n}\n\nfunc (q *Queries) UpdateUserAndReturnUser(ctx context.Context, arg UpdateUserAndReturnUserParams) (User, error) {\n\trow := q.db.QueryRowContext(ctx, updateUserAndReturnUser, arg.Name, arg.Name_2)\n\tvar i User\n\terr := row.Scan(&i.Name, &i.ID)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/stdlib/query.sql",
    "content": "-- name: InsertUserAndReturnID :one\nINSERT INTO users (name) VALUES ($1)\n  RETURNING id;\n\n-- name: InsertUserAndReturnUser :one\nINSERT INTO users (name) VALUES ($1)\n  RETURNING *;\n\n-- name: UpdateUserAndReturnID :one\nUPDATE users SET name = $1\n  WHERE name = $2\n  RETURNING id;\n\n-- name: UpdateUserAndReturnUser :one\nUPDATE users SET name = $1\n  WHERE name = $2\n  RETURNING *;\n\n-- name: DeleteUserAndReturnID :one\nDELETE FROM users\n  WHERE name = $1\n  RETURNING id;\n\n-- name: DeleteUserAndReturnUser :one\nDELETE FROM users\n  WHERE name = $1\n  RETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE users (name text, id serial primary key);\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tName sql.NullString\n\tID   int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst deleteUserAndReturnID = `-- name: DeleteUserAndReturnID :one\nDELETE FROM users\n  WHERE name = ?1\n  RETURNING id\n`\n\nfunc (q *Queries) DeleteUserAndReturnID(ctx context.Context, name sql.NullString) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, deleteUserAndReturnID, name)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst deleteUserAndReturnUser = `-- name: DeleteUserAndReturnUser :one\nDELETE FROM users\n  WHERE name = ?1\n  RETURNING name, id\n`\n\nfunc (q *Queries) DeleteUserAndReturnUser(ctx context.Context, name sql.NullString) (User, error) {\n\trow := q.db.QueryRowContext(ctx, deleteUserAndReturnUser, name)\n\tvar i User\n\terr := row.Scan(&i.Name, &i.ID)\n\treturn i, err\n}\n\nconst insertUserAndReturnID = `-- name: InsertUserAndReturnID :one\nINSERT INTO users (name) VALUES (?1)\n  RETURNING id\n`\n\nfunc (q *Queries) InsertUserAndReturnID(ctx context.Context, name sql.NullString) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, insertUserAndReturnID, name)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst insertUserAndReturnUser = `-- name: InsertUserAndReturnUser :one\nINSERT INTO users (name) VALUES (?1)\n  RETURNING name, id\n`\n\nfunc (q *Queries) InsertUserAndReturnUser(ctx context.Context, name sql.NullString) (User, error) {\n\trow := q.db.QueryRowContext(ctx, insertUserAndReturnUser, name)\n\tvar i User\n\terr := row.Scan(&i.Name, &i.ID)\n\treturn i, err\n}\n\nconst updateUserAndReturnID = `-- name: UpdateUserAndReturnID :one\nUPDATE users SET name = ?1\n  WHERE name = ?2\n  RETURNING id\n`\n\ntype UpdateUserAndReturnIDParams struct {\n\tName   sql.NullString\n\tName_2 sql.NullString\n}\n\nfunc (q *Queries) UpdateUserAndReturnID(ctx context.Context, arg UpdateUserAndReturnIDParams) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, updateUserAndReturnID, arg.Name, arg.Name_2)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst updateUserAndReturnUser = `-- name: UpdateUserAndReturnUser :one\nUPDATE users SET name = ?1\n  WHERE name = ?2\n  RETURNING name, id\n`\n\ntype UpdateUserAndReturnUserParams struct {\n\tName   sql.NullString\n\tName_2 sql.NullString\n}\n\nfunc (q *Queries) UpdateUserAndReturnUser(ctx context.Context, arg UpdateUserAndReturnUserParams) (User, error) {\n\trow := q.db.QueryRowContext(ctx, updateUserAndReturnUser, arg.Name, arg.Name_2)\n\tvar i User\n\terr := row.Scan(&i.Name, &i.ID)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/sqlite/query.sql",
    "content": "-- name: InsertUserAndReturnID :one\nINSERT INTO users (name) VALUES (?1)\n  RETURNING id;\n\n-- name: InsertUserAndReturnUser :one\nINSERT INTO users (name) VALUES (?1)\n  RETURNING *;\n\n-- name: UpdateUserAndReturnID :one\nUPDATE users SET name = ?1\n  WHERE name = ?2\n  RETURNING id;\n\n-- name: UpdateUserAndReturnUser :one\nUPDATE users SET name = ?1\n  WHERE name = ?2\n  RETURNING *;\n\n-- name: DeleteUserAndReturnID :one\nDELETE FROM users\n  WHERE name = ?1\n  RETURNING id;\n\n-- name: DeleteUserAndReturnUser :one\nDELETE FROM users\n  WHERE name = ?1\n  RETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/sqlite/schema.sql",
    "content": "CREATE TABLE users (name text, id integer PRIMARY KEY AUTOINCREMENT);\n"
  },
  {
    "path": "internal/endtoend/testdata/returning/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/mysql/exec.json",
    "content": "{\n    \"contexts\": [\"base\"],\n    \"meta\": {\n        \"invalid_schema\": true\n    }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID   uint64\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst schemaScopedCreate = `-- name: SchemaScopedCreate :execresult\nINSERT INTO foo.bar (id, name) VALUES (?, ?)\n`\n\ntype SchemaScopedCreateParams struct {\n\tID   uint64\n\tName string\n}\n\nfunc (q *Queries) SchemaScopedCreate(ctx context.Context, arg SchemaScopedCreateParams) (sql.Result, error) {\n\treturn q.db.ExecContext(ctx, schemaScopedCreate, arg.ID, arg.Name)\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/mysql/query.sql",
    "content": "-- name: SchemaScopedCreate :execresult\nINSERT INTO foo.bar (id, name) VALUES (?, ?);\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/mysql/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null, name text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID   int32\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedCreate = `-- name: SchemaScopedCreate :one\nINSERT INTO foo.bar (id, name) VALUES ($1, $2) RETURNING id\n`\n\ntype SchemaScopedCreateParams struct {\n\tID   int32\n\tName string\n}\n\nfunc (q *Queries) SchemaScopedCreate(ctx context.Context, arg SchemaScopedCreateParams) (int32, error) {\n\trow := q.db.QueryRow(ctx, schemaScopedCreate, arg.ID, arg.Name)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v4/query.sql",
    "content": "-- name: SchemaScopedCreate :one\nINSERT INTO foo.bar (id, name) VALUES ($1, $2) RETURNING id;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null, name text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID   int32\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedCreate = `-- name: SchemaScopedCreate :one\nINSERT INTO foo.bar (id, name) VALUES ($1, $2) RETURNING id\n`\n\ntype SchemaScopedCreateParams struct {\n\tID   int32\n\tName string\n}\n\nfunc (q *Queries) SchemaScopedCreate(ctx context.Context, arg SchemaScopedCreateParams) (int32, error) {\n\trow := q.db.QueryRow(ctx, schemaScopedCreate, arg.ID, arg.Name)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v5/query.sql",
    "content": "-- name: SchemaScopedCreate :one\nINSERT INTO foo.bar (id, name) VALUES ($1, $2) RETURNING id;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null, name text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID   int32\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedCreate = `-- name: SchemaScopedCreate :one\nINSERT INTO foo.bar (id, name) VALUES ($1, $2) RETURNING id\n`\n\ntype SchemaScopedCreateParams struct {\n\tID   int32\n\tName string\n}\n\nfunc (q *Queries) SchemaScopedCreate(ctx context.Context, arg SchemaScopedCreateParams) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, schemaScopedCreate, arg.ID, arg.Name)\n\tvar id int32\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/stdlib/query.sql",
    "content": "-- name: SchemaScopedCreate :one\nINSERT INTO foo.bar (id, name) VALUES ($1, $2) RETURNING id;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/stdlib/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null, name text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_create/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/mysql/exec.json",
    "content": "{\n    \"contexts\": [\"base\"],\n    \"meta\": {\n        \"invalid_schema\": true\n    }\n}\n  "
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID uint64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedDelete = `-- name: SchemaScopedDelete :exec\nDELETE FROM foo.bar WHERE id = ?\n`\n\nfunc (q *Queries) SchemaScopedDelete(ctx context.Context, id uint64) error {\n\t_, err := q.db.ExecContext(ctx, schemaScopedDelete, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/mysql/query.sql",
    "content": "-- name: SchemaScopedDelete :exec\nDELETE FROM foo.bar WHERE id = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/mysql/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedDelete = `-- name: SchemaScopedDelete :exec\nDELETE FROM foo.bar WHERE id = $1\n`\n\nfunc (q *Queries) SchemaScopedDelete(ctx context.Context, id int32) error {\n\t_, err := q.db.Exec(ctx, schemaScopedDelete, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v4/query.sql",
    "content": "-- name: SchemaScopedDelete :exec\nDELETE FROM foo.bar WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedDelete = `-- name: SchemaScopedDelete :exec\nDELETE FROM foo.bar WHERE id = $1\n`\n\nfunc (q *Queries) SchemaScopedDelete(ctx context.Context, id int32) error {\n\t_, err := q.db.Exec(ctx, schemaScopedDelete, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v5/query.sql",
    "content": "-- name: SchemaScopedDelete :exec\nDELETE FROM foo.bar WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedDelete = `-- name: SchemaScopedDelete :exec\nDELETE FROM foo.bar WHERE id = $1\n`\n\nfunc (q *Queries) SchemaScopedDelete(ctx context.Context, id int32) error {\n\t_, err := q.db.ExecContext(ctx, schemaScopedDelete, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/stdlib/query.sql",
    "content": "-- name: SchemaScopedDelete :exec\nDELETE FROM foo.bar WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/stdlib/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_delete/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype FooTypeUserRole string\n\nconst (\n\tFooTypeUserRoleAdmin FooTypeUserRole = \"admin\"\n\tFooTypeUserRoleUser  FooTypeUserRole = \"user\"\n)\n\nfunc (e *FooTypeUserRole) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = FooTypeUserRole(s)\n\tcase string:\n\t\t*e = FooTypeUserRole(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for FooTypeUserRole: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullFooTypeUserRole struct {\n\tFooTypeUserRole FooTypeUserRole\n\tValid           bool // Valid is true if FooTypeUserRole is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullFooTypeUserRole) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.FooTypeUserRole, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.FooTypeUserRole.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullFooTypeUserRole) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.FooTypeUserRole), nil\n}\n\ntype FooUser struct {\n\tRole NullFooTypeUserRole\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listUsersByRole = `-- name: ListUsersByRole :many\nSELECT role FROM foo.users WHERE role = $1\n`\n\nfunc (q *Queries) ListUsersByRole(ctx context.Context, role NullFooTypeUserRole) ([]NullFooTypeUserRole, error) {\n\trows, err := q.db.Query(ctx, listUsersByRole, role)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []NullFooTypeUserRole\n\tfor rows.Next() {\n\t\tvar role NullFooTypeUserRole\n\t\tif err := rows.Scan(&role); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, role)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/pgx/v4/query.sql",
    "content": "-- name: ListUsersByRole :many\nSELECT * FROM foo.users WHERE role = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA foo;\n\nCREATE TYPE foo.type_user_role AS ENUM ('admin', 'user');\n\nCREATE TABLE foo.users (\n    role foo.type_user_role\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype FooTypeUserRole string\n\nconst (\n\tFooTypeUserRoleAdmin FooTypeUserRole = \"admin\"\n\tFooTypeUserRoleUser  FooTypeUserRole = \"user\"\n)\n\nfunc (e *FooTypeUserRole) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = FooTypeUserRole(s)\n\tcase string:\n\t\t*e = FooTypeUserRole(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for FooTypeUserRole: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullFooTypeUserRole struct {\n\tFooTypeUserRole FooTypeUserRole\n\tValid           bool // Valid is true if FooTypeUserRole is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullFooTypeUserRole) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.FooTypeUserRole, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.FooTypeUserRole.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullFooTypeUserRole) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.FooTypeUserRole), nil\n}\n\ntype FooUser struct {\n\tRole NullFooTypeUserRole\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listUsersByRole = `-- name: ListUsersByRole :many\nSELECT role FROM foo.users WHERE role = $1\n`\n\nfunc (q *Queries) ListUsersByRole(ctx context.Context, role NullFooTypeUserRole) ([]NullFooTypeUserRole, error) {\n\trows, err := q.db.Query(ctx, listUsersByRole, role)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []NullFooTypeUserRole\n\tfor rows.Next() {\n\t\tvar role NullFooTypeUserRole\n\t\tif err := rows.Scan(&role); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, role)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/pgx/v5/query.sql",
    "content": "-- name: ListUsersByRole :many\nSELECT * FROM foo.users WHERE role = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA foo;\n\nCREATE TYPE foo.type_user_role AS ENUM ('admin', 'user');\n\nCREATE TABLE foo.users (\n    role foo.type_user_role\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql/driver\"\n\t\"fmt\"\n)\n\ntype FooTypeUserRole string\n\nconst (\n\tFooTypeUserRoleAdmin FooTypeUserRole = \"admin\"\n\tFooTypeUserRoleUser  FooTypeUserRole = \"user\"\n)\n\nfunc (e *FooTypeUserRole) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = FooTypeUserRole(s)\n\tcase string:\n\t\t*e = FooTypeUserRole(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for FooTypeUserRole: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullFooTypeUserRole struct {\n\tFooTypeUserRole FooTypeUserRole\n\tValid           bool // Valid is true if FooTypeUserRole is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullFooTypeUserRole) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.FooTypeUserRole, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.FooTypeUserRole.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullFooTypeUserRole) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.FooTypeUserRole), nil\n}\n\ntype FooUser struct {\n\tRole NullFooTypeUserRole\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listUsersByRole = `-- name: ListUsersByRole :many\nSELECT role FROM foo.users WHERE role = $1\n`\n\nfunc (q *Queries) ListUsersByRole(ctx context.Context, role NullFooTypeUserRole) ([]NullFooTypeUserRole, error) {\n\trows, err := q.db.QueryContext(ctx, listUsersByRole, role)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []NullFooTypeUserRole\n\tfor rows.Next() {\n\t\tvar role NullFooTypeUserRole\n\t\tif err := rows.Scan(&role); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, role)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/stdlib/query.sql",
    "content": "-- name: ListUsersByRole :many\nSELECT * FROM foo.users WHERE role = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/stdlib/schema.sql",
    "content": "CREATE SCHEMA foo;\n\nCREATE TYPE foo.type_user_role AS ENUM ('admin', 'user');\n\nCREATE TABLE foo.users (\n    role foo.type_user_role\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_enum/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/mysql/exec.json",
    "content": "{\n    \"contexts\": [\"base\"],\n    \"meta\": {\n        \"invalid_schema\": true\n    }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID uint64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedFilter = `-- name: SchemaScopedFilter :many\nSELECT id FROM foo.bar WHERE id = ?\n`\n\nfunc (q *Queries) SchemaScopedFilter(ctx context.Context, id uint64) ([]uint64, error) {\n\trows, err := q.db.QueryContext(ctx, schemaScopedFilter, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []uint64\n\tfor rows.Next() {\n\t\tvar id uint64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/mysql/query.sql",
    "content": "-- name: SchemaScopedFilter :many\nSELECT * FROM foo.bar WHERE id = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/mysql/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null);\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedFilter = `-- name: SchemaScopedFilter :many\nSELECT id FROM foo.bar WHERE id = $1\n`\n\nfunc (q *Queries) SchemaScopedFilter(ctx context.Context, id int32) ([]int32, error) {\n\trows, err := q.db.Query(ctx, schemaScopedFilter, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v4/query.sql",
    "content": "-- name: SchemaScopedFilter :many\nSELECT * FROM foo.bar WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedFilter = `-- name: SchemaScopedFilter :many\nSELECT id FROM foo.bar WHERE id = $1\n`\n\nfunc (q *Queries) SchemaScopedFilter(ctx context.Context, id int32) ([]int32, error) {\n\trows, err := q.db.Query(ctx, schemaScopedFilter, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v5/query.sql",
    "content": "-- name: SchemaScopedFilter :many\nSELECT * FROM foo.bar WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedFilter = `-- name: SchemaScopedFilter :many\nSELECT id FROM foo.bar WHERE id = $1\n`\n\nfunc (q *Queries) SchemaScopedFilter(ctx context.Context, id int32) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, schemaScopedFilter, id)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/stdlib/query.sql",
    "content": "-- name: SchemaScopedFilter :many\nSELECT * FROM foo.bar WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/stdlib/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_filter/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/mysql/exec.json",
    "content": "{\n    \"contexts\": [\"base\"],\n    \"meta\": {\n        \"invalid_schema\": true\n    }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID uint64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedColList = `-- name: SchemaScopedColList :many\nSELECT foo.bar.id FROM foo.bar\n`\n\nfunc (q *Queries) SchemaScopedColList(ctx context.Context) ([]uint64, error) {\n\trows, err := q.db.QueryContext(ctx, schemaScopedColList)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []uint64\n\tfor rows.Next() {\n\t\tvar id uint64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst schemaScopedList = `-- name: SchemaScopedList :many\nSELECT id FROM foo.bar\n`\n\nfunc (q *Queries) SchemaScopedList(ctx context.Context) ([]uint64, error) {\n\trows, err := q.db.QueryContext(ctx, schemaScopedList)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []uint64\n\tfor rows.Next() {\n\t\tvar id uint64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/mysql/query.sql",
    "content": "-- name: SchemaScopedList :many\nSELECT * FROM foo.bar;\n\n-- name: SchemaScopedColList :many\nSELECT foo.bar.id FROM foo.bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/mysql/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedColList = `-- name: SchemaScopedColList :many\nSELECT foo.bar.id FROM foo.bar\n`\n\nfunc (q *Queries) SchemaScopedColList(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, schemaScopedColList)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst schemaScopedList = `-- name: SchemaScopedList :many\nSELECT id FROM foo.bar\n`\n\nfunc (q *Queries) SchemaScopedList(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, schemaScopedList)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v4/query.sql",
    "content": "-- name: SchemaScopedList :many\nSELECT * FROM foo.bar;\n\n-- name: SchemaScopedColList :many\nSELECT foo.bar.id FROM foo.bar;"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedColList = `-- name: SchemaScopedColList :many\nSELECT foo.bar.id FROM foo.bar\n`\n\nfunc (q *Queries) SchemaScopedColList(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, schemaScopedColList)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst schemaScopedList = `-- name: SchemaScopedList :many\nSELECT id FROM foo.bar\n`\n\nfunc (q *Queries) SchemaScopedList(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, schemaScopedList)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v5/query.sql",
    "content": "-- name: SchemaScopedList :many\nSELECT * FROM foo.bar;\n\n-- name: SchemaScopedColList :many\nSELECT foo.bar.id FROM foo.bar;"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedColList = `-- name: SchemaScopedColList :many\nSELECT foo.bar.id FROM foo.bar\n`\n\nfunc (q *Queries) SchemaScopedColList(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, schemaScopedColList)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst schemaScopedList = `-- name: SchemaScopedList :many\nSELECT id FROM foo.bar\n`\n\nfunc (q *Queries) SchemaScopedList(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, schemaScopedList)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/stdlib/query.sql",
    "content": "-- name: SchemaScopedList :many\nSELECT * FROM foo.bar;\n\n-- name: SchemaScopedColList :many\nSELECT foo.bar.id FROM foo.bar;"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/stdlib/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_list/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/mysql/exec.json",
    "content": "{\n    \"contexts\": [\"base\"],\n    \"meta\": {\n        \"invalid_schema\": true\n    }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID   uint64\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedUpdate = `-- name: SchemaScopedUpdate :exec\nUPDATE foo.bar SET name = ? WHERE id = ?\n`\n\ntype SchemaScopedUpdateParams struct {\n\tName string\n\tID   uint64\n}\n\nfunc (q *Queries) SchemaScopedUpdate(ctx context.Context, arg SchemaScopedUpdateParams) error {\n\t_, err := q.db.ExecContext(ctx, schemaScopedUpdate, arg.Name, arg.ID)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/mysql/query.sql",
    "content": "-- name: SchemaScopedUpdate :exec\nUPDATE foo.bar SET name = ? WHERE id = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/mysql/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null, name text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID   int32\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedUpdate = `-- name: SchemaScopedUpdate :exec\nUPDATE foo.bar SET name = $2 WHERE id = $1\n`\n\ntype SchemaScopedUpdateParams struct {\n\tID   int32\n\tName string\n}\n\nfunc (q *Queries) SchemaScopedUpdate(ctx context.Context, arg SchemaScopedUpdateParams) error {\n\t_, err := q.db.Exec(ctx, schemaScopedUpdate, arg.ID, arg.Name)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v4/query.sql",
    "content": "-- name: SchemaScopedUpdate :exec\nUPDATE foo.bar SET name = $2 WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v4/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null, name text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID   int32\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedUpdate = `-- name: SchemaScopedUpdate :exec\nUPDATE foo.bar SET name = $2 WHERE id = $1\n`\n\ntype SchemaScopedUpdateParams struct {\n\tID   int32\n\tName string\n}\n\nfunc (q *Queries) SchemaScopedUpdate(ctx context.Context, arg SchemaScopedUpdateParams) error {\n\t_, err := q.db.Exec(ctx, schemaScopedUpdate, arg.ID, arg.Name)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v5/query.sql",
    "content": "-- name: SchemaScopedUpdate :exec\nUPDATE foo.bar SET name = $2 WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v5/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null, name text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype FooBar struct {\n\tID   int32\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst schemaScopedUpdate = `-- name: SchemaScopedUpdate :exec\nUPDATE foo.bar SET name = $2 WHERE id = $1\n`\n\ntype SchemaScopedUpdateParams struct {\n\tID   int32\n\tName string\n}\n\nfunc (q *Queries) SchemaScopedUpdate(ctx context.Context, arg SchemaScopedUpdateParams) error {\n\t_, err := q.db.ExecContext(ctx, schemaScopedUpdate, arg.ID, arg.Name)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/stdlib/query.sql",
    "content": "-- name: SchemaScopedUpdate :exec\nUPDATE foo.bar SET name = $2 WHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/stdlib/schema.sql",
    "content": "CREATE SCHEMA foo;\nCREATE TABLE foo.bar (id serial not null, name text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_scoped_update/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_table_column_ref/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/2948\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_table_column_ref/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_table_column_ref/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype AstoriaSlackFeedback struct {\n\tID          int64\n\tWorkspaceID int64\n\tCreatedAt   pgtype.Timestamp\n\tIssueRaised pgtype.Bool\n}\n\ntype AstoriaTicket struct {\n\tID          int64\n\tWorkspaceID int64\n\tCreatedAt   pgtype.Timestamp\n\tSource      string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_table_column_ref/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getTotalSlackQueries = `-- name: GetTotalSlackQueries :one\nSELECT\n    COUNT(*) AS count\nFROM astoria.slack_feedback\nWHERE astoria.slack_feedback.workspace_id = $1\nAND created_at BETWEEN $2::date AND $3::date\n`\n\ntype GetTotalSlackQueriesParams struct {\n\tWorkspaceID int64\n\tColumn2     pgtype.Date\n\tColumn3     pgtype.Date\n}\n\nfunc (q *Queries) GetTotalSlackQueries(ctx context.Context, arg GetTotalSlackQueriesParams) (int64, error) {\n\trow := q.db.QueryRow(ctx, getTotalSlackQueries, arg.WorkspaceID, arg.Column2, arg.Column3)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n\nconst getTotalSlackQueriesRequestsCreated = `-- name: GetTotalSlackQueriesRequestsCreated :one\nSELECT\n    COUNT(*) AS count\nFROM astoria.tickets\nWHERE astoria.tickets.workspace_id = $1\n  AND source = 'RAISED_FROM_BOT'\n  AND created_at BETWEEN $2::date AND $3::date\n`\n\ntype GetTotalSlackQueriesRequestsCreatedParams struct {\n\tWorkspaceID int64\n\tColumn2     pgtype.Date\n\tColumn3     pgtype.Date\n}\n\nfunc (q *Queries) GetTotalSlackQueriesRequestsCreated(ctx context.Context, arg GetTotalSlackQueriesRequestsCreatedParams) (int64, error) {\n\trow := q.db.QueryRow(ctx, getTotalSlackQueriesRequestsCreated, arg.WorkspaceID, arg.Column2, arg.Column3)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n\nconst getTotalSlackQueriesResolved = `-- name: GetTotalSlackQueriesResolved :one\nSELECT\n    COUNT(*) AS count\nFROM astoria.slack_feedback\nWHERE astoria.slack_feedback.workspace_id = $1\n  AND (issue_raised = false OR issue_raised IS NULL)\n  AND created_at BETWEEN $2::date AND $3::date\n`\n\ntype GetTotalSlackQueriesResolvedParams struct {\n\tWorkspaceID int64\n\tColumn2     pgtype.Date\n\tColumn3     pgtype.Date\n}\n\nfunc (q *Queries) GetTotalSlackQueriesResolved(ctx context.Context, arg GetTotalSlackQueriesResolvedParams) (int64, error) {\n\trow := q.db.QueryRow(ctx, getTotalSlackQueriesResolved, arg.WorkspaceID, arg.Column2, arg.Column3)\n\tvar count int64\n\terr := row.Scan(&count)\n\treturn count, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_table_column_ref/postgresql/pgx/query.sql",
    "content": "-- name: GetTotalSlackQueries :one\nSELECT\n    COUNT(*) AS count\nFROM astoria.slack_feedback\nWHERE astoria.slack_feedback.workspace_id = $1\nAND created_at BETWEEN $2::date AND $3::date;\n\n-- name: GetTotalSlackQueriesResolved :one\nSELECT\n    COUNT(*) AS count\nFROM astoria.slack_feedback\nWHERE astoria.slack_feedback.workspace_id = $1\n  AND (issue_raised = false OR issue_raised IS NULL)\n  AND created_at BETWEEN $2::date AND $3::date;\n\n-- name: GetTotalSlackQueriesRequestsCreated :one\nSELECT\n    COUNT(*) AS count\nFROM astoria.tickets\nWHERE astoria.tickets.workspace_id = $1\n  AND source = 'RAISED_FROM_BOT'\n  AND created_at BETWEEN $2::date AND $3::date;\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_table_column_ref/postgresql/pgx/schema.sql",
    "content": "CREATE SCHEMA astoria;\n\nCREATE TABLE astoria.slack_feedback (\n  id            BIGSERIAL PRIMARY KEY,\n  workspace_id  BIGINT NOT NULL, \n  created_at    TIMESTAMP NOT NULL,\n  issue_raised  BOOLEAN\n);\n\nCREATE TABLE astoria.tickets (\n  id            BIGSERIAL PRIMARY KEY,\n  workspace_id  BIGINT NOT NULL, \n  created_at    TIMESTAMP NOT NULL,\n  source text   NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/schema_table_column_ref/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectColumnCast = `-- name: SelectColumnCast :many\nSELECT CAST(bar AS UNSIGNED) FROM foo\n`\n\nfunc (q *Queries) SelectColumnCast(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, selectColumnCast)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar bar int64\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/mysql/query.sql",
    "content": "-- name: SelectColumnCast :many\nSELECT CAST(bar AS UNSIGNED) FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar BOOLEAN NOT NULL);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectColumnCast = `-- name: SelectColumnCast :many\nSELECT bar::int FROM foo\n`\n\nfunc (q *Queries) SelectColumnCast(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, selectColumnCast)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar bar int32\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/pgx/v4/query.sql",
    "content": "-- name: SelectColumnCast :many\nSELECT bar::int FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectColumnCast = `-- name: SelectColumnCast :many\nSELECT bar::int FROM foo\n`\n\nfunc (q *Queries) SelectColumnCast(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, selectColumnCast)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar bar int32\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/pgx/v5/query.sql",
    "content": "-- name: SelectColumnCast :many\nSELECT bar::int FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar bool\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectColumnCast = `-- name: SelectColumnCast :many\nSELECT bar::int FROM foo\n`\n\nfunc (q *Queries) SelectColumnCast(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, selectColumnCast)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar bar int32\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/stdlib/query.sql",
    "content": "-- name: SelectColumnCast :many\nSELECT bar::int FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar bool not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tBar string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectColumnCast = `-- name: SelectColumnCast :many\nSELECT CAST(bar AS BLOB) FROM foo\n`\n\nfunc (q *Queries) SelectColumnCast(ctx context.Context) ([][]byte, error) {\n\trows, err := q.db.QueryContext(ctx, selectColumnCast)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items [][]byte\n\tfor rows.Next() {\n\t\tvar bar []byte\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/sqlite/query.sql",
    "content": "-- name: SelectColumnCast :many\nSELECT CAST(bar AS BLOB) FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/sqlite/schema.sql",
    "content": "CREATE TABLE foo (bar TEXT NOT NULL);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_column_cast/sqlite/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"sqlite\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_cte/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_cte/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/select_cte/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nWITH abc AS (\n  SELECT 1 AS n\n)\nSELECT n FROM abc\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar n int64\n\t\tif err := rows.Scan(&n); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, n)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_cte/sqlite/query.sql",
    "content": "-- name: ListAuthors :many\nWITH abc AS (\n  SELECT 1 AS n\n)\nSELECT * FROM abc;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_cte/sqlite/schema.sql",
    "content": "\n"
  },
  {
    "path": "internal/endtoend/testdata/select_cte/sqlite/sqlc.json",
    "content": "{\n    \"version\": \"1\",\n    \"packages\": [\n        {\n            \"path\": \"go\",\n            \"engine\": \"sqlite\",\n            \"schema\": \"schema.sql\",\n            \"queries\": \"query.sql\",\n            \"name\": \"querytest\"\n        }\n    ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID   int32\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getBars = `-- name: GetBars :many\nSELECT DISTINCT ON (a.id) a.id, a.name\nFROM bar a\n`\n\nfunc (q *Queries) GetBars(ctx context.Context) ([]Bar, error) {\n\trows, err := q.db.Query(ctx, getBars)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Bar\n\tfor rows.Next() {\n\t\tvar i Bar\n\t\tif err := rows.Scan(&i.ID, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/pgx/v4/query.sql",
    "content": "-- name: GetBars :many\nSELECT DISTINCT ON (a.id) a.*\nFROM bar a;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id serial not null, name text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Bar struct {\n\tID   int32\n\tName pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getBars = `-- name: GetBars :many\nSELECT DISTINCT ON (a.id) a.id, a.name\nFROM bar a\n`\n\nfunc (q *Queries) GetBars(ctx context.Context) ([]Bar, error) {\n\trows, err := q.db.Query(ctx, getBars)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Bar\n\tfor rows.Next() {\n\t\tvar i Bar\n\t\tif err := rows.Scan(&i.ID, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/pgx/v5/query.sql",
    "content": "-- name: GetBars :many\nSELECT DISTINCT ON (a.id) a.*\nFROM bar a;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id serial not null, name text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID   int32\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getBars = `-- name: GetBars :many\nSELECT DISTINCT ON (a.id) a.id, a.name\nFROM bar a\n`\n\nfunc (q *Queries) GetBars(ctx context.Context) ([]Bar, error) {\n\trows, err := q.db.QueryContext(ctx, getBars)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Bar\n\tfor rows.Next() {\n\t\tvar i Bar\n\t\tif err := rows.Scan(&i.ID, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/stdlib/query.sql",
    "content": "-- name: GetBars :many\nSELECT DISTINCT ON (a.id) a.*\nFROM bar a;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial not null, name text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_distinct/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/mysql/query.sql",
    "content": "-- name: GetBars :many\nSELECT FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/mysql/schema.sql",
    "content": "CREATE TABLE bar (name text);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/mysql/stderr.txt",
    "content": "# package querytest\nquery.sql:2:12: syntax error near \"FROM bar;\"\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID   int32\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getBars = `-- name: GetBars :many\nSELECT FROM bar LIMIT 5\n`\n\ntype GetBarsRow struct {\n}\n\nfunc (q *Queries) GetBars(ctx context.Context) ([]GetBarsRow, error) {\n\trows, err := q.db.Query(ctx, getBars)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetBarsRow\n\tfor rows.Next() {\n\t\tvar i GetBarsRow\n\t\tif err := rows.Scan(); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetBars :many\nSELECT FROM bar LIMIT 5;"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id serial not null, name text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Bar struct {\n\tID   int32\n\tName pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getBars = `-- name: GetBars :many\nSELECT FROM bar LIMIT 5\n`\n\ntype GetBarsRow struct {\n}\n\nfunc (q *Queries) GetBars(ctx context.Context) ([]GetBarsRow, error) {\n\trows, err := q.db.Query(ctx, getBars)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetBarsRow\n\tfor rows.Next() {\n\t\tvar i GetBarsRow\n\t\tif err := rows.Scan(); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetBars :many\nSELECT FROM bar LIMIT 5;"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id serial not null, name text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tID   int32\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getBars = `-- name: GetBars :many\nSELECT FROM bar LIMIT 5\n`\n\ntype GetBarsRow struct {\n}\n\nfunc (q *Queries) GetBars(ctx context.Context) ([]GetBarsRow, error) {\n\trows, err := q.db.QueryContext(ctx, getBars)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetBarsRow\n\tfor rows.Next() {\n\t\tvar i GetBarsRow\n\t\tif err := rows.Scan(); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/stdlib/query.sql",
    "content": "-- name: GetBars :many\nSELECT FROM bar LIMIT 5;"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial not null, name text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_empty_column_list/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst barExists = `-- name: BarExists :one\nSELECT\n    EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        where\n            id = $1\n    )\n`\n\nfunc (q *Queries) BarExists(ctx context.Context, id int32) (bool, error) {\n\trow := q.db.QueryRow(ctx, barExists, id)\n\tvar exists bool\n\terr := row.Scan(&exists)\n\treturn exists, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/pgx/v4/query.sql",
    "content": "-- name: BarExists :one\nSELECT\n    EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        where\n            id = $1\n    );\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst barExists = `-- name: BarExists :one\nSELECT\n    EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        where\n            id = $1\n    )\n`\n\nfunc (q *Queries) BarExists(ctx context.Context, id int32) (bool, error) {\n\trow := q.db.QueryRow(ctx, barExists, id)\n\tvar exists bool\n\terr := row.Scan(&exists)\n\treturn exists, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/pgx/v5/query.sql",
    "content": "-- name: BarExists :one\nSELECT\n    EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        where\n            id = $1\n    );\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst barExists = `-- name: BarExists :one\nSELECT\n    EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        where\n            id = ?\n    )\n`\n\nfunc (q *Queries) BarExists(ctx context.Context, id int64) (bool, error) {\n\trow := q.db.QueryRowContext(ctx, barExists, id)\n\tvar exists bool\n\terr := row.Scan(&exists)\n\treturn exists, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/sqlite/query.sql",
    "content": "-- name: BarExists :one\nSELECT\n    EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        where\n            id = ?\n    );\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/sqlite/schema.sql",
    "content": "CREATE TABLE bar (id integer not null primary key autoincrement);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"sqlite\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst barExists = `-- name: BarExists :one\nSELECT\n    EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        where\n            id = $1\n    )\n`\n\nfunc (q *Queries) BarExists(ctx context.Context, id int32) (bool, error) {\n\trow := q.db.QueryRowContext(ctx, barExists, id)\n\tvar exists bool\n\terr := row.Scan(&exists)\n\treturn exists, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/stdlib/query.sql",
    "content": "-- name: BarExists :one\nSELECT\n    EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        where\n            id = $1\n    );\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_exists/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_in_and/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_in_and/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tAge  sql.NullInt64\n}\n\ntype Book struct {\n\tID         int64\n\tAuthor     string\n\tTranslator string\n\tYear       sql.NullInt64\n}\n\ntype Translator struct {\n\tID   int64\n\tName string\n\tAge  sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_in_and/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst deleteAuthor = `-- name: DeleteAuthor :exec\nDELETE FROM\n  books AS b\nWHERE\n  b.author NOT IN (\n    SELECT\n      a.name\n    FROM\n      authors a\n    WHERE\n      a.age >= ?\n  )\n  AND b.translator NOT IN (\n    SELECT\n      t.name\n    FROM\n      translators t\n    WHERE\n      t.age >= ?\n  )\n  AND b.year <= ?\n`\n\ntype DeleteAuthorParams struct {\n\tAge   sql.NullInt64\n\tAge_2 sql.NullInt64\n\tYear  sql.NullInt64\n}\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, arg DeleteAuthorParams) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthor, arg.Age, arg.Age_2, arg.Year)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_in_and/sqlite/query.sql",
    "content": "-- name: DeleteAuthor :exec\nDELETE FROM\n  books AS b\nWHERE\n  b.author NOT IN (\n    SELECT\n      a.name\n    FROM\n      authors a\n    WHERE\n      a.age >= ?\n  )\n  AND b.translator NOT IN (\n    SELECT\n      t.name\n    FROM\n      translators t\n    WHERE\n      t.age >= ?\n  )\n  AND b.year <= ?;"
  },
  {
    "path": "internal/endtoend/testdata/select_in_and/sqlite/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   integer PRIMARY KEY,\n  name text      NOT NULL,\n  age  integer\n);\n\nCREATE TABLE translators (\n  id   integer PRIMARY KEY,\n  name text      NOT NULL,\n  age  integer\n);\n\nCREATE TABLE books (\n  id   integer PRIMARY KEY,\n  author text      NOT NULL,\n  translator text      NOT NULL,\n  year  integer\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_in_and/sqlite/sqlc.json",
    "content": "{\"version\": \"1\", \"packages\": [{\"path\": \"go\", \"engine\": \"sqlite\", \"schema\": \"schema.sql\", \"queries\": \"query.sql\", \"name\": \"querytest\"}]}"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst fooLimit = `-- name: FooLimit :many\nSELECT a FROM foo\nLIMIT ?\n`\n\nfunc (q *Queries) FooLimit(ctx context.Context, limit int32) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, fooLimit, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar a sql.NullString\n\t\tif err := rows.Scan(&a); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, a)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst fooLimitOffset = `-- name: FooLimitOffset :many\nSELECT a FROM foo\nLIMIT ? OFFSET ?\n`\n\ntype FooLimitOffsetParams struct {\n\tLimit  int32\n\tOffset int32\n}\n\nfunc (q *Queries) FooLimitOffset(ctx context.Context, arg FooLimitOffsetParams) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, fooLimitOffset, arg.Limit, arg.Offset)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar a sql.NullString\n\t\tif err := rows.Scan(&a); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, a)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/mysql/query.sql",
    "content": "/* name: FooLimit :many */\nSELECT a FROM foo\nLIMIT ?;\n\n/* name: FooLimitOffset :many */\nSELECT a FROM foo\nLIMIT ? OFFSET ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/mysql/schema.sql",
    "content": "CREATE TABLE foo (a text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/pgx/v4/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst fooLimit = `-- name: FooLimit :many\nSELECT a FROM foo\nLIMIT $1\n`\n\nfunc (q *Queries) FooLimit(ctx context.Context, limit int32) ([]sql.NullString, error) {\n\trows, err := q.db.Query(ctx, fooLimit, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar a sql.NullString\n\t\tif err := rows.Scan(&a); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, a)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst fooLimitOffset = `-- name: FooLimitOffset :many\nSELECT a FROM foo\nLIMIT $1 OFFSET $2\n`\n\ntype FooLimitOffsetParams struct {\n\tLimit  int32\n\tOffset int32\n}\n\nfunc (q *Queries) FooLimitOffset(ctx context.Context, arg FooLimitOffsetParams) ([]sql.NullString, error) {\n\trows, err := q.db.Query(ctx, fooLimitOffset, arg.Limit, arg.Offset)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar a sql.NullString\n\t\tif err := rows.Scan(&a); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, a)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/pgx/v4/query.sql",
    "content": "-- name: FooLimit :many\nSELECT a FROM foo\nLIMIT $1;\n\n-- name: FooLimitOffset :many\nSELECT a FROM foo\nLIMIT $1 OFFSET $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (a text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/pgx/v5/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tA pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst fooLimit = `-- name: FooLimit :many\nSELECT a FROM foo\nLIMIT $1\n`\n\nfunc (q *Queries) FooLimit(ctx context.Context, limit int32) ([]pgtype.Text, error) {\n\trows, err := q.db.Query(ctx, fooLimit, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.Text\n\tfor rows.Next() {\n\t\tvar a pgtype.Text\n\t\tif err := rows.Scan(&a); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, a)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst fooLimitOffset = `-- name: FooLimitOffset :many\nSELECT a FROM foo\nLIMIT $1 OFFSET $2\n`\n\ntype FooLimitOffsetParams struct {\n\tLimit  int32\n\tOffset int32\n}\n\nfunc (q *Queries) FooLimitOffset(ctx context.Context, arg FooLimitOffsetParams) ([]pgtype.Text, error) {\n\trows, err := q.db.Query(ctx, fooLimitOffset, arg.Limit, arg.Offset)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.Text\n\tfor rows.Next() {\n\t\tvar a pgtype.Text\n\t\tif err := rows.Scan(&a); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, a)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/pgx/v5/query.sql",
    "content": "-- name: FooLimit :many\nSELECT a FROM foo\nLIMIT $1;\n\n-- name: FooLimitOffset :many\nSELECT a FROM foo\nLIMIT $1 OFFSET $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (a text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/stdlib/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst fooLimit = `-- name: FooLimit :many\nSELECT a FROM foo\nLIMIT $1\n`\n\nfunc (q *Queries) FooLimit(ctx context.Context, limit int32) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, fooLimit, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar a sql.NullString\n\t\tif err := rows.Scan(&a); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, a)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst fooLimitOffset = `-- name: FooLimitOffset :many\nSELECT a FROM foo\nLIMIT $1 OFFSET $2\n`\n\ntype FooLimitOffsetParams struct {\n\tLimit  int32\n\tOffset int32\n}\n\nfunc (q *Queries) FooLimitOffset(ctx context.Context, arg FooLimitOffsetParams) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, fooLimitOffset, arg.Limit, arg.Offset)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar a sql.NullString\n\t\tif err := rows.Scan(&a); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, a)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/stdlib/query.sql",
    "content": "-- name: FooLimit :many\nSELECT a FROM foo\nLIMIT $1;\n\n-- name: FooLimitOffset :many\nSELECT a FROM foo\nLIMIT $1 OFFSET $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (a text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst fooLimit = `-- name: FooLimit :many\nSELECT a FROM foo\nLIMIT ?\n`\n\nfunc (q *Queries) FooLimit(ctx context.Context, limit int64) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, fooLimit, limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar a sql.NullString\n\t\tif err := rows.Scan(&a); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, a)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst fooLimitOffset = `-- name: FooLimitOffset :many\nSELECT a FROM foo\nLIMIT ? OFFSET ?\n`\n\ntype FooLimitOffsetParams struct {\n\tLimit  int64\n\tOffset int64\n}\n\nfunc (q *Queries) FooLimitOffset(ctx context.Context, arg FooLimitOffsetParams) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, fooLimitOffset, arg.Limit, arg.Offset)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar a sql.NullString\n\t\tif err := rows.Scan(&a); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, a)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/sqlite/query.sql",
    "content": "/* name: FooLimit :many */\nSELECT a FROM foo\nLIMIT ?;\n\n/* name: FooLimitOffset :many */\nSELECT a FROM foo\nLIMIT ? OFFSET ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/sqlite/schema.sql",
    "content": "CREATE TABLE foo (a text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_limit/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype Book struct {\n\tID       int64\n\tAuthorID int64\n\tTitle    string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getAuthorsWithBooksCount = `-- name: GetAuthorsWithBooksCount :many\nSELECT id, name, bio, (\n  SELECT COUNT(id) FROM books\n  WHERE books.author_id = id\n) AS books_count\nFROM authors\n`\n\ntype GetAuthorsWithBooksCountRow struct {\n\tID         int64\n\tName       string\n\tBio        sql.NullString\n\tBooksCount int64\n}\n\nfunc (q *Queries) GetAuthorsWithBooksCount(ctx context.Context) ([]GetAuthorsWithBooksCountRow, error) {\n\trows, err := q.db.QueryContext(ctx, getAuthorsWithBooksCount)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetAuthorsWithBooksCountRow\n\tfor rows.Next() {\n\t\tvar i GetAuthorsWithBooksCountRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.Bio,\n\t\t\t&i.BooksCount,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/mysql/query.sql",
    "content": "-- name: GetAuthorsWithBooksCount :many\nSELECT *, (\n  SELECT COUNT(id) FROM books\n  WHERE books.author_id = id\n) AS books_count\nFROM authors;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n  id   bigint    PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n\nCREATE TABLE books (\n  id bigint PRIMARY KEY,\n  author_id bigint NOT NULL\n    REFERENCES authors(id),\n  title text NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"mysql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype Book struct {\n\tID       int64\n\tAuthorID int64\n\tTitle    string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getAuthorsWithBooksCount = `-- name: GetAuthorsWithBooksCount :many\nSELECT id, name, bio, (\n  SELECT COUNT(id) FROM books\n  WHERE books.author_id = id\n) AS books_count\nFROM authors\n`\n\ntype GetAuthorsWithBooksCountRow struct {\n\tID         int64\n\tName       string\n\tBio        sql.NullString\n\tBooksCount int64\n}\n\nfunc (q *Queries) GetAuthorsWithBooksCount(ctx context.Context) ([]GetAuthorsWithBooksCountRow, error) {\n\trows, err := q.db.QueryContext(ctx, getAuthorsWithBooksCount)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetAuthorsWithBooksCountRow\n\tfor rows.Next() {\n\t\tvar i GetAuthorsWithBooksCountRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.Bio,\n\t\t\t&i.BooksCount,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/postgresql/query.sql",
    "content": "-- name: GetAuthorsWithBooksCount :many\nSELECT *, (\n  SELECT COUNT(id) FROM books\n  WHERE books.author_id = id\n) AS books_count\nFROM authors;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/postgresql/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n\nCREATE TABLE books (\n  id BIGSERIAL PRIMARY KEY,\n  author_id BIGSERIAL NOT NULL\n  \tREFERENCES authors(id),\n  title text NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype Book struct {\n\tID       int64\n\tAuthorID int64\n\tTitle    string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getAuthorsWithBooksCount = `-- name: GetAuthorsWithBooksCount :many\nSELECT id, name, bio, (\n  SELECT COUNT(id) FROM books\n  WHERE books.author_id = id\n) AS books_count\nFROM authors\n`\n\ntype GetAuthorsWithBooksCountRow struct {\n\tID         int64\n\tName       string\n\tBio        sql.NullString\n\tBooksCount int64\n}\n\nfunc (q *Queries) GetAuthorsWithBooksCount(ctx context.Context) ([]GetAuthorsWithBooksCountRow, error) {\n\trows, err := q.db.QueryContext(ctx, getAuthorsWithBooksCount)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetAuthorsWithBooksCountRow\n\tfor rows.Next() {\n\t\tvar i GetAuthorsWithBooksCountRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Name,\n\t\t\t&i.Bio,\n\t\t\t&i.BooksCount,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/sqlite/query.sql",
    "content": "-- name: GetAuthorsWithBooksCount :many\nSELECT *, (\n  SELECT COUNT(id) FROM books\n  WHERE books.author_id = id\n) AS books_count\nFROM authors;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/sqlite/schema.sql",
    "content": "CREATE TABLE authors (\n  id   bigint    PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n\nCREATE TABLE books (\n  id bigint PRIMARY KEY,\n  author_id bigint NOT NULL\n    REFERENCES authors(id),\n  title text NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_nested_count/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"sqlite\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst barNotExists = `-- name: BarNotExists :one\nSELECT\n    NOT EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        where\n            id = $1\n    )\n`\n\nfunc (q *Queries) BarNotExists(ctx context.Context, id int32) (bool, error) {\n\trow := q.db.QueryRow(ctx, barNotExists, id)\n\tvar not_exists bool\n\terr := row.Scan(&not_exists)\n\treturn not_exists, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/pgx/v4/query.sql",
    "content": "-- name: BarNotExists :one\nSELECT\n    NOT EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        where\n            id = $1\n    );\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst barNotExists = `-- name: BarNotExists :one\nSELECT\n    NOT EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        where\n            id = $1\n    )\n`\n\nfunc (q *Queries) BarNotExists(ctx context.Context, id int32) (bool, error) {\n\trow := q.db.QueryRow(ctx, barNotExists, id)\n\tvar not_exists bool\n\terr := row.Scan(&not_exists)\n\treturn not_exists, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/pgx/v5/query.sql",
    "content": "-- name: BarNotExists :one\nSELECT\n    NOT EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        where\n            id = $1\n    );\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/sqlite/exec.json",
    "content": "{\n    \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst barNotExists = `-- name: BarNotExists :one\nSELECT\n    NOT EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        WHERE\n            id = ?\n    )\n`\n\nfunc (q *Queries) BarNotExists(ctx context.Context, id int64) (bool, error) {\n\trow := q.db.QueryRowContext(ctx, barNotExists, id)\n\tvar not_exists bool\n\terr := row.Scan(&not_exists)\n\treturn not_exists, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/sqlite/query.sql",
    "content": "-- name: BarNotExists :one\nSELECT\n    NOT EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        WHERE\n            id = ?\n    );\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/sqlite/schema.sql",
    "content": "CREATE TABLE bar (id integer not null primary key autoincrement);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"engine\": \"sqlite\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst barNotExists = `-- name: BarNotExists :one\nSELECT\n    NOT EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        where\n            id = $1\n    )\n`\n\nfunc (q *Queries) BarNotExists(ctx context.Context, id int32) (bool, error) {\n\trow := q.db.QueryRowContext(ctx, barNotExists, id)\n\tvar not_exists bool\n\terr := row.Scan(&not_exists)\n\treturn not_exists, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/stdlib/query.sql",
    "content": "-- name: BarNotExists :one\nSELECT\n    NOT EXISTS (\n        SELECT\n            1\n        FROM\n            bar\n        where\n            id = $1\n    );\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_not_exists/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_sequence/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1634\n"
  },
  {
    "path": "internal/endtoend/testdata/select_sequence/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_sequence/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_sequence/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/select_sequence/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getLastValue = `-- name: GetLastValue :one\nSELECT last_value FROM my_sequence\n`\n\nfunc (q *Queries) GetLastValue(ctx context.Context) (int64, error) {\n\trow := q.db.QueryRow(ctx, getLastValue)\n\tvar last_value int64\n\terr := row.Scan(&last_value)\n\treturn last_value, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_sequence/postgresql/pgx/query.sql",
    "content": "-- name: GetLastValue :one\nSELECT last_value FROM my_sequence;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_sequence/postgresql/pgx/schema.sql",
    "content": "CREATE SEQUENCE public.my_sequence\n    START WITH 1\n    INCREMENT BY 1\n    NO MINVALUE\n    NO MAXVALUE\n    CACHE 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_sequence/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getIDAll = `-- name: GetIDAll :many\nSELECT id FROM (SELECT id FROM users) t\n`\n\nfunc (q *Queries) GetIDAll(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, getIDAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/mysql/query.sql",
    "content": "/* name: GetAll :many */\nSELECT * FROM users;\n\n/* name: GetIDAll :many */\nSELECT * FROM (SELECT id FROM users) t;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/mysql/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n) ENGINE=InnoDB;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"mysql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getIDAll = `-- name: GetIDAll :many\nSELECT id FROM (SELECT id FROM users) t\n`\n\nfunc (q *Queries) GetIDAll(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, getIDAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n\n/* name: GetIDAll :many */\nSELECT * FROM (SELECT id FROM users) t;"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  pgtype.Text\n\tAge       int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getIDAll = `-- name: GetIDAll :many\nSELECT id FROM (SELECT id FROM users) t\n`\n\nfunc (q *Queries) GetIDAll(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, getIDAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n\n/* name: GetIDAll :many */\nSELECT * FROM (SELECT id FROM users) t;"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int32\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getIDAll = `-- name: GetIDAll :many\nSELECT id FROM (SELECT id FROM users) t\n`\n\nfunc (q *Queries) GetIDAll(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, getIDAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar id int32\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/stdlib/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n\n/* name: GetIDAll :many */\nSELECT * FROM (SELECT id FROM users) t;"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tID        int64\n\tFirstName string\n\tLastName  sql.NullString\n\tAge       int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT id, first_name, last_name, age FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]User, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []User\n\tfor rows.Next() {\n\t\tvar i User\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.FirstName,\n\t\t\t&i.LastName,\n\t\t\t&i.Age,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getIDAll = `-- name: GetIDAll :many\nSELECT id FROM (SELECT id FROM users) t\n`\n\nfunc (q *Queries) GetIDAll(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, getIDAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar id int64\n\t\tif err := rows.Scan(&id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/sqlite/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n\n/* name: GetIDAll :many */\nSELECT * FROM (SELECT id FROM users) t;"
  },
  {
    "path": "internal/endtoend/testdata/select_star/sqlite/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL PRIMARY KEY,\n    first_name varchar(255) NOT NULL,\n    last_name varchar(255),\n    age integer NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"sqlite\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tCamelcase sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT camelcase FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar camelcase sql.NullString\n\t\tif err := rows.Scan(&camelcase); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, camelcase)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/mysql/query.sql",
    "content": "/* name: GetAll :many */\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/mysql/schema.sql",
    "content": "CREATE TABLE users (\n    `CamelCase` varchar(255)\n) ENGINE=InnoDB;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"mysql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tCamelCase sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT \"CamelCase\" FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]sql.NullString, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar CamelCase sql.NullString\n\t\tif err := rows.Scan(&CamelCase); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, CamelCase)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE users (\n    \"CamelCase\" varchar(255)\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype User struct {\n\tCamelCase pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT \"CamelCase\" FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]pgtype.Text, error) {\n\trows, err := q.db.Query(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.Text\n\tfor rows.Next() {\n\t\tvar CamelCase pgtype.Text\n\t\tif err := rows.Scan(&CamelCase); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, CamelCase)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE users (\n    \"CamelCase\" varchar(255)\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype User struct {\n\tCamelCase sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getAll = `-- name: GetAll :many\nSELECT \"CamelCase\" FROM users\n`\n\nfunc (q *Queries) GetAll(ctx context.Context) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, getAll)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar CamelCase sql.NullString\n\t\tif err := rows.Scan(&CamelCase); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, CamelCase)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/stdlib/query.sql",
    "content": "-- name: GetAll :many\nSELECT * FROM users;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE users (\n    \"CamelCase\" varchar(255)\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_star_quoted/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery/postgresql/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/pull/2639\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery/postgresql/stdlib/exec.json",
    "content": "{\n    \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tA     int32\n\tAlias sql.NullString\n}\n\ntype Foo struct {\n\tA    int32\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst subquery = `-- name: Subquery :many\nSELECT \n\ta,\n\tname,\n\t(SELECT alias FROM bar WHERE bar.a=foo.a AND alias = $1 ORDER BY bar.a DESC limit 1) as alias\nFROM FOO WHERE a = $2\n`\n\ntype SubqueryParams struct {\n\tColumn1 sql.NullString\n\tColumn2 sql.NullInt32\n}\n\ntype SubqueryRow struct {\n\tA     int32\n\tName  sql.NullString\n\tAlias sql.NullString\n}\n\nfunc (q *Queries) Subquery(ctx context.Context, arg SubqueryParams) ([]SubqueryRow, error) {\n\trows, err := q.db.QueryContext(ctx, subquery, arg.Column1, arg.Column2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []SubqueryRow\n\tfor rows.Next() {\n\t\tvar i SubqueryRow\n\t\tif err := rows.Scan(&i.A, &i.Name, &i.Alias); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery/postgresql/stdlib/query.sql",
    "content": "-- name: Subquery :many\nSELECT \n\ta,\n\tname,\n\t(SELECT alias FROM bar WHERE bar.a=foo.a AND alias = $1 ORDER BY bar.a DESC limit 1) as alias\nFROM FOO WHERE a = $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (a int not null, name text);\nCREATE TABLE bar (a int not null, alias text);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery/postgresql/stdlib/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"database/sql\"\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_alias/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1990\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_alias/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_alias/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_alias/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Wallet struct {\n\tID      int64\n\tAddress string\n\tType    string\n\tBalance pgtype.Numeric\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_alias/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst findWallets = `-- name: FindWallets :many\nselect id, address, balance, total_balance from \n(\n\tselect id, address, balance,\n\t  sum(balance) over (order by balance desc rows between unbounded preceding and current row) as total_balance,\n\t  sum(balance) over (order by balance desc rows between unbounded preceding and current row) - balance as last_balance\n\tfrom wallets\n\twhere type=$1\n) amounts\nwhere amounts.last_balance < $2\n`\n\ntype FindWalletsParams struct {\n\tColumn1 pgtype.Text\n\tColumn2 pgtype.Numeric\n}\n\ntype FindWalletsRow struct {\n\tID           int64\n\tAddress      string\n\tBalance      pgtype.Numeric\n\tTotalBalance pgtype.Numeric\n}\n\nfunc (q *Queries) FindWallets(ctx context.Context, arg FindWalletsParams) ([]FindWalletsRow, error) {\n\trows, err := q.db.Query(ctx, findWallets, arg.Column1, arg.Column2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []FindWalletsRow\n\tfor rows.Next() {\n\t\tvar i FindWalletsRow\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.Address,\n\t\t\t&i.Balance,\n\t\t\t&i.TotalBalance,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_alias/postgresql/pgx/query.sql",
    "content": "-- name: FindWallets :many\nselect id, address, balance, total_balance from \n(\n\tselect id, address, balance,\n\t  sum(balance) over (order by balance desc rows between unbounded preceding and current row) as total_balance,\n\t  sum(balance) over (order by balance desc rows between unbounded preceding and current row) - balance as last_balance\n\tfrom wallets\n\twhere type=$1\n) amounts\nwhere amounts.last_balance < $2;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_alias/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE IF NOT EXISTS wallets\n(\n    id BIGSERIAL PRIMARY KEY,\n    address VARCHAR(44) NOT NULL,\n    type VARCHAR(44) NOT NULL,\n    balance DECIMAL(32, 18) NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_alias/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA    int32\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst subquery = `-- name: Subquery :many\nSELECT a, name FROM (SELECT a, name FROM foo)\n`\n\nfunc (q *Queries) Subquery(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, subquery)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/mysql/query.sql",
    "content": "-- name: Subquery :many\nSELECT * FROM (SELECT * FROM foo);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/mysql/schema.sql",
    "content": "CREATE TABLE foo (a int not null, name text);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/mysql/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"mysql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/postgres/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/postgres/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA    int32\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/postgres/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst subquery = `-- name: Subquery :many\nSELECT a, name FROM (SELECT a, name FROM foo)\n`\n\nfunc (q *Queries) Subquery(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, subquery)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/postgres/stdlib/query.sql",
    "content": "-- name: Subquery :many\nSELECT * FROM (SELECT * FROM foo);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/postgres/stdlib/schema.sql",
    "content": "CREATE TABLE foo (a int not null, name text);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/postgres/stdlib/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"database/sql\"\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA    int64\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst subquery = `-- name: Subquery :many\nSELECT a, name FROM (SELECT a, name FROM foo)\n`\n\nfunc (q *Queries) Subquery(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, subquery)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.Name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/sqlite/query.sql",
    "content": "-- name: Subquery :many\nSELECT * FROM (SELECT * FROM foo);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/sqlite/schema.sql",
    "content": "CREATE TABLE foo (a int not null, name text);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_subquery_no_alias/sqlite/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"sqlite\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"database/sql\"\n"
  },
  {
    "path": "internal/endtoend/testdata/select_system/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1745\n"
  },
  {
    "path": "internal/endtoend/testdata/select_system/pgx/exec.json",
    "content": "{\n    \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_system/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_system/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Test struct {\n\tID pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_system/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getSystemColumns = `-- name: GetSystemColumns :one\nSELECT\n  tableoid, xmin, cmin, xmax, cmax, ctid\nFROM test\n`\n\ntype GetSystemColumnsRow struct {\n\tTableoid pgtype.Uint32\n\tXmin     pgtype.Uint32\n\tCmin     pgtype.Uint32\n\tXmax     pgtype.Uint32\n\tCmax     pgtype.Uint32\n\tCtid     pgtype.TID\n}\n\nfunc (q *Queries) GetSystemColumns(ctx context.Context) (GetSystemColumnsRow, error) {\n\trow := q.db.QueryRow(ctx, getSystemColumns)\n\tvar i GetSystemColumnsRow\n\terr := row.Scan(\n\t\t&i.Tableoid,\n\t\t&i.Xmin,\n\t\t&i.Cmin,\n\t\t&i.Xmax,\n\t\t&i.Cmax,\n\t\t&i.Ctid,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_system/pgx/query.sql",
    "content": "-- name: GetSystemColumns :one\nSELECT\n  tableoid, xmin, cmin, xmax, cmax, ctid\nFROM test;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_system/pgx/schema.sql",
    "content": "CREATE TABLE test (\n  id INT\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_system/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectTextArray = `-- name: SelectTextArray :many\nSELECT $1::TEXT[]\n`\n\nfunc (q *Queries) SelectTextArray(ctx context.Context, dollar_1 []string) ([][]string, error) {\n\trows, err := q.db.Query(ctx, selectTextArray, dollar_1)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items [][]string\n\tfor rows.Next() {\n\t\tvar column_1 []string\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/pgx/v4/query.sql",
    "content": "-- name: SelectTextArray :many\nSELECT $1::TEXT[];\n"
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/pgx/v4/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectTextArray = `-- name: SelectTextArray :many\nSELECT $1::TEXT[]\n`\n\nfunc (q *Queries) SelectTextArray(ctx context.Context, dollar_1 []string) ([][]string, error) {\n\trows, err := q.db.Query(ctx, selectTextArray, dollar_1)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items [][]string\n\tfor rows.Next() {\n\t\tvar column_1 []string\n\t\tif err := rows.Scan(&column_1); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/pgx/v5/query.sql",
    "content": "-- name: SelectTextArray :many\nSELECT $1::TEXT[];\n"
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/pgx/v5/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/lib/pq\"\n)\n\nconst selectTextArray = `-- name: SelectTextArray :many\nSELECT $1::TEXT[]\n`\n\nfunc (q *Queries) SelectTextArray(ctx context.Context, dollar_1 []string) ([][]string, error) {\n\trows, err := q.db.QueryContext(ctx, selectTextArray, pq.Array(dollar_1))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items [][]string\n\tfor rows.Next() {\n\t\tvar column_1 []string\n\t\tif err := rows.Scan(pq.Array(&column_1)); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, column_1)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/stdlib/query.sql",
    "content": "-- name: SelectTextArray :many\nSELECT $1::TEXT[];\n"
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/stdlib/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/select_text_array/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectExcept = `-- name: SelectExcept :many\nSELECT a, b FROM foo\nEXCEPT\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectExcept(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectExcept)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectIntersect = `-- name: SelectIntersect :many\nSELECT a, b FROM foo\nINTERSECT\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectIntersect(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectIntersect)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnion = `-- name: SelectUnion :many\nSELECT a, b FROM foo\nUNION\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectUnion(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectUnion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnionAliased = `-- name: SelectUnionAliased :many\n(SELECT a, b FROM foo)\nUNION\nSELECT a, b FROM bar\n`\n\nfunc (q *Queries) SelectUnionAliased(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectUnionAliased)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnionOther = `-- name: SelectUnionOther :many\nSELECT a, b FROM foo\nUNION\nSELECT a, b FROM bar\n`\n\nfunc (q *Queries) SelectUnionOther(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectUnionOther)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnionWithLimit = `-- name: SelectUnionWithLimit :many\nSELECT a, b FROM foo\nUNION\nSELECT a, b FROM foo\nLIMIT ? OFFSET ?\n`\n\ntype SelectUnionWithLimitParams struct {\n\tLimit  int32\n\tOffset int32\n}\n\nfunc (q *Queries) SelectUnionWithLimit(ctx context.Context, arg SelectUnionWithLimitParams) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectUnionWithLimit, arg.Limit, arg.Offset)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/mysql/query.sql",
    "content": "-- name: SelectUnion :many\nSELECT * FROM foo\nUNION\nSELECT * FROM foo;\n\n-- name: SelectUnionWithLimit :many\nSELECT * FROM foo\nUNION\nSELECT * FROM foo\nLIMIT ? OFFSET ?;\n\n-- name: SelectExcept :many\nSELECT * FROM foo\nEXCEPT\nSELECT * FROM foo;\n\n-- name: SelectIntersect :many\nSELECT * FROM foo\nINTERSECT\nSELECT * FROM foo;\n\n-- name: SelectUnionOther :many\nSELECT * FROM foo\nUNION\nSELECT * FROM bar;\n\n-- name: SelectUnionAliased :many\n(SELECT * FROM foo)\nUNION\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/mysql/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/pgx/v4/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectExcept = `-- name: SelectExcept :many\nSELECT a, b FROM foo\nEXCEPT\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectExcept(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, selectExcept)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectIntersect = `-- name: SelectIntersect :many\nSELECT a, b FROM foo\nINTERSECT\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectIntersect(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, selectIntersect)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnion = `-- name: SelectUnion :many\nSELECT a, b FROM foo\nUNION\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectUnion(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, selectUnion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnionAliased = `-- name: SelectUnionAliased :many\n(SELECT a, b FROM foo)\nUNION\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectUnionAliased(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, selectUnionAliased)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnionOther = `-- name: SelectUnionOther :many\nSELECT a, b FROM foo\nUNION\nSELECT a, b FROM bar\n`\n\nfunc (q *Queries) SelectUnionOther(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, selectUnionOther)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnionWithLimit = `-- name: SelectUnionWithLimit :many\nSELECT a, b FROM foo\nUNION\nSELECT a, b FROM foo\nLIMIT $1 OFFSET $2\n`\n\ntype SelectUnionWithLimitParams struct {\n\tLimit  int32\n\tOffset int32\n}\n\nfunc (q *Queries) SelectUnionWithLimit(ctx context.Context, arg SelectUnionWithLimitParams) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, selectUnionWithLimit, arg.Limit, arg.Offset)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/pgx/v4/query.sql",
    "content": "-- name: SelectUnion :many\nSELECT * FROM foo\nUNION\nSELECT * FROM foo;\n\n-- name: SelectUnionWithLimit :many\nSELECT * FROM foo\nUNION\nSELECT * FROM foo\nLIMIT $1 OFFSET $2;\n\n-- name: SelectExcept :many\nSELECT * FROM foo\nEXCEPT\nSELECT * FROM foo;\n\n-- name: SelectIntersect :many\nSELECT * FROM foo\nINTERSECT\nSELECT * FROM foo;\n\n-- name: SelectUnionOther :many\nSELECT * FROM foo\nUNION\nSELECT * FROM bar;\n\n-- name: SelectUnionAliased :many\n(SELECT * FROM foo)\nUNION\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/pgx/v5/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Bar struct {\n\tA pgtype.Text\n\tB pgtype.Text\n}\n\ntype Foo struct {\n\tA pgtype.Text\n\tB pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectExcept = `-- name: SelectExcept :many\nSELECT a, b FROM foo\nEXCEPT\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectExcept(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, selectExcept)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectIntersect = `-- name: SelectIntersect :many\nSELECT a, b FROM foo\nINTERSECT\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectIntersect(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, selectIntersect)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnion = `-- name: SelectUnion :many\nSELECT a, b FROM foo\nUNION\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectUnion(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, selectUnion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnionAliased = `-- name: SelectUnionAliased :many\n(SELECT a, b FROM foo)\nUNION\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectUnionAliased(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, selectUnionAliased)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnionOther = `-- name: SelectUnionOther :many\nSELECT a, b FROM foo\nUNION\nSELECT a, b FROM bar\n`\n\nfunc (q *Queries) SelectUnionOther(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, selectUnionOther)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnionWithLimit = `-- name: SelectUnionWithLimit :many\nSELECT a, b FROM foo\nUNION\nSELECT a, b FROM foo\nLIMIT $1 OFFSET $2\n`\n\ntype SelectUnionWithLimitParams struct {\n\tLimit  int32\n\tOffset int32\n}\n\nfunc (q *Queries) SelectUnionWithLimit(ctx context.Context, arg SelectUnionWithLimitParams) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, selectUnionWithLimit, arg.Limit, arg.Offset)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/pgx/v5/query.sql",
    "content": "-- name: SelectUnion :many\nSELECT * FROM foo\nUNION\nSELECT * FROM foo;\n\n-- name: SelectUnionWithLimit :many\nSELECT * FROM foo\nUNION\nSELECT * FROM foo\nLIMIT $1 OFFSET $2;\n\n-- name: SelectExcept :many\nSELECT * FROM foo\nEXCEPT\nSELECT * FROM foo;\n\n-- name: SelectIntersect :many\nSELECT * FROM foo\nINTERSECT\nSELECT * FROM foo;\n\n-- name: SelectUnionOther :many\nSELECT * FROM foo\nUNION\nSELECT * FROM bar;\n\n-- name: SelectUnionAliased :many\n(SELECT * FROM foo)\nUNION\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/stdlib/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectExcept = `-- name: SelectExcept :many\nSELECT a, b FROM foo\nEXCEPT\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectExcept(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectExcept)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectIntersect = `-- name: SelectIntersect :many\nSELECT a, b FROM foo\nINTERSECT\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectIntersect(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectIntersect)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnion = `-- name: SelectUnion :many\nSELECT a, b FROM foo\nUNION\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectUnion(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectUnion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnionAliased = `-- name: SelectUnionAliased :many\n(SELECT a, b FROM foo)\nUNION\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectUnionAliased(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectUnionAliased)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnionOther = `-- name: SelectUnionOther :many\nSELECT a, b FROM foo\nUNION\nSELECT a, b FROM bar\n`\n\nfunc (q *Queries) SelectUnionOther(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectUnionOther)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnionWithLimit = `-- name: SelectUnionWithLimit :many\nSELECT a, b FROM foo\nUNION\nSELECT a, b FROM foo\nLIMIT $1 OFFSET $2\n`\n\ntype SelectUnionWithLimitParams struct {\n\tLimit  int32\n\tOffset int32\n}\n\nfunc (q *Queries) SelectUnionWithLimit(ctx context.Context, arg SelectUnionWithLimitParams) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectUnionWithLimit, arg.Limit, arg.Offset)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/stdlib/query.sql",
    "content": "-- name: SelectUnion :many\nSELECT * FROM foo\nUNION\nSELECT * FROM foo;\n\n-- name: SelectUnionWithLimit :many\nSELECT * FROM foo\nUNION\nSELECT * FROM foo\nLIMIT $1 OFFSET $2;\n\n-- name: SelectExcept :many\nSELECT * FROM foo\nEXCEPT\nSELECT * FROM foo;\n\n-- name: SelectIntersect :many\nSELECT * FROM foo\nINTERSECT\nSELECT * FROM foo;\n\n-- name: SelectUnionOther :many\nSELECT * FROM foo\nUNION\nSELECT * FROM bar;\n\n-- name: SelectUnionAliased :many\n(SELECT * FROM foo)\nUNION\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/stdlib/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/postgres/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectExcept = `-- name: SelectExcept :many\nSELECT a, b FROM foo\nEXCEPT\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectExcept(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectExcept)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectIntersect = `-- name: SelectIntersect :many\nSELECT a, b FROM foo\nINTERSECT\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectIntersect(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectIntersect)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnion = `-- name: SelectUnion :many\nSELECT a, b FROM foo\nUNION\nSELECT a, b FROM foo\n`\n\nfunc (q *Queries) SelectUnion(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectUnion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnionOther = `-- name: SelectUnionOther :many\nSELECT a, b FROM foo\nUNION\nSELECT a, b FROM bar\n`\n\nfunc (q *Queries) SelectUnionOther(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectUnionOther)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectUnionWithLimit = `-- name: SelectUnionWithLimit :many\nSELECT a, b FROM foo\nUNION\nSELECT a, b FROM foo\nLIMIT ? OFFSET ?\n`\n\ntype SelectUnionWithLimitParams struct {\n\tLimit  int64\n\tOffset int64\n}\n\nfunc (q *Queries) SelectUnionWithLimit(ctx context.Context, arg SelectUnionWithLimitParams) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, selectUnionWithLimit, arg.Limit, arg.Offset)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/sqlite/query.sql",
    "content": "-- name: SelectUnion :many\nSELECT * FROM foo\nUNION\nSELECT * FROM foo;\n\n-- name: SelectUnionWithLimit :many\nSELECT * FROM foo\nUNION\nSELECT * FROM foo\nLIMIT ? OFFSET ?;\n\n-- name: SelectExcept :many\nSELECT * FROM foo\nEXCEPT\nSELECT * FROM foo;\n\n-- name: SelectIntersect :many\nSELECT * FROM foo\nINTERSECT\nSELECT * FROM foo;\n\n-- name: SelectUnionOther :many\nSELECT * FROM foo\nUNION\nSELECT * FROM bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/sqlite/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union_subquery/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/2260\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union_subquery/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union_subquery/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int32\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union_subquery/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst testSubqueryUnion = `-- name: TestSubqueryUnion :many\nSELECT tmp.id, tmp.name, tmp.bio FROM (\n  SELECT id, name, bio FROM authors\n  UNION\n  SELECT id, name, bio FROM authors\n) tmp LIMIT 5\n`\n\nfunc (q *Queries) TestSubqueryUnion(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, testSubqueryUnion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union_subquery/mysql/query.sql",
    "content": "-- name: TestSubqueryUnion :many\nSELECT tmp.* FROM (\n  SELECT * FROM authors\n  UNION\n  SELECT * FROM authors\n) tmp LIMIT 5;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union_subquery/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n  id   int PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union_subquery/mysql/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"mysql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union_subquery/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union_subquery/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int32\n\tName string\n\tBio  pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union_subquery/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst testSubqueryUnion = `-- name: TestSubqueryUnion :many\nSELECT tmp.id, tmp.name, tmp.bio FROM (\n  SELECT id, name, bio FROM authors\n  UNION\n  SELECT id, name, bio FROM authors\n) tmp LIMIT 5\n`\n\nfunc (q *Queries) TestSubqueryUnion(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.Query(ctx, testSubqueryUnion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union_subquery/postgresql/query.sql",
    "content": "-- name: TestSubqueryUnion :many\nSELECT tmp.* FROM (\n  SELECT * FROM authors\n  UNION\n  SELECT * FROM authors\n) tmp LIMIT 5;\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union_subquery/postgresql/schema.sql",
    "content": "CREATE TABLE authors (\n  id   int PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/select_union_subquery/postgresql/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/selectstatic/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/selectstatic/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/selectstatic/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst selectStatic = `-- name: SelectStatic :one\nSELECT 'a', 'b' AS b, 1 AS num, true AS truefield, 1.0 AS floater\n`\n\ntype SelectStaticRow struct {\n\tColumn1   string\n\tB         string\n\tNum       int32\n\tTruefield int32\n\tFloater   float64\n}\n\nfunc (q *Queries) SelectStatic(ctx context.Context) (SelectStaticRow, error) {\n\trow := q.db.QueryRowContext(ctx, selectStatic)\n\tvar i SelectStaticRow\n\terr := row.Scan(\n\t\t&i.Column1,\n\t\t&i.B,\n\t\t&i.Num,\n\t\t&i.Truefield,\n\t\t&i.Floater,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/selectstatic/mysql/query.sql",
    "content": "-- name: SelectStatic :one\nSELECT 'a', 'b' AS b, 1 AS num, true AS truefield, 1.0 AS floater\n"
  },
  {
    "path": "internal/endtoend/testdata/selectstatic/mysql/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/selectstatic/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"sql_package\": \"database/sql\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/show_warnings/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/show_warnings/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/show_warnings/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst showWarnings = `-- name: ShowWarnings :many\nSHOW WARNINGS\n`\n\ntype ShowWarningsRow struct {\n\tLevel   string\n\tCode    int32\n\tMessage string\n}\n\nfunc (q *Queries) ShowWarnings(ctx context.Context) ([]ShowWarningsRow, error) {\n\trows, err := q.db.QueryContext(ctx, showWarnings)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ShowWarningsRow\n\tfor rows.Next() {\n\t\tvar i ShowWarningsRow\n\t\tif err := rows.Scan(&i.Level, &i.Code, &i.Message); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/show_warnings/mysql/query.sql",
    "content": "-- name: ShowWarnings :many\nSHOW WARNINGS;\n"
  },
  {
    "path": "internal/endtoend/testdata/show_warnings/mysql/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/show_warnings/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype User struct {\n\tSub string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAuthorByID = `-- name: GetAuthorByID :one\nSELECT  id, name, bio\nFROM    authors\nWHERE   id = ?\nLIMIT   1\n`\n\nfunc (q *Queries) GetAuthorByID(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthorByID, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst getAuthorIDByID = `-- name: GetAuthorIDByID :one\nSELECT  id\nFROM    authors\nWHERE   id = ?\nLIMIT   1\n`\n\nfunc (q *Queries) GetAuthorIDByID(ctx context.Context, id int64) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthorIDByID, id)\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst getUser = `-- name: GetUser :one\nSELECT  sub\nFROM    users\nWHERE   sub = ?\nLIMIT   1\n`\n\nfunc (q *Queries) GetUser(ctx context.Context, sub string) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getUser, sub)\n\terr := row.Scan(&sub)\n\treturn sub, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/mysql/query.sql",
    "content": "-- name: GetAuthorIDByID :one\nSELECT  id\nFROM    authors\nWHERE   id = ?\nLIMIT   1;\n\n-- name: GetAuthorByID :one\nSELECT  id, name, bio\nFROM    authors\nWHERE   id = ?\nLIMIT   1;\n\n-- name: GetUser :one\nSELECT  sub\nFROM    users\nWHERE   sub = ?\nLIMIT   1;\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/mysql/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   BIGINT PRIMARY KEY,\n  name TEXT      NOT NULL,\n  bio  text\n);\n\n-- https://github.com/sqlc-dev/sqlc/issues/1290\nCREATE TABLE users (\n  sub VARCHAR(10) PRIMARY KEY\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"path\": \"go\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\n\t\"github.com/google/uuid\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype User struct {\n\tSub uuid.UUID\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/google/uuid\"\n)\n\nconst getAuthorByID = `-- name: GetAuthorByID :one\nSELECT  id, name, bio\nFROM    authors\nWHERE   id = $1\nLIMIT   1\n`\n\nfunc (q *Queries) GetAuthorByID(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRow(ctx, getAuthorByID, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst getAuthorIDByID = `-- name: GetAuthorIDByID :one\nSELECT  id\nFROM    authors\nWHERE   id = $1\nLIMIT   1\n`\n\nfunc (q *Queries) GetAuthorIDByID(ctx context.Context, id int64) (int64, error) {\n\trow := q.db.QueryRow(ctx, getAuthorIDByID, id)\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst getUser = `-- name: GetUser :one\nSELECT  sub\nFROM    users\nWHERE   sub = $1\nLIMIT   1\n`\n\nfunc (q *Queries) GetUser(ctx context.Context, sub uuid.UUID) (uuid.UUID, error) {\n\trow := q.db.QueryRow(ctx, getUser, sub)\n\terr := row.Scan(&sub)\n\treturn sub, err\n}\n\nconst setDefaultName = `-- name: SetDefaultName :one\n\nUPDATE  authors\nSET     name = 'Default Name'\nWHERE   id = $1\nRETURNING id\n`\n\n// https://github.com/sqlc-dev/sqlc/issues/1235\nfunc (q *Queries) SetDefaultName(ctx context.Context, id int64) (int64, error) {\n\trow := q.db.QueryRow(ctx, setDefaultName, id)\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetAuthorIDByID :one\nSELECT  id\nFROM    authors\nWHERE   id = $1\nLIMIT   1;\n\n-- name: GetAuthorByID :one\nSELECT  id, name, bio\nFROM    authors\nWHERE   id = $1\nLIMIT   1;\n\n-- name: GetUser :one\nSELECT  sub\nFROM    users\nWHERE   sub = $1\nLIMIT   1;\n\n-- https://github.com/sqlc-dev/sqlc/issues/1235\n\n-- name: SetDefaultName :one\nUPDATE  authors\nSET     name = 'Default Name'\nWHERE   id = $1\nRETURNING id;\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v4/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name TEXT      NOT NULL,\n  bio  text\n);\n\n-- https://github.com/sqlc-dev/sqlc/issues/1290\nCREATE TABLE users (\n  sub UUID PRIMARY KEY\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v4/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"engine\": \"postgresql\",\n\t\t\t\"sql_package\": \"pgx/v4\",\n\t\t\t\"path\": \"go\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n\ntype User struct {\n\tSub pgtype.UUID\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getAuthorByID = `-- name: GetAuthorByID :one\nSELECT  id, name, bio\nFROM    authors\nWHERE   id = $1\nLIMIT   1\n`\n\nfunc (q *Queries) GetAuthorByID(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRow(ctx, getAuthorByID, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst getAuthorIDByID = `-- name: GetAuthorIDByID :one\nSELECT  id\nFROM    authors\nWHERE   id = $1\nLIMIT   1\n`\n\nfunc (q *Queries) GetAuthorIDByID(ctx context.Context, id int64) (int64, error) {\n\trow := q.db.QueryRow(ctx, getAuthorIDByID, id)\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst getUser = `-- name: GetUser :one\nSELECT  sub\nFROM    users\nWHERE   sub = $1\nLIMIT   1\n`\n\nfunc (q *Queries) GetUser(ctx context.Context, sub pgtype.UUID) (pgtype.UUID, error) {\n\trow := q.db.QueryRow(ctx, getUser, sub)\n\terr := row.Scan(&sub)\n\treturn sub, err\n}\n\nconst setDefaultName = `-- name: SetDefaultName :one\n\nUPDATE  authors\nSET     name = 'Default Name'\nWHERE   id = $1\nRETURNING id\n`\n\n// https://github.com/sqlc-dev/sqlc/issues/1235\nfunc (q *Queries) SetDefaultName(ctx context.Context, id int64) (int64, error) {\n\trow := q.db.QueryRow(ctx, setDefaultName, id)\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetAuthorIDByID :one\nSELECT  id\nFROM    authors\nWHERE   id = $1\nLIMIT   1;\n\n-- name: GetAuthorByID :one\nSELECT  id, name, bio\nFROM    authors\nWHERE   id = $1\nLIMIT   1;\n\n-- name: GetUser :one\nSELECT  sub\nFROM    users\nWHERE   sub = $1\nLIMIT   1;\n\n-- https://github.com/sqlc-dev/sqlc/issues/1235\n\n-- name: SetDefaultName :one\nUPDATE  authors\nSET     name = 'Default Name'\nWHERE   id = $1\nRETURNING id;\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v5/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name TEXT      NOT NULL,\n  bio  text\n);\n\n-- https://github.com/sqlc-dev/sqlc/issues/1290\nCREATE TABLE users (\n  sub UUID PRIMARY KEY\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/pgx/v5/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"engine\": \"postgresql\",\n\t\t\t\"sql_package\": \"pgx/v5\",\n\t\t\t\"path\": \"go\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\n\t\"github.com/google/uuid\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype User struct {\n\tSub uuid.UUID\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/google/uuid\"\n)\n\nconst getAuthorByID = `-- name: GetAuthorByID :one\nSELECT  id, name, bio\nFROM    authors\nWHERE   id = $1\nLIMIT   1\n`\n\nfunc (q *Queries) GetAuthorByID(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthorByID, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst getAuthorIDByID = `-- name: GetAuthorIDByID :one\nSELECT  id\nFROM    authors\nWHERE   id = $1\nLIMIT   1\n`\n\nfunc (q *Queries) GetAuthorIDByID(ctx context.Context, id int64) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthorIDByID, id)\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst getUser = `-- name: GetUser :one\nSELECT  sub\nFROM    users\nWHERE   sub = $1\nLIMIT   1\n`\n\nfunc (q *Queries) GetUser(ctx context.Context, sub uuid.UUID) (uuid.UUID, error) {\n\trow := q.db.QueryRowContext(ctx, getUser, sub)\n\terr := row.Scan(&sub)\n\treturn sub, err\n}\n\nconst setDefaultName = `-- name: SetDefaultName :one\n\nUPDATE  authors\nSET     name = 'Default Name'\nWHERE   id = $1\nRETURNING id\n`\n\n// https://github.com/sqlc-dev/sqlc/issues/1235\nfunc (q *Queries) SetDefaultName(ctx context.Context, id int64) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, setDefaultName, id)\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/stdlib/query.sql",
    "content": "-- name: GetAuthorIDByID :one\nSELECT  id\nFROM    authors\nWHERE   id = $1\nLIMIT   1;\n\n-- name: GetAuthorByID :one\nSELECT  id, name, bio\nFROM    authors\nWHERE   id = $1\nLIMIT   1;\n\n-- name: GetUser :one\nSELECT  sub\nFROM    users\nWHERE   sub = $1\nLIMIT   1;\n\n-- https://github.com/sqlc-dev/sqlc/issues/1235\n\n-- name: SetDefaultName :one\nUPDATE  authors\nSET     name = 'Default Name'\nWHERE   id = $1\nRETURNING id;\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/stdlib/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name TEXT      NOT NULL,\n  bio  text\n);\n\n-- https://github.com/sqlc-dev/sqlc/issues/1290\nCREATE TABLE users (\n  sub UUID PRIMARY KEY\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/postgresql/stdlib/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"engine\": \"postgresql\",\n\t\t\t\"path\": \"go\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype User struct {\n\tSub string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAuthorByID = `-- name: GetAuthorByID :one\nSELECT  id, name, bio\nFROM    authors\nWHERE   id = ?\nLIMIT   1\n`\n\nfunc (q *Queries) GetAuthorByID(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthorByID, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n\nconst getAuthorIDByID = `-- name: GetAuthorIDByID :one\nSELECT  id\nFROM    authors\nWHERE   id = ?\nLIMIT   1\n`\n\nfunc (q *Queries) GetAuthorIDByID(ctx context.Context, id int64) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthorIDByID, id)\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst getUser = `-- name: GetUser :one\nSELECT  sub\nFROM    users\nWHERE   sub = ?\nLIMIT   1\n`\n\nfunc (q *Queries) GetUser(ctx context.Context, sub string) (string, error) {\n\trow := q.db.QueryRowContext(ctx, getUser, sub)\n\terr := row.Scan(&sub)\n\treturn sub, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/sqlite/query.sql",
    "content": "-- name: GetAuthorIDByID :one\nSELECT  id\nFROM    authors\nWHERE   id = ?\nLIMIT   1;\n\n-- name: GetAuthorByID :one\nSELECT  id, name, bio\nFROM    authors\nWHERE   id = ?\nLIMIT   1;\n\n-- name: GetUser :one\nSELECT  sub\nFROM    users\nWHERE   sub = ?\nLIMIT   1;\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/sqlite/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE authors (\n  id   BIGINT PRIMARY KEY,\n  name TEXT      NOT NULL,\n  bio  text\n);\n\n-- https://github.com/sqlc-dev/sqlc/issues/1290\nCREATE TABLE users (\n  sub TEXT PRIMARY KEY\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/single_param_conflict/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst mixedNotation = `-- name: MixedNotation :one\nSELECT concat_lower_or_upper('Hello', 'World', uppercase => true)\n`\n\nfunc (q *Queries) MixedNotation(ctx context.Context) (string, error) {\n\trow := q.db.QueryRow(ctx, mixedNotation)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n\nconst namedAnyOrder = `-- name: NamedAnyOrder :one\nSELECT concat_lower_or_upper(a => 'Hello', b => 'World', uppercase => true)\n`\n\nfunc (q *Queries) NamedAnyOrder(ctx context.Context) (string, error) {\n\trow := q.db.QueryRow(ctx, namedAnyOrder)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n\nconst namedNotation = `-- name: NamedNotation :one\nSELECT concat_lower_or_upper(a => 'Hello', b => 'World')\n`\n\nfunc (q *Queries) NamedNotation(ctx context.Context) (string, error) {\n\trow := q.db.QueryRow(ctx, namedNotation)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n\nconst namedOtherOrder = `-- name: NamedOtherOrder :one\nSELECT concat_lower_or_upper(a => 'Hello', uppercase => true, b => 'World')\n`\n\nfunc (q *Queries) NamedOtherOrder(ctx context.Context) (string, error) {\n\trow := q.db.QueryRow(ctx, namedOtherOrder)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n\nconst positionalNoDefaault = `-- name: PositionalNoDefaault :one\nSELECT concat_lower_or_upper('Hello', 'World')\n`\n\nfunc (q *Queries) PositionalNoDefaault(ctx context.Context) (string, error) {\n\trow := q.db.QueryRow(ctx, positionalNoDefaault)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n\nconst positionalNotation = `-- name: PositionalNotation :one\nSELECT concat_lower_or_upper('Hello', 'World', true)\n`\n\nfunc (q *Queries) PositionalNotation(ctx context.Context) (string, error) {\n\trow := q.db.QueryRow(ctx, positionalNotation)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v4/query.sql",
    "content": "-- name: PositionalNotation :one\nSELECT concat_lower_or_upper('Hello', 'World', true);\n\n-- name: PositionalNoDefaault :one\nSELECT concat_lower_or_upper('Hello', 'World');\n\n-- name: NamedNotation :one\nSELECT concat_lower_or_upper(a => 'Hello', b => 'World');\n\n-- name: NamedAnyOrder :one\nSELECT concat_lower_or_upper(a => 'Hello', b => 'World', uppercase => true);\n\n-- name: NamedOtherOrder :one\nSELECT concat_lower_or_upper(a => 'Hello', uppercase => true, b => 'World');\n\n-- name: MixedNotation :one\nSELECT concat_lower_or_upper('Hello', 'World', uppercase => true);\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v4/schema.sql",
    "content": "-- https://www.postgresql.org/docs/current/sql-syntax-calling-funcs.html\nCREATE FUNCTION concat_lower_or_upper(a text, b text, uppercase boolean DEFAULT false)\nRETURNS text\nAS\n$$\n SELECT CASE\n        WHEN $3 THEN UPPER($1 || ' ' || $2)\n        ELSE LOWER($1 || ' ' || $2)\n        END;\n$$\nLANGUAGE SQL IMMUTABLE STRICT;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst mixedNotation = `-- name: MixedNotation :one\nSELECT concat_lower_or_upper('Hello', 'World', uppercase => true)\n`\n\nfunc (q *Queries) MixedNotation(ctx context.Context) (string, error) {\n\trow := q.db.QueryRow(ctx, mixedNotation)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n\nconst namedAnyOrder = `-- name: NamedAnyOrder :one\nSELECT concat_lower_or_upper(a => 'Hello', b => 'World', uppercase => true)\n`\n\nfunc (q *Queries) NamedAnyOrder(ctx context.Context) (string, error) {\n\trow := q.db.QueryRow(ctx, namedAnyOrder)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n\nconst namedNotation = `-- name: NamedNotation :one\nSELECT concat_lower_or_upper(a => 'Hello', b => 'World')\n`\n\nfunc (q *Queries) NamedNotation(ctx context.Context) (string, error) {\n\trow := q.db.QueryRow(ctx, namedNotation)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n\nconst namedOtherOrder = `-- name: NamedOtherOrder :one\nSELECT concat_lower_or_upper(a => 'Hello', uppercase => true, b => 'World')\n`\n\nfunc (q *Queries) NamedOtherOrder(ctx context.Context) (string, error) {\n\trow := q.db.QueryRow(ctx, namedOtherOrder)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n\nconst positionalNoDefaault = `-- name: PositionalNoDefaault :one\nSELECT concat_lower_or_upper('Hello', 'World')\n`\n\nfunc (q *Queries) PositionalNoDefaault(ctx context.Context) (string, error) {\n\trow := q.db.QueryRow(ctx, positionalNoDefaault)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n\nconst positionalNotation = `-- name: PositionalNotation :one\nSELECT concat_lower_or_upper('Hello', 'World', true)\n`\n\nfunc (q *Queries) PositionalNotation(ctx context.Context) (string, error) {\n\trow := q.db.QueryRow(ctx, positionalNotation)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v5/query.sql",
    "content": "-- name: PositionalNotation :one\nSELECT concat_lower_or_upper('Hello', 'World', true);\n\n-- name: PositionalNoDefaault :one\nSELECT concat_lower_or_upper('Hello', 'World');\n\n-- name: NamedNotation :one\nSELECT concat_lower_or_upper(a => 'Hello', b => 'World');\n\n-- name: NamedAnyOrder :one\nSELECT concat_lower_or_upper(a => 'Hello', b => 'World', uppercase => true);\n\n-- name: NamedOtherOrder :one\nSELECT concat_lower_or_upper(a => 'Hello', uppercase => true, b => 'World');\n\n-- name: MixedNotation :one\nSELECT concat_lower_or_upper('Hello', 'World', uppercase => true);\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v5/schema.sql",
    "content": "-- https://www.postgresql.org/docs/current/sql-syntax-calling-funcs.html\nCREATE FUNCTION concat_lower_or_upper(a text, b text, uppercase boolean DEFAULT false)\nRETURNS text\nAS\n$$\n SELECT CASE\n        WHEN $3 THEN UPPER($1 || ' ' || $2)\n        ELSE LOWER($1 || ' ' || $2)\n        END;\n$$\nLANGUAGE SQL IMMUTABLE STRICT;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst mixedNotation = `-- name: MixedNotation :one\nSELECT concat_lower_or_upper('Hello', 'World', uppercase => true)\n`\n\nfunc (q *Queries) MixedNotation(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, mixedNotation)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n\nconst namedAnyOrder = `-- name: NamedAnyOrder :one\nSELECT concat_lower_or_upper(a => 'Hello', b => 'World', uppercase => true)\n`\n\nfunc (q *Queries) NamedAnyOrder(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, namedAnyOrder)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n\nconst namedNotation = `-- name: NamedNotation :one\nSELECT concat_lower_or_upper(a => 'Hello', b => 'World')\n`\n\nfunc (q *Queries) NamedNotation(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, namedNotation)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n\nconst namedOtherOrder = `-- name: NamedOtherOrder :one\nSELECT concat_lower_or_upper(a => 'Hello', uppercase => true, b => 'World')\n`\n\nfunc (q *Queries) NamedOtherOrder(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, namedOtherOrder)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n\nconst positionalNoDefaault = `-- name: PositionalNoDefaault :one\nSELECT concat_lower_or_upper('Hello', 'World')\n`\n\nfunc (q *Queries) PositionalNoDefaault(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, positionalNoDefaault)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n\nconst positionalNotation = `-- name: PositionalNotation :one\nSELECT concat_lower_or_upper('Hello', 'World', true)\n`\n\nfunc (q *Queries) PositionalNotation(ctx context.Context) (string, error) {\n\trow := q.db.QueryRowContext(ctx, positionalNotation)\n\tvar concat_lower_or_upper string\n\terr := row.Scan(&concat_lower_or_upper)\n\treturn concat_lower_or_upper, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/stdlib/query.sql",
    "content": "-- name: PositionalNotation :one\nSELECT concat_lower_or_upper('Hello', 'World', true);\n\n-- name: PositionalNoDefaault :one\nSELECT concat_lower_or_upper('Hello', 'World');\n\n-- name: NamedNotation :one\nSELECT concat_lower_or_upper(a => 'Hello', b => 'World');\n\n-- name: NamedAnyOrder :one\nSELECT concat_lower_or_upper(a => 'Hello', b => 'World', uppercase => true);\n\n-- name: NamedOtherOrder :one\nSELECT concat_lower_or_upper(a => 'Hello', uppercase => true, b => 'World');\n\n-- name: MixedNotation :one\nSELECT concat_lower_or_upper('Hello', 'World', uppercase => true);\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/stdlib/schema.sql",
    "content": "-- https://www.postgresql.org/docs/current/sql-syntax-calling-funcs.html\nCREATE FUNCTION concat_lower_or_upper(a text, b text, uppercase boolean DEFAULT false)\nRETURNS text\nAS\n$$\n SELECT CASE\n        WHEN $3 THEN UPPER($1 || ' ' || $2)\n        ELSE LOWER($1 || ' ' || $2)\n        END;\n$$\nLANGUAGE SQL IMMUTABLE STRICT;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sql_syntax_calling_funcs/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst complicated = `-- name: Complicated :many\nWITH names AS (SELECT name from foo WHERE foo.name = ?)\nSELECT name FROM names WHERE name IN (SELECT name FROM foo WHERE foo.name = ?)\n`\n\ntype ComplicatedParams struct {\n\tSlug string\n}\n\nfunc (q *Queries) Complicated(ctx context.Context, arg ComplicatedParams) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, complicated, arg.Slug, arg.Slug)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParamIdent = `-- name: FuncParamIdent :many\nSELECT name FROM foo WHERE name = ?\n`\n\nfunc (q *Queries) FuncParamIdent(ctx context.Context, slug string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, funcParamIdent, slug)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParamString = `-- name: FuncParamString :many\nSELECT name FROM foo WHERE name = ?\n`\n\nfunc (q *Queries) FuncParamString(ctx context.Context, slug string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, funcParamString, slug)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/mysql/query.sql",
    "content": "/* name: FuncParamIdent :many */\nSELECT name FROM foo WHERE name = sqlc.arg(slug);\n\n/* name: FuncParamString :many */\nSELECT name FROM foo WHERE name = sqlc.arg('slug');\n\n/* name: Complicated :many */\nWITH names AS (SELECT name from foo WHERE foo.name = sqlc.arg('slug'))\nSELECT name FROM names WHERE name IN (SELECT name FROM foo WHERE foo.name = sqlc.arg('slug'));\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/mysql/schema.sql",
    "content": "CREATE TABLE foo (name text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst funcParamIdent = `-- name: FuncParamIdent :many\nSELECT name FROM foo WHERE name = $1\n`\n\nfunc (q *Queries) FuncParamIdent(ctx context.Context, slug string) ([]string, error) {\n\trows, err := q.db.Query(ctx, funcParamIdent, slug)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParamString = `-- name: FuncParamString :many\nSELECT name FROM foo WHERE name = $1\n`\n\nfunc (q *Queries) FuncParamString(ctx context.Context, slug string) ([]string, error) {\n\trows, err := q.db.Query(ctx, funcParamString, slug)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v4/query.sql",
    "content": "-- name: FuncParamIdent :many\nSELECT name FROM foo WHERE name = sqlc.arg(slug);\n\n-- name: FuncParamString :many\nSELECT name FROM foo WHERE name = sqlc.arg('slug');\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (name text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst funcParamIdent = `-- name: FuncParamIdent :many\nSELECT name FROM foo WHERE name = $1\n`\n\nfunc (q *Queries) FuncParamIdent(ctx context.Context, slug string) ([]string, error) {\n\trows, err := q.db.Query(ctx, funcParamIdent, slug)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParamString = `-- name: FuncParamString :many\nSELECT name FROM foo WHERE name = $1\n`\n\nfunc (q *Queries) FuncParamString(ctx context.Context, slug string) ([]string, error) {\n\trows, err := q.db.Query(ctx, funcParamString, slug)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v5/query.sql",
    "content": "-- name: FuncParamIdent :many\nSELECT name FROM foo WHERE name = sqlc.arg(slug);\n\n-- name: FuncParamString :many\nSELECT name FROM foo WHERE name = sqlc.arg('slug');\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (name text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst funcParamIdent = `-- name: FuncParamIdent :many\nSELECT name FROM foo WHERE name = $1\n`\n\nfunc (q *Queries) FuncParamIdent(ctx context.Context, slug string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, funcParamIdent, slug)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParamString = `-- name: FuncParamString :many\nSELECT name FROM foo WHERE name = $1\n`\n\nfunc (q *Queries) FuncParamString(ctx context.Context, slug string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, funcParamString, slug)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/stdlib/query.sql",
    "content": "-- name: FuncParamIdent :many\nSELECT name FROM foo WHERE name = sqlc.arg(slug);\n\n-- name: FuncParamString :many\nSELECT name FROM foo WHERE name = sqlc.arg('slug');\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (name text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst funcParamIdent = `-- name: FuncParamIdent :many\nSELECT name FROM foo WHERE name = ?1\n`\n\nfunc (q *Queries) FuncParamIdent(ctx context.Context, slug string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, funcParamIdent, slug)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParamString = `-- name: FuncParamString :many\nSELECT name FROM foo WHERE name = ?1\n`\n\nfunc (q *Queries) FuncParamString(ctx context.Context, slug string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, funcParamString, slug)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/sqlite/query.sql",
    "content": "/* name: FuncParamIdent :many */\nSELECT name FROM foo WHERE name = sqlc.arg(slug);\n\n/* name: FuncParamString :many */\nSELECT name FROM foo WHERE name = sqlc.arg('slug');\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/sqlite/schema.sql",
    "content": "CREATE TABLE foo (name text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg_invalid/mysql/query.sql",
    "content": "-- name: WrongFunc :one\nselect id, first_name from users where id = sqlc.argh(target_id);\n\n-- name: TooManyArgs :one\nselect id, first_name from users where id = sqlc.arg('foo', 'bar');\n\n-- name: TooFewArgs :one\nselect id, first_name from users where id = sqlc.arg();\n\n-- name: InvalidArgFunc :one\nselect id, first_name from users where id = sqlc.arg(sqlc.arg(target_id));\n\n-- name: InvalidArgPlaceholder :one\nselect id, first_name from users where id = sqlc.arg(?);\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg_invalid/mysql/schema.sql",
    "content": "CREATE TABLE users (\n    id         serial,\n    first_name text not null\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg_invalid/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"mysql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg_invalid/mysql/stderr.txt",
    "content": "# package querytest\nquery.sql:1:1: function \"sqlc.argh\" does not exist\nquery.sql:5:45: expected 1 parameter to sqlc.arg; got 2\nquery.sql:8:45: expected 1 parameter to sqlc.arg; got 0\nquery.sql:11:45: expected parameter to sqlc.arg to be string or reference; got *ast.FuncCall\nquery.sql:14:45: expected parameter to sqlc.arg to be string or reference; got *ast.ParamRef\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg_invalid/postgresql/query.sql",
    "content": "-- name: WrongFunc :one\nselect id, first_name from users where id = sqlc.argh(target_id);\n\n-- name: TooManyArgs :one\nselect id, first_name from users where id = sqlc.arg('foo', 'bar');\n\n-- name: TooFewArgs :one\nselect id, first_name from users where id = sqlc.arg();\n\n-- name: InvalidArgFunc :one\nselect id, first_name from users where id = sqlc.arg(sqlc.arg(target_id));\n\n-- name: InvalidArgPlaceholder :one\nselect id, first_name from users where id = sqlc.arg($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg_invalid/postgresql/schema.sql",
    "content": "CREATE TABLE users (\n    id         serial,\n    first_name text not null\n);"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg_invalid/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg_invalid/postgresql/stderr.txt",
    "content": "# package querytest\nquery.sql:1:1: function \"sqlc.argh\" does not exist\nquery.sql:5:45: expected 1 parameter to sqlc.arg; got 2\nquery.sql:8:45: expected 1 parameter to sqlc.arg; got 0\nquery.sql:11:45: expected parameter to sqlc.arg to be string or reference; got *ast.FuncCall\nquery.sql:14:45: expected parameter to sqlc.arg to be string or reference; got *ast.ParamRef\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg_invalid/sqlite/query.sql",
    "content": "CREATE TABLE users (\n    id         serial,\n    first_name text not null\n);\n\n-- name: WrongFunc :one\nselect id, first_name from users where id = sqlc.argh(target_id);\n\n-- name: TooManyArgs :one\nselect id, first_name from users where id = sqlc.arg('foo', 'bar');\n\n-- name: TooFewArgs :one\nselect id, first_name from users where id = sqlc.arg();\n\n-- name: InvalidArgFunc :one\nselect id, first_name from users where id = sqlc.arg(sqlc.arg(target_id));\n\n-- name: InvalidArgPlaceholder :one\nselect id, first_name from users where id = sqlc.arg(?);\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg_invalid/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"query.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"sqlite\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_arg_invalid/sqlite/stderr.txt",
    "content": "# package querytest\nquery.sql:7:1: function \"sqlc.argh\" does not exist\nquery.sql:10:45: expected 1 parameter to sqlc.arg; got 2\nquery.sql:13:45: expected 1 parameter to sqlc.arg; got 0\nquery.sql:16:45: expected parameter to sqlc.arg to be string or reference; got *ast.FuncCall\nquery.sql:19:45: expected parameter to sqlc.arg to be string or reference; got *ast.ParamRef\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/mysql/exec.json",
    "content": "{\n    \"contexts\": [\"base\"],\n    \"meta\": {\n        \"invalid_schema\": true\n    }\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype BazUser struct {\n\tID   int32\n\tName string\n}\n\ntype Post struct {\n\tID     int32\n\tUserID int32\n}\n\ntype User struct {\n\tID   int32\n\tName string\n\tAge  sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst duplicate = `-- name: Duplicate :one\nSELECT users.id, users.name, users.age, users.id, users.name, users.age FROM users\n`\n\ntype DuplicateRow struct {\n\tUser   User\n\tUser_2 User\n}\n\nfunc (q *Queries) Duplicate(ctx context.Context) (DuplicateRow, error) {\n\trow := q.db.QueryRowContext(ctx, duplicate)\n\tvar i DuplicateRow\n\terr := row.Scan(\n\t\t&i.User.ID,\n\t\t&i.User.Name,\n\t\t&i.User.Age,\n\t\t&i.User_2.ID,\n\t\t&i.User_2.Name,\n\t\t&i.User_2.Age,\n\t)\n\treturn i, err\n}\n\nconst join = `-- name: Join :one\nSELECT users.id, users.name, users.age, posts.id, posts.user_id FROM posts\nINNER JOIN users ON posts.user_id = users.id\n`\n\ntype JoinRow struct {\n\tUser User\n\tPost Post\n}\n\nfunc (q *Queries) Join(ctx context.Context) (JoinRow, error) {\n\trow := q.db.QueryRowContext(ctx, join)\n\tvar i JoinRow\n\terr := row.Scan(\n\t\t&i.User.ID,\n\t\t&i.User.Name,\n\t\t&i.User.Age,\n\t\t&i.Post.ID,\n\t\t&i.Post.UserID,\n\t)\n\treturn i, err\n}\n\nconst only = `-- name: Only :one\nSELECT users.id, users.name, users.age FROM users\n`\n\ntype OnlyRow struct {\n\tUser User\n}\n\nfunc (q *Queries) Only(ctx context.Context) (OnlyRow, error) {\n\trow := q.db.QueryRowContext(ctx, only)\n\tvar i OnlyRow\n\terr := row.Scan(&i.User.ID, &i.User.Name, &i.User.Age)\n\treturn i, err\n}\n\nconst withAlias = `-- name: WithAlias :one\nSELECT u.id, u.name, u.age FROM users u\n`\n\ntype WithAliasRow struct {\n\tUser User\n}\n\nfunc (q *Queries) WithAlias(ctx context.Context) (WithAliasRow, error) {\n\trow := q.db.QueryRowContext(ctx, withAlias)\n\tvar i WithAliasRow\n\terr := row.Scan(&i.User.ID, &i.User.Name, &i.User.Age)\n\treturn i, err\n}\n\nconst withAsterisk = `-- name: WithAsterisk :one\nSELECT users.id, users.name, users.age, id, name, age FROM users\n`\n\ntype WithAsteriskRow struct {\n\tUser User\n\tID   int32\n\tName string\n\tAge  sql.NullInt32\n}\n\nfunc (q *Queries) WithAsterisk(ctx context.Context) (WithAsteriskRow, error) {\n\trow := q.db.QueryRowContext(ctx, withAsterisk)\n\tvar i WithAsteriskRow\n\terr := row.Scan(\n\t\t&i.User.ID,\n\t\t&i.User.Name,\n\t\t&i.User.Age,\n\t\t&i.ID,\n\t\t&i.Name,\n\t\t&i.Age,\n\t)\n\treturn i, err\n}\n\nconst withCrossSchema = `-- name: WithCrossSchema :many\nSELECT users.id, users.name, users.age, bu.id, bu.name FROM users\nINNER JOIN baz.users bu ON users.id = bu.id\n`\n\ntype WithCrossSchemaRow struct {\n\tUser    User\n\tBazUser BazUser\n}\n\nfunc (q *Queries) WithCrossSchema(ctx context.Context) ([]WithCrossSchemaRow, error) {\n\trows, err := q.db.QueryContext(ctx, withCrossSchema)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []WithCrossSchemaRow\n\tfor rows.Next() {\n\t\tvar i WithCrossSchemaRow\n\t\tif err := rows.Scan(\n\t\t\t&i.User.ID,\n\t\t\t&i.User.Name,\n\t\t\t&i.User.Age,\n\t\t\t&i.BazUser.ID,\n\t\t\t&i.BazUser.Name,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst withSchema = `-- name: WithSchema :one\nSELECT bu.id, bu.name FROM baz.users bu\n`\n\ntype WithSchemaRow struct {\n\tBazUser BazUser\n}\n\nfunc (q *Queries) WithSchema(ctx context.Context) (WithSchemaRow, error) {\n\trow := q.db.QueryRowContext(ctx, withSchema)\n\tvar i WithSchemaRow\n\terr := row.Scan(&i.BazUser.ID, &i.BazUser.Name)\n\treturn i, err\n}\n\nconst withSubquery = `-- name: WithSubquery :many\nSELECT users.id, users.name, users.age, (SELECT count(*) FROM users) AS total_count FROM users\n`\n\ntype WithSubqueryRow struct {\n\tUser       User\n\tTotalCount int64\n}\n\nfunc (q *Queries) WithSubquery(ctx context.Context) ([]WithSubqueryRow, error) {\n\trows, err := q.db.QueryContext(ctx, withSubquery)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []WithSubqueryRow\n\tfor rows.Next() {\n\t\tvar i WithSubqueryRow\n\t\tif err := rows.Scan(\n\t\t\t&i.User.ID,\n\t\t\t&i.User.Name,\n\t\t\t&i.User.Age,\n\t\t\t&i.TotalCount,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/mysql/query.sql",
    "content": "-- name: Only :one\nSELECT sqlc.embed(users) FROM users;\n\n-- name: WithAlias :one\nSELECT sqlc.embed(u) FROM users u;\n\n-- name: WithSubquery :many\nSELECT sqlc.embed(users), (SELECT count(*) FROM users) AS total_count FROM users;\n\n-- name: WithAsterisk :one\nSELECT sqlc.embed(users), * FROM users;\n\n-- name: Duplicate :one\nSELECT sqlc.embed(users), sqlc.embed(users) FROM users;\n\n-- name: Join :one\nSELECT sqlc.embed(users), sqlc.embed(posts) FROM posts\nINNER JOIN users ON posts.user_id = users.id;\n\n-- name: WithSchema :one\nSELECT sqlc.embed(bu) FROM baz.users bu;\n\n-- name: WithCrossSchema :many\nSELECT sqlc.embed(users), sqlc.embed(bu) FROM users\nINNER JOIN baz.users bu ON users.id = bu.id;"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/mysql/schema.sql",
    "content": "CREATE SCHEMA IF NOT EXISTS baz;\n\nCREATE TABLE users (\n    id integer NOT NULL PRIMARY KEY,\n    name varchar(255) NOT NULL,\n    age integer NULL\n);\n\nCREATE TABLE posts (\n    id integer NOT NULL PRIMARY KEY,\n    user_id integer NOT NULL\n);\n\nCREATE TABLE baz.users (\n    id integer NOT NULL PRIMARY KEY,\n    name varchar(255) NOT NULL\n);\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype BazUser struct {\n\tID   int32  `db:\"id\" json:\"id\"`\n\tName string `db:\"name\" json:\"name\"`\n}\n\ntype Post struct {\n\tID     int32 `db:\"id\" json:\"id\"`\n\tUserID int32 `db:\"user_id\" json:\"user_id\"`\n}\n\ntype User struct {\n\tID   int32         `db:\"id\" json:\"id\"`\n\tName string        `db:\"name\" json:\"name\"`\n\tAge  sql.NullInt32 `db:\"age\" json:\"age\"`\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst duplicate = `-- name: Duplicate :one\nSELECT users.id, users.name, users.age, users.id, users.name, users.age FROM users\n`\n\ntype DuplicateRow struct {\n\tUser   User `db:\"user\" json:\"user\"`\n\tUser_2 User `db:\"user_2\" json:\"user_2\"`\n}\n\nfunc (q *Queries) Duplicate(ctx context.Context) (DuplicateRow, error) {\n\trow := q.db.QueryRow(ctx, duplicate)\n\tvar i DuplicateRow\n\terr := row.Scan(\n\t\t&i.User.ID,\n\t\t&i.User.Name,\n\t\t&i.User.Age,\n\t\t&i.User_2.ID,\n\t\t&i.User_2.Name,\n\t\t&i.User_2.Age,\n\t)\n\treturn i, err\n}\n\nconst join = `-- name: Join :one\nSELECT users.id, users.name, users.age, posts.id, posts.user_id FROM posts\nINNER JOIN users ON posts.user_id = users.id\n`\n\ntype JoinRow struct {\n\tUser User `db:\"user\" json:\"user\"`\n\tPost Post `db:\"post\" json:\"post\"`\n}\n\nfunc (q *Queries) Join(ctx context.Context) (JoinRow, error) {\n\trow := q.db.QueryRow(ctx, join)\n\tvar i JoinRow\n\terr := row.Scan(\n\t\t&i.User.ID,\n\t\t&i.User.Name,\n\t\t&i.User.Age,\n\t\t&i.Post.ID,\n\t\t&i.Post.UserID,\n\t)\n\treturn i, err\n}\n\nconst only = `-- name: Only :one\nSELECT users.id, users.name, users.age FROM users\n`\n\ntype OnlyRow struct {\n\tUser User `db:\"user\" json:\"user\"`\n}\n\nfunc (q *Queries) Only(ctx context.Context) (OnlyRow, error) {\n\trow := q.db.QueryRow(ctx, only)\n\tvar i OnlyRow\n\terr := row.Scan(&i.User.ID, &i.User.Name, &i.User.Age)\n\treturn i, err\n}\n\nconst withAlias = `-- name: WithAlias :one\nSELECT u.id, u.name, u.age FROM users u\n`\n\ntype WithAliasRow struct {\n\tUser User `db:\"user\" json:\"user\"`\n}\n\nfunc (q *Queries) WithAlias(ctx context.Context) (WithAliasRow, error) {\n\trow := q.db.QueryRow(ctx, withAlias)\n\tvar i WithAliasRow\n\terr := row.Scan(&i.User.ID, &i.User.Name, &i.User.Age)\n\treturn i, err\n}\n\nconst withAsterisk = `-- name: WithAsterisk :one\nSELECT users.id, users.name, users.age, id, name, age FROM users\n`\n\ntype WithAsteriskRow struct {\n\tUser User          `db:\"user\" json:\"user\"`\n\tID   int32         `db:\"id\" json:\"id\"`\n\tName string        `db:\"name\" json:\"name\"`\n\tAge  sql.NullInt32 `db:\"age\" json:\"age\"`\n}\n\nfunc (q *Queries) WithAsterisk(ctx context.Context) (WithAsteriskRow, error) {\n\trow := q.db.QueryRow(ctx, withAsterisk)\n\tvar i WithAsteriskRow\n\terr := row.Scan(\n\t\t&i.User.ID,\n\t\t&i.User.Name,\n\t\t&i.User.Age,\n\t\t&i.ID,\n\t\t&i.Name,\n\t\t&i.Age,\n\t)\n\treturn i, err\n}\n\nconst withCrossSchema = `-- name: WithCrossSchema :many\nSELECT users.id, users.name, users.age, bu.id, bu.name FROM users\nINNER JOIN baz.users bu ON users.id = bu.id\n`\n\ntype WithCrossSchemaRow struct {\n\tUser    User    `db:\"user\" json:\"user\"`\n\tBazUser BazUser `db:\"baz_user\" json:\"baz_user\"`\n}\n\nfunc (q *Queries) WithCrossSchema(ctx context.Context) ([]WithCrossSchemaRow, error) {\n\trows, err := q.db.Query(ctx, withCrossSchema)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []WithCrossSchemaRow\n\tfor rows.Next() {\n\t\tvar i WithCrossSchemaRow\n\t\tif err := rows.Scan(\n\t\t\t&i.User.ID,\n\t\t\t&i.User.Name,\n\t\t\t&i.User.Age,\n\t\t\t&i.BazUser.ID,\n\t\t\t&i.BazUser.Name,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst withSchema = `-- name: WithSchema :one\nSELECT bu.id, bu.name FROM baz.users bu\n`\n\ntype WithSchemaRow struct {\n\tBazUser BazUser `db:\"baz_user\" json:\"baz_user\"`\n}\n\nfunc (q *Queries) WithSchema(ctx context.Context) (WithSchemaRow, error) {\n\trow := q.db.QueryRow(ctx, withSchema)\n\tvar i WithSchemaRow\n\terr := row.Scan(&i.BazUser.ID, &i.BazUser.Name)\n\treturn i, err\n}\n\nconst withSubquery = `-- name: WithSubquery :many\nSELECT users.id, users.name, users.age, (SELECT count(*) FROM users) AS total_count FROM users\n`\n\ntype WithSubqueryRow struct {\n\tUser       User  `db:\"user\" json:\"user\"`\n\tTotalCount int64 `db:\"total_count\" json:\"total_count\"`\n}\n\nfunc (q *Queries) WithSubquery(ctx context.Context) ([]WithSubqueryRow, error) {\n\trows, err := q.db.Query(ctx, withSubquery)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []WithSubqueryRow\n\tfor rows.Next() {\n\t\tvar i WithSubqueryRow\n\t\tif err := rows.Scan(\n\t\t\t&i.User.ID,\n\t\t\t&i.User.Name,\n\t\t\t&i.User.Age,\n\t\t\t&i.TotalCount,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/postgresql/pgx/query.sql",
    "content": "-- name: Only :one\nSELECT sqlc.embed(users) FROM users;\n\n-- name: WithAlias :one\nSELECT sqlc.embed(u) FROM users u;\n\n-- name: WithSubquery :many\nSELECT sqlc.embed(users), (SELECT count(*) FROM users) AS total_count FROM users;\n\n-- name: WithAsterisk :one\nSELECT sqlc.embed(users), * FROM users;\n\n-- name: Duplicate :one\nSELECT sqlc.embed(users), sqlc.embed(users) FROM users;\n\n-- name: Join :one\nSELECT sqlc.embed(users), sqlc.embed(posts) FROM posts\nINNER JOIN users ON posts.user_id = users.id;\n\n-- name: WithSchema :one\nSELECT sqlc.embed(bu) FROM baz.users bu;\n\n-- name: WithCrossSchema :many\nSELECT sqlc.embed(users), sqlc.embed(bu) FROM users\nINNER JOIN baz.users bu ON users.id = bu.id;"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/postgresql/pgx/schema.sql",
    "content": "CREATE SCHEMA IF NOT EXISTS baz;\n\nCREATE TABLE users (\n    id integer NOT NULL PRIMARY KEY,\n    name varchar(255) NOT NULL,\n    age integer NULL\n);\n\nCREATE TABLE posts (\n    id integer NOT NULL PRIMARY KEY,\n    user_id integer NOT NULL\n);\n\nCREATE TABLE baz.users (\n    id integer NOT NULL PRIMARY KEY,\n    name varchar(255) NOT NULL\n);\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/postgresql/pgx/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_json_tags\": true,\n      \"emit_db_tags\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype BazUser struct {\n\tID   int32\n\tName string\n}\n\ntype Post struct {\n\tID     int32\n\tUserID int32\n\tLikes  []int32\n}\n\ntype User struct {\n\tID   int32\n\tName string\n\tAge  sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\n\t\"github.com/lib/pq\"\n)\n\nconst duplicate = `-- name: Duplicate :one\nSELECT users.id, users.name, users.age, users.id, users.name, users.age FROM users\n`\n\ntype DuplicateRow struct {\n\tUser   User\n\tUser_2 User\n}\n\nfunc (q *Queries) Duplicate(ctx context.Context) (DuplicateRow, error) {\n\trow := q.db.QueryRowContext(ctx, duplicate)\n\tvar i DuplicateRow\n\terr := row.Scan(\n\t\t&i.User.ID,\n\t\t&i.User.Name,\n\t\t&i.User.Age,\n\t\t&i.User_2.ID,\n\t\t&i.User_2.Name,\n\t\t&i.User_2.Age,\n\t)\n\treturn i, err\n}\n\nconst join = `-- name: Join :one\nSELECT users.id, users.name, users.age, posts.id, posts.user_id, posts.likes FROM posts\nINNER JOIN users ON posts.user_id = users.id\n`\n\ntype JoinRow struct {\n\tUser User\n\tPost Post\n}\n\nfunc (q *Queries) Join(ctx context.Context) (JoinRow, error) {\n\trow := q.db.QueryRowContext(ctx, join)\n\tvar i JoinRow\n\terr := row.Scan(\n\t\t&i.User.ID,\n\t\t&i.User.Name,\n\t\t&i.User.Age,\n\t\t&i.Post.ID,\n\t\t&i.Post.UserID,\n\t\tpq.Array(&i.Post.Likes),\n\t)\n\treturn i, err\n}\n\nconst only = `-- name: Only :one\nSELECT users.id, users.name, users.age FROM users\n`\n\ntype OnlyRow struct {\n\tUser User\n}\n\nfunc (q *Queries) Only(ctx context.Context) (OnlyRow, error) {\n\trow := q.db.QueryRowContext(ctx, only)\n\tvar i OnlyRow\n\terr := row.Scan(&i.User.ID, &i.User.Name, &i.User.Age)\n\treturn i, err\n}\n\nconst withAlias = `-- name: WithAlias :one\nSELECT u.id, u.name, u.age FROM users u\n`\n\ntype WithAliasRow struct {\n\tUser User\n}\n\nfunc (q *Queries) WithAlias(ctx context.Context) (WithAliasRow, error) {\n\trow := q.db.QueryRowContext(ctx, withAlias)\n\tvar i WithAliasRow\n\terr := row.Scan(&i.User.ID, &i.User.Name, &i.User.Age)\n\treturn i, err\n}\n\nconst withAsterisk = `-- name: WithAsterisk :one\nSELECT users.id, users.name, users.age, id, name, age FROM users\n`\n\ntype WithAsteriskRow struct {\n\tUser User\n\tID   int32\n\tName string\n\tAge  sql.NullInt32\n}\n\nfunc (q *Queries) WithAsterisk(ctx context.Context) (WithAsteriskRow, error) {\n\trow := q.db.QueryRowContext(ctx, withAsterisk)\n\tvar i WithAsteriskRow\n\terr := row.Scan(\n\t\t&i.User.ID,\n\t\t&i.User.Name,\n\t\t&i.User.Age,\n\t\t&i.ID,\n\t\t&i.Name,\n\t\t&i.Age,\n\t)\n\treturn i, err\n}\n\nconst withCrossSchema = `-- name: WithCrossSchema :many\nSELECT users.id, users.name, users.age, bu.id, bu.name FROM users\nINNER JOIN baz.users bu ON users.id = bu.id\n`\n\ntype WithCrossSchemaRow struct {\n\tUser    User\n\tBazUser BazUser\n}\n\nfunc (q *Queries) WithCrossSchema(ctx context.Context) ([]WithCrossSchemaRow, error) {\n\trows, err := q.db.QueryContext(ctx, withCrossSchema)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []WithCrossSchemaRow\n\tfor rows.Next() {\n\t\tvar i WithCrossSchemaRow\n\t\tif err := rows.Scan(\n\t\t\t&i.User.ID,\n\t\t\t&i.User.Name,\n\t\t\t&i.User.Age,\n\t\t\t&i.BazUser.ID,\n\t\t\t&i.BazUser.Name,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst withSchema = `-- name: WithSchema :one\nSELECT bu.id, bu.name FROM baz.users bu\n`\n\ntype WithSchemaRow struct {\n\tBazUser BazUser\n}\n\nfunc (q *Queries) WithSchema(ctx context.Context) (WithSchemaRow, error) {\n\trow := q.db.QueryRowContext(ctx, withSchema)\n\tvar i WithSchemaRow\n\terr := row.Scan(&i.BazUser.ID, &i.BazUser.Name)\n\treturn i, err\n}\n\nconst withSubquery = `-- name: WithSubquery :many\nSELECT users.id, users.name, users.age, (SELECT count(*) FROM users) AS total_count FROM users\n`\n\ntype WithSubqueryRow struct {\n\tUser       User\n\tTotalCount int64\n}\n\nfunc (q *Queries) WithSubquery(ctx context.Context) ([]WithSubqueryRow, error) {\n\trows, err := q.db.QueryContext(ctx, withSubquery)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []WithSubqueryRow\n\tfor rows.Next() {\n\t\tvar i WithSubqueryRow\n\t\tif err := rows.Scan(\n\t\t\t&i.User.ID,\n\t\t\t&i.User.Name,\n\t\t\t&i.User.Age,\n\t\t\t&i.TotalCount,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/query.sql",
    "content": "-- name: Only :one\nSELECT sqlc.embed(users) FROM users;\n\n-- name: WithAlias :one\nSELECT sqlc.embed(u) FROM users u;\n\n-- name: WithSubquery :many\nSELECT sqlc.embed(users), (SELECT count(*) FROM users) AS total_count FROM users;\n\n-- name: WithAsterisk :one\nSELECT sqlc.embed(users), * FROM users;\n\n-- name: Duplicate :one\nSELECT sqlc.embed(users), sqlc.embed(users) FROM users;\n\n-- name: Join :one\nSELECT sqlc.embed(users), sqlc.embed(posts) FROM posts\nINNER JOIN users ON posts.user_id = users.id;\n\n-- name: WithSchema :one\nSELECT sqlc.embed(bu) FROM baz.users bu;\n\n-- name: WithCrossSchema :many\nSELECT sqlc.embed(users), sqlc.embed(bu) FROM users\nINNER JOIN baz.users bu ON users.id = bu.id;"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/schema.sql",
    "content": "CREATE SCHEMA IF NOT EXISTS baz;\n\nCREATE TABLE users (\n    id integer NOT NULL PRIMARY KEY,\n    name varchar(255) NOT NULL,\n    age integer NULL\n);\n\nCREATE TABLE posts (\n    id integer NOT NULL PRIMARY KEY,\n    user_id integer NOT NULL,\n    likes integer[] NOT NULL\n);\n\nCREATE TABLE baz.users (\n    id integer NOT NULL PRIMARY KEY,\n    name varchar(255) NOT NULL\n);\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype BazUser struct {\n\tID   int64\n\tName string\n}\n\ntype Post struct {\n\tID     int64\n\tUserID int64\n}\n\ntype User struct {\n\tID   int64\n\tName string\n\tAge  sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst duplicate = `-- name: Duplicate :one\nSELECT users.id, users.name, users.age, users.id, users.name, users.age FROM users\n`\n\ntype DuplicateRow struct {\n\tUser   User\n\tUser_2 User\n}\n\nfunc (q *Queries) Duplicate(ctx context.Context) (DuplicateRow, error) {\n\trow := q.db.QueryRowContext(ctx, duplicate)\n\tvar i DuplicateRow\n\terr := row.Scan(\n\t\t&i.User.ID,\n\t\t&i.User.Name,\n\t\t&i.User.Age,\n\t\t&i.User_2.ID,\n\t\t&i.User_2.Name,\n\t\t&i.User_2.Age,\n\t)\n\treturn i, err\n}\n\nconst join = `-- name: Join :one\nSELECT u.id, u.name, u.age, p.id, p.user_id FROM posts AS p\nINNER JOIN users AS u ON p.user_id = u.id\n`\n\ntype JoinRow struct {\n\tUser User\n\tPost Post\n}\n\nfunc (q *Queries) Join(ctx context.Context) (JoinRow, error) {\n\trow := q.db.QueryRowContext(ctx, join)\n\tvar i JoinRow\n\terr := row.Scan(\n\t\t&i.User.ID,\n\t\t&i.User.Name,\n\t\t&i.User.Age,\n\t\t&i.Post.ID,\n\t\t&i.Post.UserID,\n\t)\n\treturn i, err\n}\n\nconst only = `-- name: Only :one\nSELECT users.id, users.name, users.age FROM users\n`\n\ntype OnlyRow struct {\n\tUser User\n}\n\nfunc (q *Queries) Only(ctx context.Context) (OnlyRow, error) {\n\trow := q.db.QueryRowContext(ctx, only)\n\tvar i OnlyRow\n\terr := row.Scan(&i.User.ID, &i.User.Name, &i.User.Age)\n\treturn i, err\n}\n\nconst withAlias = `-- name: WithAlias :one\nSELECT u.id, u.name, u.age FROM users AS u\n`\n\ntype WithAliasRow struct {\n\tUser User\n}\n\nfunc (q *Queries) WithAlias(ctx context.Context) (WithAliasRow, error) {\n\trow := q.db.QueryRowContext(ctx, withAlias)\n\tvar i WithAliasRow\n\terr := row.Scan(&i.User.ID, &i.User.Name, &i.User.Age)\n\treturn i, err\n}\n\nconst withAsterisk = `-- name: WithAsterisk :one\nSELECT users.id, users.name, users.age, id, name, age FROM users\n`\n\ntype WithAsteriskRow struct {\n\tUser User\n\tID   int64\n\tName string\n\tAge  sql.NullInt64\n}\n\nfunc (q *Queries) WithAsterisk(ctx context.Context) (WithAsteriskRow, error) {\n\trow := q.db.QueryRowContext(ctx, withAsterisk)\n\tvar i WithAsteriskRow\n\terr := row.Scan(\n\t\t&i.User.ID,\n\t\t&i.User.Name,\n\t\t&i.User.Age,\n\t\t&i.ID,\n\t\t&i.Name,\n\t\t&i.Age,\n\t)\n\treturn i, err\n}\n\nconst withCrossSchema = `-- name: WithCrossSchema :many\nSELECT u.id, u.name, u.age, bu.id, bu.name FROM users AS u\nINNER JOIN baz.users bu ON u.id = bu.id\n`\n\ntype WithCrossSchemaRow struct {\n\tUser    User\n\tBazUser BazUser\n}\n\nfunc (q *Queries) WithCrossSchema(ctx context.Context) ([]WithCrossSchemaRow, error) {\n\trows, err := q.db.QueryContext(ctx, withCrossSchema)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []WithCrossSchemaRow\n\tfor rows.Next() {\n\t\tvar i WithCrossSchemaRow\n\t\tif err := rows.Scan(\n\t\t\t&i.User.ID,\n\t\t\t&i.User.Name,\n\t\t\t&i.User.Age,\n\t\t\t&i.BazUser.ID,\n\t\t\t&i.BazUser.Name,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst withSchema = `-- name: WithSchema :one\nSELECT bu.id, bu.name FROM baz.users AS bu\n`\n\ntype WithSchemaRow struct {\n\tBazUser BazUser\n}\n\nfunc (q *Queries) WithSchema(ctx context.Context) (WithSchemaRow, error) {\n\trow := q.db.QueryRowContext(ctx, withSchema)\n\tvar i WithSchemaRow\n\terr := row.Scan(&i.BazUser.ID, &i.BazUser.Name)\n\treturn i, err\n}\n\nconst withSubquery = `-- name: WithSubquery :many\nSELECT users.id, users.name, users.age, (SELECT count(*) FROM users) AS total_count FROM users\n`\n\ntype WithSubqueryRow struct {\n\tUser       User\n\tTotalCount int64\n}\n\nfunc (q *Queries) WithSubquery(ctx context.Context) ([]WithSubqueryRow, error) {\n\trows, err := q.db.QueryContext(ctx, withSubquery)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []WithSubqueryRow\n\tfor rows.Next() {\n\t\tvar i WithSubqueryRow\n\t\tif err := rows.Scan(\n\t\t\t&i.User.ID,\n\t\t\t&i.User.Name,\n\t\t\t&i.User.Age,\n\t\t\t&i.TotalCount,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/sqlite/query.sql",
    "content": "-- name: Only :one\nSELECT sqlc.embed(users) FROM users;\n\n-- name: WithAlias :one\nSELECT sqlc.embed(u) FROM users AS u;\n\n-- name: WithSubquery :many\nSELECT sqlc.embed(users), (SELECT count(*) FROM users) AS total_count FROM users;\n\n-- name: WithAsterisk :one\nSELECT sqlc.embed(users), * FROM users;\n\n-- name: Duplicate :one\nSELECT sqlc.embed(users), sqlc.embed(users) FROM users;\n\n-- name: Join :one\nSELECT sqlc.embed(u), sqlc.embed(p) FROM posts AS p\nINNER JOIN users AS u ON p.user_id = u.id;\n\n-- name: WithSchema :one\nSELECT sqlc.embed(bu) FROM baz.users AS bu;\n\n-- name: WithCrossSchema :many\nSELECT sqlc.embed(u), sqlc.embed(bu) FROM users AS u\nINNER JOIN baz.users bu ON u.id = bu.id;\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/sqlite/schema.sql",
    "content": "ATTACH ':memory:' AS baz;\n\nCREATE TABLE users (\n    id integer PRIMARY KEY,\n    name text NOT NULL,\n    age integer\n);\n\nCREATE TABLE posts (\n    id integer PRIMARY KEY,\n    user_id integer NOT NULL\n);\n\nCREATE TABLE baz.users (\n    id integer PRIMARY KEY,\n    name text NOT NULL\n);\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_embed/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar      string\n\tMaybeBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst identOnNonNullable = `-- name: IdentOnNonNullable :many\nSELECT bar FROM foo WHERE bar = ?\n`\n\nfunc (q *Queries) IdentOnNonNullable(ctx context.Context, bar sql.NullString) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, identOnNonNullable, bar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst identOnNullable = `-- name: IdentOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = ?\n`\n\nfunc (q *Queries) IdentOnNullable(ctx context.Context, maybeBar sql.NullString) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, identOnNullable, maybeBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar maybe_bar sql.NullString\n\t\tif err := rows.Scan(&maybe_bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, maybe_bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst stringOnNonNullable = `-- name: StringOnNonNullable :many\nSELECT bar FROM foo WHERE bar = ?\n`\n\nfunc (q *Queries) StringOnNonNullable(ctx context.Context, bar sql.NullString) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, stringOnNonNullable, bar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst stringOnNullable = `-- name: StringOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = ?\n`\n\nfunc (q *Queries) StringOnNullable(ctx context.Context, maybeBar sql.NullString) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, stringOnNullable, maybeBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar maybe_bar sql.NullString\n\t\tif err := rows.Scan(&maybe_bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, maybe_bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/mysql/query.sql",
    "content": "-- name: IdentOnNonNullable :many\nSELECT bar FROM foo WHERE bar = sqlc.narg(bar);\n\n-- name: IdentOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = sqlc.narg(maybe_bar);\n\n-- name: StringOnNonNullable :many\nSELECT bar FROM foo WHERE bar = sqlc.narg('bar');\n\n-- name: StringOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = sqlc.narg('maybe_bar');\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/mysql/schema.sql",
    "content": "CREATE TABLE foo (bar text not null, maybe_bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar      string\n\tMaybeBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst identOnNonNullable = `-- name: IdentOnNonNullable :many\nSELECT bar FROM foo WHERE bar = $1\n`\n\nfunc (q *Queries) IdentOnNonNullable(ctx context.Context, bar sql.NullString) ([]string, error) {\n\trows, err := q.db.Query(ctx, identOnNonNullable, bar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst identOnNullable = `-- name: IdentOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = $1\n`\n\nfunc (q *Queries) IdentOnNullable(ctx context.Context, maybeBar sql.NullString) ([]sql.NullString, error) {\n\trows, err := q.db.Query(ctx, identOnNullable, maybeBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar maybe_bar sql.NullString\n\t\tif err := rows.Scan(&maybe_bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, maybe_bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst stringOnNonNullable = `-- name: StringOnNonNullable :many\nSELECT bar FROM foo WHERE bar = $1\n`\n\nfunc (q *Queries) StringOnNonNullable(ctx context.Context, bar sql.NullString) ([]string, error) {\n\trows, err := q.db.Query(ctx, stringOnNonNullable, bar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst stringOnNullable = `-- name: StringOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = $1\n`\n\nfunc (q *Queries) StringOnNullable(ctx context.Context, maybeBar sql.NullString) ([]sql.NullString, error) {\n\trows, err := q.db.Query(ctx, stringOnNullable, maybeBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar maybe_bar sql.NullString\n\t\tif err := rows.Scan(&maybe_bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, maybe_bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v4/query.sql",
    "content": "-- name: IdentOnNonNullable :many\nSELECT bar FROM foo WHERE bar = sqlc.narg(bar);\n\n-- name: IdentOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = sqlc.narg(maybe_bar);\n\n-- name: StringOnNonNullable :many\nSELECT bar FROM foo WHERE bar = sqlc.narg('bar');\n\n-- name: StringOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = sqlc.narg('maybe_bar');\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (bar text not null, maybe_bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tBar      string\n\tMaybeBar pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst identOnNonNullable = `-- name: IdentOnNonNullable :many\nSELECT bar FROM foo WHERE bar = $1\n`\n\nfunc (q *Queries) IdentOnNonNullable(ctx context.Context, bar pgtype.Text) ([]string, error) {\n\trows, err := q.db.Query(ctx, identOnNonNullable, bar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst identOnNullable = `-- name: IdentOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = $1\n`\n\nfunc (q *Queries) IdentOnNullable(ctx context.Context, maybeBar pgtype.Text) ([]pgtype.Text, error) {\n\trows, err := q.db.Query(ctx, identOnNullable, maybeBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.Text\n\tfor rows.Next() {\n\t\tvar maybe_bar pgtype.Text\n\t\tif err := rows.Scan(&maybe_bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, maybe_bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst stringOnNonNullable = `-- name: StringOnNonNullable :many\nSELECT bar FROM foo WHERE bar = $1\n`\n\nfunc (q *Queries) StringOnNonNullable(ctx context.Context, bar pgtype.Text) ([]string, error) {\n\trows, err := q.db.Query(ctx, stringOnNonNullable, bar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst stringOnNullable = `-- name: StringOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = $1\n`\n\nfunc (q *Queries) StringOnNullable(ctx context.Context, maybeBar pgtype.Text) ([]pgtype.Text, error) {\n\trows, err := q.db.Query(ctx, stringOnNullable, maybeBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.Text\n\tfor rows.Next() {\n\t\tvar maybe_bar pgtype.Text\n\t\tif err := rows.Scan(&maybe_bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, maybe_bar)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v5/query.sql",
    "content": "-- name: IdentOnNonNullable :many\nSELECT bar FROM foo WHERE bar = sqlc.narg(bar);\n\n-- name: IdentOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = sqlc.narg(maybe_bar);\n\n-- name: StringOnNonNullable :many\nSELECT bar FROM foo WHERE bar = sqlc.narg('bar');\n\n-- name: StringOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = sqlc.narg('maybe_bar');\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (bar text not null, maybe_bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar      string\n\tMaybeBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst identOnNonNullable = `-- name: IdentOnNonNullable :many\nSELECT bar FROM foo WHERE bar = $1\n`\n\nfunc (q *Queries) IdentOnNonNullable(ctx context.Context, bar sql.NullString) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, identOnNonNullable, bar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst identOnNullable = `-- name: IdentOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = $1\n`\n\nfunc (q *Queries) IdentOnNullable(ctx context.Context, maybeBar sql.NullString) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, identOnNullable, maybeBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar maybe_bar sql.NullString\n\t\tif err := rows.Scan(&maybe_bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, maybe_bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst stringOnNonNullable = `-- name: StringOnNonNullable :many\nSELECT bar FROM foo WHERE bar = $1\n`\n\nfunc (q *Queries) StringOnNonNullable(ctx context.Context, bar sql.NullString) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, stringOnNonNullable, bar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst stringOnNullable = `-- name: StringOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = $1\n`\n\nfunc (q *Queries) StringOnNullable(ctx context.Context, maybeBar sql.NullString) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, stringOnNullable, maybeBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar maybe_bar sql.NullString\n\t\tif err := rows.Scan(&maybe_bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, maybe_bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/go_strict/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest_strict\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/go_strict/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest_strict\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar      string\n\tMaybeBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/go_strict/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest_strict\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst identOnNonNullable = `-- name: IdentOnNonNullable :many\nSELECT bar FROM foo WHERE bar = $1\n`\n\nfunc (q *Queries) IdentOnNonNullable(ctx context.Context, bar sql.NullString) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, identOnNonNullable, bar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst identOnNullable = `-- name: IdentOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = $1\n`\n\nfunc (q *Queries) IdentOnNullable(ctx context.Context, maybeBar sql.NullString) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, identOnNullable, maybeBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar maybe_bar sql.NullString\n\t\tif err := rows.Scan(&maybe_bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, maybe_bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst stringOnNonNullable = `-- name: StringOnNonNullable :many\nSELECT bar FROM foo WHERE bar = $1\n`\n\nfunc (q *Queries) StringOnNonNullable(ctx context.Context, bar sql.NullString) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, stringOnNonNullable, bar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst stringOnNullable = `-- name: StringOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = $1\n`\n\nfunc (q *Queries) StringOnNullable(ctx context.Context, maybeBar sql.NullString) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, stringOnNullable, maybeBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar maybe_bar sql.NullString\n\t\tif err := rows.Scan(&maybe_bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, maybe_bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/query.sql",
    "content": "-- name: IdentOnNonNullable :many\nSELECT bar FROM foo WHERE bar = sqlc.narg(bar);\n\n-- name: IdentOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = sqlc.narg(maybe_bar);\n\n-- name: StringOnNonNullable :many\nSELECT bar FROM foo WHERE bar = sqlc.narg('bar');\n\n-- name: StringOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = sqlc.narg('maybe_bar');\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (bar text not null, maybe_bar text);"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"gen\": {\n        \"go\": {\n          \"package\": \"querytest\",\n          \"out\": \"go\"\n        }\n      }\n    },\n    {\n      \"engine\": \"postgresql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"strict_function_checks\": true,\n      \"gen\": {\n        \"go\": {\n          \"package\": \"querytest_strict\",\n          \"out\": \"go_strict\"\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar      string\n\tMaybeBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst identOnNonNullable = `-- name: IdentOnNonNullable :many\nSELECT bar FROM foo WHERE bar = ?1\n`\n\nfunc (q *Queries) IdentOnNonNullable(ctx context.Context, bar sql.NullString) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, identOnNonNullable, bar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst identOnNullable = `-- name: IdentOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = ?1\n`\n\nfunc (q *Queries) IdentOnNullable(ctx context.Context, maybeBar sql.NullString) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, identOnNullable, maybeBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar maybe_bar sql.NullString\n\t\tif err := rows.Scan(&maybe_bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, maybe_bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst stringOnNonNullable = `-- name: StringOnNonNullable :many\nSELECT bar FROM foo WHERE bar = ?1\n`\n\nfunc (q *Queries) StringOnNonNullable(ctx context.Context, bar sql.NullString) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, stringOnNonNullable, bar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar bar string\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst stringOnNullable = `-- name: StringOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = ?1\n`\n\nfunc (q *Queries) StringOnNullable(ctx context.Context, maybeBar sql.NullString) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, stringOnNullable, maybeBar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar maybe_bar sql.NullString\n\t\tif err := rows.Scan(&maybe_bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, maybe_bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/sqlite/query.sql",
    "content": "-- name: IdentOnNonNullable :many\nSELECT bar FROM foo WHERE bar = sqlc.narg(bar);\n\n-- name: IdentOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = sqlc.narg(maybe_bar);\n\n-- name: StringOnNonNullable :many\nSELECT bar FROM foo WHERE bar = sqlc.narg('bar');\n\n-- name: StringOnNullable :many\nSELECT maybe_bar FROM foo WHERE maybe_bar = sqlc.narg('maybe_bar');\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/sqlite/schema.sql",
    "content": "CREATE TABLE foo (bar text not null, maybe_bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_narg/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"engine\": \"sqlite\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"gen\": {\n        \"go\": {\n          \"package\": \"querytest\",\n          \"out\": \"go\"\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\n\t\"github.com/sqlc-dev/sqlc-testdata/mysql\"\n)\n\ntype Foo struct {\n\tID    int32\n\tName  string\n\tBar   sql.NullString\n\tMystr mysql.ID\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc-testdata/mysql\"\n)\n\nconst funcNullable = `-- name: FuncNullable :many\nSELECT bar FROM foo\nWHERE id IN (/*SLICE:favourites*/?)\n`\n\nfunc (q *Queries) FuncNullable(ctx context.Context, favourites []int32) ([]sql.NullString, error) {\n\tquery := funcNullable\n\tvar queryParams []interface{}\n\tif len(favourites) > 0 {\n\t\tfor _, v := range favourites {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", strings.Repeat(\",?\", len(favourites))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.db.QueryContext(ctx, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar bar sql.NullString\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcNullableNot = `-- name: FuncNullableNot :many\nSELECT bar FROM foo\nWHERE id NOT IN (/*SLICE:favourites*/?)\n`\n\nfunc (q *Queries) FuncNullableNot(ctx context.Context, favourites []int32) ([]sql.NullString, error) {\n\tquery := funcNullableNot\n\tvar queryParams []interface{}\n\tif len(favourites) > 0 {\n\t\tfor _, v := range favourites {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", strings.Repeat(\",?\", len(favourites))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.db.QueryContext(ctx, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar bar sql.NullString\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParamIdent = `-- name: FuncParamIdent :many\nSELECT name FROM foo\nWHERE name = ?\n  AND id IN (/*SLICE:favourites*/?)\n`\n\ntype FuncParamIdentParams struct {\n\tSlug       string\n\tFavourites []int32\n}\n\nfunc (q *Queries) FuncParamIdent(ctx context.Context, arg FuncParamIdentParams) ([]string, error) {\n\tquery := funcParamIdent\n\tvar queryParams []interface{}\n\tqueryParams = append(queryParams, arg.Slug)\n\tif len(arg.Favourites) > 0 {\n\t\tfor _, v := range arg.Favourites {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", strings.Repeat(\",?\", len(arg.Favourites))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.db.QueryContext(ctx, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParamSoloArg = `-- name: FuncParamSoloArg :many\nSELECT name FROM foo\nWHERE id IN (/*SLICE:favourites*/?)\n`\n\nfunc (q *Queries) FuncParamSoloArg(ctx context.Context, favourites []int32) ([]string, error) {\n\tquery := funcParamSoloArg\n\tvar queryParams []interface{}\n\tif len(favourites) > 0 {\n\t\tfor _, v := range favourites {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", strings.Repeat(\",?\", len(favourites))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.db.QueryContext(ctx, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParamString = `-- name: FuncParamString :many\nSELECT name FROM foo\nWHERE name = ?\n  AND id IN (/*SLICE:favourites*/?)\n`\n\ntype FuncParamStringParams struct {\n\tSlug       string\n\tFavourites []int32\n}\n\nfunc (q *Queries) FuncParamString(ctx context.Context, arg FuncParamStringParams) ([]string, error) {\n\tquery := funcParamString\n\tvar queryParams []interface{}\n\tqueryParams = append(queryParams, arg.Slug)\n\tif len(arg.Favourites) > 0 {\n\t\tfor _, v := range arg.Favourites {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", strings.Repeat(\",?\", len(arg.Favourites))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.db.QueryContext(ctx, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst sliceExec = `-- name: SliceExec :exec\nUPDATE foo SET name = ?\nWHERE id IN (/*SLICE:favourites*/?)\n`\n\ntype SliceExecParams struct {\n\tSlug       string\n\tFavourites []int32\n}\n\nfunc (q *Queries) SliceExec(ctx context.Context, arg SliceExecParams) error {\n\tquery := sliceExec\n\tvar queryParams []interface{}\n\tqueryParams = append(queryParams, arg.Slug)\n\tif len(arg.Favourites) > 0 {\n\t\tfor _, v := range arg.Favourites {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", strings.Repeat(\",?\", len(arg.Favourites))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", \"NULL\", 1)\n\t}\n\t_, err := q.db.ExecContext(ctx, query, queryParams...)\n\treturn err\n}\n\nconst typedMyStr = `-- name: TypedMyStr :many\nSELECT bar FROM foo\nWHERE mystr IN (/*SLICE:mystr*/?)\n`\n\nfunc (q *Queries) TypedMyStr(ctx context.Context, mystr []mysql.ID) ([]sql.NullString, error) {\n\tquery := typedMyStr\n\tvar queryParams []interface{}\n\tif len(mystr) > 0 {\n\t\tfor _, v := range mystr {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:mystr*/?\", strings.Repeat(\",?\", len(mystr))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:mystr*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.db.QueryContext(ctx, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar bar sql.NullString\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/mysql/query.sql",
    "content": "/* name: FuncParamIdent :many */\nSELECT name FROM foo\nWHERE name = sqlc.arg(slug)\n  AND id IN (sqlc.slice(favourites));\n\n/* name: FuncParamString :many */\nSELECT name FROM foo\nWHERE name = sqlc.arg('slug')\n  AND id IN (sqlc.slice('favourites'));\n\n/* name: FuncParamSoloArg :many */\nSELECT name FROM foo\nWHERE id IN (sqlc.slice('favourites'));\n\n/* name: SliceExec :exec */\nUPDATE foo SET name = sqlc.arg(slug)\nWHERE id IN (sqlc.slice(favourites));\n\n/* name: FuncNullable :many */\nSELECT bar FROM foo\nWHERE id IN (sqlc.slice('favourites'));\n\n/* name: FuncNullableNot :many */\nSELECT bar FROM foo\nWHERE id NOT IN (sqlc.slice('favourites'));\n\n/* name: TypedMyStr :many */\nSELECT bar FROM foo\nWHERE mystr IN (sqlc.slice(mystr));\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/mysql/schema.sql",
    "content": "CREATE TABLE foo (id int not null, name text not null, bar text null, mystr text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ],\n  \"overrides\": [\n    {\n    \"column\": \"foo.mystr\",\n    \"go_type\": \"github.com/sqlc-dev/sqlc-testdata/mysql.ID\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID   int32\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst funcParamIdent = `-- name: FuncParamIdent :many\nSELECT name FROM foo WHERE name = $1\n  AND id IN ($2)\n`\n\ntype FuncParamIdentParams struct {\n\tSlug       string\n\tFavourites []int32\n}\n\nfunc (q *Queries) FuncParamIdent(ctx context.Context, arg FuncParamIdentParams) ([]string, error) {\n\trows, err := q.db.Query(ctx, funcParamIdent, arg.Slug, arg.Favourites)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParamString = `-- name: FuncParamString :many\nSELECT name FROM foo WHERE name = $1\n  AND id IN ($2)\n`\n\ntype FuncParamStringParams struct {\n\tSlug       string\n\tFavourites []int32\n}\n\nfunc (q *Queries) FuncParamString(ctx context.Context, arg FuncParamStringParams) ([]string, error) {\n\trows, err := q.db.Query(ctx, funcParamString, arg.Slug, arg.Favourites)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/postgresql/pgx/query.sql",
    "content": "-- name: FuncParamIdent :many\nSELECT name FROM foo WHERE name = sqlc.arg(slug)\n  AND id IN (sqlc.slice(favourites));\n\n-- name: FuncParamString :many\nSELECT name FROM foo WHERE name = sqlc.arg('slug')\n  AND id IN (sqlc.slice('favourites'));\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE foo (id int not null, name text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/postgresql/pgx/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID   int32\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"strings\"\n)\n\nconst funcParamIdent = `-- name: FuncParamIdent :many\nSELECT name FROM foo\nWHERE name = $1\n  AND id IN ($2)\n`\n\ntype FuncParamIdentParams struct {\n\tSlug       string\n\tFavourites []int32\n}\n\nfunc (q *Queries) FuncParamIdent(ctx context.Context, arg FuncParamIdentParams) ([]string, error) {\n\tquery := funcParamIdent\n\tvar queryParams []interface{}\n\tqueryParams = append(queryParams, arg.Slug)\n\tif len(arg.Favourites) > 0 {\n\t\tfor _, v := range arg.Favourites {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", strings.Repeat(\",?\", len(arg.Favourites))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.db.QueryContext(ctx, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParamString = `-- name: FuncParamString :many\nSELECT name FROM foo\nWHERE name = $1\n  AND id IN ($2)\n`\n\ntype FuncParamStringParams struct {\n\tSlug       string\n\tFavourites []int32\n}\n\nfunc (q *Queries) FuncParamString(ctx context.Context, arg FuncParamStringParams) ([]string, error) {\n\tquery := funcParamString\n\tvar queryParams []interface{}\n\tqueryParams = append(queryParams, arg.Slug)\n\tif len(arg.Favourites) > 0 {\n\t\tfor _, v := range arg.Favourites {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", strings.Repeat(\",?\", len(arg.Favourites))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.db.QueryContext(ctx, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/query.sql",
    "content": "/* name: FuncParamIdent :many */\nSELECT name FROM foo\nWHERE name = sqlc.arg(slug)\n  AND id IN (sqlc.slice(favourites));\n\n\n\n/* name: FuncParamString :many */\nSELECT name FROM foo\nWHERE name = sqlc.arg('slug')\n  AND id IN (sqlc.slice('favourites'));\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (id int not null, name text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tID   int64\n\tName string\n\tBar  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"strings\"\n)\n\nconst funcNullable = `-- name: FuncNullable :many\nSELECT bar FROM foo\nWHERE id IN (/*SLICE:favourites*/?)\n`\n\nfunc (q *Queries) FuncNullable(ctx context.Context, favourites []int64) ([]sql.NullString, error) {\n\tquery := funcNullable\n\tvar queryParams []interface{}\n\tif len(favourites) > 0 {\n\t\tfor _, v := range favourites {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", strings.Repeat(\",?\", len(favourites))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.db.QueryContext(ctx, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar bar sql.NullString\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcNullableNot = `-- name: FuncNullableNot :many\nSELECT bar FROM foo\nWHERE id NOT IN (/*SLICE:favourites*/?)\n`\n\nfunc (q *Queries) FuncNullableNot(ctx context.Context, favourites []int64) ([]sql.NullString, error) {\n\tquery := funcNullableNot\n\tvar queryParams []interface{}\n\tif len(favourites) > 0 {\n\t\tfor _, v := range favourites {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", strings.Repeat(\",?\", len(favourites))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.db.QueryContext(ctx, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar bar sql.NullString\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParamIdent = `-- name: FuncParamIdent :many\nSELECT name FROM foo\nWHERE name = ?1\n  AND id IN (/*SLICE:favourites*/?)\n`\n\ntype FuncParamIdentParams struct {\n\tSlug       string\n\tFavourites []int64\n}\n\nfunc (q *Queries) FuncParamIdent(ctx context.Context, arg FuncParamIdentParams) ([]string, error) {\n\tquery := funcParamIdent\n\tvar queryParams []interface{}\n\tqueryParams = append(queryParams, arg.Slug)\n\tif len(arg.Favourites) > 0 {\n\t\tfor _, v := range arg.Favourites {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", strings.Repeat(\",?\", len(arg.Favourites))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.db.QueryContext(ctx, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParamSoloArg = `-- name: FuncParamSoloArg :many\nSELECT name FROM foo\nWHERE id IN (/*SLICE:favourites*/?)\n`\n\nfunc (q *Queries) FuncParamSoloArg(ctx context.Context, favourites []int64) ([]string, error) {\n\tquery := funcParamSoloArg\n\tvar queryParams []interface{}\n\tif len(favourites) > 0 {\n\t\tfor _, v := range favourites {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", strings.Repeat(\",?\", len(favourites))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.db.QueryContext(ctx, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst funcParamString = `-- name: FuncParamString :many\nSELECT name FROM foo\nWHERE name = ?1\n  AND id IN (/*SLICE:favourites*/?)\n`\n\ntype FuncParamStringParams struct {\n\tSlug       string\n\tFavourites []int64\n}\n\nfunc (q *Queries) FuncParamString(ctx context.Context, arg FuncParamStringParams) ([]string, error) {\n\tquery := funcParamString\n\tvar queryParams []interface{}\n\tqueryParams = append(queryParams, arg.Slug)\n\tif len(arg.Favourites) > 0 {\n\t\tfor _, v := range arg.Favourites {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", strings.Repeat(\",?\", len(arg.Favourites))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.db.QueryContext(ctx, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst sliceExec = `-- name: SliceExec :exec\nUPDATE foo SET name = ?1\nWHERE id IN (/*SLICE:favourites*/?)\n`\n\ntype SliceExecParams struct {\n\tSlug       string\n\tFavourites []int64\n}\n\nfunc (q *Queries) SliceExec(ctx context.Context, arg SliceExecParams) error {\n\tquery := sliceExec\n\tvar queryParams []interface{}\n\tqueryParams = append(queryParams, arg.Slug)\n\tif len(arg.Favourites) > 0 {\n\t\tfor _, v := range arg.Favourites {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", strings.Repeat(\",?\", len(arg.Favourites))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", \"NULL\", 1)\n\t}\n\t_, err := q.db.ExecContext(ctx, query, queryParams...)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/sqlite/query.sql",
    "content": "/* name: FuncParamIdent :many */\nSELECT name FROM foo\nWHERE name = sqlc.arg(slug)\n  AND id IN (sqlc.slice(favourites));\n\n/* name: FuncParamString :many */\nSELECT name FROM foo\nWHERE name = sqlc.arg('slug')\n  AND id IN (sqlc.slice('favourites'));\n\n/* name: FuncParamSoloArg :many */\nSELECT name FROM foo\nWHERE id IN (sqlc.slice('favourites'));\n\n/* name: SliceExec :exec */\nUPDATE foo SET name = sqlc.arg(slug)\nWHERE id IN (sqlc.slice(favourites));\n\n/* name: FuncNullable :many */\nSELECT bar FROM foo\nWHERE id IN (sqlc.slice('favourites'));\n\n/* name: FuncNullableNot :many */\nSELECT bar FROM foo\nWHERE id NOT IN (sqlc.slice('favourites'));"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/sqlite/schema.sql",
    "content": "CREATE TABLE foo (id int not null, name text not null, bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice_prepared/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"fmt\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\nfunc Prepare(ctx context.Context, db DBTX) (*Queries, error) {\n\tq := Queries{db: db}\n\tvar err error\n\tif q.funcParamIdentStmt, err = db.PrepareContext(ctx, funcParamIdent); err != nil {\n\t\treturn nil, fmt.Errorf(\"error preparing query FuncParamIdent: %w\", err)\n\t}\n\treturn &q, nil\n}\n\nfunc (q *Queries) Close() error {\n\tvar err error\n\tif q.funcParamIdentStmt != nil {\n\t\tif cerr := q.funcParamIdentStmt.Close(); cerr != nil {\n\t\t\terr = fmt.Errorf(\"error closing funcParamIdentStmt: %w\", cerr)\n\t\t}\n\t}\n\treturn err\n}\n\nfunc (q *Queries) exec(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) (sql.Result, error) {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).ExecContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.ExecContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.ExecContext(ctx, query, args...)\n\t}\n}\n\nfunc (q *Queries) query(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) (*sql.Rows, error) {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).QueryContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.QueryContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.QueryContext(ctx, query, args...)\n\t}\n}\n\nfunc (q *Queries) queryRow(ctx context.Context, stmt *sql.Stmt, query string, args ...interface{}) *sql.Row {\n\tswitch {\n\tcase stmt != nil && q.tx != nil:\n\t\treturn q.tx.StmtContext(ctx, stmt).QueryRowContext(ctx, args...)\n\tcase stmt != nil:\n\t\treturn stmt.QueryRowContext(ctx, args...)\n\tdefault:\n\t\treturn q.db.QueryRowContext(ctx, query, args...)\n\t}\n}\n\ntype Queries struct {\n\tdb                 DBTX\n\ttx                 *sql.Tx\n\tfuncParamIdentStmt *sql.Stmt\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb:                 tx,\n\t\ttx:                 tx,\n\t\tfuncParamIdentStmt: q.funcParamIdentStmt,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice_prepared/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tID   int64\n\tName string\n\tBar  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice_prepared/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"strings\"\n)\n\nconst funcParamIdent = `-- name: FuncParamIdent :many\nSELECT name FROM foo\nWHERE name = ?1\n  AND id IN (/*SLICE:favourites*/?)\n`\n\ntype FuncParamIdentParams struct {\n\tSlug       string\n\tFavourites []int64\n}\n\nfunc (q *Queries) FuncParamIdent(ctx context.Context, arg FuncParamIdentParams) ([]string, error) {\n\tquery := funcParamIdent\n\tvar queryParams []interface{}\n\tqueryParams = append(queryParams, arg.Slug)\n\tif len(arg.Favourites) > 0 {\n\t\tfor _, v := range arg.Favourites {\n\t\t\tqueryParams = append(queryParams, v)\n\t\t}\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", strings.Repeat(\",?\", len(arg.Favourites))[1:], 1)\n\t} else {\n\t\tquery = strings.Replace(query, \"/*SLICE:favourites*/?\", \"NULL\", 1)\n\t}\n\trows, err := q.query(ctx, nil, query, queryParams...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar name string\n\t\tif err := rows.Scan(&name); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, name)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice_prepared/sqlite/query.sql",
    "content": "/* name: FuncParamIdent :many */\nSELECT name FROM foo\nWHERE name = sqlc.arg(slug)\n  AND id IN (sqlc.slice(favourites));\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice_prepared/sqlite/schema.sql",
    "content": "CREATE TABLE foo (id int not null, name text not null, bar text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlc_slice_prepared/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_prepared_queries\": true\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/sqlite_skip_todo/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlite_skip_todo/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tBar sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlite_skip_todo/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst getFoo = `-- name: GetFoo :many\nSELECT bar FROM foo\nWHERE bar = ?\n`\n\nfunc (q *Queries) GetFoo(ctx context.Context, bar sql.NullString) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, getFoo, bar)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar bar sql.NullString\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listFoo = `-- name: ListFoo :many\nSELECT bar FROM foo\n`\n\nfunc (q *Queries) ListFoo(ctx context.Context) ([]sql.NullString, error) {\n\trows, err := q.db.QueryContext(ctx, listFoo)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []sql.NullString\n\tfor rows.Next() {\n\t\tvar bar sql.NullString\n\t\tif err := rows.Scan(&bar); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, bar)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlite_skip_todo/query.sql",
    "content": "-- name: PragmaForeignKeysEnable :exec\nPRAGMA foreign_keys = 1;\n\n-- name: ListFoo :many\nSELECT * FROM foo;\n\n-- name: PragmaForeignKeysDisable :exec\nPRAGMA foreign_keys = 0;\n\n-- name: PragmaForeignKeysGet :one\nPRAGMA foreign_keys;\n\n-- name: GetFoo :many\nSELECT * FROM foo\nWHERE bar = ?;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlite_skip_todo/schema.sql",
    "content": "CREATE TABLE foo (\n    bar text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlite_skip_todo/sqlc.json",
    "content": "{\n    \"version\": \"2\",\n    \"sql\": [\n        {\n            \"engine\": \"sqlite\",\n            \"queries\": \"query.sql\",\n            \"schema\": \"schema.sql\",\n            \"gen\": {\n                \"go\": {\n                    \"package\": \"db\",\n                    \"out\": \"db\"\n                }\n            }\n        }\n    ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlite_table_options/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlite_table_options/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Authors1 struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype Authors2 struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype Authors3 struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype Authors4 struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlite_table_options/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM authors1\nWHERE id = ?1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Authors1, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Authors1\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlite_table_options/sqlite/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors1\nWHERE id = ?1 LIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlite_table_options/sqlite/schema.sql",
    "content": "CREATE TABLE authors1 (\n  id   INTEGER PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n) STRICT, WITHOUT ROWID;\n\nCREATE TABLE authors2 (\n  id   INTEGER PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n) WITHOUT ROWID, STRICT;\n\nCREATE TABLE authors3 (\n  id   INTEGER PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n) WITHOUT ROWID;\n\nCREATE TABLE authors4 (\n  id   INTEGER PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n) STRICT;\n\n"
  },
  {
    "path": "internal/endtoend/testdata/sqlite_table_options/sqlite/sqlc.json",
    "content": "{\n    \"version\": \"1\",\n    \"packages\": [\n        {\n            \"path\": \"go\",\n            \"engine\": \"sqlite\",\n            \"schema\": \"schema.sql\",\n            \"queries\": \"query.sql\",\n            \"name\": \"querytest\"\n        }\n    ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst starExpansion = `-- name: StarExpansion :many\nSELECT a, b, a, b, foo.a, foo.b FROM foo\n`\n\ntype StarExpansionRow struct {\n\tA   sql.NullString\n\tB   sql.NullString\n\tA_2 sql.NullString\n\tB_2 sql.NullString\n\tA_3 sql.NullString\n\tB_3 sql.NullString\n}\n\nfunc (q *Queries) StarExpansion(ctx context.Context) ([]StarExpansionRow, error) {\n\trows, err := q.db.QueryContext(ctx, starExpansion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []StarExpansionRow\n\tfor rows.Next() {\n\t\tvar i StarExpansionRow\n\t\tif err := rows.Scan(\n\t\t\t&i.A,\n\t\t\t&i.B,\n\t\t\t&i.A_2,\n\t\t\t&i.B_2,\n\t\t\t&i.A_3,\n\t\t\t&i.B_3,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst starQuotedExpansion = `-- name: StarQuotedExpansion :many\nSELECT t.a, t.b FROM foo ` + \"`\" + `t` + \"`\" + `\n`\n\nfunc (q *Queries) StarQuotedExpansion(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, starQuotedExpansion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/mysql/query.sql",
    "content": "/* name: StarExpansion :many */\nSELECT *, *, foo.* FROM foo;\n\n/* name: StarQuotedExpansion :many */\nSELECT `t`.* FROM foo `t`;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/mysql/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst starExpansion = `-- name: StarExpansion :many\nSELECT a, b, a, b, foo.a, foo.b FROM foo\n`\n\ntype StarExpansionRow struct {\n\tA   sql.NullString\n\tB   sql.NullString\n\tA_2 sql.NullString\n\tB_2 sql.NullString\n\tA_3 sql.NullString\n\tB_3 sql.NullString\n}\n\nfunc (q *Queries) StarExpansion(ctx context.Context) ([]StarExpansionRow, error) {\n\trows, err := q.db.Query(ctx, starExpansion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []StarExpansionRow\n\tfor rows.Next() {\n\t\tvar i StarExpansionRow\n\t\tif err := rows.Scan(\n\t\t\t&i.A,\n\t\t\t&i.B,\n\t\t\t&i.A_2,\n\t\t\t&i.B_2,\n\t\t\t&i.A_3,\n\t\t\t&i.B_3,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst starQuotedExpansion = `-- name: StarQuotedExpansion :many\nSELECT t.a, t.b FROM foo \"t\"\n`\n\nfunc (q *Queries) StarQuotedExpansion(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, starQuotedExpansion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/pgx/v4/query.sql",
    "content": "-- name: StarExpansion :many\nSELECT *, *, foo.* FROM foo;\n\n-- name: StarQuotedExpansion :many\nSELECT \"t\".* FROM foo \"t\";"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tA pgtype.Text\n\tB pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst starExpansion = `-- name: StarExpansion :many\nSELECT a, b, a, b, foo.a, foo.b FROM foo\n`\n\ntype StarExpansionRow struct {\n\tA   pgtype.Text\n\tB   pgtype.Text\n\tA_2 pgtype.Text\n\tB_2 pgtype.Text\n\tA_3 pgtype.Text\n\tB_3 pgtype.Text\n}\n\nfunc (q *Queries) StarExpansion(ctx context.Context) ([]StarExpansionRow, error) {\n\trows, err := q.db.Query(ctx, starExpansion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []StarExpansionRow\n\tfor rows.Next() {\n\t\tvar i StarExpansionRow\n\t\tif err := rows.Scan(\n\t\t\t&i.A,\n\t\t\t&i.B,\n\t\t\t&i.A_2,\n\t\t\t&i.B_2,\n\t\t\t&i.A_3,\n\t\t\t&i.B_3,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst starQuotedExpansion = `-- name: StarQuotedExpansion :many\nSELECT t.a, t.b FROM foo \"t\"\n`\n\nfunc (q *Queries) StarQuotedExpansion(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, starQuotedExpansion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/pgx/v5/query.sql",
    "content": "-- name: StarExpansion :many\nSELECT *, *, foo.* FROM foo;\n\n-- name: StarQuotedExpansion :many\nSELECT \"t\".* FROM foo \"t\";"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst starExpansion = `-- name: StarExpansion :many\nSELECT a, b, a, b, foo.a, foo.b FROM foo\n`\n\ntype StarExpansionRow struct {\n\tA   sql.NullString\n\tB   sql.NullString\n\tA_2 sql.NullString\n\tB_2 sql.NullString\n\tA_3 sql.NullString\n\tB_3 sql.NullString\n}\n\nfunc (q *Queries) StarExpansion(ctx context.Context) ([]StarExpansionRow, error) {\n\trows, err := q.db.QueryContext(ctx, starExpansion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []StarExpansionRow\n\tfor rows.Next() {\n\t\tvar i StarExpansionRow\n\t\tif err := rows.Scan(\n\t\t\t&i.A,\n\t\t\t&i.B,\n\t\t\t&i.A_2,\n\t\t\t&i.B_2,\n\t\t\t&i.A_3,\n\t\t\t&i.B_3,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst starQuotedExpansion = `-- name: StarQuotedExpansion :many\nSELECT t.a, t.b FROM foo \"t\"\n`\n\nfunc (q *Queries) StarQuotedExpansion(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, starQuotedExpansion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/stdlib/query.sql",
    "content": "-- name: StarExpansion :many\nSELECT *, *, foo.* FROM foo;\n\n-- name: StarQuotedExpansion :many\nSELECT \"t\".* FROM foo \"t\";"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst starExpansion = `-- name: StarExpansion :many\nSELECT a, b, a, b, foo.a, foo.b FROM foo\n`\n\ntype StarExpansionRow struct {\n\tA   sql.NullString\n\tB   sql.NullString\n\tA_2 sql.NullString\n\tB_2 sql.NullString\n\tA_3 sql.NullString\n\tB_3 sql.NullString\n}\n\nfunc (q *Queries) StarExpansion(ctx context.Context) ([]StarExpansionRow, error) {\n\trows, err := q.db.QueryContext(ctx, starExpansion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []StarExpansionRow\n\tfor rows.Next() {\n\t\tvar i StarExpansionRow\n\t\tif err := rows.Scan(\n\t\t\t&i.A,\n\t\t\t&i.B,\n\t\t\t&i.A_2,\n\t\t\t&i.B_2,\n\t\t\t&i.A_3,\n\t\t\t&i.B_3,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst starQuotedExpansion = `-- name: StarQuotedExpansion :many\nSELECT t.a, t.b FROM foo \"t\"\n`\n\nfunc (q *Queries) StarQuotedExpansion(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, starQuotedExpansion)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/sqlite/query.sql",
    "content": "-- name: StarExpansion :many\nSELECT *, *, foo.* FROM foo;\n\n-- name: StarQuotedExpansion :many\nSELECT \"t\".* FROM foo \"t\";\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/sqlite/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tC sql.NullString\n\tD sql.NullString\n}\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst starExpansionCTE = `-- name: StarExpansionCTE :many\nWITH cte AS (SELECT a, b FROM foo) SELECT c, d FROM bar\n`\n\nfunc (q *Queries) StarExpansionCTE(ctx context.Context) ([]Bar, error) {\n\trows, err := q.db.Query(ctx, starExpansionCTE)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Bar\n\tfor rows.Next() {\n\t\tvar i Bar\n\t\tif err := rows.Scan(&i.C, &i.D); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst starExpansionTwoCTE = `-- name: StarExpansionTwoCTE :many\nWITH \n  a AS (SELECT a, b FROM foo),\n  b AS (SELECT 1::int as bar, a, b FROM a)\nSELECT bar, a, b FROM b\n`\n\ntype StarExpansionTwoCTERow struct {\n\tBar int32\n\tA   sql.NullString\n\tB   sql.NullString\n}\n\nfunc (q *Queries) StarExpansionTwoCTE(ctx context.Context) ([]StarExpansionTwoCTERow, error) {\n\trows, err := q.db.Query(ctx, starExpansionTwoCTE)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []StarExpansionTwoCTERow\n\tfor rows.Next() {\n\t\tvar i StarExpansionTwoCTERow\n\t\tif err := rows.Scan(&i.Bar, &i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/pgx/v4/query.sql",
    "content": "-- name: StarExpansionCTE :many\nWITH cte AS (SELECT * FROM foo) SELECT * FROM bar;\n\n-- name: StarExpansionTwoCTE :many\nWITH \n  a AS (SELECT * FROM foo),\n  b AS (SELECT 1::int as bar, * FROM a)\nSELECT * FROM b;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (c text, d text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Bar struct {\n\tC pgtype.Text\n\tD pgtype.Text\n}\n\ntype Foo struct {\n\tA pgtype.Text\n\tB pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst starExpansionCTE = `-- name: StarExpansionCTE :many\nWITH cte AS (SELECT a, b FROM foo) SELECT c, d FROM bar\n`\n\nfunc (q *Queries) StarExpansionCTE(ctx context.Context) ([]Bar, error) {\n\trows, err := q.db.Query(ctx, starExpansionCTE)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Bar\n\tfor rows.Next() {\n\t\tvar i Bar\n\t\tif err := rows.Scan(&i.C, &i.D); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst starExpansionTwoCTE = `-- name: StarExpansionTwoCTE :many\nWITH \n  a AS (SELECT a, b FROM foo),\n  b AS (SELECT 1::int as bar, a, b FROM a)\nSELECT bar, a, b FROM b\n`\n\ntype StarExpansionTwoCTERow struct {\n\tBar int32\n\tA   pgtype.Text\n\tB   pgtype.Text\n}\n\nfunc (q *Queries) StarExpansionTwoCTE(ctx context.Context) ([]StarExpansionTwoCTERow, error) {\n\trows, err := q.db.Query(ctx, starExpansionTwoCTE)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []StarExpansionTwoCTERow\n\tfor rows.Next() {\n\t\tvar i StarExpansionTwoCTERow\n\t\tif err := rows.Scan(&i.Bar, &i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/pgx/v5/query.sql",
    "content": "-- name: StarExpansionCTE :many\nWITH cte AS (SELECT * FROM foo) SELECT * FROM bar;\n\n-- name: StarExpansionTwoCTE :many\nWITH \n  a AS (SELECT * FROM foo),\n  b AS (SELECT 1::int as bar, * FROM a)\nSELECT * FROM b;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (c text, d text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tC sql.NullString\n\tD sql.NullString\n}\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst starExpansionCTE = `-- name: StarExpansionCTE :many\nWITH cte AS (SELECT a, b FROM foo) SELECT c, d FROM bar\n`\n\nfunc (q *Queries) StarExpansionCTE(ctx context.Context) ([]Bar, error) {\n\trows, err := q.db.QueryContext(ctx, starExpansionCTE)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Bar\n\tfor rows.Next() {\n\t\tvar i Bar\n\t\tif err := rows.Scan(&i.C, &i.D); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst starExpansionTwoCTE = `-- name: StarExpansionTwoCTE :many\nWITH \n  a AS (SELECT a, b FROM foo),\n  b AS (SELECT 1::int as bar, a, b FROM a)\nSELECT bar, a, b FROM b\n`\n\ntype StarExpansionTwoCTERow struct {\n\tBar int32\n\tA   sql.NullString\n\tB   sql.NullString\n}\n\nfunc (q *Queries) StarExpansionTwoCTE(ctx context.Context) ([]StarExpansionTwoCTERow, error) {\n\trows, err := q.db.QueryContext(ctx, starExpansionTwoCTE)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []StarExpansionTwoCTERow\n\tfor rows.Next() {\n\t\tvar i StarExpansionTwoCTERow\n\t\tif err := rows.Scan(&i.Bar, &i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/stdlib/query.sql",
    "content": "-- name: StarExpansionCTE :many\nWITH cte AS (SELECT * FROM foo) SELECT * FROM bar;\n\n-- name: StarExpansionTwoCTE :many\nWITH \n  a AS (SELECT * FROM foo),\n  b AS (SELECT 1::int as bar, * FROM a)\nSELECT * FROM b;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/stdlib/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (c text, d text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_cte/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_failed/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_failed/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_failed/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Version struct {\n\tID                int64\n\tName              pgtype.Text\n\tPreviousVersionID int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_failed/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getLatestVersionWithSubquery = `-- name: GetLatestVersionWithSubquery :one\nSELECT * \nFROM versions\nWHERE versions.id IN (\n  WITH RECURSIVE search_tree(id) AS (\n\tSELECT id, 0 as chain_id, 0 as chain_counter\n    FROM versions\n  )\n  SELECT DISTINCT ON (search_tree.chain_id) \n\tsearch_tree.id\n  FROM search_tree   \n  ORDER BY search_tree.chain_id, chain_counter DESC\n)\n`\n\nfunc (q *Queries) GetLatestVersionWithSubquery(ctx context.Context) (Version, error) {\n\trow := q.db.QueryRow(ctx, getLatestVersionWithSubquery)\n\tvar i Version\n\terr := row.Scan(&i.ID, &i.Name, &i.PreviousVersionID)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_failed/postgresql/pgx/query.sql",
    "content": "-- name: GetLatestVersionWithSubquery :one\nSELECT * \nFROM versions\nWHERE versions.id IN (\n  WITH RECURSIVE search_tree(id) AS (\n\tSELECT id, 0 as chain_id, 0 as chain_counter\n    FROM versions\n  )\n  SELECT DISTINCT ON (search_tree.chain_id) \n\tsearch_tree.id\n  FROM search_tree   \n  ORDER BY search_tree.chain_id, chain_counter DESC\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_failed/postgresql/pgx/schema.sql",
    "content": "-- Example queries for sqlc\nCREATE TABLE versions (\n  id   BIGSERIAL PRIMARY KEY,\n  name TEXT,\n  previous_version_id bigint NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_failed/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_failed/postgresql/pgx/stderr.txt",
    "content": "# package querytest\nquery.sql:1:1: star expansion failed for query\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tC sql.NullString\n\tD sql.NullString\n}\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst starExpansionCTE = `-- name: StarExpansionCTE :many\nWITH cte AS (SELECT a, b FROM foo) SELECT a, b FROM cte\n`\n\ntype StarExpansionCTERow struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n\nfunc (q *Queries) StarExpansionCTE(ctx context.Context) ([]StarExpansionCTERow, error) {\n\trows, err := q.db.Query(ctx, starExpansionCTE)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []StarExpansionCTERow\n\tfor rows.Next() {\n\t\tvar i StarExpansionCTERow\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/pgx/v4/query.sql",
    "content": "-- name: StarExpansionCTE :many\nWITH cte AS (SELECT * FROM foo) SELECT * FROM cte;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (c text, d text);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Bar struct {\n\tC pgtype.Text\n\tD pgtype.Text\n}\n\ntype Foo struct {\n\tA pgtype.Text\n\tB pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst starExpansionCTE = `-- name: StarExpansionCTE :many\nWITH cte AS (SELECT a, b FROM foo) SELECT a, b FROM cte\n`\n\ntype StarExpansionCTERow struct {\n\tA pgtype.Text\n\tB pgtype.Text\n}\n\nfunc (q *Queries) StarExpansionCTE(ctx context.Context) ([]StarExpansionCTERow, error) {\n\trows, err := q.db.Query(ctx, starExpansionCTE)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []StarExpansionCTERow\n\tfor rows.Next() {\n\t\tvar i StarExpansionCTERow\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/pgx/v5/query.sql",
    "content": "-- name: StarExpansionCTE :many\nWITH cte AS (SELECT * FROM foo) SELECT * FROM cte;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (c text, d text);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tC sql.NullString\n\tD sql.NullString\n}\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst starExpansionCTE = `-- name: StarExpansionCTE :many\nWITH cte AS (SELECT a, b FROM foo) SELECT a, b FROM cte\n`\n\ntype StarExpansionCTERow struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n\nfunc (q *Queries) StarExpansionCTE(ctx context.Context) ([]StarExpansionCTERow, error) {\n\trows, err := q.db.QueryContext(ctx, starExpansionCTE)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []StarExpansionCTERow\n\tfor rows.Next() {\n\t\tvar i StarExpansionCTERow\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/stdlib/query.sql",
    "content": "-- name: StarExpansionCTE :many\nWITH cte AS (SELECT * FROM foo) SELECT * FROM cte;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/stdlib/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (c text, d text);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_from_cte/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tC sql.NullString\n\tD sql.NullString\n}\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst starExpansionJoin = `-- name: StarExpansionJoin :many\nSELECT a, b, c, d FROM foo, bar\n`\n\ntype StarExpansionJoinRow struct {\n\tA sql.NullString\n\tB sql.NullString\n\tC sql.NullString\n\tD sql.NullString\n}\n\nfunc (q *Queries) StarExpansionJoin(ctx context.Context) ([]StarExpansionJoinRow, error) {\n\trows, err := q.db.QueryContext(ctx, starExpansionJoin)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []StarExpansionJoinRow\n\tfor rows.Next() {\n\t\tvar i StarExpansionJoinRow\n\t\tif err := rows.Scan(\n\t\t\t&i.A,\n\t\t\t&i.B,\n\t\t\t&i.C,\n\t\t\t&i.D,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/mysql/query.sql",
    "content": "/* name: StarExpansionJoin :many */\nSELECT * FROM foo, bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/mysql/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (c text, d text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tC sql.NullString\n\tD sql.NullString\n}\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst starExpansionJoin = `-- name: StarExpansionJoin :many\nSELECT a, b, c, d FROM foo, bar\n`\n\ntype StarExpansionJoinRow struct {\n\tA sql.NullString\n\tB sql.NullString\n\tC sql.NullString\n\tD sql.NullString\n}\n\nfunc (q *Queries) StarExpansionJoin(ctx context.Context) ([]StarExpansionJoinRow, error) {\n\trows, err := q.db.Query(ctx, starExpansionJoin)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []StarExpansionJoinRow\n\tfor rows.Next() {\n\t\tvar i StarExpansionJoinRow\n\t\tif err := rows.Scan(\n\t\t\t&i.A,\n\t\t\t&i.B,\n\t\t\t&i.C,\n\t\t\t&i.D,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v4/query.sql",
    "content": "-- name: StarExpansionJoin :many\nSELECT * FROM foo, bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (c text, d text);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Bar struct {\n\tC pgtype.Text\n\tD pgtype.Text\n}\n\ntype Foo struct {\n\tA pgtype.Text\n\tB pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst starExpansionJoin = `-- name: StarExpansionJoin :many\nSELECT a, b, c, d FROM foo, bar\n`\n\ntype StarExpansionJoinRow struct {\n\tA pgtype.Text\n\tB pgtype.Text\n\tC pgtype.Text\n\tD pgtype.Text\n}\n\nfunc (q *Queries) StarExpansionJoin(ctx context.Context) ([]StarExpansionJoinRow, error) {\n\trows, err := q.db.Query(ctx, starExpansionJoin)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []StarExpansionJoinRow\n\tfor rows.Next() {\n\t\tvar i StarExpansionJoinRow\n\t\tif err := rows.Scan(\n\t\t\t&i.A,\n\t\t\t&i.B,\n\t\t\t&i.C,\n\t\t\t&i.D,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v5/query.sql",
    "content": "-- name: StarExpansionJoin :many\nSELECT * FROM foo, bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (c text, d text);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Bar struct {\n\tC sql.NullString\n\tD sql.NullString\n}\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst starExpansionJoin = `-- name: StarExpansionJoin :many\nSELECT a, b, c, d FROM foo, bar\n`\n\ntype StarExpansionJoinRow struct {\n\tA sql.NullString\n\tB sql.NullString\n\tC sql.NullString\n\tD sql.NullString\n}\n\nfunc (q *Queries) StarExpansionJoin(ctx context.Context) ([]StarExpansionJoinRow, error) {\n\trows, err := q.db.QueryContext(ctx, starExpansionJoin)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []StarExpansionJoinRow\n\tfor rows.Next() {\n\t\tvar i StarExpansionJoinRow\n\t\tif err := rows.Scan(\n\t\t\t&i.A,\n\t\t\t&i.B,\n\t\t\t&i.C,\n\t\t\t&i.D,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/stdlib/query.sql",
    "content": "-- name: StarExpansionJoin :many\nSELECT * FROM foo, bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\nCREATE TABLE bar (c text, d text);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_join/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tGroup sql.NullString\n\tKey   sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst starExpansionReserved = `-- name: StarExpansionReserved :many\nSELECT ` + \"`\" + `group` + \"`\" + `, ` + \"`\" + `key` + \"`\" + ` FROM foo\n`\n\nfunc (q *Queries) StarExpansionReserved(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, starExpansionReserved)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Group, &i.Key); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/mysql/query.sql",
    "content": "/* name: StarExpansionReserved :many */\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/mysql/schema.sql",
    "content": "CREATE TABLE foo (`group` text, `key` text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tGroup sql.NullString\n\tKey   sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst starExpansionReserved = `-- name: StarExpansionReserved :many\nSELECT \"group\", key FROM foo\n`\n\nfunc (q *Queries) StarExpansionReserved(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, starExpansionReserved)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Group, &i.Key); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v4/query.sql",
    "content": "-- name: StarExpansionReserved :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (\"group\" text, key text);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tGroup pgtype.Text\n\tKey   pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst starExpansionReserved = `-- name: StarExpansionReserved :many\nSELECT \"group\", key FROM foo\n`\n\nfunc (q *Queries) StarExpansionReserved(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, starExpansionReserved)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Group, &i.Key); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v5/query.sql",
    "content": "-- name: StarExpansionReserved :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (\"group\" text, key text);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tGroup sql.NullString\n\tKey   sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst starExpansionReserved = `-- name: StarExpansionReserved :many\nSELECT \"group\", key FROM foo\n`\n\nfunc (q *Queries) StarExpansionReserved(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, starExpansionReserved)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Group, &i.Key); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/stdlib/query.sql",
    "content": "-- name: StarExpansionReserved :many\nSELECT * FROM foo;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (\"group\" text, key text);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_reserved/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_series/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1995\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_series/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_series/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Alertreport struct {\n\tEventdate pgtype.Date\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_series/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst countAlertReportBy = `-- name: CountAlertReportBy :many\nselect DATE_TRUNC($1,ts)::text as datetime,coalesce(count,0) as count from \n(\n    SELECT  DATE_TRUNC($1,eventdate) as hr ,count(*)\n    FROM    alertreport\n    where eventdate between $2 and $3\n    GROUP BY   1\n) AS cnt \nright outer join ( SELECT ts FROM generate_series ( $2, $3, CONCAT('1 ',$1)::interval) AS ts ) as dte\non DATE_TRUNC($1, ts ) = cnt.hr \norder by 1 asc\n`\n\ntype CountAlertReportByParams struct {\n\tDateTrunc   string\n\tEventdate   pgtype.Date\n\tEventdate_2 pgtype.Date\n}\n\ntype CountAlertReportByRow struct {\n\tDatetime string\n\tCount    int64\n}\n\nfunc (q *Queries) CountAlertReportBy(ctx context.Context, arg CountAlertReportByParams) ([]CountAlertReportByRow, error) {\n\trows, err := q.db.Query(ctx, countAlertReportBy, arg.DateTrunc, arg.Eventdate, arg.Eventdate_2)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []CountAlertReportByRow\n\tfor rows.Next() {\n\t\tvar i CountAlertReportByRow\n\t\tif err := rows.Scan(&i.Datetime, &i.Count); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_series/postgresql/pgx/query.sql",
    "content": "-- name: CountAlertReportBy :many\nselect DATE_TRUNC($1,ts)::text as datetime,coalesce(count,0) as count from \n(\n    SELECT  DATE_TRUNC($1,eventdate) as hr ,count(*)\n    FROM    alertreport\n    where eventdate between $2 and $3\n    GROUP BY   1\n) AS cnt \nright outer join ( SELECT * FROM generate_series ( $2, $3, CONCAT('1 ',$1)::interval) AS ts ) as dte\non DATE_TRUNC($1, ts ) = cnt.hr \norder by 1 asc;\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_series/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE alertreport (\n  eventdate date\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_series/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst starExpansionSubquery = `-- name: StarExpansionSubquery :many\nSELECT a, b FROM foo WHERE EXISTS (SELECT a, b FROM foo)\n`\n\nfunc (q *Queries) StarExpansionSubquery(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, starExpansionSubquery)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/mysql/query.sql",
    "content": "/* name: StarExpansionSubquery :many */\nSELECT * FROM foo WHERE EXISTS (SELECT * FROM foo);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/mysql/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst starExpansionSubquery = `-- name: StarExpansionSubquery :many\nSELECT a, b FROM foo WHERE EXISTS (SELECT a, b FROM foo)\n`\n\nfunc (q *Queries) StarExpansionSubquery(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, starExpansionSubquery)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v4/query.sql",
    "content": "-- name: StarExpansionSubquery :many\nSELECT * FROM foo WHERE EXISTS (SELECT * FROM foo);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tA pgtype.Text\n\tB pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst starExpansionSubquery = `-- name: StarExpansionSubquery :many\nSELECT a, b FROM foo WHERE EXISTS (SELECT a, b FROM foo)\n`\n\nfunc (q *Queries) StarExpansionSubquery(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.Query(ctx, starExpansionSubquery)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v5/query.sql",
    "content": "-- name: StarExpansionSubquery :many\nSELECT * FROM foo WHERE EXISTS (SELECT * FROM foo);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst starExpansionSubquery = `-- name: StarExpansionSubquery :many\nSELECT a, b FROM foo WHERE EXISTS (SELECT a, b FROM foo)\n`\n\nfunc (q *Queries) StarExpansionSubquery(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, starExpansionSubquery)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.A, &i.B); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/stdlib/query.sql",
    "content": "-- name: StarExpansionSubquery :many\nSELECT * FROM foo WHERE EXISTS (SELECT * FROM foo);\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (a text, b text);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/star_expansion_subquery/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/strict_function_checks/postgresql/query.sql",
    "content": "-- name: F :exec\nSELECT doesntexist();\n"
  },
  {
    "path": "internal/endtoend/testdata/strict_function_checks/postgresql/schema.sql",
    "content": ""
  },
  {
    "path": "internal/endtoend/testdata/strict_function_checks/postgresql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"path\": \"go\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\",\n\t\t\t\"engine\": \"postgresql\",\n\t\t\t\"strict_function_checks\": true\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/strict_function_checks/postgresql/stderr/base.txt",
    "content": "# package querytest\nquery.sql:1:1: function \"doesntexist\" does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/strict_function_checks/postgresql/stderr/managed-db.txt",
    "content": "# package querytest\nquery.sql:2:8: function doesntexist() does not exist\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullInt32\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst subqueryCalcColumn = `-- name: SubqueryCalcColumn :many\nSELECT sum FROM (SELECT a + b AS sum FROM foo) AS f\n`\n\nfunc (q *Queries) SubqueryCalcColumn(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, subqueryCalcColumn)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar sum int32\n\t\tif err := rows.Scan(&sum); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, sum)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/mysql/query.sql",
    "content": "-- name: SubqueryCalcColumn :many\nSELECT sum FROM (SELECT a + b AS sum FROM foo) AS f;\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/mysql/schema.sql",
    "content": "CREATE TABLE foo (a int, b int);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullInt32\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst subqueryCalcColumn = `-- name: SubqueryCalcColumn :many\nSELECT sum FROM (SELECT a + b AS sum FROM foo) AS f\n`\n\nfunc (q *Queries) SubqueryCalcColumn(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, subqueryCalcColumn)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar sum int32\n\t\tif err := rows.Scan(&sum); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, sum)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v4/query.sql",
    "content": "-- name: SubqueryCalcColumn :many\nSELECT sum FROM (SELECT a + b AS sum FROM foo) AS f;\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (a int, b int);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Foo struct {\n\tA pgtype.Int4\n\tB pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst subqueryCalcColumn = `-- name: SubqueryCalcColumn :many\nSELECT sum FROM (SELECT a + b AS sum FROM foo) AS f\n`\n\nfunc (q *Queries) SubqueryCalcColumn(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.Query(ctx, subqueryCalcColumn)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar sum int32\n\t\tif err := rows.Scan(&sum); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, sum)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v5/query.sql",
    "content": "-- name: SubqueryCalcColumn :many\nSELECT sum FROM (SELECT a + b AS sum FROM foo) AS f;\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (a int, b int);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullInt32\n\tB sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst subqueryCalcColumn = `-- name: SubqueryCalcColumn :many\nSELECT sum FROM (SELECT a + b AS sum FROM foo) AS f\n`\n\nfunc (q *Queries) SubqueryCalcColumn(ctx context.Context) ([]int32, error) {\n\trows, err := q.db.QueryContext(ctx, subqueryCalcColumn)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int32\n\tfor rows.Next() {\n\t\tvar sum int32\n\t\tif err := rows.Scan(&sum); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, sum)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/stdlib/query.sql",
    "content": "-- name: SubqueryCalcColumn :many\nSELECT sum FROM (SELECT a + b AS sum FROM foo) AS f;\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (a int, b int);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Foo struct {\n\tA sql.NullInt64\n\tB sql.NullInt64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst subqueryCalcColumn = `-- name: SubqueryCalcColumn :many\nSELECT sum FROM (SELECT a + b AS sum FROM foo) AS f\n`\n\nfunc (q *Queries) SubqueryCalcColumn(ctx context.Context) ([]int64, error) {\n\trows, err := q.db.QueryContext(ctx, subqueryCalcColumn)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []int64\n\tfor rows.Next() {\n\t\tvar sum int64\n\t\tif err := rows.Scan(&sum); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, sum)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/sqlite/query.sql",
    "content": "-- name: SubqueryCalcColumn :many\nSELECT sum FROM (SELECT a + b AS sum FROM foo) AS f;\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/sqlite/schema.sql",
    "content": "CREATE TABLE foo (a int, b int);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/subquery_calculated_column/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/sum_type/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1106"
  },
  {
    "path": "internal/endtoend/testdata/sum_type/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sum_type/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sum_type/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Order struct {\n\tID           int64\n\tQuantity     pgtype.Numeric\n\tOrderCatalog pgtype.Int4\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sum_type/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst sumOrder = `-- name: SumOrder :one\nSELECT SUM(quantity) FROM orders\n`\n\nfunc (q *Queries) SumOrder(ctx context.Context) (pgtype.Numeric, error) {\n\trow := q.db.QueryRow(ctx, sumOrder)\n\tvar sum pgtype.Numeric\n\terr := row.Scan(&sum)\n\treturn sum, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/sum_type/postgresql/pgx/query.sql",
    "content": "-- name: SumOrder :one\nSELECT SUM(quantity) FROM orders;"
  },
  {
    "path": "internal/endtoend/testdata/sum_type/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE orders (\n  id   BIGSERIAL PRIMARY KEY,\n  quantity decimal      NOT NULL,\n  order_catalog  int\n);"
  },
  {
    "path": "internal/endtoend/testdata/sum_type/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\""
  },
  {
    "path": "internal/endtoend/testdata/syntax_errors/mysql/query/from.sql",
    "content": "/* name: TooManyFroms :one */\nselect id, first_name from users from where id = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/syntax_errors/mysql/query/select.sql",
    "content": "/* name: ExtraSelect :one */\nselect id from users where select id;\n"
  },
  {
    "path": "internal/endtoend/testdata/syntax_errors/mysql/query/typo.sql",
    "content": "/* name: MisspelledSelect :one */\nselectt id, first_name from users;\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/syntax_errors/mysql/schema.sql",
    "content": "CREATE TABLE users (\n    id integer NOT NULL AUTO_INCREMENT PRIMARY KEY,\n    first_name varchar(255) NOT NULL\n) ENGINE=InnoDB;\n"
  },
  {
    "path": "internal/endtoend/testdata/syntax_errors/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query\",\n      \"engine\": \"mysql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/syntax_errors/mysql/stderr.txt",
    "content": "# package querytest\nquery/from.sql:2:38: syntax error near \"from where id = ?;\"\nquery/select.sql:2:34: syntax error near \"select id;\"\nquery/typo.sql:2:8: syntax error near \"selectt id, first_name from users;\"\n"
  },
  {
    "path": "internal/endtoend/testdata/syntax_errors/postgresql/query/from.sql",
    "content": "/* name: TooManyFroms :one */\nselect id, first_name from users from where id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/syntax_errors/postgresql/query/select.sql",
    "content": "/* name: ExtraSelect :one */\nselect id from users where select id;\n"
  },
  {
    "path": "internal/endtoend/testdata/syntax_errors/postgresql/query/typo.sql",
    "content": "/* name: MisspelledSelect :one */\nselectt id, first_name from users;\n\n\n"
  },
  {
    "path": "internal/endtoend/testdata/syntax_errors/postgresql/schema.sql",
    "content": "CREATE TABLE users (\n    id SERIAL PRIMARY KEY,\n    first_name varchar(255) NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/syntax_errors/postgresql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"name\": \"querytest\",\n      \"path\": \"go\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query\",\n      \"engine\": \"postgresql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/syntax_errors/postgresql/stderr.txt",
    "content": "# package querytest\nquery/from.sql:2:35: syntax error at or near \"from\"\nquery/select.sql:2:29: syntax error at or near \"select\"\nquery/typo.sql:2:2: syntax error at or near \"selectt\"\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgtype\"\n)\n\ntype Transaction struct {\n\tID        int64\n\tUri       string\n\tProgramID string\n\tData      pgtype.JSONB\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgtype\"\n)\n\nconst getTransaction = `-- name: GetTransaction :many\nSELECT\n\tjsonb_extract_path(transactions.data, '$.transaction.signatures[0]'),\n\tjsonb_agg(instructions.value)\nFROM\n  transactions, \n\tjsonb_each(jsonb_extract_path(transactions.data, '$.transaction.message.instructions[0]')) AS instructions\nWHERE\n\ttransactions.program_id = $1\n\tAND jsonb_extract_path(transactions.data, '$.transaction.signatures[0]') @> to_jsonb($2::text)\n\tAND jsonb_extract_path(jsonb_extract_path(transactions.data, '$.transaction.message.accountKeys'), 'key') = to_jsonb(transactions.program_id)\nGROUP BY transactions.id\n`\n\ntype GetTransactionParams struct {\n\tProgramID string\n\tData      string\n}\n\ntype GetTransactionRow struct {\n\tJsonbExtractPath pgtype.JSONB\n\tJsonbAgg         pgtype.JSONB\n}\n\nfunc (q *Queries) GetTransaction(ctx context.Context, arg GetTransactionParams) ([]GetTransactionRow, error) {\n\trows, err := q.db.Query(ctx, getTransaction, arg.ProgramID, arg.Data)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetTransactionRow\n\tfor rows.Next() {\n\t\tvar i GetTransactionRow\n\t\tif err := rows.Scan(&i.JsonbExtractPath, &i.JsonbAgg); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/pgx/v4/query.sql",
    "content": "/* name: GetTransaction :many */\nSELECT\n\tjsonb_extract_path(transactions.data, '$.transaction.signatures[0]'),\n\tjsonb_agg(instructions.value)\nFROM\n  transactions, \n\tjsonb_each(jsonb_extract_path(transactions.data, '$.transaction.message.instructions[0]')) AS instructions\nWHERE\n\ttransactions.program_id = sqlc.arg('program_id')\n\tAND jsonb_extract_path(transactions.data, '$.transaction.signatures[0]') @> to_jsonb(sqlc.arg('data')::text)\n\tAND jsonb_extract_path(jsonb_extract_path(transactions.data, '$.transaction.message.accountKeys'), 'key') = to_jsonb(transactions.program_id)\nGROUP BY transactions.id;"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE transactions (\n  id         BIGSERIAL PRIMARY KEY,\n  uri        TEXT      NOT NULL,\n  program_id TEXT      NOT NULL,\n  data       JSONB      NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Transaction struct {\n\tID        int64\n\tUri       string\n\tProgramID string\n\tData      []byte\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getTransaction = `-- name: GetTransaction :many\nSELECT\n\tjsonb_extract_path(transactions.data, '$.transaction.signatures[0]'),\n\tjsonb_agg(instructions.value)\nFROM\n  transactions, \n\tjsonb_each(jsonb_extract_path(transactions.data, '$.transaction.message.instructions[0]')) AS instructions\nWHERE\n\ttransactions.program_id = $1\n\tAND jsonb_extract_path(transactions.data, '$.transaction.signatures[0]') @> to_jsonb($2::text)\n\tAND jsonb_extract_path(jsonb_extract_path(transactions.data, '$.transaction.message.accountKeys'), 'key') = to_jsonb(transactions.program_id)\nGROUP BY transactions.id\n`\n\ntype GetTransactionParams struct {\n\tProgramID string\n\tData      string\n}\n\ntype GetTransactionRow struct {\n\tJsonbExtractPath []byte\n\tJsonbAgg         []byte\n}\n\nfunc (q *Queries) GetTransaction(ctx context.Context, arg GetTransactionParams) ([]GetTransactionRow, error) {\n\trows, err := q.db.Query(ctx, getTransaction, arg.ProgramID, arg.Data)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetTransactionRow\n\tfor rows.Next() {\n\t\tvar i GetTransactionRow\n\t\tif err := rows.Scan(&i.JsonbExtractPath, &i.JsonbAgg); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/pgx/v5/query.sql",
    "content": "/* name: GetTransaction :many */\nSELECT\n\tjsonb_extract_path(transactions.data, '$.transaction.signatures[0]'),\n\tjsonb_agg(instructions.value)\nFROM\n  transactions, \n\tjsonb_each(jsonb_extract_path(transactions.data, '$.transaction.message.instructions[0]')) AS instructions\nWHERE\n\ttransactions.program_id = sqlc.arg('program_id')\n\tAND jsonb_extract_path(transactions.data, '$.transaction.signatures[0]') @> to_jsonb(sqlc.arg('data')::text)\n\tAND jsonb_extract_path(jsonb_extract_path(transactions.data, '$.transaction.message.accountKeys'), 'key') = to_jsonb(transactions.program_id)\nGROUP BY transactions.id;"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE transactions (\n  id         BIGSERIAL PRIMARY KEY,\n  uri        TEXT      NOT NULL,\n  program_id TEXT      NOT NULL,\n  data       JSONB      NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"encoding/json\"\n)\n\ntype Transaction struct {\n\tID        int64\n\tUri       string\n\tProgramID string\n\tData      json.RawMessage\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"encoding/json\"\n)\n\nconst getTransaction = `-- name: GetTransaction :many\nSELECT\n\tjsonb_extract_path(transactions.data, '$.transaction.signatures[0]'),\n\tjsonb_agg(instructions.value)\nFROM\n  transactions, \n\tjsonb_each(jsonb_extract_path(transactions.data, '$.transaction.message.instructions[0]')) AS instructions\nWHERE\n\ttransactions.program_id = $1\n\tAND jsonb_extract_path(transactions.data, '$.transaction.signatures[0]') @> to_jsonb($2::text)\n\tAND jsonb_extract_path(jsonb_extract_path(transactions.data, '$.transaction.message.accountKeys'), 'key') = to_jsonb(transactions.program_id)\nGROUP BY transactions.id\n`\n\ntype GetTransactionParams struct {\n\tProgramID string\n\tData      string\n}\n\ntype GetTransactionRow struct {\n\tJsonbExtractPath json.RawMessage\n\tJsonbAgg         json.RawMessage\n}\n\nfunc (q *Queries) GetTransaction(ctx context.Context, arg GetTransactionParams) ([]GetTransactionRow, error) {\n\trows, err := q.db.QueryContext(ctx, getTransaction, arg.ProgramID, arg.Data)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetTransactionRow\n\tfor rows.Next() {\n\t\tvar i GetTransactionRow\n\t\tif err := rows.Scan(&i.JsonbExtractPath, &i.JsonbAgg); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/stdlib/query.sql",
    "content": "/* name: GetTransaction :many */\nSELECT\n\tjsonb_extract_path(transactions.data, '$.transaction.signatures[0]'),\n\tjsonb_agg(instructions.value)\nFROM\n  transactions, \n\tjsonb_each(jsonb_extract_path(transactions.data, '$.transaction.message.instructions[0]')) AS instructions\nWHERE\n\ttransactions.program_id = sqlc.arg('program_id')\n\tAND jsonb_extract_path(transactions.data, '$.transaction.signatures[0]') @> to_jsonb(sqlc.arg('data')::text)\n\tAND jsonb_extract_path(jsonb_extract_path(transactions.data, '$.transaction.message.accountKeys'), 'key') = to_jsonb(transactions.program_id)\nGROUP BY transactions.id;"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE transactions (\n  id         BIGSERIAL PRIMARY KEY,\n  uri        TEXT      NOT NULL,\n  program_id TEXT      NOT NULL,\n  data       JSONB      NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Transaction struct {\n\tUri       string\n\tProgramID string\n\tData      string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getTransaction = `-- name: GetTransaction :many\nSELECT\n\tjson_extract(transactions.data, '$.transaction.signatures[0]'),\n\tjson_group_array(instructions.value)\nFROM\n  transactions,\n\tjson_each(json_extract(transactions.data, '$.transaction.message.instructions')) AS instructions\nWHERE\n\ttransactions.program_id = ?\n\tAND json_extract(transactions.data, '$.transaction.signatures[0]') > ?\n\tAND json_extract(json_extract(transactions.data, '$.transaction.message.accountKeys'), '$[' || json_extract(instructions.value, '$.programIdIndex') || ']') = transactions.program_id\nGROUP BY transactions.rowid\nLIMIT ?\n`\n\ntype GetTransactionParams struct {\n\tProgramID string\n\tData      string\n\tLimit     int64\n}\n\ntype GetTransactionRow struct {\n\tJsonExtract    interface{}\n\tJsonGroupArray interface{}\n}\n\nfunc (q *Queries) GetTransaction(ctx context.Context, arg GetTransactionParams) ([]GetTransactionRow, error) {\n\trows, err := q.db.QueryContext(ctx, getTransaction, arg.ProgramID, arg.Data, arg.Limit)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetTransactionRow\n\tfor rows.Next() {\n\t\tvar i GetTransactionRow\n\t\tif err := rows.Scan(&i.JsonExtract, &i.JsonGroupArray); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/sqlite/query.sql",
    "content": "/* name: GetTransaction :many */\nSELECT\n\tjson_extract(transactions.data, '$.transaction.signatures[0]'),\n\tjson_group_array(instructions.value)\nFROM\n  transactions,\n\tjson_each(json_extract(transactions.data, '$.transaction.message.instructions')) AS instructions\nWHERE\n\ttransactions.program_id = ?\n\tAND json_extract(transactions.data, '$.transaction.signatures[0]') > ?\n\tAND json_extract(json_extract(transactions.data, '$.transaction.message.accountKeys'), '$[' || json_extract(instructions.value, '$.programIdIndex') || ']') = transactions.program_id\nGROUP BY transactions.rowid\nLIMIT ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/sqlite/schema.sql",
    "content": "CREATE TABLE transactions (\n    uri text NOT NULL,\n    program_id text NOT NULL,\n    data text NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/table_function/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/table_name_case_sensitivity/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_name_case_sensitivity/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName sql.NullString\n}\n\ntype Book struct {\n\tID    int64\n\tTitle sql.NullString\n}\n\ntype User struct {\n\tID   int64\n\tName sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_name_case_sensitivity/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst deleteAuthor = `-- name: DeleteAuthor :exec\nDELETE FROM \"Authors\" WHERE id = ?\n`\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthor, id)\n\treturn err\n}\n\nconst deleteBook = `-- name: DeleteBook :exec\nDELETE FROM Books WHERE id = ?\n`\n\nfunc (q *Queries) DeleteBook(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteBook, id)\n\treturn err\n}\n\nconst deleteUser = `-- name: DeleteUser :exec\nDELETE FROM users WHERE id = ?\n`\n\nfunc (q *Queries) DeleteUser(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteUser, id)\n\treturn err\n}\n\nconst deleteUserMixedCase = `-- name: DeleteUserMixedCase :exec\nDELETE FROM users WHERE id = ?\n`\n\nfunc (q *Queries) DeleteUserMixedCase(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteUserMixedCase, id)\n\treturn err\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name FROM \"Authors\" WHERE id = ?\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name)\n\treturn i, err\n}\n\nconst getBook = `-- name: GetBook :one\nSELECT id, title FROM Books WHERE id = ?\n`\n\nfunc (q *Queries) GetBook(ctx context.Context, id int64) (Book, error) {\n\trow := q.db.QueryRowContext(ctx, getBook, id)\n\tvar i Book\n\terr := row.Scan(&i.ID, &i.Title)\n\treturn i, err\n}\n\nconst getUser = `-- name: GetUser :one\nSELECT id, name FROM users WHERE id = ?\n`\n\nfunc (q *Queries) GetUser(ctx context.Context, id int64) (User, error) {\n\trow := q.db.QueryRowContext(ctx, getUser, id)\n\tvar i User\n\terr := row.Scan(&i.ID, &i.Name)\n\treturn i, err\n}\n\nconst getUserMixedCase = `-- name: GetUserMixedCase :one\nSELECT id, name FROM users WHERE id = ?\n`\n\nfunc (q *Queries) GetUserMixedCase(ctx context.Context, id int64) (User, error) {\n\trow := q.db.QueryRowContext(ctx, getUserMixedCase, id)\n\tvar i User\n\terr := row.Scan(&i.ID, &i.Name)\n\treturn i, err\n}\n\nconst insertAuthor = `-- name: InsertAuthor :exec\nINSERT INTO \"Authors\" (name) VALUES (?)\n`\n\nfunc (q *Queries) InsertAuthor(ctx context.Context, name sql.NullString) error {\n\t_, err := q.db.ExecContext(ctx, insertAuthor, name)\n\treturn err\n}\n\nconst insertBook = `-- name: InsertBook :exec\nINSERT INTO Books (title) VALUES (?)\n`\n\nfunc (q *Queries) InsertBook(ctx context.Context, title sql.NullString) error {\n\t_, err := q.db.ExecContext(ctx, insertBook, title)\n\treturn err\n}\n\nconst insertUser = `-- name: InsertUser :exec\nINSERT INTO users (name) VALUES (?)\n`\n\nfunc (q *Queries) InsertUser(ctx context.Context, name sql.NullString) error {\n\t_, err := q.db.ExecContext(ctx, insertUser, name)\n\treturn err\n}\n\nconst insertUserMixedCase = `-- name: InsertUserMixedCase :exec\nINSERT INTO users (name) VALUES (?)\n`\n\nfunc (q *Queries) InsertUserMixedCase(ctx context.Context, name sql.NullString) error {\n\t_, err := q.db.ExecContext(ctx, insertUserMixedCase, name)\n\treturn err\n}\n\nconst updateAuthor = `-- name: UpdateAuthor :exec\nUPDATE \"Authors\" SET name = ? WHERE id = ?\n`\n\ntype UpdateAuthorParams struct {\n\tName sql.NullString\n\tID   int64\n}\n\nfunc (q *Queries) UpdateAuthor(ctx context.Context, arg UpdateAuthorParams) error {\n\t_, err := q.db.ExecContext(ctx, updateAuthor, arg.Name, arg.ID)\n\treturn err\n}\n\nconst updateBook = `-- name: UpdateBook :exec\nUPDATE Books SET title = ? WHERE id = ?\n`\n\ntype UpdateBookParams struct {\n\tTitle sql.NullString\n\tID    int64\n}\n\nfunc (q *Queries) UpdateBook(ctx context.Context, arg UpdateBookParams) error {\n\t_, err := q.db.ExecContext(ctx, updateBook, arg.Title, arg.ID)\n\treturn err\n}\n\nconst updateUser = `-- name: UpdateUser :exec\nUPDATE users SET name = ? WHERE id = ?\n`\n\ntype UpdateUserParams struct {\n\tName sql.NullString\n\tID   int64\n}\n\nfunc (q *Queries) UpdateUser(ctx context.Context, arg UpdateUserParams) error {\n\t_, err := q.db.ExecContext(ctx, updateUser, arg.Name, arg.ID)\n\treturn err\n}\n\nconst updateUserMixedCase = `-- name: UpdateUserMixedCase :exec\nUPDATE users SET name = ? WHERE id = ?\n`\n\ntype UpdateUserMixedCaseParams struct {\n\tName sql.NullString\n\tID   int64\n}\n\nfunc (q *Queries) UpdateUserMixedCase(ctx context.Context, arg UpdateUserMixedCaseParams) error {\n\t_, err := q.db.ExecContext(ctx, updateUserMixedCase, arg.Name, arg.ID)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/table_name_case_sensitivity/sqlite/query.sql",
    "content": "-- name: InsertUser :exec\nINSERT INTO users (name) VALUES (?);\n\n-- name: InsertUserMixedCase :exec\nINSERT INTO users (name) VALUES (?);\n\n-- name: InsertAuthor :exec\nINSERT INTO \"Authors\" (name) VALUES (?);\n\n-- name: InsertBook :exec\nINSERT INTO Books (title) VALUES (?);\n\n-- name: UpdateUser :exec\nUPDATE users SET name = ? WHERE id = ?;\n\n-- name: UpdateUserMixedCase :exec\nUPDATE users SET name = ? WHERE id = ?;\n\n-- name: UpdateAuthor :exec\nUPDATE \"Authors\" SET name = ? WHERE id = ?;\n\n-- name: UpdateBook :exec\nUPDATE Books SET title = ? WHERE id = ?;\n\n-- name: DeleteUser :exec\nDELETE FROM users WHERE id = ?;\n\n-- name: DeleteUserMixedCase :exec\nDELETE FROM users WHERE id = ?;\n\n-- name: DeleteAuthor :exec\nDELETE FROM \"Authors\" WHERE id = ?;\n\n-- name: DeleteBook :exec\nDELETE FROM Books WHERE id = ?;\n\n-- name: GetUser :one\nSELECT * FROM users WHERE id = ?;\n\n-- name: GetUserMixedCase :one\nSELECT * FROM users WHERE id = ?;\n\n-- name: GetAuthor :one\nSELECT * FROM \"Authors\" WHERE id = ?;\n\n-- name: GetBook :one\nSELECT * FROM Books WHERE id = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/table_name_case_sensitivity/sqlite/schema.sql",
    "content": "-- Test table name case sensitivity handling across different SQLite operations\n-- Create tables with different case patterns to verify consistent name resolution\nCREATE TABLE users (id integer primary key, name text);\nCREATE TABLE \"Authors\" (id integer primary key, name text);\nCREATE TABLE Books (id integer primary key, title text);\n\n-- Create a temporary table to test drop operations  \nCREATE TABLE temp_orders (id integer primary key);\nDROP TABLE temp_orders;\n\n-- Create another temp table with quoted identifier\nCREATE TABLE \"temp_products\" (id integer primary key);\nDROP TABLE \"temp_products\";\n"
  },
  {
    "path": "internal/endtoend/testdata/table_name_case_sensitivity/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID uint64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst truncate = `-- name: Truncate :exec\nTRUNCATE bar\n`\n\nfunc (q *Queries) Truncate(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, truncate)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/mysql/query.sql",
    "content": "-- name: Truncate :exec\nTRUNCATE bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/mysql/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst truncate = `-- name: Truncate :exec\nTRUNCATE bar\n`\n\nfunc (q *Queries) Truncate(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, truncate)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/pgx/v4/query.sql",
    "content": "-- name: Truncate :exec\nTRUNCATE bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst truncate = `-- name: Truncate :exec\nTRUNCATE bar\n`\n\nfunc (q *Queries) Truncate(ctx context.Context) error {\n\t_, err := q.db.Exec(ctx, truncate)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/pgx/v5/query.sql",
    "content": "-- name: Truncate :exec\nTRUNCATE bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Bar struct {\n\tID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst truncate = `-- name: Truncate :exec\nTRUNCATE bar\n`\n\nfunc (q *Queries) Truncate(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, truncate)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/stdlib/query.sql",
    "content": "-- name: Truncate :exec\nTRUNCATE bar;\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE bar (id serial not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/truncate/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/types_uuid/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/types_uuid/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\n\t\"github.com/google/uuid\"\n)\n\ntype Foo struct {\n\tDescription sql.NullString\n\tBar         uuid.NullUUID\n\tBaz         uuid.UUID\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/types_uuid/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/google/uuid\"\n)\n\nconst find = `-- name: Find :one\nSELECT bar FROM foo WHERE baz = $1\n`\n\nfunc (q *Queries) Find(ctx context.Context, baz uuid.UUID) (uuid.NullUUID, error) {\n\trow := q.db.QueryRowContext(ctx, find, baz)\n\tvar bar uuid.NullUUID\n\terr := row.Scan(&bar)\n\treturn bar, err\n}\n\nconst list = `-- name: List :many\nSELECT description, bar, baz FROM foo\n`\n\nfunc (q *Queries) List(ctx context.Context) ([]Foo, error) {\n\trows, err := q.db.QueryContext(ctx, list)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Foo\n\tfor rows.Next() {\n\t\tvar i Foo\n\t\tif err := rows.Scan(&i.Description, &i.Bar, &i.Baz); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/types_uuid/postgresql/stdlib/query.sql",
    "content": "-- name: List :many\nSELECT * FROM foo;\n\n-- name: Find :one\nSELECT bar FROM foo WHERE baz = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/types_uuid/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (\n    description text,\n    bar uuid,\n    baz uuid not null\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/types_uuid/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pganalyze/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pganalyze/query.sql",
    "content": "-- name: ListFoos :one\nSELECT id FROM foo WHERE id = frobnicate($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pganalyze/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pganalyze/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pganalyze/stderr.txt",
    "content": "# package querytest\nquery.sql:2:31: function frobnicate(unknown) does not exist"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pgx/v4/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listFoos = `-- name: ListFoos :one\nSELECT id FROM foo WHERE id = frobnicate($1)\n`\n\nfunc (q *Queries) ListFoos(ctx context.Context, frobnicate interface{}) (string, error) {\n\trow := q.db.QueryRow(ctx, listFoos, frobnicate)\n\tvar id string\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pgx/v4/query.sql",
    "content": "-- name: ListFoos :one\nSELECT id FROM foo WHERE id = frobnicate($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pgx/v5/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listFoos = `-- name: ListFoos :one\nSELECT id FROM foo WHERE id = frobnicate($1)\n`\n\nfunc (q *Queries) ListFoos(ctx context.Context, frobnicate interface{}) (string, error) {\n\trow := q.db.QueryRow(ctx, listFoos, frobnicate)\n\tvar id string\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pgx/v5/query.sql",
    "content": "-- name: ListFoos :one\nSELECT id FROM foo WHERE id = frobnicate($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/stdlib/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst listFoos = `-- name: ListFoos :one\nSELECT id FROM foo WHERE id = frobnicate($1)\n`\n\nfunc (q *Queries) ListFoos(ctx context.Context, frobnicate interface{}) (string, error) {\n\trow := q.db.QueryRowContext(ctx, listFoos, frobnicate)\n\tvar id string\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/stdlib/query.sql",
    "content": "-- name: ListFoos :one\nSELECT id FROM foo WHERE id = frobnicate($1);\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/stdlib/schema.sql",
    "content": "CREATE TABLE foo (id text not null);\n"
  },
  {
    "path": "internal/endtoend/testdata/unknown_func/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n\n\t\"github.com/google/uuid\"\n)\n\ntype Memory struct {\n\tID        uuid.UUID\n\tVampireID uuid.UUID\n\tCreatedAt time.Time\n\tUpdatedAt sql.NullTime\n}\n\ntype Vampire struct {\n\tID uuid.UUID\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/pgx/v4/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/google/uuid\"\n)\n\ntype Querier interface {\n\tCreateMemories(ctx context.Context, vampireID []uuid.UUID) ([]Memory, error)\n\tGetVampireIDs(ctx context.Context, vampireID []uuid.UUID) ([]uuid.UUID, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/google/uuid\"\n)\n\nconst createMemories = `-- name: CreateMemories :many\nINSERT INTO memories (vampire_id)\nSELECT\n    unnest($1::uuid[]) AS vampire_id\nRETURNING\n    id, vampire_id, created_at, updated_at\n`\n\nfunc (q *Queries) CreateMemories(ctx context.Context, vampireID []uuid.UUID) ([]Memory, error) {\n\trows, err := q.db.Query(ctx, createMemories, vampireID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Memory\n\tfor rows.Next() {\n\t\tvar i Memory\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.VampireID,\n\t\t\t&i.CreatedAt,\n\t\t\t&i.UpdatedAt,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getVampireIDs = `-- name: GetVampireIDs :many\nSELECT vampires.id::uuid FROM unnest($1::uuid[]) AS vampires (id)\n`\n\nfunc (q *Queries) GetVampireIDs(ctx context.Context, vampireID []uuid.UUID) ([]uuid.UUID, error) {\n\trows, err := q.db.Query(ctx, getVampireIDs, vampireID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []uuid.UUID\n\tfor rows.Next() {\n\t\tvar vampires_id uuid.UUID\n\t\tif err := rows.Scan(&vampires_id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, vampires_id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/pgx/v4/query.sql",
    "content": "-- name: CreateMemories :many\nINSERT INTO memories (vampire_id)\nSELECT\n    unnest(@vampire_id::uuid[]) AS vampire_id\nRETURNING\n    *;\n\n-- name: GetVampireIDs :many\nSELECT vampires.id::uuid FROM unnest(@vampire_id::uuid[]) AS vampires (id);\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE vampires (\n    id uuid PRIMARY KEY DEFAULT gen_random_uuid ()\n);\n\nCREATE TABLE memories (\n    id uuid PRIMARY KEY DEFAULT gen_random_uuid (),\n    vampire_id uuid REFERENCES vampires (id) NOT NULL,\n    created_at timestamp NOT NULL DEFAULT NOW(),\n    updated_at timestamp\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Memory struct {\n\tID        pgtype.UUID\n\tVampireID pgtype.UUID\n\tCreatedAt pgtype.Timestamp\n\tUpdatedAt pgtype.Timestamp\n}\n\ntype Vampire struct {\n\tID pgtype.UUID\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/pgx/v5/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Querier interface {\n\tCreateMemories(ctx context.Context, vampireID []pgtype.UUID) ([]Memory, error)\n\tGetVampireIDs(ctx context.Context, vampireID []pgtype.UUID) ([]pgtype.UUID, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst createMemories = `-- name: CreateMemories :many\nINSERT INTO memories (vampire_id)\nSELECT\n    unnest($1::uuid[]) AS vampire_id\nRETURNING\n    id, vampire_id, created_at, updated_at\n`\n\nfunc (q *Queries) CreateMemories(ctx context.Context, vampireID []pgtype.UUID) ([]Memory, error) {\n\trows, err := q.db.Query(ctx, createMemories, vampireID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Memory\n\tfor rows.Next() {\n\t\tvar i Memory\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.VampireID,\n\t\t\t&i.CreatedAt,\n\t\t\t&i.UpdatedAt,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getVampireIDs = `-- name: GetVampireIDs :many\nSELECT vampires.id::uuid FROM unnest($1::uuid[]) AS vampires (id)\n`\n\nfunc (q *Queries) GetVampireIDs(ctx context.Context, vampireID []pgtype.UUID) ([]pgtype.UUID, error) {\n\trows, err := q.db.Query(ctx, getVampireIDs, vampireID)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []pgtype.UUID\n\tfor rows.Next() {\n\t\tvar vampires_id pgtype.UUID\n\t\tif err := rows.Scan(&vampires_id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, vampires_id)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/pgx/v5/query.sql",
    "content": "-- name: CreateMemories :many\nINSERT INTO memories (vampire_id)\nSELECT\n    unnest(@vampire_id::uuid[]) AS vampire_id\nRETURNING\n    *;\n\n-- name: GetVampireIDs :many\nSELECT vampires.id::uuid FROM unnest(@vampire_id::uuid[]) AS vampires (id);\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE vampires (\n    id uuid PRIMARY KEY DEFAULT gen_random_uuid ()\n);\n\nCREATE TABLE memories (\n    id uuid PRIMARY KEY DEFAULT gen_random_uuid (),\n    vampire_id uuid REFERENCES vampires (id) NOT NULL,\n    created_at timestamp NOT NULL DEFAULT NOW(),\n    updated_at timestamp\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n\n\t\"github.com/google/uuid\"\n)\n\ntype Memory struct {\n\tID        uuid.UUID\n\tVampireID uuid.UUID\n\tCreatedAt time.Time\n\tUpdatedAt sql.NullTime\n}\n\ntype Vampire struct {\n\tID uuid.UUID\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/stdlib/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/google/uuid\"\n)\n\ntype Querier interface {\n\tCreateMemories(ctx context.Context, vampireID []uuid.UUID) ([]Memory, error)\n\tGetVampireIDs(ctx context.Context, vampireID []uuid.UUID) ([]uuid.UUID, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/google/uuid\"\n\t\"github.com/lib/pq\"\n)\n\nconst createMemories = `-- name: CreateMemories :many\nINSERT INTO memories (vampire_id)\nSELECT\n    unnest($1::uuid[]) AS vampire_id\nRETURNING\n    id, vampire_id, created_at, updated_at\n`\n\nfunc (q *Queries) CreateMemories(ctx context.Context, vampireID []uuid.UUID) ([]Memory, error) {\n\trows, err := q.db.QueryContext(ctx, createMemories, pq.Array(vampireID))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Memory\n\tfor rows.Next() {\n\t\tvar i Memory\n\t\tif err := rows.Scan(\n\t\t\t&i.ID,\n\t\t\t&i.VampireID,\n\t\t\t&i.CreatedAt,\n\t\t\t&i.UpdatedAt,\n\t\t); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst getVampireIDs = `-- name: GetVampireIDs :many\nSELECT vampires.id::uuid FROM unnest($1::uuid[]) AS vampires (id)\n`\n\nfunc (q *Queries) GetVampireIDs(ctx context.Context, vampireID []uuid.UUID) ([]uuid.UUID, error) {\n\trows, err := q.db.QueryContext(ctx, getVampireIDs, pq.Array(vampireID))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []uuid.UUID\n\tfor rows.Next() {\n\t\tvar vampires_id uuid.UUID\n\t\tif err := rows.Scan(&vampires_id); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, vampires_id)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/stdlib/query.sql",
    "content": "-- name: CreateMemories :many\nINSERT INTO memories (vampire_id)\nSELECT\n    unnest(@vampire_id::uuid[]) AS vampire_id\nRETURNING\n    *;\n\n-- name: GetVampireIDs :many\nSELECT vampires.id::uuid FROM unnest(@vampire_id::uuid[]) AS vampires (id);\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE vampires (\n    id uuid PRIMARY KEY DEFAULT gen_random_uuid ()\n);\n\nCREATE TABLE memories (\n    id uuid PRIMARY KEY DEFAULT gen_random_uuid (),\n    vampire_id uuid REFERENCES vampires (id) NOT NULL,\n    created_at timestamp NOT NULL DEFAULT NOW(),\n    updated_at timestamp\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_star/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1185"
  },
  {
    "path": "internal/endtoend/testdata/unnest_star/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_star/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_star/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Item struct {\n\tItemID int64\n}\n\ntype Plan struct {\n\tPlanID int64\n}\n\ntype PlanItem struct {\n\tPlanItemID int64\n\tPlanID     int64\n\tItemID     int64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_star/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst getPlanItems = `-- name: GetPlanItems :many\nSELECT p.plan_id, p.item_id\nFROM (SELECT unnest FROM unnest($1::bigint[])) AS i(req_item_id),\nLATERAL (\n    SELECT plan_id, item_id\n    FROM plan_items\n    WHERE\n        item_id = i.req_item_id AND\n        ($2 = 0 OR plan_id < $2)\n    ORDER BY plan_id DESC\n    LIMIT $3\n) p\n`\n\ntype GetPlanItemsParams struct {\n\tIds        []int64\n\tAfter      pgtype.Int4\n\tLimitCount int64\n}\n\ntype GetPlanItemsRow struct {\n\tPlanID int64\n\tItemID int64\n}\n\nfunc (q *Queries) GetPlanItems(ctx context.Context, arg GetPlanItemsParams) ([]GetPlanItemsRow, error) {\n\trows, err := q.db.Query(ctx, getPlanItems, arg.Ids, arg.After, arg.LimitCount)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetPlanItemsRow\n\tfor rows.Next() {\n\t\tvar i GetPlanItemsRow\n\t\tif err := rows.Scan(&i.PlanID, &i.ItemID); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_star/postgresql/pgx/query.sql",
    "content": "-- name: GetPlanItems :many\nSELECT p.plan_id, p.item_id\nFROM (SELECT * FROM unnest(@ids::bigint[])) AS i(req_item_id),\nLATERAL (\n    SELECT plan_id, item_id\n    FROM plan_items\n    WHERE\n        item_id = i.req_item_id AND\n        (@after = 0 OR plan_id < @after)\n    ORDER BY plan_id DESC\n    LIMIT @limit_count\n) p;"
  },
  {
    "path": "internal/endtoend/testdata/unnest_star/postgresql/pgx/schema.sql",
    "content": "create table plans (\n  plan_id bigint generated by default as identity primary key\n);\n\ncreate table items (\n  item_id bigint generated by default as identity primary key\n);\n\ncreate table plan_items (\n  plan_item_id bigint generated by default as identity primary key,\n  plan_id bigint not null REFERENCES plans,\n  item_id bigint not null REFERENCES items\n);"
  },
  {
    "path": "internal/endtoend/testdata/unnest_star/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\""
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype ArrayValue struct {\n\tID     int64\n\tValues []string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v4/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tGetValues(ctx context.Context) ([]GetValuesRow, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getValues = `-- name: GetValues :many\nSELECT id, index::bigint, value::text\nFROM array_values AS x, unnest(values) WITH ORDINALITY AS y (value, index)\n`\n\ntype GetValuesRow struct {\n\tID    int64\n\tIndex int64\n\tValue string\n}\n\nfunc (q *Queries) GetValues(ctx context.Context) ([]GetValuesRow, error) {\n\trows, err := q.db.Query(ctx, getValues)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetValuesRow\n\tfor rows.Next() {\n\t\tvar i GetValuesRow\n\t\tif err := rows.Scan(&i.ID, &i.Index, &i.Value); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v4/query.sql",
    "content": "-- name: GetValues :many\nSELECT id, index::bigint, value::text\nFROM array_values AS x, unnest(values) WITH ORDINALITY AS y (value, index);\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE array_values (\n    id bigserial PRIMARY KEY,\n    values text[] NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype ArrayValue struct {\n\tID     int64\n\tValues []string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v5/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tGetValues(ctx context.Context) ([]GetValuesRow, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getValues = `-- name: GetValues :many\nSELECT id, index::bigint, value::text\nFROM array_values AS x, unnest(values) WITH ORDINALITY AS y (value, index)\n`\n\ntype GetValuesRow struct {\n\tID    int64\n\tIndex int64\n\tValue string\n}\n\nfunc (q *Queries) GetValues(ctx context.Context) ([]GetValuesRow, error) {\n\trows, err := q.db.Query(ctx, getValues)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetValuesRow\n\tfor rows.Next() {\n\t\tvar i GetValuesRow\n\t\tif err := rows.Scan(&i.ID, &i.Index, &i.Value); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v5/query.sql",
    "content": "-- name: GetValues :many\nSELECT id, index::bigint, value::text\nFROM array_values AS x, unnest(values) WITH ORDINALITY AS y (value, index);\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE array_values (\n    id bigserial PRIMARY KEY,\n    values text[] NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype ArrayValue struct {\n\tID     int64\n\tValues []string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/stdlib/go/querier.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\ntype Querier interface {\n\tGetValues(ctx context.Context) ([]GetValuesRow, error)\n}\n\nvar _ Querier = (*Queries)(nil)\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getValues = `-- name: GetValues :many\nSELECT id, index::bigint, value::text\nFROM array_values AS x, unnest(values) WITH ORDINALITY AS y (value, index)\n`\n\ntype GetValuesRow struct {\n\tID    int64\n\tIndex int64\n\tValue string\n}\n\nfunc (q *Queries) GetValues(ctx context.Context) ([]GetValuesRow, error) {\n\trows, err := q.db.QueryContext(ctx, getValues)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []GetValuesRow\n\tfor rows.Next() {\n\t\tvar i GetValuesRow\n\t\tif err := rows.Scan(&i.ID, &i.Index, &i.Value); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/stdlib/query.sql",
    "content": "-- name: GetValues :many\nSELECT id, index::bigint, value::text\nFROM array_values AS x, unnest(values) WITH ORDINALITY AS y (value, index);\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE array_values (\n    id bigserial PRIMARY KEY,\n    values text[] NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/unnest_with_ordinality/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"emit_interface\": true\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unsigned_params/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unsigned_params/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tID uint32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unsigned_params/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst createFoo = `-- name: CreateFoo :exec\nINSERT INTO foo (id) VALUES (?)\n`\n\nfunc (q *Queries) CreateFoo(ctx context.Context, id uint32) error {\n\t_, err := q.db.ExecContext(ctx, createFoo, id)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/unsigned_params/mysql/query.sql",
    "content": "-- name: CreateFoo :exec\nINSERT INTO foo (id) VALUES (?);\n"
  },
  {
    "path": "internal/endtoend/testdata/unsigned_params/mysql/schema.sql",
    "content": "CREATE TABLE foo (id INT UNSIGNED NOT NULL);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/unsigned_params/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/untyped_columns/sqlite/stdlib/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/untyped_columns/sqlite/stdlib/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\ntype Repro struct {\n\tID   interface{}\n\tName interface{}\n\tSeq  interface{}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/untyped_columns/sqlite/stdlib/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst getRepro = `-- name: GetRepro :one\nselect id, name, seq from repro where id = ? limit 1\n`\n\nfunc (q *Queries) GetRepro(ctx context.Context, id interface{}) (Repro, error) {\n\trow := q.db.QueryRowContext(ctx, getRepro, id)\n\tvar i Repro\n\terr := row.Scan(&i.ID, &i.Name, &i.Seq)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/untyped_columns/sqlite/stdlib/query.sql",
    "content": "-- name: GetRepro :one\nselect * from repro where id = ? limit 1;"
  },
  {
    "path": "internal/endtoend/testdata/untyped_columns/sqlite/stdlib/schema.sql",
    "content": "-- original table name in sqlite schema was sqlite_sequence, rest of def is identical\ncreate table repro(id, name, seq);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/untyped_columns/sqlite/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"engine\": \"sqlite\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"gen\": {\n        \"go\": {\n          \"package\": \"db\",\n          \"out\": \"db\"\n        }\n      }\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/update_array_index/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1532\n"
  },
  {
    "path": "internal/endtoend/testdata/update_array_index/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_array_index/postgresql/pgx/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_array_index/postgresql/pgx/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Author struct {\n\tID    int64\n\tNames []string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_array_index/postgresql/pgx/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst updateAuthor = `-- name: UpdateAuthor :one\nupdate authors\nset names[$1] = $2\nwhere id=$3\nRETURNING id, names\n`\n\ntype UpdateAuthorParams struct {\n\tNames   int32\n\tNames_2 string\n\tID      int64\n}\n\nfunc (q *Queries) UpdateAuthor(ctx context.Context, arg UpdateAuthorParams) (Author, error) {\n\trow := q.db.QueryRow(ctx, updateAuthor, arg.Names, arg.Names_2, arg.ID)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Names)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_array_index/postgresql/pgx/query.sql",
    "content": "-- name: UpdateAuthor :one\nupdate authors\nset names[$1] = $2\nwhere id=$3\nRETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/update_array_index/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE authors (\n  id    BIGSERIAL PRIMARY KEY,\n  names text[]    NOT NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/update_array_index/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\"\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype Td3Code struct {\n\tID        int32\n\tTsCreated time.Time\n\tTsUpdated time.Time\n\tCreatedBy string\n\tUpdatedBy string\n\tCode      sql.NullString\n\tHash      sql.NullString\n\tIsPrivate sql.NullBool\n}\n\ntype Td3TestCode struct {\n\tID        int32\n\tTsCreated time.Time\n\tTsUpdated time.Time\n\tCreatedBy string\n\tUpdatedBy string\n\tTestID    int32\n\tCodeHash  string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"time\"\n)\n\nconst updateCode = `-- name: UpdateCode :one\nWITH cc AS (\n            UPDATE td3.codes\n            SET\n                created_by = $1,\n                updated_by  = $1,\n                code = $2,\n                hash = $3,\n                is_private = false\n            RETURNING hash\n)\nUPDATE td3.test_codes\nSET\n    created_by = $1,\n    updated_by  = $1,\n    test_id = $4,\n    code_hash = cc.hash\n    FROM cc\nRETURNING hash, id, ts_created, ts_updated, created_by, updated_by, test_id, code_hash\n`\n\ntype UpdateCodeParams struct {\n\tCreatedBy string\n\tCode      sql.NullString\n\tHash      sql.NullString\n\tTestID    int32\n}\n\ntype UpdateCodeRow struct {\n\tHash      sql.NullString\n\tID        int32\n\tTsCreated time.Time\n\tTsUpdated time.Time\n\tCreatedBy string\n\tUpdatedBy string\n\tTestID    int32\n\tCodeHash  string\n}\n\nfunc (q *Queries) UpdateCode(ctx context.Context, arg UpdateCodeParams) (UpdateCodeRow, error) {\n\trow := q.db.QueryRow(ctx, updateCode,\n\t\targ.CreatedBy,\n\t\targ.Code,\n\t\targ.Hash,\n\t\targ.TestID,\n\t)\n\tvar i UpdateCodeRow\n\terr := row.Scan(\n\t\t&i.Hash,\n\t\t&i.ID,\n\t\t&i.TsCreated,\n\t\t&i.TsUpdated,\n\t\t&i.CreatedBy,\n\t\t&i.UpdatedBy,\n\t\t&i.TestID,\n\t\t&i.CodeHash,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/pgx/v4/query.sql",
    "content": "-- name: UpdateCode :one\nWITH cc AS (\n            UPDATE td3.codes\n            SET\n                created_by = $1,\n                updated_by  = $1,\n                code = $2,\n                hash = $3,\n                is_private = false\n            RETURNING hash\n)\nUPDATE td3.test_codes\nSET\n    created_by = $1,\n    updated_by  = $1,\n    test_id = $4,\n    code_hash = cc.hash\n    FROM cc\nRETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/pgx/v4/schema.sql",
    "content": "-- FILE: schema.sql\n\nDROP SCHEMA IF EXISTS td3 CASCADE;\nCREATE SCHEMA td3;\n\nCREATE TABLE td3.codes (\n            id SERIAL PRIMARY KEY,\n            ts_created timestamptz DEFAULT now() NOT NULL,\n            ts_updated timestamptz DEFAULT now() NOT NULL,\n            created_by text NOT NULL,\n            updated_by text NOT NULL,\n            \n            code text,\n            hash text,\n            is_private boolean\n);\n\n\nCREATE TABLE td3.test_codes (\n            id SERIAL PRIMARY KEY,\n            ts_created timestamptz DEFAULT now() NOT NULL,\n            ts_updated timestamptz DEFAULT now() NOT NULL,\n            created_by text NOT NULL,\n            updated_by text NOT NULL,\n\n            test_id integer NOT NULL,\n            code_hash text NOT NULL\n);\n\n-- FILE: query.sql\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Td3Code struct {\n\tID        int32\n\tTsCreated pgtype.Timestamptz\n\tTsUpdated pgtype.Timestamptz\n\tCreatedBy string\n\tUpdatedBy string\n\tCode      pgtype.Text\n\tHash      pgtype.Text\n\tIsPrivate pgtype.Bool\n}\n\ntype Td3TestCode struct {\n\tID        int32\n\tTsCreated pgtype.Timestamptz\n\tTsUpdated pgtype.Timestamptz\n\tCreatedBy string\n\tUpdatedBy string\n\tTestID    int32\n\tCodeHash  string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst updateCode = `-- name: UpdateCode :one\nWITH cc AS (\n            UPDATE td3.codes\n            SET\n                created_by = $1,\n                updated_by  = $1,\n                code = $2,\n                hash = $3,\n                is_private = false\n            RETURNING hash\n)\nUPDATE td3.test_codes\nSET\n    created_by = $1,\n    updated_by  = $1,\n    test_id = $4,\n    code_hash = cc.hash\n    FROM cc\nRETURNING hash, id, ts_created, ts_updated, created_by, updated_by, test_id, code_hash\n`\n\ntype UpdateCodeParams struct {\n\tCreatedBy string\n\tCode      pgtype.Text\n\tHash      pgtype.Text\n\tTestID    int32\n}\n\ntype UpdateCodeRow struct {\n\tHash      pgtype.Text\n\tID        int32\n\tTsCreated pgtype.Timestamptz\n\tTsUpdated pgtype.Timestamptz\n\tCreatedBy string\n\tUpdatedBy string\n\tTestID    int32\n\tCodeHash  string\n}\n\nfunc (q *Queries) UpdateCode(ctx context.Context, arg UpdateCodeParams) (UpdateCodeRow, error) {\n\trow := q.db.QueryRow(ctx, updateCode,\n\t\targ.CreatedBy,\n\t\targ.Code,\n\t\targ.Hash,\n\t\targ.TestID,\n\t)\n\tvar i UpdateCodeRow\n\terr := row.Scan(\n\t\t&i.Hash,\n\t\t&i.ID,\n\t\t&i.TsCreated,\n\t\t&i.TsUpdated,\n\t\t&i.CreatedBy,\n\t\t&i.UpdatedBy,\n\t\t&i.TestID,\n\t\t&i.CodeHash,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/pgx/v5/query.sql",
    "content": "-- name: UpdateCode :one\nWITH cc AS (\n            UPDATE td3.codes\n            SET\n                created_by = $1,\n                updated_by  = $1,\n                code = $2,\n                hash = $3,\n                is_private = false\n            RETURNING hash\n)\nUPDATE td3.test_codes\nSET\n    created_by = $1,\n    updated_by  = $1,\n    test_id = $4,\n    code_hash = cc.hash\n    FROM cc\nRETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/pgx/v5/schema.sql",
    "content": "-- FILE: schema.sql\n\nDROP SCHEMA IF EXISTS td3 CASCADE;\nCREATE SCHEMA td3;\n\nCREATE TABLE td3.codes (\n            id SERIAL PRIMARY KEY,\n            ts_created timestamptz DEFAULT now() NOT NULL,\n            ts_updated timestamptz DEFAULT now() NOT NULL,\n            created_by text NOT NULL,\n            updated_by text NOT NULL,\n            \n            code text,\n            hash text,\n            is_private boolean\n);\n\n\nCREATE TABLE td3.test_codes (\n            id SERIAL PRIMARY KEY,\n            ts_created timestamptz DEFAULT now() NOT NULL,\n            ts_updated timestamptz DEFAULT now() NOT NULL,\n            created_by text NOT NULL,\n            updated_by text NOT NULL,\n\n            test_id integer NOT NULL,\n            code_hash text NOT NULL\n);\n\n-- FILE: query.sql\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype Td3Code struct {\n\tID        int32\n\tTsCreated time.Time\n\tTsUpdated time.Time\n\tCreatedBy string\n\tUpdatedBy string\n\tCode      sql.NullString\n\tHash      sql.NullString\n\tIsPrivate sql.NullBool\n}\n\ntype Td3TestCode struct {\n\tID        int32\n\tTsCreated time.Time\n\tTsUpdated time.Time\n\tCreatedBy string\n\tUpdatedBy string\n\tTestID    int32\n\tCodeHash  string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"time\"\n)\n\nconst updateCode = `-- name: UpdateCode :one\nWITH cc AS (\n            UPDATE td3.codes\n            SET\n                created_by = $1,\n                updated_by  = $1,\n                code = $2,\n                hash = $3,\n                is_private = false\n            RETURNING hash\n)\nUPDATE td3.test_codes\nSET\n    created_by = $1,\n    updated_by  = $1,\n    test_id = $4,\n    code_hash = cc.hash\n    FROM cc\nRETURNING hash, id, ts_created, ts_updated, created_by, updated_by, test_id, code_hash\n`\n\ntype UpdateCodeParams struct {\n\tCreatedBy string\n\tCode      sql.NullString\n\tHash      sql.NullString\n\tTestID    int32\n}\n\ntype UpdateCodeRow struct {\n\tHash      sql.NullString\n\tID        int32\n\tTsCreated time.Time\n\tTsUpdated time.Time\n\tCreatedBy string\n\tUpdatedBy string\n\tTestID    int32\n\tCodeHash  string\n}\n\nfunc (q *Queries) UpdateCode(ctx context.Context, arg UpdateCodeParams) (UpdateCodeRow, error) {\n\trow := q.db.QueryRowContext(ctx, updateCode,\n\t\targ.CreatedBy,\n\t\targ.Code,\n\t\targ.Hash,\n\t\targ.TestID,\n\t)\n\tvar i UpdateCodeRow\n\terr := row.Scan(\n\t\t&i.Hash,\n\t\t&i.ID,\n\t\t&i.TsCreated,\n\t\t&i.TsUpdated,\n\t\t&i.CreatedBy,\n\t\t&i.UpdatedBy,\n\t\t&i.TestID,\n\t\t&i.CodeHash,\n\t)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/stdlib/query.sql",
    "content": "-- name: UpdateCode :one\nWITH cc AS (\n            UPDATE td3.codes\n            SET\n                created_by = $1,\n                updated_by  = $1,\n                code = $2,\n                hash = $3,\n                is_private = false\n            RETURNING hash\n)\nUPDATE td3.test_codes\nSET\n    created_by = $1,\n    updated_by  = $1,\n    test_id = $4,\n    code_hash = cc.hash\n    FROM cc\nRETURNING *;\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/stdlib/schema.sql",
    "content": "-- FILE: schema.sql\n\nDROP SCHEMA IF EXISTS td3 CASCADE;\nCREATE SCHEMA td3;\n\nCREATE TABLE td3.codes (\n            id SERIAL PRIMARY KEY,\n            ts_created timestamptz DEFAULT now() NOT NULL,\n            ts_updated timestamptz DEFAULT now() NOT NULL,\n            created_by text NOT NULL,\n            updated_by text NOT NULL,\n            \n            code text,\n            hash text,\n            is_private boolean\n);\n\n\nCREATE TABLE td3.test_codes (\n            id SERIAL PRIMARY KEY,\n            ts_created timestamptz DEFAULT now() NOT NULL,\n            ts_updated timestamptz DEFAULT now() NOT NULL,\n            created_by text NOT NULL,\n            updated_by text NOT NULL,\n\n            test_id integer NOT NULL,\n            code_hash text NOT NULL\n);\n\n-- FILE: query.sql\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_cte/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_inner_join/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_inner_join/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"database/sql\"\n)\n\ntype X struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n\ntype Y struct {\n\tA sql.NullString\n\tB sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_inner_join/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst updateXWithY = `-- name: UpdateXWithY :exec\nUPDATE x INNER JOIN y ON y.a = x.a SET x.b = y.b\n`\n\nfunc (q *Queries) UpdateXWithY(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, updateXWithY)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_inner_join/query.sql",
    "content": "-- name: UpdateXWithY :exec\nUPDATE x INNER JOIN y ON y.a = x.a SET x.b = y.b;\n"
  },
  {
    "path": "internal/endtoend/testdata/update_inner_join/schema.sql",
    "content": "CREATE TABLE x (\n  a   text,\n  b   text\n);\n\nCREATE TABLE y (\n  a   text,\n  b   text\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_inner_join/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"db\",\n      \"engine\": \"mysql\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_join/mysql/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_join/mysql/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\ntype JoinTable struct {\n\tID             uint64\n\tPrimaryTableID uint64\n\tOtherTableID   uint64\n\tIsActive       bool\n}\n\ntype PrimaryTable struct {\n\tID     uint64\n\tUserID uint64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_join/mysql/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst updateJoin = `-- name: UpdateJoin :exec\nUPDATE  join_table as jt\n        JOIN primary_table as pt\n            ON jt.primary_table_id = pt.id\nSET     jt.is_active = ?\nWHERE   jt.id = ?\n        AND pt.user_id = ?\n`\n\ntype UpdateJoinParams struct {\n\tIsActive bool\n\tID       uint64\n\tUserID   uint64\n}\n\nfunc (q *Queries) UpdateJoin(ctx context.Context, arg UpdateJoinParams) error {\n\t_, err := q.db.ExecContext(ctx, updateJoin, arg.IsActive, arg.ID, arg.UserID)\n\treturn err\n}\n\nconst updateLeftJoin = `-- name: UpdateLeftJoin :exec\nUPDATE  join_table as jt\n        LEFT JOIN primary_table as pt\n            ON jt.primary_table_id = pt.id\nSET     jt.is_active = ?\nWHERE   jt.id = ?\n        AND pt.user_id = ?\n`\n\ntype UpdateLeftJoinParams struct {\n\tIsActive bool\n\tID       uint64\n\tUserID   uint64\n}\n\nfunc (q *Queries) UpdateLeftJoin(ctx context.Context, arg UpdateLeftJoinParams) error {\n\t_, err := q.db.ExecContext(ctx, updateLeftJoin, arg.IsActive, arg.ID, arg.UserID)\n\treturn err\n}\n\nconst updateRightJoin = `-- name: UpdateRightJoin :exec\nUPDATE  join_table as jt\n        RIGHT JOIN primary_table as pt\n            ON jt.primary_table_id = pt.id\nSET     jt.is_active = ?\nWHERE   jt.id = ?\n        AND pt.user_id = ?\n`\n\ntype UpdateRightJoinParams struct {\n\tIsActive bool\n\tID       uint64\n\tUserID   uint64\n}\n\nfunc (q *Queries) UpdateRightJoin(ctx context.Context, arg UpdateRightJoinParams) error {\n\t_, err := q.db.ExecContext(ctx, updateRightJoin, arg.IsActive, arg.ID, arg.UserID)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_join/mysql/query.sql",
    "content": "-- name: UpdateJoin :exec\nUPDATE  join_table as jt\n        JOIN primary_table as pt\n            ON jt.primary_table_id = pt.id\nSET     jt.is_active = ?\nWHERE   jt.id = ?\n        AND pt.user_id = ?;\n\n-- name: UpdateLeftJoin :exec\nUPDATE  join_table as jt\n        LEFT JOIN primary_table as pt\n            ON jt.primary_table_id = pt.id\nSET     jt.is_active = ?\nWHERE   jt.id = ?\n        AND pt.user_id = ?;\n\n-- name: UpdateRightJoin :exec\nUPDATE  join_table as jt\n        RIGHT JOIN primary_table as pt\n            ON jt.primary_table_id = pt.id\nSET     jt.is_active = ?\nWHERE   jt.id = ?\n        AND pt.user_id = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/update_join/mysql/schema.sql",
    "content": "CREATE TABLE primary_table (\n  id bigint(20) unsigned NOT NULL AUTO_INCREMENT,\n  user_id bigint(20) unsigned NOT NULL,\n  PRIMARY KEY (id)\n);\n\nCREATE TABLE join_table (\n  id bigint(20) unsigned NOT NULL AUTO_INCREMENT,\n  primary_table_id bigint(20) unsigned NOT NULL,\n  other_table_id bigint(20) unsigned NOT NULL,\n  is_active tinyint(1) NOT NULL DEFAULT '0',\n  PRIMARY KEY (id)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_join/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"db\",\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_join/postgresql/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_join/postgresql/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage db\n\ntype JoinTable struct {\n\tID             int32\n\tPrimaryTableID int32\n\tOtherTableID   int32\n\tIsActive       bool\n}\n\ntype PrimaryTable struct {\n\tID     int32\n\tUserID int32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_join/postgresql/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage db\n\nimport (\n\t\"context\"\n)\n\nconst updateJoin = `-- name: UpdateJoin :exec\nUPDATE  join_table\nSET     is_active = $1\nFROM    primary_table\nWHERE   join_table.id = $2\n        AND primary_table.user_id = $3\n        AND join_table.primary_table_id = primary_table.id\n`\n\ntype UpdateJoinParams struct {\n\tIsActive bool\n\tID       int32\n\tUserID   int32\n}\n\nfunc (q *Queries) UpdateJoin(ctx context.Context, arg UpdateJoinParams) error {\n\t_, err := q.db.ExecContext(ctx, updateJoin, arg.IsActive, arg.ID, arg.UserID)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_join/postgresql/query.sql",
    "content": "-- name: UpdateJoin :exec\nUPDATE  join_table\nSET     is_active = $1\nFROM    primary_table\nWHERE   join_table.id = $2\n        AND primary_table.user_id = $3\n        AND join_table.primary_table_id = primary_table.id;\n"
  },
  {
    "path": "internal/endtoend/testdata/update_join/postgresql/schema.sql",
    "content": "CREATE TABLE primary_table (\n  id         INT PRIMARY KEY,\n  user_id    INT NOT NULL\n);\n\nCREATE TABLE join_table (\n  id                INT PRIMARY KEY,\n  primary_table_id  INT NOT NULL,\n  other_table_id    INT NOT NULL,\n  is_active         BOOLEAN NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_join/postgresql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"db\",\n\t\t\t\"engine\": \"postgresql\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/myql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/myql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n\tSlug string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/myql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst updateSet = `-- name: UpdateSet :exec\nUPDATE foo SET name = ? WHERE slug = ?\n`\n\ntype UpdateSetParams struct {\n\tName string\n\tSlug string\n}\n\nfunc (q *Queries) UpdateSet(ctx context.Context, arg UpdateSetParams) error {\n\t_, err := q.db.ExecContext(ctx, updateSet, arg.Name, arg.Slug)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/myql/query.sql",
    "content": "/* name: UpdateSet :exec */\nUPDATE foo SET name = ? WHERE slug = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/myql/schema.sql",
    "content": "CREATE TABLE foo (name text not null, slug text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/myql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"mysql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n\tSlug string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst updateSet = `-- name: UpdateSet :exec\nUPDATE foo SET name = $2 WHERE slug = $1\n`\n\ntype UpdateSetParams struct {\n\tSlug string\n\tName string\n}\n\nfunc (q *Queries) UpdateSet(ctx context.Context, arg UpdateSetParams) error {\n\t_, err := q.db.Exec(ctx, updateSet, arg.Slug, arg.Name)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/pgx/v4/query.sql",
    "content": "-- name: UpdateSet :exec\nUPDATE foo SET name = $2 WHERE slug = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (name text not null, slug text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n\tSlug string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst updateSet = `-- name: UpdateSet :exec\nUPDATE foo SET name = $2 WHERE slug = $1\n`\n\ntype UpdateSetParams struct {\n\tSlug string\n\tName string\n}\n\nfunc (q *Queries) UpdateSet(ctx context.Context, arg UpdateSetParams) error {\n\t_, err := q.db.Exec(ctx, updateSet, arg.Slug, arg.Name)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/pgx/v5/query.sql",
    "content": "-- name: UpdateSet :exec\nUPDATE foo SET name = $2 WHERE slug = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (name text not null, slug text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n\tSlug string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst updateSet = `-- name: UpdateSet :exec\nUPDATE foo SET name = $2 WHERE slug = $1\n`\n\ntype UpdateSetParams struct {\n\tSlug string\n\tName string\n}\n\nfunc (q *Queries) UpdateSet(ctx context.Context, arg UpdateSetParams) error {\n\t_, err := q.db.ExecContext(ctx, updateSet, arg.Slug, arg.Name)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/stdlib/query.sql",
    "content": "-- name: UpdateSet :exec\nUPDATE foo SET name = $2 WHERE slug = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (name text not null, slug text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"postgresql\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n\tSlug string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst updateSet = `-- name: UpdateSet :exec\nUPDATE foo SET name = ? WHERE slug = ?\n`\n\ntype UpdateSetParams struct {\n\tName string\n\tSlug string\n}\n\nfunc (q *Queries) UpdateSet(ctx context.Context, arg UpdateSetParams) error {\n\t_, err := q.db.ExecContext(ctx, updateSet, arg.Name, arg.Slug)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/sqlite/query.sql",
    "content": "/* name: UpdateSet :exec */\nUPDATE foo SET name = ? WHERE slug = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/sqlite/schema.sql",
    "content": "CREATE TABLE foo (name text not null, slug text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n\tSlug string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst updateSetMultiple = `-- name: UpdateSetMultiple :exec\nUPDATE foo SET name = ?, slug = ?\n`\n\ntype UpdateSetMultipleParams struct {\n\tName string\n\tSlug string\n}\n\nfunc (q *Queries) UpdateSetMultiple(ctx context.Context, arg UpdateSetMultipleParams) error {\n\t_, err := q.db.ExecContext(ctx, updateSetMultiple, arg.Name, arg.Slug)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/mysql/query.sql",
    "content": "-- name: UpdateSetMultiple :exec\nUPDATE foo SET name = ?, slug = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/mysql/schema.sql",
    "content": "CREATE TABLE foo (name text not null, slug text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v4/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgconn\"\n\t\"github.com/jackc/pgx/v4\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v4/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n\tSlug string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v4/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst updateSetMultiple = `-- name: UpdateSetMultiple :exec\nUPDATE foo SET (name, slug) = ($2, $1)\n`\n\ntype UpdateSetMultipleParams struct {\n\tSlug string\n\tName string\n}\n\nfunc (q *Queries) UpdateSetMultiple(ctx context.Context, arg UpdateSetMultipleParams) error {\n\t_, err := q.db.Exec(ctx, updateSetMultiple, arg.Slug, arg.Name)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v4/query.sql",
    "content": "-- name: UpdateSetMultiple :exec\nUPDATE foo SET (name, slug) = ($2, $1);\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v4/schema.sql",
    "content": "CREATE TABLE foo (name text not null, slug text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v4/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v4\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v5/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v5/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n\tSlug string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v5/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst updateSetMultiple = `-- name: UpdateSetMultiple :exec\nUPDATE foo SET (name, slug) = ($2, $1)\n`\n\ntype UpdateSetMultipleParams struct {\n\tSlug string\n\tName string\n}\n\nfunc (q *Queries) UpdateSetMultiple(ctx context.Context, arg UpdateSetMultipleParams) error {\n\t_, err := q.db.Exec(ctx, updateSetMultiple, arg.Slug, arg.Name)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v5/query.sql",
    "content": "-- name: UpdateSetMultiple :exec\nUPDATE foo SET (name, slug) = ($2, $1);\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v5/schema.sql",
    "content": "CREATE TABLE foo (name text not null, slug text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/pgx/v5/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"sql_package\": \"pgx/v5\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/stdlib/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/stdlib/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n\tSlug string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/stdlib/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst updateSetMultiple = `-- name: UpdateSetMultiple :exec\nUPDATE foo SET (name, slug) = ($2, $1)\n`\n\ntype UpdateSetMultipleParams struct {\n\tSlug string\n\tName string\n}\n\nfunc (q *Queries) UpdateSetMultiple(ctx context.Context, arg UpdateSetMultipleParams) error {\n\t_, err := q.db.ExecContext(ctx, updateSetMultiple, arg.Slug, arg.Name)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/stdlib/query.sql",
    "content": "-- name: UpdateSetMultiple :exec\nUPDATE foo SET (name, slug) = ($2, $1);\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE foo (name text not null, slug text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/postgresql/stdlib/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"postgresql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Foo struct {\n\tName string\n\tSlug string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst updateSetMultiple = `-- name: UpdateSetMultiple :exec\nUPDATE foo SET name = ?, slug = ?\n`\n\ntype UpdateSetMultipleParams struct {\n\tName string\n\tSlug string\n}\n\nfunc (q *Queries) UpdateSetMultiple(ctx context.Context, arg UpdateSetMultipleParams) error {\n\t_, err := q.db.ExecContext(ctx, updateSetMultiple, arg.Name, arg.Slug)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/sqlite/query.sql",
    "content": "-- name: UpdateSetMultiple :exec\nUPDATE foo SET name = ?, slug = ?;\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/sqlite/schema.sql",
    "content": "CREATE TABLE foo (name text not null, slug text not null);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_multiple/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"sqlite\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/update_set_on_conflict/issue.md",
    "content": "https://github.com/sqlc-dev/sqlc/issues/1128"
  },
  {
    "path": "internal/endtoend/testdata/update_set_on_conflict/postgresql/pgx/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_set_on_conflict/postgresql/pgx/query.sql",
    "content": "-- name: UpsertServer :exec\nINSERT INTO servers(code, name) VALUES ($1, $2) \nON CONFLICT (code) \nDO UPDATE SET name_typo = 1111;"
  },
  {
    "path": "internal/endtoend/testdata/update_set_on_conflict/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE servers (\n  code varchar   PRIMARY KEY,\n  name text      NOT NULL\n);"
  },
  {
    "path": "internal/endtoend/testdata/update_set_on_conflict/postgresql/pgx/sqlc.yaml",
    "content": "version: \"2\"\nsql:\n  - engine: \"postgresql\"\n    schema: \"schema.sql\"\n    queries: \"query.sql\"\n    gen:\n      go:\n        package: \"querytest\"\n        out: \"go\"\n        sql_package: \"pgx/v5\""
  },
  {
    "path": "internal/endtoend/testdata/update_set_on_conflict/postgresql/pgx/stderr.txt",
    "content": "# package querytest\nquery.sql:4:15: column \"name_typo\" of relation \"servers\" does not exist"
  },
  {
    "path": "internal/endtoend/testdata/update_two_table/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_two_table/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"time\"\n)\n\ntype Author struct {\n\tName      string\n\tDeletedAt time.Time\n\tCreatedAt time.Time\n\tUpdatedAt time.Time\n}\n\ntype Book struct {\n\tIsAmazing bool\n\tDeletedAt time.Time\n\tCreatedAt time.Time\n\tUpdatedAt time.Time\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_two_table/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteAuthor = `-- name: DeleteAuthor :exec\nUPDATE\n  authors,\n  books\nSET\n  authors.deleted_at = now(),\n  books.deleted_at = now()\nWHERE\n  books.is_amazing = 1\n  AND authors.name = ?\n`\n\nfunc (q *Queries) DeleteAuthor(ctx context.Context, name string) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthor, name)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/update_two_table/mysql/query.sql",
    "content": "-- name: DeleteAuthor :exec\nUPDATE\n  authors,\n  books\nSET\n  authors.deleted_at = now(),\n  books.deleted_at = now()\nWHERE\n  books.is_amazing = 1\n  AND authors.name = sqlc.arg(name);"
  },
  {
    "path": "internal/endtoend/testdata/update_two_table/mysql/schema.sql",
    "content": "-- https://github.com/sqlc-dev/sqlc/issues/1590\nCREATE TABLE authors (\n  name text NOT NULL,\n  deleted_at datetime NOT NULL,\n  created_at datetime NOT NULL,\n  updated_at datetime NOT NULL\n);\n\nCREATE TABLE books (\n  is_amazing tinyint(1) NOT NULL,\n  deleted_at datetime NOT NULL,\n  created_at datetime NOT NULL,\n  updated_at datetime NOT NULL\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/update_two_table/mysql/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"path\": \"go\",\n      \"engine\": \"mysql\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/upsert/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/upsert/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Location struct {\n\tID        int64\n\tName      string\n\tAddress   string\n\tZipCode   int64\n\tLatitude  float64\n\tLongitude float64\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/upsert/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst upsertLocation = `-- name: UpsertLocation :exec\nINSERT INTO locations (\n    name,\n    address,\n    zip_code,\n    latitude,\n    longitude\n)\nVALUES (?, ?, ?, ?, ?)\nON CONFLICT(name) DO UPDATE SET \n    name = excluded.name,\n    address = excluded.address,\n    zip_code = excluded.zip_code,\n    latitude = excluded.latitude,\n    longitude = excluded.longitude\n`\n\ntype UpsertLocationParams struct {\n\tName      string\n\tAddress   string\n\tZipCode   int64\n\tLatitude  float64\n\tLongitude float64\n}\n\nfunc (q *Queries) UpsertLocation(ctx context.Context, arg UpsertLocationParams) error {\n\t_, err := q.db.ExecContext(ctx, upsertLocation,\n\t\targ.Name,\n\t\targ.Address,\n\t\targ.ZipCode,\n\t\targ.Latitude,\n\t\targ.Longitude,\n\t)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/upsert/sqlite/query.sql",
    "content": "/* name: UpsertLocation :exec */\nINSERT INTO locations (\n    name,\n    address,\n    zip_code,\n    latitude,\n    longitude\n)\nVALUES (?, ?, ?, ?, ?)\nON CONFLICT(name) DO UPDATE SET \n    name = excluded.name,\n    address = excluded.address,\n    zip_code = excluded.zip_code,\n    latitude = excluded.latitude,\n    longitude = excluded.longitude;\n"
  },
  {
    "path": "internal/endtoend/testdata/upsert/sqlite/schema.sql",
    "content": "-- https://github.com/sqlc-dev/sqlc/issues/1728\n\nCREATE TABLE IF NOT EXISTS locations (\n    id              INTEGER PRIMARY KEY,\n    name            TEXT    NOT NULL,\n    address         TEXT    NOT NULL,\n    zip_code        INT     NOT NULL,\n    latitude        REAL    NOT NULL,\n    longitude       REAL    NOT NULL,\n    UNIQUE(name)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/upsert/sqlite/sqlc.json",
    "content": "{\n  \"version\": \"1\",\n  \"packages\": [\n    {\n      \"engine\": \"sqlite\",\n      \"path\": \"go\",\n      \"name\": \"querytest\",\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\"\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/mysql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/mysql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype WeatherMetric struct {\n\tTime            time.Time\n\tTimezoneShift   sql.NullInt32\n\tCityName        sql.NullString\n\tTempC           sql.NullFloat64\n\tFeelsLikeC      sql.NullFloat64\n\tTempMinC        sql.NullFloat64\n\tTempMaxC        sql.NullFloat64\n\tPressureHpa     sql.NullFloat64\n\tHumidityPercent sql.NullFloat64\n\tWindSpeedMs     sql.NullFloat64\n\tWindDeg         sql.NullInt32\n\tRain1hMm        sql.NullFloat64\n\tRain3hMm        sql.NullFloat64\n\tSnow1hMm        sql.NullFloat64\n\tSnow3hMm        sql.NullFloat64\n\tCloudsPercent   sql.NullInt32\n\tWeatherTypeID   sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/mysql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT   id, name as full_name, bio\nFROM     authors\nGROUP BY full_name\n`\n\ntype ListAuthorsRow struct {\n\tID       int64\n\tFullName string\n\tBio      sql.NullString\n}\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]ListAuthorsRow, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListAuthorsRow\n\tfor rows.Next() {\n\t\tvar i ListAuthorsRow\n\t\tif err := rows.Scan(&i.ID, &i.FullName, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listAuthorsIdenticalAlias = `-- name: ListAuthorsIdenticalAlias :many\nSELECT   id, name as name, bio\nFROM     authors\nGROUP BY name\n`\n\nfunc (q *Queries) ListAuthorsIdenticalAlias(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthorsIdenticalAlias)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listMetrics = `-- name: ListMetrics :many\nSELECT time_bucket('15 days', time) AS bucket, city_name, AVG(temp_c)\nFROM weather_metrics\nWHERE DATE_SUB(NOW(), INTERVAL 6 MONTH)\nGROUP BY bucket, city_name\nORDER BY bucket DESC\n`\n\ntype ListMetricsRow struct {\n\tBucket   interface{}\n\tCityName sql.NullString\n\tAvg      interface{}\n}\n\nfunc (q *Queries) ListMetrics(ctx context.Context) ([]ListMetricsRow, error) {\n\trows, err := q.db.QueryContext(ctx, listMetrics)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListMetricsRow\n\tfor rows.Next() {\n\t\tvar i ListMetricsRow\n\t\tif err := rows.Scan(&i.Bucket, &i.CityName, &i.Avg); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/mysql/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT   id, name as full_name, bio\nFROM     authors\nGROUP BY full_name;\n\n-- name: ListAuthorsIdenticalAlias :many\nSELECT   id, name as name, bio\nFROM     authors\nGROUP BY name;\n\n-- name: ListMetrics :many\nSELECT time_bucket('15 days', time) AS bucket, city_name, AVG(temp_c)\nFROM weather_metrics\nWHERE DATE_SUB(NOW(), INTERVAL 6 MONTH)\nGROUP BY bucket, city_name\nORDER BY bucket DESC;\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGINT       NOT NULL AUTO_INCREMENT PRIMARY KEY,\n  name VARCHAR(10)  NOT NULL,\n  bio  text\n);\n\nCREATE TABLE IF NOT EXISTS weather_metrics\n(\n    time             TIMESTAMP NOT NULL,\n    timezone_shift   INT       NULL,\n    city_name        TEXT      NULL,\n    temp_c           FLOAT     NULL,\n    feels_like_c     FLOAT     NULL,\n    temp_min_c       FLOAT     NULL,\n    temp_max_c       FLOAT     NULL,\n    pressure_hpa     FLOAT     NULL,\n    humidity_percent FLOAT     NULL,\n    wind_speed_ms    FLOAT     NULL,\n    wind_deg         INT       NULL,\n    rain_1h_mm       FLOAT     NULL,\n    rain_3h_mm       FLOAT     NULL,\n    snow_1h_mm       FLOAT     NULL,\n    snow_3h_mm       FLOAT     NULL,\n    clouds_percent   INT       NULL,\n    weather_type_id  INT       NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/mysql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"mysql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/pganalyzer/exec.json",
    "content": "{\n  \"contexts\": [\"managed-db\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/pganalyzer/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/pganalyzer/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype WeatherMetric struct {\n\tTime            time.Time\n\tTimezoneShift   sql.NullInt32\n\tCityName        sql.NullString\n\tTempC           sql.NullFloat64\n\tFeelsLikeC      sql.NullFloat64\n\tTempMinC        sql.NullFloat64\n\tTempMaxC        sql.NullFloat64\n\tPressureHpa     sql.NullFloat64\n\tHumidityPercent sql.NullFloat64\n\tWindSpeedMs     sql.NullFloat64\n\tWindDeg         sql.NullInt32\n\tRain1hMm        sql.NullFloat64\n\tRain3hMm        sql.NullFloat64\n\tSnow1hMm        sql.NullFloat64\n\tSnow3hMm        sql.NullFloat64\n\tCloudsPercent   sql.NullInt32\n\tWeatherTypeID   sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/pganalyzer/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"time\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT   id, name as name, bio\nFROM     authors\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listAuthorsIdenticalAlias = `-- name: ListAuthorsIdenticalAlias :many\nSELECT   id, name as name, bio\nFROM     authors\n`\n\nfunc (q *Queries) ListAuthorsIdenticalAlias(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthorsIdenticalAlias)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listMetrics = `-- name: ListMetrics :many\nSELECT date_trunc('day', time) AS bucket, city_name, AVG(temp_c)\nFROM weather_metrics\nWHERE time > NOW() - (6 * INTERVAL '1 month')\nGROUP BY bucket, city_name\nORDER BY bucket DESC\n`\n\ntype ListMetricsRow struct {\n\tBucket   time.Time\n\tCityName sql.NullString\n\tAvg      float64\n}\n\nfunc (q *Queries) ListMetrics(ctx context.Context) ([]ListMetricsRow, error) {\n\trows, err := q.db.QueryContext(ctx, listMetrics)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListMetricsRow\n\tfor rows.Next() {\n\t\tvar i ListMetricsRow\n\t\tif err := rows.Scan(&i.Bucket, &i.CityName, &i.Avg); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/pganalyzer/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT   id, name as name, bio\nFROM     authors;\n\n-- name: ListAuthorsIdenticalAlias :many\nSELECT   id, name as name, bio\nFROM     authors;\n\n-- name: ListMetrics :many\nSELECT date_trunc('day', time) AS bucket, city_name, AVG(temp_c)\nFROM weather_metrics\nWHERE time > NOW() - (6 * INTERVAL '1 month')\nGROUP BY bucket, city_name\nORDER BY bucket DESC;\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/pganalyzer/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n\nCREATE TABLE IF NOT EXISTS weather_metrics\n(\n    time             TIMESTAMP WITHOUT TIME ZONE NOT NULL,\n    timezone_shift   INT                         NULL,\n    city_name        TEXT                        NULL,\n    temp_c           DOUBLE PRECISION            NULL,\n    feels_like_c     DOUBLE PRECISION            NULL,\n    temp_min_c       DOUBLE PRECISION            NULL,\n    temp_max_c       DOUBLE PRECISION            NULL,\n    pressure_hpa     DOUBLE PRECISION            NULL,\n    humidity_percent DOUBLE PRECISION            NULL,\n    wind_speed_ms    DOUBLE PRECISION            NULL,\n    wind_deg         INT                         NULL,\n    rain_1h_mm       DOUBLE PRECISION            NULL,\n    rain_3h_mm       DOUBLE PRECISION            NULL,\n    snow_1h_mm       DOUBLE PRECISION            NULL,\n    snow_3h_mm       DOUBLE PRECISION            NULL,\n    clouds_percent   INT                         NULL,\n    weather_type_id  INT                         NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/pganalyzer/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"postgresql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/postgresql/exec.json",
    "content": "{\n  \"contexts\": [\"base\"]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/postgresql/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/postgresql/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n\t\"time\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n\ntype WeatherMetric struct {\n\tTime            time.Time\n\tTimezoneShift   sql.NullInt32\n\tCityName        sql.NullString\n\tTempC           sql.NullFloat64\n\tFeelsLikeC      sql.NullFloat64\n\tTempMinC        sql.NullFloat64\n\tTempMaxC        sql.NullFloat64\n\tPressureHpa     sql.NullFloat64\n\tHumidityPercent sql.NullFloat64\n\tWindSpeedMs     sql.NullFloat64\n\tWindDeg         sql.NullInt32\n\tRain1hMm        sql.NullFloat64\n\tRain3hMm        sql.NullFloat64\n\tSnow1hMm        sql.NullFloat64\n\tSnow3hMm        sql.NullFloat64\n\tCloudsPercent   sql.NullInt32\n\tWeatherTypeID   sql.NullInt32\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/postgresql/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT   id, name as name, bio\nFROM     authors\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listAuthorsIdenticalAlias = `-- name: ListAuthorsIdenticalAlias :many\nSELECT   id, name as name, bio\nFROM     authors\n`\n\nfunc (q *Queries) ListAuthorsIdenticalAlias(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthorsIdenticalAlias)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst listMetrics = `-- name: ListMetrics :many\nSELECT date_trunc('day', time) AS bucket, city_name, AVG(temp_c)\nFROM weather_metrics\nWHERE time > NOW() - (6 * INTERVAL '1 month')\nGROUP BY bucket, city_name\nORDER BY bucket DESC\n`\n\ntype ListMetricsRow struct {\n\tBucket   int64\n\tCityName sql.NullString\n\tAvg      float64\n}\n\nfunc (q *Queries) ListMetrics(ctx context.Context) ([]ListMetricsRow, error) {\n\trows, err := q.db.QueryContext(ctx, listMetrics)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []ListMetricsRow\n\tfor rows.Next() {\n\t\tvar i ListMetricsRow\n\t\tif err := rows.Scan(&i.Bucket, &i.CityName, &i.Avg); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/postgresql/query.sql",
    "content": "-- name: ListAuthors :many\nSELECT   id, name as name, bio\nFROM     authors;\n\n-- name: ListAuthorsIdenticalAlias :many\nSELECT   id, name as name, bio\nFROM     authors;\n\n-- name: ListMetrics :many\nSELECT date_trunc('day', time) AS bucket, city_name, AVG(temp_c)\nFROM weather_metrics\nWHERE time > NOW() - (6 * INTERVAL '1 month')\nGROUP BY bucket, city_name\nORDER BY bucket DESC;\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/postgresql/schema.sql",
    "content": "CREATE TABLE authors (\n  id   BIGSERIAL PRIMARY KEY,\n  name text      NOT NULL,\n  bio  text\n);\n\nCREATE TABLE IF NOT EXISTS weather_metrics\n(\n    time             TIMESTAMP WITHOUT TIME ZONE NOT NULL,\n    timezone_shift   INT                         NULL,\n    city_name        TEXT                        NULL,\n    temp_c           DOUBLE PRECISION            NULL,\n    feels_like_c     DOUBLE PRECISION            NULL,\n    temp_min_c       DOUBLE PRECISION            NULL,\n    temp_max_c       DOUBLE PRECISION            NULL,\n    pressure_hpa     DOUBLE PRECISION            NULL,\n    humidity_percent DOUBLE PRECISION            NULL,\n    wind_speed_ms    DOUBLE PRECISION            NULL,\n    wind_deg         INT                         NULL,\n    rain_1h_mm       DOUBLE PRECISION            NULL,\n    rain_3h_mm       DOUBLE PRECISION            NULL,\n    snow_1h_mm       DOUBLE PRECISION            NULL,\n    snow_3h_mm       DOUBLE PRECISION            NULL,\n    clouds_percent   INT                         NULL,\n    weather_type_id  INT                         NULL\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/valid_group_by_reference/postgresql/sqlc.json",
    "content": "{\n\t\"version\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"path\": \"go\",\n\t\t\t\"engine\": \"postgresql\",\n\t\t\t\"name\": \"querytest\",\n\t\t\t\"schema\": \"schema.sql\",\n\t\t\t\"queries\": \"query.sql\"\n\t\t}\n\t]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/vet_disable/exec.json",
    "content": "{\n  \"command\": \"vet\"\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/vet_disable/query.sql",
    "content": "-- name: RunVetAll :exec\nSELECT true;\n\n-- name: SkipVetAll :exec\n-- @sqlc-vet-disable\nSELECT true;\n\n-- name: SkipVetSingleLine :exec\n-- @sqlc-vet-disable always-fail no-exec\nSELECT true;\n\n-- name: SkipVetMultiLine :exec\n-- @sqlc-vet-disable always-fail\n-- @sqlc-vet-disable no-exec\nSELECT true;\n\n-- name: SkipVet_always_fail :exec\n-- @sqlc-vet-disable always-fail\nSELECT true;\n\n-- name: SkipVet_no_exec :exec\n-- @sqlc-vet-disable no-exec\nSELECT true;\n\n-- name: SkipVetInvalidRule :exec\n-- @sqlc-vet-disable always-fail\n-- @sqlc-vet-disable block-delete\n-- @sqlc-vet-disable no-exec\nSELECT true;"
  },
  {
    "path": "internal/endtoend/testdata/vet_disable/sqlc.yaml",
    "content": "version: 2\nsql:\n  - schema: \"query.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    gen:\n      go:\n        package: \"db\"\n        out: \"db\"\n    rules:\n      - always-fail\n      - no-exec\nrules:\n  - name: always-fail\n    message: \"Fail\"\n    rule: \"true\"\n\n  - name: no-exec\n    message: \"don't use exec\"\n    rule: |\n      query.cmd == \"exec\"\n"
  },
  {
    "path": "internal/endtoend/testdata/vet_disable/stderr.txt",
    "content": "query.sql: RunVetAll: always-fail: Fail\nquery.sql: RunVetAll: no-exec: don't use exec\nquery.sql: SkipVet_always_fail: no-exec: don't use exec\nquery.sql: SkipVet_no_exec: always-fail: Fail\nquery.sql: SkipVetInvalidRule: rule-check error: rule \"block-delete\" does not exist in the config file"
  },
  {
    "path": "internal/endtoend/testdata/vet_explain/mysql/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage test\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/vet_explain/mysql/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage test\n\nimport (\n\t\"database/sql/driver\"\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"time\"\n)\n\ntype DebugCenum string\n\nconst (\n\tDebugCenumOne   DebugCenum = \"one\"\n\tDebugCenumTwo   DebugCenum = \"two\"\n\tDebugCenumThree DebugCenum = \"three\"\n)\n\nfunc (e *DebugCenum) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = DebugCenum(s)\n\tcase string:\n\t\t*e = DebugCenum(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for DebugCenum: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullDebugCenum struct {\n\tDebugCenum DebugCenum\n\tValid      bool // Valid is true if DebugCenum is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullDebugCenum) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.DebugCenum, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.DebugCenum.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullDebugCenum) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.DebugCenum), nil\n}\n\ntype DebugCset string\n\nconst (\n\tDebugCsetOne   DebugCset = \"one\"\n\tDebugCsetTwo   DebugCset = \"two\"\n\tDebugCsetThree DebugCset = \"three\"\n)\n\nfunc (e *DebugCset) Scan(src interface{}) error {\n\tswitch s := src.(type) {\n\tcase []byte:\n\t\t*e = DebugCset(s)\n\tcase string:\n\t\t*e = DebugCset(s)\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported scan type for DebugCset: %T\", src)\n\t}\n\treturn nil\n}\n\ntype NullDebugCset struct {\n\tDebugCset DebugCset\n\tValid     bool // Valid is true if DebugCset is not NULL\n}\n\n// Scan implements the Scanner interface.\nfunc (ns *NullDebugCset) Scan(value interface{}) error {\n\tif value == nil {\n\t\tns.DebugCset, ns.Valid = \"\", false\n\t\treturn nil\n\t}\n\tns.Valid = true\n\treturn ns.DebugCset.Scan(value)\n}\n\n// Value implements the driver Valuer interface.\nfunc (ns NullDebugCset) Value() (driver.Value, error) {\n\tif !ns.Valid {\n\t\treturn nil, nil\n\t}\n\treturn string(ns.DebugCset), nil\n}\n\ntype Debug struct {\n\tID               int64\n\tCsmallint        int16\n\tCint             int32\n\tCinteger         int32\n\tCdecimal         string\n\tCnumeric         string\n\tCfloat           float64\n\tCreal            float64\n\tCdoubleprecision float64\n\tCdouble          float64\n\tCdec             string\n\tCfixed           string\n\tCtinyint         int8\n\tCbool            bool\n\tCmediumint       int32\n\tCbit             interface{}\n\tCdate            time.Time\n\tCdatetime        time.Time\n\tCtimestamp       time.Time\n\tCtime            time.Time\n\tCyear            int16\n\tCchar            string\n\tCvarchar         string\n\tCbinary          []byte\n\tCvarbinary       []byte\n\tCtinyblob        []byte\n\tCblob            []byte\n\tCmediumblob      []byte\n\tClongblob        []byte\n\tCtinytext        string\n\tCtext            string\n\tCmediumtext      string\n\tClongtext        string\n\tCenum            NullDebugCenum\n\tCset             DebugCset\n\tCjson            json.RawMessage\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/vet_explain/mysql/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage test\n\nimport (\n\t\"context\"\n\t\"encoding/json\"\n\t\"time\"\n)\n\nconst selectByCbinary = `-- name: SelectByCbinary :one\nSELECT id FROM debug\nWHERE Cbinary = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCbinary(ctx context.Context, cbinary []byte) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCbinary, cbinary)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCbit = `-- name: SelectByCbit :one\nSELECT id FROM debug\nWHERE Cbit = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCbit(ctx context.Context, cbit interface{}) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCbit, cbit)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCblob = `-- name: SelectByCblob :one\nSELECT id FROM debug\nWHERE Cblob = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCblob(ctx context.Context, cblob []byte) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCblob, cblob)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCbool = `-- name: SelectByCbool :one\nSELECT id FROM debug\nWHERE Cbool = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCbool(ctx context.Context, cbool bool) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCbool, cbool)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCchar = `-- name: SelectByCchar :one\nSELECT id FROM debug\nWHERE Cchar = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCchar(ctx context.Context, cchar string) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCchar, cchar)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCdate = `-- name: SelectByCdate :one\nSELECT id FROM debug\nWHERE Cdate = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCdate(ctx context.Context, cdate time.Time) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCdate, cdate)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCdatetime = `-- name: SelectByCdatetime :one\nSELECT id FROM debug\nWHERE Cdatetime = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCdatetime(ctx context.Context, cdatetime time.Time) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCdatetime, cdatetime)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCdec = `-- name: SelectByCdec :one\nSELECT id FROM debug\nWHERE Cdec = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCdec(ctx context.Context, cdec string) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCdec, cdec)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCdecimal = `-- name: SelectByCdecimal :one\nSELECT id FROM debug\nWHERE Cdecimal = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCdecimal(ctx context.Context, cdecimal string) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCdecimal, cdecimal)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCdouble = `-- name: SelectByCdouble :one\nSELECT id FROM debug\nWHERE Cdouble = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCdouble(ctx context.Context, cdouble float64) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCdouble, cdouble)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCdoubleprecision = `-- name: SelectByCdoubleprecision :one\nSELECT id FROM debug\nWHERE Cdoubleprecision = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCdoubleprecision(ctx context.Context, cdoubleprecision float64) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCdoubleprecision, cdoubleprecision)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCenum = `-- name: SelectByCenum :one\nSELECT id FROM debug\nWHERE Cenum = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCenum(ctx context.Context, cenum NullDebugCenum) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCenum, cenum)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCfixed = `-- name: SelectByCfixed :one\nSELECT id FROM debug\nWHERE Cfixed = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCfixed(ctx context.Context, cfixed string) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCfixed, cfixed)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCfloat = `-- name: SelectByCfloat :one\nSELECT id FROM debug\nWHERE Cfloat = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCfloat(ctx context.Context, cfloat float64) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCfloat, cfloat)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCint = `-- name: SelectByCint :one\nSELECT id FROM debug\nWHERE Cint = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCint(ctx context.Context, cint int32) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCint, cint)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCinteger = `-- name: SelectByCinteger :one\nSELECT id FROM debug\nWHERE Cinteger = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCinteger(ctx context.Context, cinteger int32) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCinteger, cinteger)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCjson = `-- name: SelectByCjson :one\nSELECT id FROM debug\nWHERE Cjson = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCjson(ctx context.Context, cjson json.RawMessage) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCjson, cjson)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByClongblob = `-- name: SelectByClongblob :one\nSELECT id FROM debug\nWHERE Clongblob = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByClongblob(ctx context.Context, clongblob []byte) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByClongblob, clongblob)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByClongtext = `-- name: SelectByClongtext :one\nSELECT id FROM debug\nWHERE Clongtext = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByClongtext(ctx context.Context, clongtext string) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByClongtext, clongtext)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCmediumblob = `-- name: SelectByCmediumblob :one\nSELECT id FROM debug\nWHERE Cmediumblob = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCmediumblob(ctx context.Context, cmediumblob []byte) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCmediumblob, cmediumblob)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCmediumint = `-- name: SelectByCmediumint :one\nSELECT id FROM debug\nWHERE Cmediumint = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCmediumint(ctx context.Context, cmediumint int32) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCmediumint, cmediumint)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCmediumtext = `-- name: SelectByCmediumtext :one\nSELECT id FROM debug\nWHERE Cmediumtext = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCmediumtext(ctx context.Context, cmediumtext string) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCmediumtext, cmediumtext)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCnumeric = `-- name: SelectByCnumeric :one\nSELECT id FROM debug\nWHERE Cnumeric = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCnumeric(ctx context.Context, cnumeric string) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCnumeric, cnumeric)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCreal = `-- name: SelectByCreal :one\nSELECT id FROM debug\nWHERE Creal = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCreal(ctx context.Context, creal float64) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCreal, creal)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCset = `-- name: SelectByCset :one\nSELECT id FROM debug\nWHERE Cset = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCset(ctx context.Context, cset DebugCset) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCset, cset)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCsmallint = `-- name: SelectByCsmallint :one\nSELECT id FROM debug\nWHERE Csmallint = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCsmallint(ctx context.Context, csmallint int16) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCsmallint, csmallint)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCtext = `-- name: SelectByCtext :one\nSELECT id FROM debug\nWHERE Ctext = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCtext(ctx context.Context, ctext string) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCtext, ctext)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCtime = `-- name: SelectByCtime :one\nSELECT id FROM debug\nWHERE Ctime = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCtime(ctx context.Context, ctime time.Time) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCtime, ctime)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCtimestamp = `-- name: SelectByCtimestamp :one\nSELECT id FROM debug\nWHERE Ctimestamp = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCtimestamp(ctx context.Context, ctimestamp time.Time) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCtimestamp, ctimestamp)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCtinyblob = `-- name: SelectByCtinyblob :one\nSELECT id FROM debug\nWHERE Ctinyblob = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCtinyblob(ctx context.Context, ctinyblob []byte) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCtinyblob, ctinyblob)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCtinyint = `-- name: SelectByCtinyint :one\nSELECT id FROM debug\nWHERE Ctinyint = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCtinyint(ctx context.Context, ctinyint int8) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCtinyint, ctinyint)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCtinytext = `-- name: SelectByCtinytext :one\nSELECT id FROM debug\nWHERE Ctinytext = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCtinytext(ctx context.Context, ctinytext string) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCtinytext, ctinytext)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCvarbinary = `-- name: SelectByCvarbinary :one\nSELECT id FROM debug\nWHERE Cvarbinary = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCvarbinary(ctx context.Context, cvarbinary []byte) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCvarbinary, cvarbinary)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCvarchar = `-- name: SelectByCvarchar :one\nSELECT id FROM debug\nWHERE Cvarchar = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCvarchar(ctx context.Context, cvarchar string) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCvarchar, cvarchar)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectByCyear = `-- name: SelectByCyear :one\nSELECT id FROM debug\nWHERE Cyear = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectByCyear(ctx context.Context, cyear int16) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectByCyear, cyear)\n\tvar id int64\n\terr := row.Scan(&id)\n\treturn id, err\n}\n\nconst selectById = `-- name: SelectById :one\nSELECT id FROM debug\nWHERE id = ? LIMIT 1\n`\n\nfunc (q *Queries) SelectById(ctx context.Context, id int64) (int64, error) {\n\trow := q.db.QueryRowContext(ctx, selectById, id)\n\terr := row.Scan(&id)\n\treturn id, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/vet_explain/mysql/query.sql",
    "content": "-- name: SelectById :one\nSELECT id FROM debug\nWHERE id = ? LIMIT 1;\n\n-- name: SelectByCsmallint :one\nSELECT id FROM debug\nWHERE Csmallint = ? LIMIT 1;\n\n-- name: SelectByCint :one\nSELECT id FROM debug\nWHERE Cint = ? LIMIT 1;\n\n-- name: SelectByCinteger :one\nSELECT id FROM debug\nWHERE Cinteger = ? LIMIT 1;\n\n-- name: SelectByCdecimal :one\nSELECT id FROM debug\nWHERE Cdecimal = ? LIMIT 1;\n\n-- name: SelectByCnumeric :one\nSELECT id FROM debug\nWHERE Cnumeric = ? LIMIT 1;\n\n-- name: SelectByCfloat :one\nSELECT id FROM debug\nWHERE Cfloat = ? LIMIT 1;\n\n-- name: SelectByCreal :one\nSELECT id FROM debug\nWHERE Creal = ? LIMIT 1;\n\n-- name: SelectByCdoubleprecision :one\nSELECT id FROM debug\nWHERE Cdoubleprecision = ? LIMIT 1;\n\n-- name: SelectByCdouble :one\nSELECT id FROM debug\nWHERE Cdouble = ? LIMIT 1;\n\n-- name: SelectByCdec :one\nSELECT id FROM debug\nWHERE Cdec = ? LIMIT 1;\n\n-- name: SelectByCfixed :one\nSELECT id FROM debug\nWHERE Cfixed = ? LIMIT 1;\n\n-- name: SelectByCtinyint :one\nSELECT id FROM debug\nWHERE Ctinyint = ? LIMIT 1;\n\n-- name: SelectByCbool :one\nSELECT id FROM debug\nWHERE Cbool = ? LIMIT 1;\n\n-- name: SelectByCmediumint :one\nSELECT id FROM debug\nWHERE Cmediumint = ? LIMIT 1;\n\n-- name: SelectByCbit :one\nSELECT id FROM debug\nWHERE Cbit = ? LIMIT 1;\n\n-- name: SelectByCdate :one\nSELECT id FROM debug\nWHERE Cdate = ? LIMIT 1;\n\n-- name: SelectByCdatetime :one\nSELECT id FROM debug\nWHERE Cdatetime = ? LIMIT 1;\n\n-- name: SelectByCtimestamp :one\nSELECT id FROM debug\nWHERE Ctimestamp = ? LIMIT 1;\n\n-- name: SelectByCtime :one\nSELECT id FROM debug\nWHERE Ctime = ? LIMIT 1;\n\n-- name: SelectByCyear :one\nSELECT id FROM debug\nWHERE Cyear = ? LIMIT 1;\n\n-- name: SelectByCchar :one\nSELECT id FROM debug\nWHERE Cchar = ? LIMIT 1;\n\n-- name: SelectByCvarchar :one\nSELECT id FROM debug\nWHERE Cvarchar = ? LIMIT 1;\n\n-- name: SelectByCbinary :one\nSELECT id FROM debug\nWHERE Cbinary = ? LIMIT 1;\n\n-- name: SelectByCvarbinary :one\nSELECT id FROM debug\nWHERE Cvarbinary = ? LIMIT 1;\n\n-- name: SelectByCtinyblob :one\nSELECT id FROM debug\nWHERE Ctinyblob = ? LIMIT 1;\n\n-- name: SelectByCblob :one\nSELECT id FROM debug\nWHERE Cblob = ? LIMIT 1;\n\n-- name: SelectByCmediumblob :one\nSELECT id FROM debug\nWHERE Cmediumblob = ? LIMIT 1;\n\n-- name: SelectByClongblob :one\nSELECT id FROM debug\nWHERE Clongblob = ? LIMIT 1;\n\n-- name: SelectByCtinytext :one\nSELECT id FROM debug\nWHERE Ctinytext = ? LIMIT 1;\n\n-- name: SelectByCtext :one\nSELECT id FROM debug\nWHERE Ctext = ? LIMIT 1;\n\n-- name: SelectByCmediumtext :one\nSELECT id FROM debug\nWHERE Cmediumtext = ? LIMIT 1;\n\n-- name: SelectByClongtext :one\nSELECT id FROM debug\nWHERE Clongtext = ? LIMIT 1;\n\n-- name: SelectByCenum :one\nSELECT id FROM debug\nWHERE Cenum = ? LIMIT 1;\n\n-- name: SelectByCset :one\nSELECT id FROM debug\nWHERE Cset = ? LIMIT 1;\n\n-- name: SelectByCjson :one\nSELECT id FROM debug\nWHERE Cjson = ? LIMIT 1;\n\n--\n--\n\n-- -- name: DeleteById :exec\n-- DELETE FROM debug\n-- WHERE id = ?;\n\n-- -- name: DeleteByCsmallint :exec\n-- DELETE FROM debug\n-- WHERE Csmallint = ? LIMIT 1;\n\n-- -- name: DeleteByCint :exec\n-- DELETE FROM debug\n-- WHERE Cint = ? LIMIT 1;\n\n-- -- name: DeleteByCinteger :exec\n-- DELETE FROM debug\n-- WHERE Cinteger = ? LIMIT 1;\n\n-- -- name: DeleteByCdecimal :exec\n-- DELETE FROM debug\n-- WHERE Cdecimal = ? LIMIT 1;\n\n-- -- name: DeleteByCnumeric :exec\n-- DELETE FROM debug\n-- WHERE Cnumeric = ? LIMIT 1;\n\n-- -- name: DeleteByCfloat :exec\n-- DELETE FROM debug\n-- WHERE Cfloat = ? LIMIT 1;\n\n-- -- name: DeleteByCreal :exec\n-- DELETE FROM debug\n-- WHERE Creal = ? LIMIT 1;\n\n-- -- name: DeleteByCdoubleprecision :exec\n-- DELETE FROM debug\n-- WHERE Cdoubleprecision = ? LIMIT 1;\n\n-- -- name: DeleteByCdouble :exec\n-- DELETE FROM debug\n-- WHERE Cdouble = ? LIMIT 1;\n\n-- -- name: DeleteByCdec :exec\n-- DELETE FROM debug\n-- WHERE Cdec = ? LIMIT 1;\n\n-- -- name: DeleteByCfixed :exec\n-- DELETE FROM debug\n-- WHERE Cfixed = ? LIMIT 1;\n\n-- -- name: DeleteByCtinyint :exec\n-- DELETE FROM debug\n-- WHERE Ctinyint = ? LIMIT 1;\n\n-- -- name: DeleteByCbool :exec\n-- DELETE FROM debug\n-- WHERE Cbool = ? LIMIT 1;\n\n-- -- name: DeleteByCmediumint :exec\n-- DELETE FROM debug\n-- WHERE Cmediumint = ? LIMIT 1;\n\n-- -- name: DeleteByCbit :exec\n-- DELETE FROM debug\n-- WHERE Cbit = ? LIMIT 1;\n\n-- -- name: DeleteByCdate :exec\n-- DELETE FROM debug\n-- WHERE Cdate = ? LIMIT 1;\n\n-- -- name: DeleteByCdatetime :exec\n-- DELETE FROM debug\n-- WHERE Cdatetime = ? LIMIT 1;\n\n-- -- name: DeleteByCtimestamp :exec\n-- DELETE FROM debug\n-- WHERE Ctimestamp = ? LIMIT 1;\n\n-- -- name: DeleteByCtime :exec\n-- DELETE FROM debug\n-- WHERE Ctime = ? LIMIT 1;\n\n-- -- name: DeleteByCyear :exec\n-- DELETE FROM debug\n-- WHERE Cyear = ? LIMIT 1;\n\n-- -- name: DeleteByCchar :exec\n-- DELETE FROM debug\n-- WHERE Cchar = ? LIMIT 1;\n\n-- -- name: DeleteByCvarchar :exec\n-- DELETE FROM debug\n-- WHERE Cvarchar = ?;\n\n-- -- name: DeleteByCbinary :exec\n-- DELETE FROM debug\n-- WHERE Cbinary = ? LIMIT 1;\n\n-- -- name: DeleteByCvarbinary :exec\n-- DELETE FROM debug\n-- WHERE Cvarbinary = ? LIMIT 1;\n\n-- -- name: DeleteByCtinyblob :exec\n-- DELETE FROM debug\n-- WHERE Ctinyblob = ? LIMIT 1;\n\n-- -- name: DeleteByCblob :exec\n-- DELETE FROM debug\n-- WHERE Cblob = ? LIMIT 1;\n\n-- -- name: DeleteByCmediumblob :exec\n-- DELETE FROM debug\n-- WHERE Cmediumblob = ? LIMIT 1;\n\n-- -- name: DeleteByClongblob :exec\n-- DELETE FROM debug\n-- WHERE Clongblob = ? LIMIT 1;\n\n-- -- name: DeleteByCtinytext :exec\n-- DELETE FROM debug\n-- WHERE Ctinytext = ? LIMIT 1;\n\n-- -- name: DeleteByCtext :exec\n-- DELETE FROM debug\n-- WHERE Ctext = ? LIMIT 1;\n\n-- -- name: DeleteByCmediumtext :exec\n-- DELETE FROM debug\n-- WHERE Cmediumtext = ? LIMIT 1;\n\n-- -- name: DeleteByClongtext :exec\n-- DELETE FROM debug\n-- WHERE Clongtext = ? LIMIT 1;\n\n-- -- name: DeleteByCenum :exec\n-- DELETE FROM debug\n-- WHERE Cenum = ? LIMIT 1;\n\n-- -- name: DeleteByCset :exec\n-- DELETE FROM debug\n-- WHERE Cset = ? LIMIT 1;\n\n-- -- name: DeleteByCjson :exec\n-- DELETE FROM debug\n-- WHERE Cjson = ? LIMIT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/vet_explain/mysql/schema.sql",
    "content": "CREATE TABLE debug (\n          id BIGINT PRIMARY KEY AUTO_INCREMENT,\n          Csmallint smallint not null,\n          Cint int not null,\n          Cinteger integer not null,\n          Cdecimal decimal(1,1) not null,\n          Cnumeric numeric(2,1) not null,\n          Cfloat float not null,\n          Creal real not null,\n          Cdoubleprecision double precision not null,\n          Cdouble double not null,\n          Cdec dec(3,2) not null,\n          Cfixed fixed(5,5) not null,\n          Ctinyint tinyint not null,\n          Cbool bool not null,\n          Cmediumint mediumint not null,\n          Cbit bit not null,\n          Cdate date not null,\n          Cdatetime datetime not null,\n          Ctimestamp timestamp not null,\n          Ctime time not null,\n          Cyear year not null,\n          Cchar char(1) not null,\n          Cvarchar varchar(1) not null,\n          Cbinary binary(1) not null,\n          Cvarbinary varbinary(1) not null,\n          Ctinyblob tinyblob not null,\n          Cblob blob not null,\n          Cmediumblob mediumblob not null,\n          Clongblob longblob not null,\n          Ctinytext tinytext NOT NULL,\n          Ctext text NOT NULL,\n          Cmediumtext mediumtext NOT NULL,\n          Clongtext longtext NOT NULL,\n          Cenum ENUM('one', 'two', 'three'),\n          Cset SET('one', 'two', 'three') NOT NULL,\n          Cjson JSON NOT NULL\n);"
  },
  {
    "path": "internal/endtoend/testdata/vet_explain/mysql/sqlc.yaml",
    "content": "version: 2\nsql:\n  - schema: \"schema.sql\"\n    queries: \"query.sql\"\n    engine: \"mysql\"\n    database:\n      uri: root:${MYSQL_ROOT_PASSWORD}@tcp(${MYSQL_HOST}:${MYSQL_PORT})/test?multiStatements=true&parseTime=true\n    gen:\n      go:\n        package: \"test\"\n        out: \"db\"\n    rules:\n      - test\nrules:\n  - name: test\n    rule: \"!has(mysql.explain)\"\n"
  },
  {
    "path": "internal/endtoend/testdata/vet_failures/exec.json",
    "content": "{\n  \"command\": \"vet\"\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/vet_failures/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/vet_failures/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/vet_failures/sqlc.yaml",
    "content": "version: 2\nsql:\n  - schema: \"schema.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    gen:\n      go:\n        package: \"authors\"\n        out: \"db\"\n    rules:\n      - no-pg\n      - no-delete\n      - only-one-param\n      - no-exec\nrules:\n  - name: no-pg\n    message: \"invalid engine: postgresql\"\n    rule: |\n      config.engine == \"postgresql\"\n  - name: no-delete\n    message: \"don't use delete statements\"\n    rule: |\n      query.sql.contains(\"DELETE\")\n  - name: only-one-param\n    message: \"too many parameters\"\n    rule: |\n      query.params.size() > 1\n  - name: no-exec\n    message: \"don't use exec\"\n    rule: |\n      query.cmd == \"exec\"\n"
  },
  {
    "path": "internal/endtoend/testdata/vet_failures/stderr.txt",
    "content": "query.sql: GetAuthor: no-pg: invalid engine: postgresql\nquery.sql: ListAuthors: no-pg: invalid engine: postgresql\nquery.sql: CreateAuthor: no-pg: invalid engine: postgresql\nquery.sql: CreateAuthor: only-one-param: too many parameters\nquery.sql: DeleteAuthor: no-pg: invalid engine: postgresql\nquery.sql: DeleteAuthor: no-delete: don't use delete statements\nquery.sql: DeleteAuthor: no-exec: don't use exec\n"
  },
  {
    "path": "internal/endtoend/testdata/virtual_table/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/virtual_table/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"database/sql\"\n)\n\ntype Ft struct {\n\tB string\n}\n\ntype Tbl struct {\n\tA int64\n\tB sql.NullString\n\tC sql.NullString\n\tD sql.NullString\n\tE sql.NullInt64\n}\n\ntype TblFt struct {\n\tB string\n\tC string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/virtual_table/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst deleteTblFt = `-- name: DeleteTblFt :exec\nDELETE FROM tbl_ft WHERE b = ?\n`\n\nfunc (q *Queries) DeleteTblFt(ctx context.Context, b string) error {\n\t_, err := q.db.ExecContext(ctx, deleteTblFt, b)\n\treturn err\n}\n\nconst insertTblFt = `-- name: InsertTblFt :exec\nINSERT INTO tbl_ft(b, c) VALUES(?, ?)\n`\n\ntype InsertTblFtParams struct {\n\tB string\n\tC string\n}\n\nfunc (q *Queries) InsertTblFt(ctx context.Context, arg InsertTblFtParams) error {\n\t_, err := q.db.ExecContext(ctx, insertTblFt, arg.B, arg.C)\n\treturn err\n}\n\nconst selectAllColsFt = `-- name: SelectAllColsFt :many\nSELECT b FROM ft\nWHERE b MATCH ?\n`\n\nfunc (q *Queries) SelectAllColsFt(ctx context.Context, b string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, selectAllColsFt, b)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar b string\n\t\tif err := rows.Scan(&b); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, b)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectAllColsTblFt = `-- name: SelectAllColsTblFt :many\nSELECT b, c FROM tbl_ft\nWHERE b MATCH ?\n`\n\nfunc (q *Queries) SelectAllColsTblFt(ctx context.Context, b string) ([]TblFt, error) {\n\trows, err := q.db.QueryContext(ctx, selectAllColsTblFt, b)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []TblFt\n\tfor rows.Next() {\n\t\tvar i TblFt\n\t\tif err := rows.Scan(&i.B, &i.C); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectBm25Func = `-- name: SelectBm25Func :many\nSELECT b, c, bm25(tbl_ft, 2.0) FROM tbl_ft\nWHERE b MATCH ? ORDER BY bm25(tbl_ft)\n`\n\ntype SelectBm25FuncRow struct {\n\tB    string\n\tC    string\n\tBm25 float64\n}\n\nfunc (q *Queries) SelectBm25Func(ctx context.Context, b string) ([]SelectBm25FuncRow, error) {\n\trows, err := q.db.QueryContext(ctx, selectBm25Func, b)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []SelectBm25FuncRow\n\tfor rows.Next() {\n\t\tvar i SelectBm25FuncRow\n\t\tif err := rows.Scan(&i.B, &i.C, &i.Bm25); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectHightlighFunc = `-- name: SelectHightlighFunc :many\nSELECT highlight(tbl_ft, 0, '<b>', '</b>') FROM tbl_ft\nWHERE b MATCH ?\n`\n\nfunc (q *Queries) SelectHightlighFunc(ctx context.Context, b string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, selectHightlighFunc, b)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar highlight string\n\t\tif err := rows.Scan(&highlight); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, highlight)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectOneColFt = `-- name: SelectOneColFt :many\nSELECT b FROM ft\nWHERE b = ?\n`\n\nfunc (q *Queries) SelectOneColFt(ctx context.Context, b string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, selectOneColFt, b)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar b string\n\t\tif err := rows.Scan(&b); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, b)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectOneColTblFt = `-- name: SelectOneColTblFt :many\nSELECT c FROM tbl_ft\nWHERE b = ?\n`\n\nfunc (q *Queries) SelectOneColTblFt(ctx context.Context, b string) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, selectOneColTblFt, b)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar c string\n\t\tif err := rows.Scan(&c); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, c)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst selectSnippetFunc = `-- name: SelectSnippetFunc :many\nSELECT snippet(tbl_ft, 0, '<b>', '</b>', 'aa', ?) FROM tbl_ft\n`\n\nfunc (q *Queries) SelectSnippetFunc(ctx context.Context, snippet int64) ([]string, error) {\n\trows, err := q.db.QueryContext(ctx, selectSnippetFunc, snippet)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer rows.Close()\n\tvar items []string\n\tfor rows.Next() {\n\t\tvar snippet string\n\t\tif err := rows.Scan(&snippet); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\titems = append(items, snippet)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, err\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\treturn items, nil\n}\n\nconst updateTblFt = `-- name: UpdateTblFt :exec\nUPDATE tbl_ft SET c = ? WHERE b = ?\n`\n\ntype UpdateTblFtParams struct {\n\tC string\n\tB string\n}\n\nfunc (q *Queries) UpdateTblFt(ctx context.Context, arg UpdateTblFtParams) error {\n\t_, err := q.db.ExecContext(ctx, updateTblFt, arg.C, arg.B)\n\treturn err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/virtual_table/sqlite/query.sql",
    "content": "-- name: SelectAllColsFt :many\nSELECT b FROM ft\nWHERE b MATCH ?;\n\n-- name: SelectAllColsTblFt :many\nSELECT b, c FROM tbl_ft\nWHERE b MATCH ?;\n\n-- name: SelectOneColFt :many\nSELECT b FROM ft\nWHERE b = ?;\n\n-- name: SelectOneColTblFt :many\nSELECT c FROM tbl_ft\nWHERE b = ?;\n\n-- name: SelectHightlighFunc :many\nSELECT highlight(tbl_ft, 0, '<b>', '</b>') FROM tbl_ft\nWHERE b MATCH ?;\n\n-- name: SelectSnippetFunc :many\nSELECT snippet(tbl_ft, 0, '<b>', '</b>', 'aa', ?) FROM tbl_ft;\n\n-- name: SelectBm25Func :many\nSELECT *, bm25(tbl_ft, 2.0) FROM tbl_ft\nWHERE b MATCH ? ORDER BY bm25(tbl_ft);\n\n-- name: UpdateTblFt :exec\nUPDATE tbl_ft SET c = ? WHERE b = ?;\n\n-- name: DeleteTblFt :exec\nDELETE FROM tbl_ft WHERE b = ?;\n\n-- name: InsertTblFt :exec\nINSERT INTO tbl_ft(b, c) VALUES(?, ?);\n"
  },
  {
    "path": "internal/endtoend/testdata/virtual_table/sqlite/schema.sql",
    "content": "CREATE TABLE tbl(a INTEGER PRIMARY KEY, b TEXT, c TEXT, d TEXT, e INTEGER);\n\nCREATE VIRTUAL TABLE tbl_ft USING fts5(b, c UNINDEXED, content='tbl', content_rowid='a');\n\nCREATE VIRTUAL TABLE ft USING fts5(b);\n\nCREATE TRIGGER tbl_ai AFTER INSERT ON tbl BEGIN\n  INSERT INTO tbl_ft(rowid, b, c) VALUES (new.a, new.b, new.c);\nEND;\n\nINSERT INTO tbl VALUES(1, 'xx yy cc', 't', 'a', 11);\nINSERT INTO tbl VALUES(2, 'aa bb', 't', 'a', 22);\n\nINSERT INTO ft VALUES('xx cc');\nINSERT INTO ft VALUES('cc bb');\n"
  },
  {
    "path": "internal/endtoend/testdata/virtual_table/sqlite/sqlc.yaml",
    "content": "version: '2'\nsql:\n- schema: schema.sql\n  queries: query.sql\n  engine: sqlite\n  gen:\n    go:\n      package: querytest\n      out: go"
  },
  {
    "path": "internal/endtoend/testdata/wasm_plugin_sqlc_gen_greeter/gen/hello.txt",
    "content": "Hello World"
  },
  {
    "path": "internal/endtoend/testdata/wasm_plugin_sqlc_gen_greeter/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/wasm_plugin_sqlc_gen_greeter/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/wasm_plugin_sqlc_gen_greeter/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"codegen\": [\n        {\n          \"out\": \"gen\",\n          \"plugin\": \"greeter\"\n        }\n      ]\n    }\n  ],\n  \"plugins\": [\n    {\n      \"name\": \"greeter\",\n      \"wasm\": {\n        \"url\": \"https://github.com/sqlc-dev/sqlc-gen-greeter/releases/download/v0.1.0/sqlc-gen-greeter.wasm\",\n        \"sha256\": \"afc486dac2068d741d7a4110146559d12a013fd0286f42a2fc7dcd802424ad07\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/wasm_plugin_sqlc_gen_test/gen/env.json",
    "content": "{\n  \"env\": [\n    \"SQLC_VERSION=v1.30.0\",\n    \"SQLC_DUMMY_VALUE=true\"\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/wasm_plugin_sqlc_gen_test/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/wasm_plugin_sqlc_gen_test/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/wasm_plugin_sqlc_gen_test/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"codegen\": [\n        {\n          \"out\": \"gen\",\n          \"plugin\": \"test\"\n        }\n      ]\n    }\n  ],\n  \"plugins\": [\n    {\n      \"name\": \"test\",\n      \"env\": [\"SQLC_DUMMY_VALUE\"],\n      \"wasm\": {\n        \"url\": \"https://github.com/sqlc-dev/sqlc-gen-test/releases/download/v0.1.0/sqlc-gen-test.wasm\",\n        \"sha256\": \"138220eae508d4b65a5a8cea555edd155eb2290daf576b7a8b96949acfeb3790\"\n      }\n    }\n  ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/wasm_plugin_sqlc_gen_unsafe_paths/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: DeleteAuthor :exec\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/wasm_plugin_sqlc_gen_unsafe_paths/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/wasm_plugin_sqlc_gen_unsafe_paths/sqlc.json",
    "content": "{\n  \"version\": \"2\",\n  \"sql\": [\n    {\n      \"schema\": \"schema.sql\",\n      \"queries\": \"query.sql\",\n      \"engine\": \"postgresql\",\n      \"codegen\": [\n        {\n          \"out\": \"gen\",\n          \"plugin\": \"test\"\n        }\n      ]\n    }\n  ],\n  \"plugins\": [\n    {\n      \"name\": \"test\",\n      \"wasm\": {\n        \"url\": \"https://github.com/sqlc-dev/sqlc-gen-unsafe-paths/releases/download/v0.1.1/sqlc-gen-unsafe-paths.wasm\",\n        \"sha256\": \"e53ac951dd41b1e4c365e757d9735886f7c8e92f2056ce0be9a5cfcf677c45d9\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/wasm_plugin_sqlc_gen_unsafe_paths/stderr.txt",
    "content": "# package test\nerror generating code: invalid file output path: /tmp/unsafe.txt\n"
  },
  {
    "path": "internal/endtoend/testdata/wasm_plugin_sqlc_gen_unsafe_paths/stderr_windows.txt",
    "content": "# package test\nerror generating code: invalid file output path: D:/tmp/unsafe.txt\n"
  },
  {
    "path": "internal/endtoend/testdata/where_collate/sqlite/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/where_collate/sqlite/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage querytest\n\ntype Account struct {\n\tID   string\n\tName string\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/where_collate/sqlite/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage querytest\n\nimport (\n\t\"context\"\n)\n\nconst getAccountByName = `-- name: GetAccountByName :one\nSELECT id, name FROM accounts\nWHERE name = ? COLLATE NOCASE\nLIMIT 1\n`\n\nfunc (q *Queries) GetAccountByName(ctx context.Context, name string) (Account, error) {\n\trow := q.db.QueryRowContext(ctx, getAccountByName, name)\n\tvar i Account\n\terr := row.Scan(&i.ID, &i.Name)\n\treturn i, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/where_collate/sqlite/query.sql",
    "content": "-- name: GetAccountByName :one\nSELECT * FROM accounts\nWHERE name = ? COLLATE NOCASE\nLIMIT 1;"
  },
  {
    "path": "internal/endtoend/testdata/where_collate/sqlite/schema.sql",
    "content": "CREATE TABLE accounts (\n    id TEXT NOT NULL PRIMARY KEY,\n    name TEXT NOT NULL UNIQUE,\n\n    UNIQUE (name COLLATE NOCASE)\n);\n\n"
  },
  {
    "path": "internal/endtoend/testdata/where_collate/sqlite/sqlc.json",
    "content": "{\n    \"version\": \"1\",\n    \"packages\": [\n        {\n            \"path\": \"go\",\n            \"engine\": \"sqlite\",\n            \"schema\": \"schema.sql\",\n            \"queries\": \"query.sql\",\n            \"name\": \"querytest\"\n        }\n    ]\n}"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/mysql/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/mysql/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/mysql/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"fmt\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :execlastid\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\n`\n\nfunc (q *Queries) CreateAuthor(ctx context.Context) (int64, error) {\n\tresult, err := q.db.ExecContext(ctx, createAuthor)\n\tif err != nil {\n\t\treturn 0, fmt.Errorf(\"query CreateAuthor: %w\", err)\n\t}\n\treturn result.LastInsertId()\n}\n\nconst deleteAuthorExec = `-- name: DeleteAuthorExec :exec\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthorExec(ctx context.Context) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthorExec)\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query DeleteAuthorExec: %w\", err)\n\t}\n\treturn err\n}\n\nconst deleteAuthorExecLastID = `-- name: DeleteAuthorExecLastID :execlastid\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthorExecLastID(ctx context.Context) (int64, error) {\n\tresult, err := q.db.ExecContext(ctx, deleteAuthorExecLastID)\n\tif err != nil {\n\t\treturn 0, fmt.Errorf(\"query DeleteAuthorExecLastID: %w\", err)\n\t}\n\treturn result.LastInsertId()\n}\n\nconst deleteAuthorExecResult = `-- name: DeleteAuthorExecResult :execresult\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthorExecResult(ctx context.Context) (sql.Result, error) {\n\tresult, err := q.db.ExecContext(ctx, deleteAuthorExecResult)\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query DeleteAuthorExecResult: %w\", err)\n\t}\n\treturn result, err\n}\n\nconst deleteAuthorExecRows = `-- name: DeleteAuthorExecRows :execrows\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthorExecRows(ctx context.Context) (int64, error) {\n\tresult, err := q.db.ExecContext(ctx, deleteAuthorExecRows)\n\tif err != nil {\n\t\treturn 0, fmt.Errorf(\"query DeleteAuthorExecRows: %w\", err)\n\t}\n\treturn result.RowsAffected()\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query GetAuthor: %w\", err)\n\t}\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio FROM authors\nORDER BY name\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"query ListAuthors: %w\", err)\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, fmt.Errorf(\"query ListAuthors: %w\", err)\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, fmt.Errorf(\"query ListAuthors: %w\", err)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, fmt.Errorf(\"query ListAuthors: %w\", err)\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/mysql/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :execlastid\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n);\n\n-- name: DeleteAuthorExec :exec\nDELETE FROM authors\nWHERE id = $1;\n\n-- name: DeleteAuthorExecRows :execrows\nDELETE FROM authors\nWHERE id = $1;\n\n-- name: DeleteAuthorExecLastID :execlastid\nDELETE FROM authors\nWHERE id = $1;\n\n-- name: DeleteAuthorExecResult :execresult\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/mysql/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGINT PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/mysql/sqlc.yaml",
    "content": "version: 2\nsql:\n  - schema: \"schema.sql\"\n    queries: \"query.sql\"\n    engine: \"mysql\"\n    gen:\n      go:\n        package: \"authors\"\n        out: \"db\"\n        wrap_errors: true\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/postgresql/pgx/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"context\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n)\n\ntype DBTX interface {\n\tExec(context.Context, string, ...interface{}) (pgconn.CommandTag, error)\n\tQuery(context.Context, string, ...interface{}) (pgx.Rows, error)\n\tQueryRow(context.Context, string, ...interface{}) pgx.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx pgx.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/postgresql/pgx/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  pgtype.Text\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/postgresql/pgx/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"github.com/jackc/pgx/v5/pgconn\"\n\t\"github.com/jackc/pgx/v5/pgtype\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING id, name, bio\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  pgtype.Text\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error) {\n\trow := q.db.QueryRow(ctx, createAuthor, arg.Name, arg.Bio)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query CreateAuthor: %w\", err)\n\t}\n\treturn i, err\n}\n\nconst deleteAuthorExec = `-- name: DeleteAuthorExec :exec\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthorExec(ctx context.Context, id int64) error {\n\t_, err := q.db.Exec(ctx, deleteAuthorExec, id)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"query DeleteAuthorExec: %w\", err)\n\t}\n\treturn nil\n}\n\nconst deleteAuthorExecLastID = `-- name: DeleteAuthorExecLastID :execlastid\nDELETE FROM authors\nWHERE id = $1\n`\n\nconst deleteAuthorExecResult = `-- name: DeleteAuthorExecResult :execresult\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthorExecResult(ctx context.Context, id int64) (pgconn.CommandTag, error) {\n\tresult, err := q.db.Exec(ctx, deleteAuthorExecResult, id)\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query DeleteAuthorExecResult: %w\", err)\n\t}\n\treturn result, err\n}\n\nconst deleteAuthorExecRows = `-- name: DeleteAuthorExecRows :execrows\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthorExecRows(ctx context.Context, id int64) (int64, error) {\n\tresult, err := q.db.Exec(ctx, deleteAuthorExecRows, id)\n\tif err != nil {\n\t\treturn 0, fmt.Errorf(\"query DeleteAuthorExecRows: %w\", err)\n\t}\n\treturn result.RowsAffected(), nil\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRow(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query GetAuthor: %w\", err)\n\t}\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio FROM authors\nORDER BY name\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.Query(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"query ListAuthors: %w\", err)\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, fmt.Errorf(\"query ListAuthors: %w\", err)\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, fmt.Errorf(\"query ListAuthors: %w\", err)\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/postgresql/pgx/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: DeleteAuthorExec :exec\nDELETE FROM authors\nWHERE id = $1;\n\n-- name: DeleteAuthorExecRows :execrows\nDELETE FROM authors\nWHERE id = $1;\n\n-- name: DeleteAuthorExecLastID :execlastid\nDELETE FROM authors\nWHERE id = $1;\n\n-- name: DeleteAuthorExecResult :execresult\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/postgresql/pgx/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/postgresql/pgx/sqlc.yaml",
    "content": "version: 2\nsql:\n  - schema: \"schema.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    gen:\n      go:\n        package: \"authors\"\n        sql_package: \"pgx/v5\"\n        out: \"db\"\n        wrap_errors: true\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/postgresql/stdlib/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/postgresql/stdlib/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/postgresql/stdlib/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"fmt\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING id, name, bio\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, createAuthor, arg.Name, arg.Bio)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query CreateAuthor: %w\", err)\n\t}\n\treturn i, err\n}\n\nconst deleteAuthorExec = `-- name: DeleteAuthorExec :exec\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthorExec(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthorExec, id)\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query DeleteAuthorExec: %w\", err)\n\t}\n\treturn err\n}\n\nconst deleteAuthorExecLastID = `-- name: DeleteAuthorExecLastID :execlastid\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthorExecLastID(ctx context.Context, id int64) (int64, error) {\n\tresult, err := q.db.ExecContext(ctx, deleteAuthorExecLastID, id)\n\tif err != nil {\n\t\treturn 0, fmt.Errorf(\"query DeleteAuthorExecLastID: %w\", err)\n\t}\n\treturn result.LastInsertId()\n}\n\nconst deleteAuthorExecResult = `-- name: DeleteAuthorExecResult :execresult\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthorExecResult(ctx context.Context, id int64) (sql.Result, error) {\n\tresult, err := q.db.ExecContext(ctx, deleteAuthorExecResult, id)\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query DeleteAuthorExecResult: %w\", err)\n\t}\n\treturn result, err\n}\n\nconst deleteAuthorExecRows = `-- name: DeleteAuthorExecRows :execrows\nDELETE FROM authors\nWHERE id = $1\n`\n\nfunc (q *Queries) DeleteAuthorExecRows(ctx context.Context, id int64) (int64, error) {\n\tresult, err := q.db.ExecContext(ctx, deleteAuthorExecRows, id)\n\tif err != nil {\n\t\treturn 0, fmt.Errorf(\"query DeleteAuthorExecRows: %w\", err)\n\t}\n\treturn result.RowsAffected()\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM authors\nWHERE id = $1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query GetAuthor: %w\", err)\n\t}\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio FROM authors\nORDER BY name\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"query ListAuthors: %w\", err)\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, fmt.Errorf(\"query ListAuthors: %w\", err)\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, fmt.Errorf(\"query ListAuthors: %w\", err)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, fmt.Errorf(\"query ListAuthors: %w\", err)\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/postgresql/stdlib/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = $1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :one\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  $1, $2\n)\nRETURNING *;\n\n-- name: DeleteAuthorExec :exec\nDELETE FROM authors\nWHERE id = $1;\n\n-- name: DeleteAuthorExecRows :execrows\nDELETE FROM authors\nWHERE id = $1;\n\n-- name: DeleteAuthorExecLastID :execlastid\nDELETE FROM authors\nWHERE id = $1;\n\n-- name: DeleteAuthorExecResult :execresult\nDELETE FROM authors\nWHERE id = $1;\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/postgresql/stdlib/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGSERIAL PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/postgresql/stdlib/sqlc.yaml",
    "content": "version: 2\nsql:\n  - schema: \"schema.sql\"\n    queries: \"query.sql\"\n    engine: \"postgresql\"\n    gen:\n      go:\n        package: \"authors\"\n        out: \"db\"\n        wrap_errors: true\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/sqlite/db/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/sqlite/db/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage authors\n\nimport (\n\t\"database/sql\"\n)\n\ntype Author struct {\n\tID   int64\n\tName string\n\tBio  sql.NullString\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/sqlite/db/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage authors\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"fmt\"\n)\n\nconst createAuthor = `-- name: CreateAuthor :execlastid\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  ?1, ?2\n)\n`\n\ntype CreateAuthorParams struct {\n\tName string\n\tBio  sql.NullString\n}\n\nfunc (q *Queries) CreateAuthor(ctx context.Context, arg CreateAuthorParams) (int64, error) {\n\tresult, err := q.db.ExecContext(ctx, createAuthor, arg.Name, arg.Bio)\n\tif err != nil {\n\t\treturn 0, fmt.Errorf(\"query CreateAuthor: %w\", err)\n\t}\n\treturn result.LastInsertId()\n}\n\nconst deleteAuthorExec = `-- name: DeleteAuthorExec :exec\nDELETE FROM authors\nWHERE id = ?1\n`\n\nfunc (q *Queries) DeleteAuthorExec(ctx context.Context, id int64) error {\n\t_, err := q.db.ExecContext(ctx, deleteAuthorExec, id)\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query DeleteAuthorExec: %w\", err)\n\t}\n\treturn err\n}\n\nconst deleteAuthorExecLastID = `-- name: DeleteAuthorExecLastID :execlastid\nDELETE FROM authors\nWHERE id = ?1\n`\n\nfunc (q *Queries) DeleteAuthorExecLastID(ctx context.Context, id int64) (int64, error) {\n\tresult, err := q.db.ExecContext(ctx, deleteAuthorExecLastID, id)\n\tif err != nil {\n\t\treturn 0, fmt.Errorf(\"query DeleteAuthorExecLastID: %w\", err)\n\t}\n\treturn result.LastInsertId()\n}\n\nconst deleteAuthorExecResult = `-- name: DeleteAuthorExecResult :execresult\nDELETE FROM authors\nWHERE id = ?1\n`\n\nfunc (q *Queries) DeleteAuthorExecResult(ctx context.Context, id int64) (sql.Result, error) {\n\tresult, err := q.db.ExecContext(ctx, deleteAuthorExecResult, id)\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query DeleteAuthorExecResult: %w\", err)\n\t}\n\treturn result, err\n}\n\nconst deleteAuthorExecRows = `-- name: DeleteAuthorExecRows :execrows\nDELETE FROM authors\nWHERE id = ?1\n`\n\nfunc (q *Queries) DeleteAuthorExecRows(ctx context.Context, id int64) (int64, error) {\n\tresult, err := q.db.ExecContext(ctx, deleteAuthorExecRows, id)\n\tif err != nil {\n\t\treturn 0, fmt.Errorf(\"query DeleteAuthorExecRows: %w\", err)\n\t}\n\treturn result.RowsAffected()\n}\n\nconst getAuthor = `-- name: GetAuthor :one\nSELECT id, name, bio FROM authors\nWHERE id = ?1 LIMIT 1\n`\n\nfunc (q *Queries) GetAuthor(ctx context.Context, id int64) (Author, error) {\n\trow := q.db.QueryRowContext(ctx, getAuthor, id)\n\tvar i Author\n\terr := row.Scan(&i.ID, &i.Name, &i.Bio)\n\tif err != nil {\n\t\terr = fmt.Errorf(\"query GetAuthor: %w\", err)\n\t}\n\treturn i, err\n}\n\nconst listAuthors = `-- name: ListAuthors :many\nSELECT id, name, bio FROM authors\nORDER BY name\n`\n\nfunc (q *Queries) ListAuthors(ctx context.Context) ([]Author, error) {\n\trows, err := q.db.QueryContext(ctx, listAuthors)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"query ListAuthors: %w\", err)\n\t}\n\tdefer rows.Close()\n\tvar items []Author\n\tfor rows.Next() {\n\t\tvar i Author\n\t\tif err := rows.Scan(&i.ID, &i.Name, &i.Bio); err != nil {\n\t\t\treturn nil, fmt.Errorf(\"query ListAuthors: %w\", err)\n\t\t}\n\t\titems = append(items, i)\n\t}\n\tif err := rows.Close(); err != nil {\n\t\treturn nil, fmt.Errorf(\"query ListAuthors: %w\", err)\n\t}\n\tif err := rows.Err(); err != nil {\n\t\treturn nil, fmt.Errorf(\"query ListAuthors: %w\", err)\n\t}\n\treturn items, nil\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/sqlite/query.sql",
    "content": "-- name: GetAuthor :one\nSELECT * FROM authors\nWHERE id = ?1 LIMIT 1;\n\n-- name: ListAuthors :many\nSELECT * FROM authors\nORDER BY name;\n\n-- name: CreateAuthor :execlastid\nINSERT INTO authors (\n          name, bio\n) VALUES (\n  ?1, ?2\n);\n\n-- name: DeleteAuthorExec :exec\nDELETE FROM authors\nWHERE id = ?1;\n\n-- name: DeleteAuthorExecRows :execrows\nDELETE FROM authors\nWHERE id = ?1;\n\n-- name: DeleteAuthorExecLastID :execlastid\nDELETE FROM authors\nWHERE id = ?1;\n\n-- name: DeleteAuthorExecResult :execresult\nDELETE FROM authors\nWHERE id = ?1;\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/sqlite/schema.sql",
    "content": "CREATE TABLE authors (\n          id   BIGINT PRIMARY KEY,\n          name text      NOT NULL,\n          bio  text\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/wrap_errors/sqlite/sqlc.yaml",
    "content": "version: 2\nsql:\n  - schema: \"schema.sql\"\n    queries: \"query.sql\"\n    engine: \"sqlite\"\n    gen:\n      go:\n        package: \"authors\"\n        out: \"db\"\n        wrap_errors: true\n"
  },
  {
    "path": "internal/endtoend/testdata/yaml_overrides/go/db.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n)\n\ntype DBTX interface {\n\tExecContext(context.Context, string, ...interface{}) (sql.Result, error)\n\tPrepareContext(context.Context, string) (*sql.Stmt, error)\n\tQueryContext(context.Context, string, ...interface{}) (*sql.Rows, error)\n\tQueryRowContext(context.Context, string, ...interface{}) *sql.Row\n}\n\nfunc New(db DBTX) *Queries {\n\treturn &Queries{db: db}\n}\n\ntype Queries struct {\n\tdb DBTX\n}\n\nfunc (q *Queries) WithTx(tx *sql.Tx) *Queries {\n\treturn &Queries{\n\t\tdb: tx,\n\t}\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/yaml_overrides/go/models.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n\npackage override\n\nimport (\n\t\"github.com/lib/pq\"\n\t\"github.com/sqlc-dev/sqlc-testdata/pkg\"\n)\n\ntype Foo struct {\n\tOther   string\n\tTotal   int64\n\tTags    []string\n\tByteSeq []byte\n\tRetyped pkg.CustomType\n\tLangs   pq.StringArray\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/yaml_overrides/go/query.sql.go",
    "content": "// Code generated by sqlc. DO NOT EDIT.\n// versions:\n//   sqlc v1.30.0\n// source: query.sql\n\npackage override\n\nimport (\n\t\"context\"\n)\n\nconst test = `-- name: Test :one\nSELECT 1\n`\n\nfunc (q *Queries) Test(ctx context.Context) (int32, error) {\n\trow := q.db.QueryRowContext(ctx, test)\n\tvar column_1 int32\n\terr := row.Scan(&column_1)\n\treturn column_1, err\n}\n"
  },
  {
    "path": "internal/endtoend/testdata/yaml_overrides/sql/query.sql",
    "content": "-- name: Test :one\nSELECT 1;\n"
  },
  {
    "path": "internal/endtoend/testdata/yaml_overrides/sql/schema.sql",
    "content": "CREATE TABLE foo (\n    other     text NOT NULL,\n    total     bigint NOT NULL,\n    tags      text[] NOT NULL,\n    byte_seq  bytea NOT NULL,\n    retyped   text NOT NULL,\n    langs     text[]\n);\n"
  },
  {
    "path": "internal/endtoend/testdata/yaml_overrides/sqlc.yaml",
    "content": "version: 1\npackages:\n  - path: \"go\"\n    name: \"override\"\n    schema: \"sql/\"\n    queries: \"sql/\"\n    overrides:\n      - go_type: \"github.com/sqlc-dev/sqlc-testdata/pkg.CustomType\"\n        column: \"foo.retyped\"\n      - go_type: \"github.com/lib/pq.StringArray\"\n        column: \"foo.langs\"\n"
  },
  {
    "path": "internal/endtoend/vet_test.go",
    "content": "//go:build examples\n\npackage main\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"testing\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/cmd\"\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest\"\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/local\"\n)\n\nfunc findSchema(t *testing.T, path string) (string, bool) {\n\tschemaFile := filepath.Join(path, \"schema.sql\")\n\tif _, err := os.Stat(schemaFile); !os.IsNotExist(err) {\n\t\treturn schemaFile, true\n\t}\n\tschemaDir := filepath.Join(path, \"schema\")\n\tif _, err := os.Stat(schemaDir); !os.IsNotExist(err) {\n\t\treturn schemaDir, true\n\t}\n\treturn \"\", false\n}\n\nfunc TestExamplesVet(t *testing.T) {\n\tt.Parallel()\n\tctx := context.Background()\n\n\texamples, err := filepath.Abs(filepath.Join(\"..\", \"..\", \"examples\"))\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tfiles, err := os.ReadDir(examples)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tfor _, replay := range files {\n\t\tif !replay.IsDir() {\n\t\t\tcontinue\n\t\t}\n\t\ttc := replay.Name()\n\t\tt.Run(tc, func(t *testing.T) {\n\t\t\tt.Parallel()\n\t\t\tpath := filepath.Join(examples, tc)\n\n\t\t\tif tc != \"kotlin\" && tc != \"python\" {\n\t\t\t\tif s, found := findSchema(t, filepath.Join(path, \"sqlite\")); found {\n\t\t\t\t\tdsn := fmt.Sprintf(\"file:%s?mode=memory&cache=shared\", tc)\n\t\t\t\t\tdb, cleanup := sqltest.CreateSQLiteDatabase(t, dsn, []string{s})\n\t\t\t\t\tdefer db.Close()\n\t\t\t\t\tdefer cleanup()\n\t\t\t\t}\n\t\t\t\tif s, found := findSchema(t, filepath.Join(path, \"mysql\")); found {\n\t\t\t\t\turi := local.MySQL(t, []string{s})\n\t\t\t\t\tos.Setenv(fmt.Sprintf(\"VET_TEST_EXAMPLES_MYSQL_%s\", strings.ToUpper(tc)), uri)\n\t\t\t\t}\n\t\t\t\tif s, found := findSchema(t, filepath.Join(path, \"postgresql\")); found {\n\t\t\t\t\turi := local.PostgreSQL(t, []string{s})\n\t\t\t\t\tos.Setenv(fmt.Sprintf(\"VET_TEST_EXAMPLES_POSTGRES_%s\", strings.ToUpper(tc)), uri)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tvar stderr bytes.Buffer\n\t\t\topts := &cmd.Options{\n\t\t\t\tStderr: &stderr,\n\t\t\t\tEnv:    cmd.Env{},\n\t\t\t}\n\t\t\terr := cmd.Vet(ctx, path, \"\", opts)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatalf(\"sqlc vet failed: %s %s\", err, stderr.String())\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "internal/engine/clickhouse/catalog.go",
    "content": "package clickhouse\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nfunc NewCatalog() *catalog.Catalog {\n\tdef := \"default\" // ClickHouse default database\n\treturn &catalog.Catalog{\n\t\tDefaultSchema: def,\n\t\tSchemas: []*catalog.Schema{\n\t\t\tdefaultSchema(def),\n\t\t},\n\t\tExtensions: map[string]struct{}{},\n\t}\n}\n"
  },
  {
    "path": "internal/engine/clickhouse/convert.go",
    "content": "package clickhouse\n\nimport (\n\t\"strconv\"\n\t\"strings\"\n\n\tchast \"github.com/sqlc-dev/doubleclick/ast\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\ntype cc struct {\n\tparamCount int\n}\n\nfunc (c *cc) convert(node chast.Node) ast.Node {\n\tswitch n := node.(type) {\n\tcase *chast.SelectWithUnionQuery:\n\t\treturn c.convertSelectWithUnionQuery(n)\n\tcase *chast.SelectQuery:\n\t\treturn c.convertSelectQuery(n)\n\tcase *chast.InsertQuery:\n\t\treturn c.convertInsertQuery(n)\n\tcase *chast.CreateQuery:\n\t\treturn c.convertCreateQuery(n)\n\tcase *chast.UpdateQuery:\n\t\treturn c.convertUpdateQuery(n)\n\tcase *chast.DeleteQuery:\n\t\treturn c.convertDeleteQuery(n)\n\tcase *chast.DropQuery:\n\t\treturn c.convertDropQuery(n)\n\tcase *chast.AlterQuery:\n\t\treturn c.convertAlterQuery(n)\n\tcase *chast.TruncateQuery:\n\t\treturn c.convertTruncateQuery(n)\n\tdefault:\n\t\treturn todo(n)\n\t}\n}\n\nfunc (c *cc) convertSelectWithUnionQuery(n *chast.SelectWithUnionQuery) ast.Node {\n\tif len(n.Selects) == 0 {\n\t\treturn &ast.TODO{}\n\t}\n\n\t// Single select without union\n\tif len(n.Selects) == 1 {\n\t\treturn c.convert(n.Selects[0])\n\t}\n\n\t// Build a chain of SelectStmt with UNION operations\n\tvar result *ast.SelectStmt\n\tfor i, sel := range n.Selects {\n\t\tstmt, ok := c.convert(sel).(*ast.SelectStmt)\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\t\tif i == 0 {\n\t\t\tresult = stmt\n\t\t} else {\n\t\t\tunionMode := ast.Union\n\t\t\tif i-1 < len(n.UnionModes) {\n\t\t\t\tswitch strings.ToUpper(n.UnionModes[i-1]) {\n\t\t\t\tcase \"ALL\":\n\t\t\t\t\tunionMode = ast.Union\n\t\t\t\tcase \"DISTINCT\":\n\t\t\t\t\tunionMode = ast.Union\n\t\t\t\t}\n\t\t\t}\n\t\t\tresult = &ast.SelectStmt{\n\t\t\t\tOp:   unionMode,\n\t\t\t\tAll:  n.UnionAll || (i-1 < len(n.UnionModes) && strings.ToUpper(n.UnionModes[i-1]) == \"ALL\"),\n\t\t\t\tLarg: result,\n\t\t\t\tRarg: stmt,\n\t\t\t}\n\t\t}\n\t}\n\treturn result\n}\n\nfunc (c *cc) convertSelectQuery(n *chast.SelectQuery) *ast.SelectStmt {\n\tstmt := &ast.SelectStmt{}\n\n\t// Convert target list (SELECT columns)\n\tif len(n.Columns) > 0 {\n\t\tstmt.TargetList = &ast.List{}\n\t\tfor _, col := range n.Columns {\n\t\t\ttarget := c.convertToResTarget(col)\n\t\t\tif target != nil {\n\t\t\t\tstmt.TargetList.Items = append(stmt.TargetList.Items, target)\n\t\t\t}\n\t\t}\n\t}\n\n\t// Convert FROM clause\n\tif n.From != nil {\n\t\tstmt.FromClause = c.convertTablesInSelectQuery(n.From)\n\t}\n\n\t// Convert WHERE clause\n\tif n.Where != nil {\n\t\tstmt.WhereClause = c.convertExpr(n.Where)\n\t}\n\n\t// Convert GROUP BY clause\n\tif len(n.GroupBy) > 0 {\n\t\tstmt.GroupClause = &ast.List{}\n\t\tfor _, expr := range n.GroupBy {\n\t\t\tstmt.GroupClause.Items = append(stmt.GroupClause.Items, c.convertExpr(expr))\n\t\t}\n\t}\n\n\t// Convert HAVING clause\n\tif n.Having != nil {\n\t\tstmt.HavingClause = c.convertExpr(n.Having)\n\t}\n\n\t// Convert ORDER BY clause\n\tif len(n.OrderBy) > 0 {\n\t\tstmt.SortClause = &ast.List{}\n\t\tfor _, orderBy := range n.OrderBy {\n\t\t\tstmt.SortClause.Items = append(stmt.SortClause.Items, c.convertOrderByElement(orderBy))\n\t\t}\n\t}\n\n\t// Convert LIMIT clause\n\tif n.Limit != nil {\n\t\tstmt.LimitCount = c.convertExpr(n.Limit)\n\t}\n\n\t// Convert OFFSET clause\n\tif n.Offset != nil {\n\t\tstmt.LimitOffset = c.convertExpr(n.Offset)\n\t}\n\n\t// Convert DISTINCT clause\n\tif n.Distinct {\n\t\tstmt.DistinctClause = &ast.List{}\n\t}\n\n\t// Convert DISTINCT ON clause\n\tif len(n.DistinctOn) > 0 {\n\t\tstmt.DistinctClause = &ast.List{}\n\t\tfor _, expr := range n.DistinctOn {\n\t\t\tstmt.DistinctClause.Items = append(stmt.DistinctClause.Items, c.convertExpr(expr))\n\t\t}\n\t}\n\n\t// Convert WITH clause (CTEs)\n\tif len(n.With) > 0 {\n\t\tstmt.WithClause = &ast.WithClause{\n\t\t\tCtes: &ast.List{},\n\t\t}\n\t\tfor _, cte := range n.With {\n\t\t\tif aliased, ok := cte.(*chast.AliasedExpr); ok {\n\t\t\t\tcteNode := &ast.CommonTableExpr{\n\t\t\t\t\tCtename: &aliased.Alias,\n\t\t\t\t}\n\t\t\t\t// CTE expression may be a Subquery containing the actual SELECT\n\t\t\t\tif subq, ok := aliased.Expr.(*chast.Subquery); ok {\n\t\t\t\t\tcteNode.Ctequery = c.convert(subq.Query)\n\t\t\t\t} else {\n\t\t\t\t\t// Fallback: treat the expression itself as the query\n\t\t\t\t\tcteNode.Ctequery = c.convertExpr(aliased.Expr)\n\t\t\t\t}\n\t\t\t\tstmt.WithClause.Ctes.Items = append(stmt.WithClause.Ctes.Items, cteNode)\n\t\t\t}\n\t\t}\n\t}\n\n\treturn stmt\n}\n\nfunc (c *cc) convertToResTarget(expr chast.Expression) *ast.ResTarget {\n\tres := &ast.ResTarget{\n\t\tLocation: expr.Pos().Offset,\n\t}\n\n\tswitch e := expr.(type) {\n\tcase *chast.Asterisk:\n\t\tif e.Table != \"\" {\n\t\t\t// table.*\n\t\t\tres.Val = &ast.ColumnRef{\n\t\t\t\tFields: &ast.List{\n\t\t\t\t\tItems: []ast.Node{\n\t\t\t\t\t\tNewIdentifier(e.Table),\n\t\t\t\t\t\t&ast.A_Star{},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}\n\t\t} else {\n\t\t\t// Just *\n\t\t\tres.Val = &ast.ColumnRef{\n\t\t\t\tFields: &ast.List{\n\t\t\t\t\tItems: []ast.Node{&ast.A_Star{}},\n\t\t\t\t},\n\t\t\t}\n\t\t}\n\tcase *chast.AliasedExpr:\n\t\tres.Name = &e.Alias\n\t\tres.Val = c.convertExpr(e.Expr)\n\tcase *chast.Identifier:\n\t\tif e.Alias != \"\" {\n\t\t\tres.Name = &e.Alias\n\t\t}\n\t\tres.Val = c.convertIdentifier(e)\n\tcase *chast.FunctionCall:\n\t\tif e.Alias != \"\" {\n\t\t\tres.Name = &e.Alias\n\t\t}\n\t\tres.Val = c.convertFunctionCall(e)\n\tdefault:\n\t\tres.Val = c.convertExpr(expr)\n\t}\n\n\treturn res\n}\n\nfunc (c *cc) convertTablesInSelectQuery(n *chast.TablesInSelectQuery) *ast.List {\n\tif n == nil || len(n.Tables) == 0 {\n\t\treturn nil\n\t}\n\n\tresult := &ast.List{}\n\n\tfor i, elem := range n.Tables {\n\t\tif elem.Table != nil {\n\t\t\ttableExpr := c.convertTableExpression(elem.Table)\n\t\t\tif i == 0 {\n\t\t\t\tresult.Items = append(result.Items, tableExpr)\n\t\t\t} else if elem.Join != nil {\n\t\t\t\t// This element has a join\n\t\t\t\tjoinExpr := c.convertTableJoin(elem.Join, result.Items[len(result.Items)-1], tableExpr)\n\t\t\t\tresult.Items[len(result.Items)-1] = joinExpr\n\t\t\t} else {\n\t\t\t\tresult.Items = append(result.Items, tableExpr)\n\t\t\t}\n\t\t} else if elem.Join != nil && len(result.Items) > 0 {\n\t\t\t// Join without table (should not happen normally)\n\t\t\tcontinue\n\t\t}\n\t}\n\n\treturn result\n}\n\nfunc (c *cc) convertTableExpression(n *chast.TableExpression) ast.Node {\n\tvar result ast.Node\n\n\tswitch t := n.Table.(type) {\n\tcase *chast.TableIdentifier:\n\t\trv := parseTableIdentifierToRangeVar(t)\n\t\tif n.Alias != \"\" {\n\t\t\talias := n.Alias\n\t\t\trv.Alias = &ast.Alias{Aliasname: &alias}\n\t\t}\n\t\tresult = rv\n\tcase *chast.Subquery:\n\t\tsubselect := &ast.RangeSubselect{\n\t\t\tSubquery: c.convert(t.Query),\n\t\t}\n\t\talias := n.Alias\n\t\tif alias == \"\" && t.Alias != \"\" {\n\t\t\talias = t.Alias\n\t\t}\n\t\tif alias != \"\" {\n\t\t\tsubselect.Alias = &ast.Alias{Aliasname: &alias}\n\t\t}\n\t\tresult = subselect\n\tcase *chast.FunctionCall:\n\t\t// Table function like file(), url(), etc.\n\t\trf := &ast.RangeFunction{\n\t\t\tFunctions: &ast.List{\n\t\t\t\tItems: []ast.Node{c.convertFunctionCall(t)},\n\t\t\t},\n\t\t}\n\t\tif n.Alias != \"\" {\n\t\t\talias := n.Alias\n\t\t\trf.Alias = &ast.Alias{Aliasname: &alias}\n\t\t}\n\t\tresult = rf\n\tdefault:\n\t\tresult = &ast.TODO{}\n\t}\n\n\treturn result\n}\n\nfunc (c *cc) convertTableJoin(n *chast.TableJoin, left, right ast.Node) *ast.JoinExpr {\n\tjoin := &ast.JoinExpr{\n\t\tLarg: left,\n\t\tRarg: right,\n\t}\n\n\t// Convert join type\n\tswitch n.Type {\n\tcase chast.JoinInner:\n\t\tjoin.Jointype = ast.JoinTypeInner\n\tcase chast.JoinLeft:\n\t\tjoin.Jointype = ast.JoinTypeLeft\n\tcase chast.JoinRight:\n\t\tjoin.Jointype = ast.JoinTypeRight\n\tcase chast.JoinFull:\n\t\tjoin.Jointype = ast.JoinTypeFull\n\tcase chast.JoinCross:\n\t\tjoin.Jointype = ast.JoinTypeInner\n\t\tjoin.IsNatural = false\n\tdefault:\n\t\tjoin.Jointype = ast.JoinTypeInner\n\t}\n\n\t// Convert ON clause\n\tif n.On != nil {\n\t\tjoin.Quals = c.convertExpr(n.On)\n\t}\n\n\t// Convert USING clause\n\tif len(n.Using) > 0 {\n\t\tjoin.UsingClause = &ast.List{}\n\t\tfor _, u := range n.Using {\n\t\t\tif id, ok := u.(*chast.Identifier); ok {\n\t\t\t\tjoin.UsingClause.Items = append(join.UsingClause.Items, NewIdentifier(id.Name()))\n\t\t\t}\n\t\t}\n\t}\n\n\treturn join\n}\n\nfunc (c *cc) convertExpr(expr chast.Expression) ast.Node {\n\tif expr == nil {\n\t\treturn nil\n\t}\n\n\tswitch e := expr.(type) {\n\tcase *chast.Identifier:\n\t\treturn c.convertIdentifier(e)\n\tcase *chast.Literal:\n\t\treturn c.convertLiteral(e)\n\tcase *chast.BinaryExpr:\n\t\treturn c.convertBinaryExpr(e)\n\tcase *chast.FunctionCall:\n\t\treturn c.convertFunctionCall(e)\n\tcase *chast.AliasedExpr:\n\t\treturn c.convertExpr(e.Expr)\n\tcase *chast.Parameter:\n\t\treturn c.convertParameter(e)\n\tcase *chast.Asterisk:\n\t\treturn c.convertAsterisk(e)\n\tcase *chast.CaseExpr:\n\t\treturn c.convertCaseExpr(e)\n\tcase *chast.CastExpr:\n\t\treturn c.convertCastExpr(e)\n\tcase *chast.BetweenExpr:\n\t\treturn c.convertBetweenExpr(e)\n\tcase *chast.InExpr:\n\t\treturn c.convertInExpr(e)\n\tcase *chast.IsNullExpr:\n\t\treturn c.convertIsNullExpr(e)\n\tcase *chast.LikeExpr:\n\t\treturn c.convertLikeExpr(e)\n\tcase *chast.Subquery:\n\t\treturn c.convertSubquery(e)\n\tcase *chast.ArrayAccess:\n\t\treturn c.convertArrayAccess(e)\n\tcase *chast.UnaryExpr:\n\t\treturn c.convertUnaryExpr(e)\n\tcase *chast.Lambda:\n\t\t// Lambda expressions are ClickHouse-specific, return as-is for now\n\t\treturn &ast.TODO{}\n\tdefault:\n\t\treturn &ast.TODO{}\n\t}\n}\n\nfunc (c *cc) convertIdentifier(n *chast.Identifier) *ast.ColumnRef {\n\tfields := &ast.List{}\n\tfor _, part := range n.Parts {\n\t\tfields.Items = append(fields.Items, NewIdentifier(part))\n\t}\n\treturn &ast.ColumnRef{\n\t\tFields:   fields,\n\t\tLocation: n.Pos().Offset,\n\t}\n}\n\nfunc (c *cc) convertLiteral(n *chast.Literal) *ast.A_Const {\n\tswitch n.Type {\n\tcase chast.LiteralString:\n\t\tstr := n.Value.(string)\n\t\treturn &ast.A_Const{\n\t\t\tVal:      &ast.String{Str: str},\n\t\t\tLocation: n.Pos().Offset,\n\t\t}\n\tcase chast.LiteralInteger:\n\t\tvar ival int64\n\t\tswitch v := n.Value.(type) {\n\t\tcase int64:\n\t\t\tival = v\n\t\tcase int:\n\t\t\tival = int64(v)\n\t\tcase float64:\n\t\t\tival = int64(v)\n\t\tcase string:\n\t\t\tival, _ = strconv.ParseInt(v, 10, 64)\n\t\t}\n\t\treturn &ast.A_Const{\n\t\t\tVal:      &ast.Integer{Ival: ival},\n\t\t\tLocation: n.Pos().Offset,\n\t\t}\n\tcase chast.LiteralFloat:\n\t\tvar fval float64\n\t\tswitch v := n.Value.(type) {\n\t\tcase float64:\n\t\t\tfval = v\n\t\tcase string:\n\t\t\tfval, _ = strconv.ParseFloat(v, 64)\n\t\t}\n\t\tstr := strconv.FormatFloat(fval, 'f', -1, 64)\n\t\treturn &ast.A_Const{\n\t\t\tVal:      &ast.Float{Str: str},\n\t\t\tLocation: n.Pos().Offset,\n\t\t}\n\tcase chast.LiteralBoolean:\n\t\t// ClickHouse booleans are typically 0/1\n\t\tbval := n.Value.(bool)\n\t\tif bval {\n\t\t\treturn &ast.A_Const{\n\t\t\t\tVal:      &ast.Integer{Ival: 1},\n\t\t\t\tLocation: n.Pos().Offset,\n\t\t\t}\n\t\t}\n\t\treturn &ast.A_Const{\n\t\t\tVal:      &ast.Integer{Ival: 0},\n\t\t\tLocation: n.Pos().Offset,\n\t\t}\n\tcase chast.LiteralNull:\n\t\treturn &ast.A_Const{\n\t\t\tVal:      &ast.Null{},\n\t\t\tLocation: n.Pos().Offset,\n\t\t}\n\tdefault:\n\t\treturn &ast.A_Const{\n\t\t\tLocation: n.Pos().Offset,\n\t\t}\n\t}\n}\n\nfunc (c *cc) convertBinaryExpr(n *chast.BinaryExpr) ast.Node {\n\top := strings.ToUpper(n.Op)\n\n\t// Handle logical operators\n\tif op == \"AND\" || op == \"OR\" {\n\t\tvar boolop ast.BoolExprType\n\t\tif op == \"AND\" {\n\t\t\tboolop = ast.BoolExprTypeAnd\n\t\t} else {\n\t\t\tboolop = ast.BoolExprTypeOr\n\t\t}\n\t\treturn &ast.BoolExpr{\n\t\t\tBoolop: boolop,\n\t\t\tArgs: &ast.List{\n\t\t\t\tItems: []ast.Node{\n\t\t\t\t\tc.convertExpr(n.Left),\n\t\t\t\t\tc.convertExpr(n.Right),\n\t\t\t\t},\n\t\t\t},\n\t\t\tLocation: n.Pos().Offset,\n\t\t}\n\t}\n\n\t// Handle other operators\n\treturn &ast.A_Expr{\n\t\tName: &ast.List{\n\t\t\tItems: []ast.Node{&ast.String{Str: n.Op}},\n\t\t},\n\t\tLexpr:    c.convertExpr(n.Left),\n\t\tRexpr:    c.convertExpr(n.Right),\n\t\tLocation: n.Pos().Offset,\n\t}\n}\n\nfunc (c *cc) convertFunctionCall(n *chast.FunctionCall) *ast.FuncCall {\n\tfc := &ast.FuncCall{\n\t\tFuncname: &ast.List{\n\t\t\tItems: []ast.Node{&ast.String{Str: n.Name}},\n\t\t},\n\t\tLocation:     n.Pos().Offset,\n\t\tAggDistinct:  n.Distinct,\n\t}\n\n\t// Convert arguments\n\tif len(n.Arguments) > 0 {\n\t\tfc.Args = &ast.List{}\n\t\tfor _, arg := range n.Arguments {\n\t\t\tfc.Args.Items = append(fc.Args.Items, c.convertExpr(arg))\n\t\t}\n\t}\n\n\t// Convert window function\n\tif n.Over != nil {\n\t\tfc.Over = &ast.WindowDef{}\n\t\tif len(n.Over.PartitionBy) > 0 {\n\t\t\tfc.Over.PartitionClause = &ast.List{}\n\t\t\tfor _, p := range n.Over.PartitionBy {\n\t\t\t\tfc.Over.PartitionClause.Items = append(fc.Over.PartitionClause.Items, c.convertExpr(p))\n\t\t\t}\n\t\t}\n\t\tif len(n.Over.OrderBy) > 0 {\n\t\t\tfc.Over.OrderClause = &ast.List{}\n\t\t\tfor _, o := range n.Over.OrderBy {\n\t\t\t\tfc.Over.OrderClause.Items = append(fc.Over.OrderClause.Items, c.convertOrderByElement(o))\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fc\n}\n\nfunc (c *cc) convertParameter(n *chast.Parameter) ast.Node {\n\tc.paramCount++\n\t// Use the parameter name if available\n\tname := n.Name\n\tif name == \"\" {\n\t\tname = strconv.Itoa(c.paramCount)\n\t}\n\treturn &ast.ParamRef{\n\t\tNumber:   c.paramCount,\n\t\tLocation: n.Pos().Offset,\n\t}\n}\n\nfunc (c *cc) convertAsterisk(n *chast.Asterisk) *ast.ColumnRef {\n\tfields := &ast.List{}\n\tif n.Table != \"\" {\n\t\tfields.Items = append(fields.Items, NewIdentifier(n.Table))\n\t}\n\tfields.Items = append(fields.Items, &ast.A_Star{})\n\treturn &ast.ColumnRef{\n\t\tFields:   fields,\n\t\tLocation: n.Pos().Offset,\n\t}\n}\n\nfunc (c *cc) convertCaseExpr(n *chast.CaseExpr) *ast.CaseExpr {\n\tce := &ast.CaseExpr{\n\t\tLocation: n.Pos().Offset,\n\t}\n\n\t// Convert test expression (CASE expr WHEN ...)\n\tif n.Operand != nil {\n\t\tce.Arg = c.convertExpr(n.Operand)\n\t}\n\n\t// Convert WHEN clauses\n\tif len(n.Whens) > 0 {\n\t\tce.Args = &ast.List{}\n\t\tfor _, when := range n.Whens {\n\t\t\tcaseWhen := &ast.CaseWhen{\n\t\t\t\tExpr:   c.convertExpr(when.Condition),\n\t\t\t\tResult: c.convertExpr(when.Result),\n\t\t\t}\n\t\t\tce.Args.Items = append(ce.Args.Items, caseWhen)\n\t\t}\n\t}\n\n\t// Convert ELSE clause\n\tif n.Else != nil {\n\t\tce.Defresult = c.convertExpr(n.Else)\n\t}\n\n\treturn ce\n}\n\nfunc (c *cc) convertCastExpr(n *chast.CastExpr) *ast.TypeCast {\n\ttc := &ast.TypeCast{\n\t\tArg:      c.convertExpr(n.Expr),\n\t\tLocation: n.Pos().Offset,\n\t}\n\n\tif n.Type != nil {\n\t\ttc.TypeName = &ast.TypeName{\n\t\t\tName: n.Type.Name,\n\t\t}\n\t}\n\n\treturn tc\n}\n\nfunc (c *cc) convertBetweenExpr(n *chast.BetweenExpr) *ast.BetweenExpr {\n\treturn &ast.BetweenExpr{\n\t\tExpr:     c.convertExpr(n.Expr),\n\t\tLeft:     c.convertExpr(n.Low),\n\t\tRight:    c.convertExpr(n.High),\n\t\tNot:      n.Not,\n\t\tLocation: n.Pos().Offset,\n\t}\n}\n\nfunc (c *cc) convertInExpr(n *chast.InExpr) *ast.In {\n\tin := &ast.In{\n\t\tExpr:     c.convertExpr(n.Expr),\n\t\tNot:      n.Not,\n\t\tLocation: n.Pos().Offset,\n\t}\n\n\t// Convert the list\n\tif len(n.List) > 0 {\n\t\tin.List = make([]ast.Node, 0, len(n.List))\n\t\tfor _, item := range n.List {\n\t\t\tin.List = append(in.List, c.convertExpr(item))\n\t\t}\n\t}\n\n\t// Handle subquery\n\tif n.Query != nil {\n\t\tin.Sel = c.convert(n.Query)\n\t}\n\n\treturn in\n}\n\nfunc (c *cc) convertIsNullExpr(n *chast.IsNullExpr) *ast.NullTest {\n\tnullTest := &ast.NullTest{\n\t\tArg:      c.convertExpr(n.Expr),\n\t\tLocation: n.Pos().Offset,\n\t}\n\tif n.Not {\n\t\tnullTest.Nulltesttype = ast.NullTestTypeIsNotNull\n\t} else {\n\t\tnullTest.Nulltesttype = ast.NullTestTypeIsNull\n\t}\n\treturn nullTest\n}\n\nfunc (c *cc) convertLikeExpr(n *chast.LikeExpr) *ast.A_Expr {\n\tkind := ast.A_Expr_Kind(0)\n\topName := \"~~\"\n\tif n.CaseInsensitive {\n\t\topName = \"~~*\"\n\t}\n\tif n.Not {\n\t\topName = \"!~~\"\n\t\tif n.CaseInsensitive {\n\t\t\topName = \"!~~*\"\n\t\t}\n\t}\n\n\treturn &ast.A_Expr{\n\t\tKind: kind,\n\t\tName: &ast.List{\n\t\t\tItems: []ast.Node{&ast.String{Str: opName}},\n\t\t},\n\t\tLexpr:    c.convertExpr(n.Expr),\n\t\tRexpr:    c.convertExpr(n.Pattern),\n\t\tLocation: n.Pos().Offset,\n\t}\n}\n\nfunc (c *cc) convertSubquery(n *chast.Subquery) *ast.SubLink {\n\treturn &ast.SubLink{\n\t\tSubLinkType: ast.EXISTS_SUBLINK,\n\t\tSubselect:   c.convert(n.Query),\n\t}\n}\n\nfunc (c *cc) convertArrayAccess(n *chast.ArrayAccess) *ast.A_Indirection {\n\treturn &ast.A_Indirection{\n\t\tArg: c.convertExpr(n.Array),\n\t\tIndirection: &ast.List{\n\t\t\tItems: []ast.Node{\n\t\t\t\t&ast.A_Indices{\n\t\t\t\t\tUidx: c.convertExpr(n.Index),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t}\n}\n\nfunc (c *cc) convertUnaryExpr(n *chast.UnaryExpr) ast.Node {\n\top := strings.ToUpper(n.Op)\n\n\tif op == \"NOT\" {\n\t\treturn &ast.BoolExpr{\n\t\t\tBoolop: ast.BoolExprTypeNot,\n\t\t\tArgs: &ast.List{\n\t\t\t\tItems: []ast.Node{c.convertExpr(n.Operand)},\n\t\t\t},\n\t\t\tLocation: n.Pos().Offset,\n\t\t}\n\t}\n\n\treturn &ast.A_Expr{\n\t\tName: &ast.List{\n\t\t\tItems: []ast.Node{&ast.String{Str: n.Op}},\n\t\t},\n\t\tRexpr:    c.convertExpr(n.Operand),\n\t\tLocation: n.Pos().Offset,\n\t}\n}\n\nfunc (c *cc) convertOrderByElement(n *chast.OrderByElement) *ast.SortBy {\n\tsortBy := &ast.SortBy{\n\t\tNode:     c.convertExpr(n.Expression),\n\t\tLocation: n.Expression.Pos().Offset,\n\t}\n\n\tif n.Descending {\n\t\tsortBy.SortbyDir = ast.SortByDirDesc\n\t} else {\n\t\tsortBy.SortbyDir = ast.SortByDirAsc\n\t}\n\n\tif n.NullsFirst != nil {\n\t\tif *n.NullsFirst {\n\t\t\tsortBy.SortbyNulls = ast.SortByNullsFirst\n\t\t} else {\n\t\t\tsortBy.SortbyNulls = ast.SortByNullsLast\n\t\t}\n\t}\n\n\treturn sortBy\n}\n\nfunc (c *cc) convertInsertQuery(n *chast.InsertQuery) *ast.InsertStmt {\n\tstmt := &ast.InsertStmt{\n\t\tRelation: &ast.RangeVar{\n\t\t\tRelname: &n.Table,\n\t\t},\n\t}\n\n\tif n.Database != \"\" {\n\t\tstmt.Relation.Schemaname = &n.Database\n\t}\n\n\t// Convert column list\n\tif len(n.Columns) > 0 {\n\t\tstmt.Cols = &ast.List{}\n\t\tfor _, col := range n.Columns {\n\t\t\tname := col.Name()\n\t\t\tstmt.Cols.Items = append(stmt.Cols.Items, &ast.ResTarget{\n\t\t\t\tName: &name,\n\t\t\t})\n\t\t}\n\t}\n\n\t// Convert SELECT subquery if present\n\tif n.Select != nil {\n\t\tstmt.SelectStmt = c.convert(n.Select)\n\t}\n\n\t// Convert VALUES clause\n\tif len(n.Values) > 0 {\n\t\tselectStmt := &ast.SelectStmt{\n\t\t\tValuesLists: &ast.List{},\n\t\t}\n\t\tfor _, row := range n.Values {\n\t\t\trowList := &ast.List{}\n\t\t\tfor _, val := range row {\n\t\t\t\trowList.Items = append(rowList.Items, c.convertExpr(val))\n\t\t\t}\n\t\t\tselectStmt.ValuesLists.Items = append(selectStmt.ValuesLists.Items, rowList)\n\t\t}\n\t\tstmt.SelectStmt = selectStmt\n\t}\n\n\treturn stmt\n}\n\nfunc (c *cc) convertCreateQuery(n *chast.CreateQuery) ast.Node {\n\t// Handle CREATE DATABASE\n\tif n.CreateDatabase {\n\t\treturn &ast.CreateSchemaStmt{\n\t\t\tName:        &n.Database,\n\t\t\tIfNotExists: n.IfNotExists,\n\t\t}\n\t}\n\n\t// Handle CREATE TABLE\n\tif n.Table != \"\" {\n\t\tstmt := &ast.CreateTableStmt{\n\t\t\tName: &ast.TableName{\n\t\t\t\tName: identifier(n.Table),\n\t\t\t},\n\t\t\tIfNotExists: n.IfNotExists,\n\t\t}\n\n\t\tif n.Database != \"\" {\n\t\t\tstmt.Name.Schema = identifier(n.Database)\n\t\t}\n\n\t\t// Convert columns\n\t\tfor _, col := range n.Columns {\n\t\t\tcolDef := c.convertColumnDeclaration(col)\n\t\t\tstmt.Cols = append(stmt.Cols, colDef)\n\t\t}\n\n\t\t// Convert AS SELECT\n\t\tif n.AsSelect != nil {\n\t\t\t// This is a CREATE TABLE ... AS SELECT\n\t\t\t// The AsSelect field contains the SELECT statement\n\t\t}\n\n\t\treturn stmt\n\t}\n\n\t// Handle CREATE VIEW\n\tif n.View != \"\" {\n\t\treturn &ast.ViewStmt{\n\t\t\tView: &ast.RangeVar{\n\t\t\t\tRelname: &n.View,\n\t\t\t},\n\t\t\tQuery:   c.convert(n.AsSelect),\n\t\t\tReplace: n.OrReplace,\n\t\t}\n\t}\n\n\treturn &ast.TODO{}\n}\n\nfunc (c *cc) convertColumnDeclaration(n *chast.ColumnDeclaration) *ast.ColumnDef {\n\tcolDef := &ast.ColumnDef{\n\t\tColname:   identifier(n.Name),\n\t\tIsNotNull: isNotNull(n),\n\t}\n\n\tif n.Type != nil {\n\t\tcolDef.TypeName = &ast.TypeName{\n\t\t\tName: n.Type.Name,\n\t\t}\n\t\t// Handle type parameters (e.g., Decimal(10, 2))\n\t\tif len(n.Type.Parameters) > 0 {\n\t\t\tcolDef.TypeName.Typmods = &ast.List{}\n\t\t\tfor _, param := range n.Type.Parameters {\n\t\t\t\tcolDef.TypeName.Typmods.Items = append(colDef.TypeName.Typmods.Items, c.convertExpr(param))\n\t\t\t}\n\t\t}\n\t}\n\n\t// Handle PRIMARY KEY constraint\n\tif n.PrimaryKey {\n\t\tcolDef.PrimaryKey = true\n\t}\n\n\t// Handle DEFAULT\n\tif n.Default != nil {\n\t\t// colDef.RawDefault = c.convertExpr(n.Default)\n\t}\n\n\t// Handle comment\n\tif n.Comment != \"\" {\n\t\tcolDef.Comment = n.Comment\n\t}\n\n\treturn colDef\n}\n\nfunc (c *cc) convertUpdateQuery(n *chast.UpdateQuery) *ast.UpdateStmt {\n\trv := &ast.RangeVar{\n\t\tRelname: &n.Table,\n\t}\n\tif n.Database != \"\" {\n\t\trv.Schemaname = &n.Database\n\t}\n\tstmt := &ast.UpdateStmt{\n\t\tRelations: &ast.List{\n\t\t\tItems: []ast.Node{rv},\n\t\t},\n\t}\n\n\t// Convert assignments\n\tif len(n.Assignments) > 0 {\n\t\tstmt.TargetList = &ast.List{}\n\t\tfor _, assign := range n.Assignments {\n\t\t\tname := identifier(assign.Column)\n\t\t\tstmt.TargetList.Items = append(stmt.TargetList.Items, &ast.ResTarget{\n\t\t\t\tName: &name,\n\t\t\t\tVal:  c.convertExpr(assign.Value),\n\t\t\t})\n\t\t}\n\t}\n\n\t// Convert WHERE clause\n\tif n.Where != nil {\n\t\tstmt.WhereClause = c.convertExpr(n.Where)\n\t}\n\n\treturn stmt\n}\n\nfunc (c *cc) convertDeleteQuery(n *chast.DeleteQuery) *ast.DeleteStmt {\n\trv := &ast.RangeVar{\n\t\tRelname: &n.Table,\n\t}\n\tif n.Database != \"\" {\n\t\trv.Schemaname = &n.Database\n\t}\n\tstmt := &ast.DeleteStmt{\n\t\tRelations: &ast.List{\n\t\t\tItems: []ast.Node{rv},\n\t\t},\n\t}\n\n\t// Convert WHERE clause\n\tif n.Where != nil {\n\t\tstmt.WhereClause = c.convertExpr(n.Where)\n\t}\n\n\treturn stmt\n}\n\nfunc (c *cc) convertDropQuery(n *chast.DropQuery) ast.Node {\n\t// Handle DROP TABLE\n\tif n.Table != \"\" {\n\t\ttableName := &ast.TableName{\n\t\t\tName: identifier(n.Table),\n\t\t}\n\t\tif n.Database != \"\" {\n\t\t\ttableName.Schema = identifier(n.Database)\n\t\t}\n\t\treturn &ast.DropTableStmt{\n\t\t\tIfExists: n.IfExists,\n\t\t\tTables:   []*ast.TableName{tableName},\n\t\t}\n\t}\n\n\t// Handle DROP TABLE with multiple tables\n\tif len(n.Tables) > 0 {\n\t\ttables := make([]*ast.TableName, 0, len(n.Tables))\n\t\tfor _, t := range n.Tables {\n\t\t\ttables = append(tables, parseTableName(t))\n\t\t}\n\t\treturn &ast.DropTableStmt{\n\t\t\tIfExists: n.IfExists,\n\t\t\tTables:   tables,\n\t\t}\n\t}\n\n\t// Handle DROP DATABASE - return TODO for now\n\t// Handle DROP VIEW - return TODO for now\n\treturn &ast.TODO{}\n}\n\nfunc (c *cc) convertAlterQuery(n *chast.AlterQuery) ast.Node {\n\talt := &ast.AlterTableStmt{\n\t\tTable: &ast.TableName{\n\t\t\tName: identifier(n.Table),\n\t\t},\n\t\tCmds: &ast.List{},\n\t}\n\n\tif n.Database != \"\" {\n\t\talt.Table.Schema = identifier(n.Database)\n\t}\n\n\tfor _, cmd := range n.Commands {\n\t\tswitch cmd.Type {\n\t\tcase chast.AlterAddColumn:\n\t\t\tif cmd.Column != nil {\n\t\t\t\tname := cmd.Column.Name\n\t\t\t\talt.Cmds.Items = append(alt.Cmds.Items, &ast.AlterTableCmd{\n\t\t\t\t\tName:    &name,\n\t\t\t\t\tSubtype: ast.AT_AddColumn,\n\t\t\t\t\tDef:     c.convertColumnDeclaration(cmd.Column),\n\t\t\t\t})\n\t\t\t}\n\t\tcase chast.AlterDropColumn:\n\t\t\tname := cmd.ColumnName\n\t\t\talt.Cmds.Items = append(alt.Cmds.Items, &ast.AlterTableCmd{\n\t\t\t\tName:      &name,\n\t\t\t\tSubtype:   ast.AT_DropColumn,\n\t\t\t\tMissingOk: cmd.IfExists,\n\t\t\t})\n\t\tcase chast.AlterModifyColumn:\n\t\t\tif cmd.Column != nil {\n\t\t\t\tname := cmd.Column.Name\n\t\t\t\t// Drop and re-add to simulate modify\n\t\t\t\talt.Cmds.Items = append(alt.Cmds.Items, &ast.AlterTableCmd{\n\t\t\t\t\tName:    &name,\n\t\t\t\t\tSubtype: ast.AT_DropColumn,\n\t\t\t\t})\n\t\t\t\talt.Cmds.Items = append(alt.Cmds.Items, &ast.AlterTableCmd{\n\t\t\t\t\tName:    &name,\n\t\t\t\t\tSubtype: ast.AT_AddColumn,\n\t\t\t\t\tDef:     c.convertColumnDeclaration(cmd.Column),\n\t\t\t\t})\n\t\t\t}\n\t\tcase chast.AlterRenameColumn:\n\t\t\toldName := cmd.ColumnName\n\t\t\tnewName := cmd.NewName\n\t\t\treturn &ast.RenameColumnStmt{\n\t\t\t\tTable:   alt.Table,\n\t\t\t\tCol:     &ast.ColumnRef{Name: oldName},\n\t\t\t\tNewName: &newName,\n\t\t\t}\n\t\t}\n\t}\n\n\treturn alt\n}\n\nfunc (c *cc) convertTruncateQuery(n *chast.TruncateQuery) *ast.TruncateStmt {\n\tstmt := &ast.TruncateStmt{\n\t\tRelations: &ast.List{},\n\t}\n\n\ttableName := n.Table\n\tschemaName := n.Database\n\n\trv := &ast.RangeVar{\n\t\tRelname: &tableName,\n\t}\n\tif schemaName != \"\" {\n\t\trv.Schemaname = &schemaName\n\t}\n\n\tstmt.Relations.Items = append(stmt.Relations.Items, rv)\n\n\treturn stmt\n}\n"
  },
  {
    "path": "internal/engine/clickhouse/format.go",
    "content": "package clickhouse\n\n// QuoteIdent returns a quoted identifier if it needs quoting.\n// ClickHouse uses backticks or double quotes for quoting identifiers.\nfunc (p *Parser) QuoteIdent(s string) string {\n\t// For now, don't quote - can be extended to quote when necessary\n\treturn s\n}\n\n// TypeName returns the SQL type name for the given namespace and name.\nfunc (p *Parser) TypeName(ns, name string) string {\n\tif ns != \"\" {\n\t\treturn ns + \".\" + name\n\t}\n\treturn name\n}\n\n// Param returns the parameter placeholder for the given number.\n// ClickHouse uses {name:Type} for named parameters, but for positional\n// parameters we use ? which is supported by the clickhouse-go driver.\nfunc (p *Parser) Param(n int) string {\n\treturn \"?\"\n}\n\n// NamedParam returns the named parameter placeholder for the given name.\n// ClickHouse uses {name:Type} syntax for named parameters.\nfunc (p *Parser) NamedParam(name string) string {\n\treturn \"{\" + name + \":String}\"\n}\n\n// Cast returns a type cast expression.\n// ClickHouse uses CAST(expr AS type) syntax, same as MySQL.\nfunc (p *Parser) Cast(arg, typeName string) string {\n\treturn \"CAST(\" + arg + \" AS \" + typeName + \")\"\n}\n"
  },
  {
    "path": "internal/engine/clickhouse/parse.go",
    "content": "package clickhouse\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"io\"\n\n\t\"github.com/sqlc-dev/doubleclick/parser\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/source\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\nfunc NewParser() *Parser {\n\treturn &Parser{}\n}\n\ntype Parser struct{}\n\nfunc (p *Parser) Parse(r io.Reader) ([]ast.Statement, error) {\n\tblob, err := io.ReadAll(r)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tctx := context.Background()\n\tstmtNodes, err := parser.Parse(ctx, bytes.NewReader(blob))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tvar stmts []ast.Statement\n\tfor _, stmt := range stmtNodes {\n\t\tconverter := &cc{}\n\t\tout := converter.convert(stmt)\n\t\tif _, ok := out.(*ast.TODO); ok {\n\t\t\tcontinue\n\t\t}\n\n\t\t// Get position information from the statement\n\t\tpos := stmt.Pos()\n\t\tend := stmt.End()\n\t\tstmtLen := end.Offset - pos.Offset\n\n\t\tstmts = append(stmts, ast.Statement{\n\t\t\tRaw: &ast.RawStmt{\n\t\t\t\tStmt:         out,\n\t\t\t\tStmtLocation: pos.Offset,\n\t\t\t\tStmtLen:      stmtLen,\n\t\t\t},\n\t\t})\n\t}\n\n\treturn stmts, nil\n}\n\n// https://clickhouse.com/docs/en/sql-reference/syntax#comments\nfunc (p *Parser) CommentSyntax() source.CommentSyntax {\n\treturn source.CommentSyntax{\n\t\tDash:      true,  // -- comment\n\t\tSlashStar: true,  // /* comment */\n\t\tHash:      true,  // # comment (ClickHouse supports this)\n\t}\n}\n"
  },
  {
    "path": "internal/engine/clickhouse/reserved.go",
    "content": "package clickhouse\n\nimport \"strings\"\n\n// https://clickhouse.com/docs/en/sql-reference/syntax#keywords\nfunc (p *Parser) IsReservedKeyword(s string) bool {\n\tswitch strings.ToLower(s) {\n\tcase \"add\":\n\tcase \"after\":\n\tcase \"alias\":\n\tcase \"all\":\n\tcase \"alter\":\n\tcase \"and\":\n\tcase \"anti\":\n\tcase \"any\":\n\tcase \"array\":\n\tcase \"as\":\n\tcase \"asc\":\n\tcase \"asof\":\n\tcase \"between\":\n\tcase \"both\":\n\tcase \"by\":\n\tcase \"case\":\n\tcase \"cast\":\n\tcase \"check\":\n\tcase \"cluster\":\n\tcase \"collate\":\n\tcase \"column\":\n\tcase \"comment\":\n\tcase \"constraint\":\n\tcase \"create\":\n\tcase \"cross\":\n\tcase \"cube\":\n\tcase \"database\":\n\tcase \"databases\":\n\tcase \"default\":\n\tcase \"delete\":\n\tcase \"desc\":\n\tcase \"describe\":\n\tcase \"detach\":\n\tcase \"distinct\":\n\tcase \"distributed\":\n\tcase \"drop\":\n\tcase \"else\":\n\tcase \"end\":\n\tcase \"engine\":\n\tcase \"exists\":\n\tcase \"explain\":\n\tcase \"expression\":\n\tcase \"extract\":\n\tcase \"false\":\n\tcase \"fetch\":\n\tcase \"final\":\n\tcase \"first\":\n\tcase \"for\":\n\tcase \"format\":\n\tcase \"from\":\n\tcase \"full\":\n\tcase \"function\":\n\tcase \"global\":\n\tcase \"grant\":\n\tcase \"group\":\n\tcase \"having\":\n\tcase \"if\":\n\tcase \"ilike\":\n\tcase \"in\":\n\tcase \"index\":\n\tcase \"inner\":\n\tcase \"insert\":\n\tcase \"interpolate\":\n\tcase \"interval\":\n\tcase \"into\":\n\tcase \"is\":\n\tcase \"join\":\n\tcase \"key\":\n\tcase \"kill\":\n\tcase \"last\":\n\tcase \"leading\":\n\tcase \"left\":\n\tcase \"like\":\n\tcase \"limit\":\n\tcase \"live\":\n\tcase \"local\":\n\tcase \"logs\":\n\tcase \"materialized\":\n\tcase \"modify\":\n\tcase \"natural\":\n\tcase \"not\":\n\tcase \"null\":\n\tcase \"nulls\":\n\tcase \"offset\":\n\tcase \"on\":\n\tcase \"optimize\":\n\tcase \"or\":\n\tcase \"order\":\n\tcase \"outer\":\n\tcase \"outfile\":\n\tcase \"over\":\n\tcase \"partition\":\n\tcase \"paste\":\n\tcase \"populate\":\n\tcase \"prewhere\":\n\tcase \"primary\":\n\tcase \"projection\":\n\tcase \"rename\":\n\tcase \"replace\":\n\tcase \"right\":\n\tcase \"rollup\":\n\tcase \"sample\":\n\tcase \"select\":\n\tcase \"semi\":\n\tcase \"set\":\n\tcase \"settings\":\n\tcase \"show\":\n\tcase \"storage\":\n\tcase \"substring\":\n\tcase \"sync\":\n\tcase \"system\":\n\tcase \"table\":\n\tcase \"tables\":\n\tcase \"temporary\":\n\tcase \"test\":\n\tcase \"then\":\n\tcase \"ties\":\n\tcase \"to\":\n\tcase \"top\":\n\tcase \"totals\":\n\tcase \"trailing\":\n\tcase \"trim\":\n\tcase \"true\":\n\tcase \"truncate\":\n\tcase \"ttl\":\n\tcase \"type\":\n\tcase \"union\":\n\tcase \"update\":\n\tcase \"use\":\n\tcase \"using\":\n\tcase \"uuid\":\n\tcase \"values\":\n\tcase \"view\":\n\tcase \"watch\":\n\tcase \"when\":\n\tcase \"where\":\n\tcase \"window\":\n\tcase \"with\":\n\tdefault:\n\t\treturn false\n\t}\n\treturn true\n}\n"
  },
  {
    "path": "internal/engine/clickhouse/stdlib.go",
    "content": "package clickhouse\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nfunc defaultSchema(name string) *catalog.Schema {\n\treturn &catalog.Schema{Name: name}\n}\n"
  },
  {
    "path": "internal/engine/clickhouse/utils.go",
    "content": "package clickhouse\n\nimport (\n\t\"log\"\n\t\"strings\"\n\n\tchast \"github.com/sqlc-dev/doubleclick/ast\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/debug\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\nfunc todo(n chast.Node) *ast.TODO {\n\tif debug.Active {\n\t\tlog.Printf(\"clickhouse.convert: Unknown node type %T\\n\", n)\n\t}\n\treturn &ast.TODO{}\n}\n\nfunc identifier(id string) string {\n\treturn strings.ToLower(id)\n}\n\nfunc NewIdentifier(t string) *ast.String {\n\treturn &ast.String{Str: identifier(t)}\n}\n\nfunc parseTableName(n *chast.TableIdentifier) *ast.TableName {\n\treturn &ast.TableName{\n\t\tSchema: identifier(n.Database),\n\t\tName:   identifier(n.Table),\n\t}\n}\n\nfunc parseTableIdentifierToRangeVar(n *chast.TableIdentifier) *ast.RangeVar {\n\tschemaname := identifier(n.Database)\n\trelname := identifier(n.Table)\n\treturn &ast.RangeVar{\n\t\tSchemaname: &schemaname,\n\t\tRelname:    &relname,\n\t}\n}\n\nfunc isNotNull(n *chast.ColumnDeclaration) bool {\n\tif n.Type == nil {\n\t\treturn false\n\t}\n\t// Check if type is wrapped in Nullable()\n\t// If it's Nullable, it can be null, so return false\n\t// If it's not Nullable, it's NOT NULL by default in ClickHouse\n\tif n.Type.Name != \"\" && strings.ToLower(n.Type.Name) == \"nullable\" {\n\t\treturn false\n\t}\n\t// Also check if Nullable field is explicitly set\n\tif n.Nullable != nil && *n.Nullable {\n\t\treturn false\n\t}\n\treturn true\n}\n"
  },
  {
    "path": "internal/engine/dolphin/CLAUDE.md",
    "content": "# Dolphin Engine (MySQL) - Claude Code Guide\n\nThe dolphin engine handles MySQL parsing and AST conversion using the TiDB parser.\n\n## Architecture\n\n### Parser Flow\n```\nSQL String → TiDB Parser → TiDB AST → sqlc AST → Analysis/Codegen\n```\n\n### Key Files\n- `convert.go` - Converts TiDB AST nodes to sqlc AST nodes\n- `format.go` - MySQL-specific formatting (identifiers, types, parameters)\n- `parse.go` - Entry point for parsing MySQL SQL\n\n## TiDB Parser\n\nThe TiDB parser (`github.com/pingcap/tidb/pkg/parser`) is used for MySQL parsing:\n\n```go\nimport (\n    pcast \"github.com/pingcap/tidb/pkg/parser/ast\"\n    \"github.com/pingcap/tidb/pkg/parser/mysql\"\n    \"github.com/pingcap/tidb/pkg/parser/types\"\n)\n```\n\n### Common TiDB Types\n- `pcast.SelectStmt`, `pcast.InsertStmt`, etc. - Statement types\n- `pcast.ColumnNameExpr` - Column reference\n- `pcast.FuncCallExpr` - Function call\n- `pcast.BinaryOperationExpr` - Binary expression\n- `pcast.VariableExpr` - MySQL user variable (@var)\n- `pcast.Join` - JOIN clause with Left, Right, On, Using\n\n## Conversion Pattern\n\nEach TiDB node type has a corresponding converter method:\n\n```go\nfunc (c *cc) convertSelectStmt(n *pcast.SelectStmt) *ast.SelectStmt {\n    return &ast.SelectStmt{\n        FromClause:  c.convertTableRefsClause(n.From),\n        WhereClause: c.convert(n.Where),\n        // ...\n    }\n}\n```\n\nThe main `convert()` method dispatches to specific converters:\n```go\nfunc (c *cc) convert(node pcast.Node) ast.Node {\n    switch n := node.(type) {\n    case *pcast.SelectStmt:\n        return c.convertSelectStmt(n)\n    case *pcast.InsertStmt:\n        return c.convertInsertStmt(n)\n    // ...\n    }\n}\n```\n\n## Key Conversions\n\n### Column References\n```go\nfunc (c *cc) convertColumnNameExpr(n *pcast.ColumnNameExpr) *ast.ColumnRef {\n    var items []ast.Node\n    if schema := n.Name.Schema.String(); schema != \"\" {\n        items = append(items, NewIdentifier(schema))\n    }\n    if table := n.Name.Table.String(); table != \"\" {\n        items = append(items, NewIdentifier(table))\n    }\n    items = append(items, NewIdentifier(n.Name.Name.String()))\n    return &ast.ColumnRef{Fields: &ast.List{Items: items}}\n}\n```\n\n### JOINs\n```go\nfunc (c *cc) convertJoin(n *pcast.Join) *ast.List {\n    if n.Right != nil && n.Left != nil {\n        return &ast.List{\n            Items: []ast.Node{&ast.JoinExpr{\n                Jointype:    ast.JoinType(n.Tp),\n                Larg:        c.convert(n.Left),\n                Rarg:        c.convert(n.Right),\n                Quals:       c.convert(n.On),\n                UsingClause: convertUsing(n.Using),\n            }},\n        }\n    }\n    // No join - just return tables\n    // ...\n}\n```\n\n### MySQL User Variables\nMySQL user variables (`@var`) are different from sqlc's `@param` syntax:\n```go\nfunc (c *cc) convertVariableExpr(n *pcast.VariableExpr) ast.Node {\n    // Use VariableExpr to preserve as-is (NOT A_Expr which would be treated as sqlc param)\n    return &ast.VariableExpr{\n        Name:     n.Name,\n        Location: n.OriginTextPosition(),\n    }\n}\n```\n\n### Type Casts (CAST AS)\n```go\nfunc (c *cc) convertFuncCastExpr(n *pcast.FuncCastExpr) ast.Node {\n    typeName := types.TypeStr(n.Tp.GetType())\n    // Handle UNSIGNED/SIGNED specially\n    if typeName == \"bigint\" {\n        if mysql.HasUnsignedFlag(n.Tp.GetFlag()) {\n            typeName = \"bigint unsigned\"\n        } else {\n            typeName = \"bigint signed\"\n        }\n    }\n    return &ast.TypeCast{\n        Arg:      c.convert(n.Expr),\n        TypeName: &ast.TypeName{Name: typeName},\n    }\n}\n```\n\n### Column Definitions\n```go\nfunc convertColumnDef(def *pcast.ColumnDef) *ast.ColumnDef {\n    typeName := &ast.TypeName{Name: types.TypeToStr(def.Tp.GetType(), def.Tp.GetCharset())}\n\n    // Only add Typmods for types where length is meaningful\n    tp := def.Tp.GetType()\n    flen := def.Tp.GetFlen()\n    switch tp {\n    case mysql.TypeVarchar, mysql.TypeString, mysql.TypeVarString:\n        if flen >= 0 {\n            typeName.Typmods = &ast.List{\n                Items: []ast.Node{&ast.Integer{Ival: int64(flen)}},\n            }\n        }\n    // Don't add for DATETIME, TIMESTAMP - internal flen is not user-specified\n    }\n    // ...\n}\n```\n\n### Multi-Table DELETE\nMySQL supports `DELETE t1, t2 FROM t1 JOIN t2 ...`:\n```go\nfunc (c *cc) convertDeleteStmt(n *pcast.DeleteStmt) *ast.DeleteStmt {\n    if n.IsMultiTable && n.Tables != nil {\n        // Convert targets (t1.*, t2.*)\n        targets := &ast.List{}\n        for _, table := range n.Tables.Tables {\n            // Build ColumnRef for each target\n        }\n        stmt.Targets = targets\n\n        // Preserve JOINs in FromClause\n        stmt.FromClause = c.convertTableRefsClause(n.TableRefs).Items[0]\n    } else {\n        // Single-table DELETE\n        stmt.Relations = c.convertTableRefsClause(n.TableRefs)\n    }\n}\n```\n\n## MySQL-Specific Formatting\n\n### format.go\n```go\nfunc (p *Parser) TypeName(ns, name string) string {\n    switch name {\n    case \"bigint unsigned\":\n        return \"UNSIGNED\"\n    case \"bigint signed\":\n        return \"SIGNED\"\n    }\n    return name\n}\n\nfunc (p *Parser) Param(n int) string {\n    return \"?\"  // MySQL uses ? for all parameters\n}\n```\n\n## Common Issues and Solutions\n\n### Issue: Panic in Walk/Apply\n**Cause**: New AST node type not handled in `astutils/walk.go` or `astutils/rewrite.go`\n**Solution**: Add case for the node type in both files\n\n### Issue: sqlc.arg() not converted in ON DUPLICATE KEY UPDATE\n**Cause**: `InsertStmt` case in `rewrite.go` didn't traverse `OnDuplicateKeyUpdate`\n**Solution**: Add `a.apply(n, \"OnDuplicateKeyUpdate\", nil, n.OnDuplicateKeyUpdate)`\n\n### Issue: MySQL @variable being treated as parameter\n**Cause**: Converting `VariableExpr` to `A_Expr` with `@` operator\n**Solution**: Use `ast.VariableExpr` instead, which is not detected by `named.IsParamSign()`\n\n### Issue: Type length appearing incorrectly (e.g., datetime(39))\n**Cause**: Using internal `flen` for all types\n**Solution**: Only populate `Typmods` for types where length is user-specified (varchar, char, etc.)\n\n## Testing\n\n### TestFormat\nTests that SQL can be:\n1. Parsed\n2. Formatted back to SQL\n3. Re-parsed\n4. Re-formatted to match\n\n### TestReplay\nTests the full sqlc pipeline:\n1. Parse schema and queries\n2. Analyze\n3. Generate code\n4. Compare with expected output\n"
  },
  {
    "path": "internal/engine/dolphin/catalog.go",
    "content": "package dolphin\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nfunc NewCatalog() *catalog.Catalog {\n\tdef := \"public\" // TODO: What is the default database for MySQL?\n\treturn &catalog.Catalog{\n\t\tDefaultSchema: def,\n\t\tSchemas: []*catalog.Schema{\n\t\t\tdefaultSchema(def),\n\t\t},\n\t\tExtensions: map[string]struct{}{},\n\t}\n}\n"
  },
  {
    "path": "internal/engine/dolphin/convert.go",
    "content": "package dolphin\n\nimport (\n\t\"log\"\n\t\"strconv\"\n\t\"strings\"\n\n\tpcast \"github.com/pingcap/tidb/pkg/parser/ast\"\n\t\"github.com/pingcap/tidb/pkg/parser/mysql\"\n\t\"github.com/pingcap/tidb/pkg/parser/opcode\"\n\tdriver \"github.com/pingcap/tidb/pkg/parser/test_driver\"\n\t\"github.com/pingcap/tidb/pkg/parser/types\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/debug\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\ntype cc struct {\n\tparamCount int\n}\n\nfunc todo(n pcast.Node) *ast.TODO {\n\tif debug.Active {\n\t\tlog.Printf(\"dolphin.convert: Unknown node type %T\\n\", n)\n\t}\n\treturn &ast.TODO{}\n}\n\nfunc identifier(id string) string {\n\treturn strings.ToLower(id)\n}\n\nfunc NewIdentifier(t string) *ast.String {\n\treturn &ast.String{Str: identifier(t)}\n}\n\nfunc (c *cc) convertAlterTableStmt(n *pcast.AlterTableStmt) ast.Node {\n\talt := &ast.AlterTableStmt{\n\t\tTable: parseTableName(n.Table),\n\t\tCmds:  &ast.List{},\n\t}\n\tfor _, spec := range n.Specs {\n\t\tswitch spec.Tp {\n\t\tcase pcast.AlterTableAddColumns:\n\t\t\tfor _, def := range spec.NewColumns {\n\t\t\t\tname := def.Name.String()\n\t\t\t\talt.Cmds.Items = append(alt.Cmds.Items, &ast.AlterTableCmd{\n\t\t\t\t\tName:    &name,\n\t\t\t\t\tSubtype: ast.AT_AddColumn,\n\t\t\t\t\tDef:     convertColumnDef(def),\n\t\t\t\t})\n\t\t\t}\n\n\t\tcase pcast.AlterTableDropColumn:\n\t\t\tname := spec.OldColumnName.String()\n\t\t\talt.Cmds.Items = append(alt.Cmds.Items, &ast.AlterTableCmd{\n\t\t\t\tName:      &name,\n\t\t\t\tSubtype:   ast.AT_DropColumn,\n\t\t\t\tMissingOk: spec.IfExists,\n\t\t\t})\n\n\t\tcase pcast.AlterTableChangeColumn:\n\t\t\toldName := spec.OldColumnName.String()\n\t\t\talt.Cmds.Items = append(alt.Cmds.Items, &ast.AlterTableCmd{\n\t\t\t\tName:    &oldName,\n\t\t\t\tSubtype: ast.AT_DropColumn,\n\t\t\t})\n\n\t\t\tfor _, def := range spec.NewColumns {\n\t\t\t\tname := def.Name.String()\n\t\t\t\talt.Cmds.Items = append(alt.Cmds.Items, &ast.AlterTableCmd{\n\t\t\t\t\tName:    &name,\n\t\t\t\t\tSubtype: ast.AT_AddColumn,\n\t\t\t\t\tDef:     convertColumnDef(def),\n\t\t\t\t})\n\t\t\t}\n\n\t\tcase pcast.AlterTableModifyColumn:\n\t\t\tfor _, def := range spec.NewColumns {\n\t\t\t\tname := def.Name.String()\n\t\t\t\talt.Cmds.Items = append(alt.Cmds.Items, &ast.AlterTableCmd{\n\t\t\t\t\tName:    &name,\n\t\t\t\t\tSubtype: ast.AT_DropColumn,\n\t\t\t\t})\n\t\t\t\talt.Cmds.Items = append(alt.Cmds.Items, &ast.AlterTableCmd{\n\t\t\t\t\tName:    &name,\n\t\t\t\t\tSubtype: ast.AT_AddColumn,\n\t\t\t\t\tDef:     convertColumnDef(def),\n\t\t\t\t})\n\t\t\t}\n\n\t\tcase pcast.AlterTableAlterColumn:\n\t\t\t// \tspew.Dump(\"alter column\", spec)\n\n\t\tcase pcast.AlterTableAddConstraint:\n\t\t\t// \tspew.Dump(\"add const\", spec)\n\n\t\tcase pcast.AlterTableRenameColumn:\n\t\t\t// TODO: Returning here may be incorrect if there are multiple specs\n\t\t\toldName := spec.OldColumnName.String()\n\t\t\tnewName := spec.NewColumnName.String()\n\t\t\treturn &ast.RenameColumnStmt{\n\t\t\t\tTable:   parseTableName(n.Table),\n\t\t\t\tCol:     &ast.ColumnRef{Name: oldName},\n\t\t\t\tNewName: &newName,\n\t\t\t}\n\n\t\tcase pcast.AlterTableRenameTable:\n\t\t\t// TODO: Returning here may be incorrect if there are multiple specs\n\t\t\treturn &ast.RenameTableStmt{\n\t\t\t\tTable:   parseTableName(n.Table),\n\t\t\t\tNewName: &parseTableName(spec.NewTable).Name,\n\t\t\t}\n\n\t\tdefault:\n\t\t\tif debug.Active {\n\t\t\t\tlog.Printf(\"dolphin.convert: Unknown alter table cmd %v\\n\", spec.Tp)\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t}\n\treturn alt\n}\n\nfunc (c *cc) convertAssignment(n *pcast.Assignment) *ast.ResTarget {\n\tname := identifier(n.Column.Name.String())\n\treturn &ast.ResTarget{\n\t\tName: &name,\n\t\tVal:  c.convert(n.Expr),\n\t}\n}\n\n// TODO: These codes should be defined in the sql/lang package\nfunc opToName(o opcode.Op) string {\n\tswitch o {\n\t// case opcode.And:\n\t// case opcode.BitNeg:\n\t// case opcode.Case:\n\t// case opcode.Div:\n\tcase opcode.EQ:\n\t\treturn \"=\"\n\tcase opcode.GE:\n\t\treturn \">=\"\n\tcase opcode.GT:\n\t\treturn \">\"\n\t\t// case opcode.In:\n\tcase opcode.IntDiv:\n\t\treturn \"/\"\n\t// case opcode.IsFalsity:\n\t// case opcode.IsNull:\n\t// case opcode.IsTruth:\n\tcase opcode.LE:\n\t\treturn \"<=\"\n\tcase opcode.LT:\n\t\treturn \"<\"\n\tcase opcode.LeftShift:\n\t\treturn \"<<\"\n\t\t// case opcode.Like:\n\tcase opcode.LogicAnd:\n\t\treturn \"&\"\n\tcase opcode.LogicOr:\n\t\treturn \"|\"\n\t// case opcode.LogicXor:\n\tcase opcode.Minus:\n\t\treturn \"-\"\n\tcase opcode.Mod:\n\t\treturn \"%\"\n\tcase opcode.Mul:\n\t\treturn \"*\"\n\tcase opcode.NE:\n\t\treturn \"!=\"\n\tcase opcode.Not:\n\t\treturn \"!\"\n\t// case opcode.NullEQ:\n\t// case opcode.Or:\n\tcase opcode.Plus:\n\t\treturn \"+\"\n\tcase opcode.Regexp:\n\t\treturn \"~\"\n\tcase opcode.RightShift:\n\t\treturn \">>\"\n\tcase opcode.Xor:\n\t\treturn \"#\"\n\tdefault:\n\t\treturn o.String()\n\t}\n}\n\nfunc (c *cc) convertBinaryOperationExpr(n *pcast.BinaryOperationExpr) ast.Node {\n\tif n.Op == opcode.LogicAnd || n.Op == opcode.LogicOr {\n\t\tvar boolop ast.BoolExprType\n\t\tif n.Op == opcode.LogicAnd {\n\t\t\tboolop = ast.BoolExprTypeAnd\n\t\t} else {\n\t\t\tboolop = ast.BoolExprTypeOr\n\t\t}\n\t\treturn &ast.BoolExpr{\n\t\t\tBoolop: boolop,\n\t\t\tArgs: &ast.List{\n\t\t\t\tItems: []ast.Node{\n\t\t\t\t\tc.convert(n.L),\n\t\t\t\t\tc.convert(n.R),\n\t\t\t\t},\n\t\t\t},\n\t\t}\n\t} else {\n\t\treturn &ast.A_Expr{\n\t\t\t// TODO: Set kind\n\t\t\tName: &ast.List{\n\t\t\t\tItems: []ast.Node{\n\t\t\t\t\t&ast.String{Str: opToName(n.Op)},\n\t\t\t\t},\n\t\t\t},\n\t\t\tLexpr: c.convert(n.L),\n\t\t\tRexpr: c.convert(n.R),\n\t\t}\n\t}\n}\n\nfunc (c *cc) convertCreateTableStmt(n *pcast.CreateTableStmt) ast.Node {\n\tcreate := &ast.CreateTableStmt{\n\t\tName:        parseTableName(n.Table),\n\t\tIfNotExists: n.IfNotExists,\n\t}\n\tif n.ReferTable != nil {\n\t\tcreate.ReferTable = parseTableName(n.ReferTable)\n\t}\n\tfor _, def := range n.Cols {\n\t\tcreate.Cols = append(create.Cols, convertColumnDef(def))\n\t}\n\tfor _, opt := range n.Options {\n\t\tswitch opt.Tp {\n\t\tcase pcast.TableOptionComment:\n\t\t\tcreate.Comment = opt.StrValue\n\t\t}\n\t}\n\treturn create\n}\n\nfunc convertColumnDef(def *pcast.ColumnDef) *ast.ColumnDef {\n\tvar vals *ast.List\n\tif len(def.Tp.GetElems()) > 0 {\n\t\tvals = &ast.List{}\n\t\tfor i := range def.Tp.GetElems() {\n\t\t\tvals.Items = append(vals.Items, &ast.String{\n\t\t\t\tStr: def.Tp.GetElems()[i],\n\t\t\t})\n\t\t}\n\t}\n\tcomment := \"\"\n\tfor _, opt := range def.Options {\n\t\tswitch opt.Tp {\n\t\tcase pcast.ColumnOptionComment:\n\t\t\tif value, ok := opt.Expr.(*driver.ValueExpr); ok {\n\t\t\t\tcomment = value.GetString()\n\t\t\t}\n\t\t}\n\t}\n\n\t// Build TypeName with modifiers for proper formatting\n\ttypeName := &ast.TypeName{Name: types.TypeToStr(def.Tp.GetType(), def.Tp.GetCharset())}\n\n\t// Add type modifiers (e.g., length for varchar(255), char(32))\n\t// Only for types where length is meaningful and user-specified\n\ttp := def.Tp.GetType()\n\tflen := def.Tp.GetFlen()\n\tneedsLength := false\n\tswitch tp {\n\tcase mysql.TypeVarchar, mysql.TypeString, mysql.TypeVarString:\n\t\t// VARCHAR(n), CHAR(n) - always need length\n\t\tneedsLength = flen >= 0\n\tcase mysql.TypeBlob, mysql.TypeTinyBlob, mysql.TypeMediumBlob, mysql.TypeLongBlob:\n\t\t// BLOB types - only if user specified length (VARBINARY(n), BINARY(n))\n\t\t// Default blob types don't need length\n\t\tneedsLength = false\n\t}\n\n\tif needsLength {\n\t\ttypeName.Typmods = &ast.List{\n\t\t\tItems: []ast.Node{\n\t\t\t\t&ast.Integer{Ival: int64(flen)},\n\t\t\t},\n\t\t}\n\t}\n\n\tcolumnDef := ast.ColumnDef{\n\t\tColname:    def.Name.String(),\n\t\tTypeName:   typeName,\n\t\tIsNotNull:  isNotNull(def),\n\t\tIsUnsigned: isUnsigned(def),\n\t\tComment:    comment,\n\t\tVals:       vals,\n\t}\n\tif def.Tp.GetFlen() >= 0 {\n\t\tlength := def.Tp.GetFlen()\n\t\tcolumnDef.Length = &length\n\t}\n\n\treturn &columnDef\n}\n\nfunc (c *cc) convertColumnNameExpr(n *pcast.ColumnNameExpr) *ast.ColumnRef {\n\tvar items []ast.Node\n\tif schema := n.Name.Schema.String(); schema != \"\" {\n\t\titems = append(items, NewIdentifier(schema))\n\t}\n\tif table := n.Name.Table.String(); table != \"\" {\n\t\titems = append(items, NewIdentifier(table))\n\t}\n\titems = append(items, NewIdentifier(n.Name.Name.String()))\n\treturn &ast.ColumnRef{\n\t\tFields: &ast.List{\n\t\t\tItems: items,\n\t\t},\n\t\tLocation: n.OriginTextPosition(),\n\t}\n}\n\nfunc (c *cc) convertColumnNames(cols []*pcast.ColumnName) *ast.List {\n\tlist := &ast.List{Items: []ast.Node{}}\n\tfor i := range cols {\n\t\tname := identifier(cols[i].Name.String())\n\t\tlist.Items = append(list.Items, &ast.ResTarget{\n\t\t\tName: &name,\n\t\t})\n\t}\n\treturn list\n}\n\nfunc (c *cc) convertDeleteStmt(n *pcast.DeleteStmt) *ast.DeleteStmt {\n\tstmt := &ast.DeleteStmt{\n\t\tWhereClause:   c.convert(n.Where),\n\t\tReturningList: &ast.List{},\n\t\tWithClause:    c.convertWithClause(n.With),\n\t}\n\n\tif n.Limit != nil {\n\t\tstmt.LimitCount = c.convert(n.Limit.Count)\n\t}\n\n\t// Handle multi-table DELETE (DELETE t1, t2 FROM t1 JOIN t2 ...)\n\tif n.IsMultiTable && n.Tables != nil && len(n.Tables.Tables) > 0 {\n\t\t// Convert delete targets (e.g., jt.*, pt.*)\n\t\ttargets := &ast.List{}\n\t\tfor _, table := range n.Tables.Tables {\n\t\t\t// Each table in the delete list is a ColumnRef like \"jt.*\" or \"pt.*\"\n\t\t\titems := []ast.Node{}\n\t\t\tif table.Schema.String() != \"\" {\n\t\t\t\titems = append(items, NewIdentifier(table.Schema.String()))\n\t\t\t}\n\t\t\titems = append(items, NewIdentifier(table.Name.String()))\n\t\t\titems = append(items, &ast.A_Star{})\n\t\t\ttargets.Items = append(targets.Items, &ast.ColumnRef{\n\t\t\t\tFields: &ast.List{Items: items},\n\t\t\t})\n\t\t}\n\t\tstmt.Targets = targets\n\n\t\t// Convert FROM clause preserving JOINs\n\t\tif n.TableRefs != nil {\n\t\t\tfromList := c.convertTableRefsClause(n.TableRefs)\n\t\t\tif len(fromList.Items) == 1 {\n\t\t\t\tstmt.FromClause = fromList.Items[0]\n\t\t\t} else {\n\t\t\t\tstmt.FromClause = fromList\n\t\t\t}\n\t\t}\n\t} else {\n\t\t// Single-table DELETE\n\t\trels := c.convertTableRefsClause(n.TableRefs)\n\t\tif len(rels.Items) != 1 {\n\t\t\tpanic(\"expected one range var\")\n\t\t}\n\t\trelations := &ast.List{}\n\t\tconvertToRangeVarList(rels, relations)\n\t\tstmt.Relations = relations\n\t}\n\n\treturn stmt\n}\n\nfunc (c *cc) convertDropTableStmt(n *pcast.DropTableStmt) ast.Node {\n\tdrop := &ast.DropTableStmt{IfExists: n.IfExists}\n\tfor _, name := range n.Tables {\n\t\tdrop.Tables = append(drop.Tables, parseTableName(name))\n\t}\n\treturn drop\n}\n\nfunc (c *cc) convertRenameTableStmt(n *pcast.RenameTableStmt) ast.Node {\n\tlist := &ast.List{Items: []ast.Node{}}\n\tfor _, table := range n.TableToTables {\n\t\tlist.Items = append(list.Items, &ast.RenameTableStmt{\n\t\t\tTable:   parseTableName(table.OldTable),\n\t\t\tNewName: &parseTableName(table.NewTable).Name,\n\t\t})\n\t}\n\treturn list\n}\n\nfunc (c *cc) convertExistsSubqueryExpr(n *pcast.ExistsSubqueryExpr) *ast.SubLink {\n\tsublink := &ast.SubLink{\n\t\tSubLinkType: ast.EXISTS_SUBLINK,\n\t}\n\tif n.Sel != nil {\n\t\tsublink.Subselect = c.convert(n.Sel)\n\t}\n\treturn sublink\n}\n\nfunc (c *cc) convertFieldList(n *pcast.FieldList) *ast.List {\n\tfields := make([]ast.Node, len(n.Fields))\n\tfor i := range n.Fields {\n\t\tfields[i] = c.convertSelectField(n.Fields[i])\n\t}\n\treturn &ast.List{Items: fields}\n}\n\nfunc (c *cc) convertFuncCallExpr(n *pcast.FuncCallExpr) ast.Node {\n\tschema := n.Schema.String()\n\tname := strings.ToLower(n.FnName.String())\n\n\t// TODO: Deprecate the usage of Funcname\n\titems := []ast.Node{}\n\tif schema != \"\" {\n\t\titems = append(items, NewIdentifier(schema))\n\t}\n\titems = append(items, NewIdentifier(name))\n\n\t// Handle DATE_ADD/DATE_SUB specially to construct INTERVAL expressions\n\t// These functions have args: [date, interval_value, TimeUnitExpr]\n\tif (name == \"date_add\" || name == \"date_sub\") && len(n.Args) == 3 {\n\t\tif timeUnit, ok := n.Args[2].(*pcast.TimeUnitExpr); ok {\n\t\t\targs := &ast.List{\n\t\t\t\tItems: []ast.Node{\n\t\t\t\t\tc.convert(n.Args[0]),\n\t\t\t\t\t&ast.IntervalExpr{\n\t\t\t\t\t\tValue: c.convert(n.Args[1]),\n\t\t\t\t\t\tUnit:  timeUnit.Unit.String(),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}\n\t\t\treturn &ast.FuncCall{\n\t\t\t\tArgs: args,\n\t\t\t\tFunc: &ast.FuncName{\n\t\t\t\t\tSchema: schema,\n\t\t\t\t\tName:   name,\n\t\t\t\t},\n\t\t\t\tFuncname: &ast.List{\n\t\t\t\t\tItems: items,\n\t\t\t\t},\n\t\t\t\tLocation: n.OriginTextPosition(),\n\t\t\t}\n\t\t}\n\t}\n\n\targs := &ast.List{}\n\tfor _, arg := range n.Args {\n\t\targs.Items = append(args.Items, c.convert(arg))\n\t}\n\n\tif schema == \"\" && name == \"coalesce\" {\n\t\treturn &ast.CoalesceExpr{\n\t\t\tArgs: args,\n\t\t}\n\t} else {\n\t\treturn &ast.FuncCall{\n\t\t\tArgs: args,\n\t\t\tFunc: &ast.FuncName{\n\t\t\t\tSchema: schema,\n\t\t\t\tName:   name,\n\t\t\t},\n\t\t\tFuncname: &ast.List{\n\t\t\t\tItems: items,\n\t\t\t},\n\t\t\tLocation: n.OriginTextPosition(),\n\t\t}\n\t}\n}\n\nfunc (c *cc) convertInsertStmt(n *pcast.InsertStmt) *ast.InsertStmt {\n\trels := c.convertTableRefsClause(n.Table)\n\tif len(rels.Items) != 1 {\n\t\tpanic(\"expected one range var\")\n\t}\n\trel := rels.Items[0]\n\trangeVar, ok := rel.(*ast.RangeVar)\n\tif !ok {\n\t\tpanic(\"expected range var\")\n\t}\n\n\tinsert := &ast.InsertStmt{\n\t\tRelation:      rangeVar,\n\t\tCols:          c.convertColumnNames(n.Columns),\n\t\tReturningList: &ast.List{},\n\t}\n\tif ss, ok := c.convert(n.Select).(*ast.SelectStmt); ok {\n\t\tss.ValuesLists = c.convertLists(n.Lists)\n\t\tinsert.SelectStmt = ss\n\t} else {\n\t\tinsert.SelectStmt = &ast.SelectStmt{\n\t\t\tFromClause:  &ast.List{},\n\t\t\tTargetList:  &ast.List{},\n\t\t\tValuesLists: c.convertLists(n.Lists),\n\t\t}\n\t}\n\n\tif n.OnDuplicate != nil {\n\t\ttargetList := &ast.List{}\n\t\tfor _, a := range n.OnDuplicate {\n\t\t\ttargetList.Items = append(targetList.Items, c.convertAssignment(a))\n\t\t}\n\t\tinsert.OnDuplicateKeyUpdate = &ast.OnDuplicateKeyUpdate{\n\t\t\tTargetList: targetList,\n\t\t\tLocation:   n.OriginTextPosition(),\n\t\t}\n\t}\n\n\treturn insert\n}\n\nfunc (c *cc) convertLists(lists [][]pcast.ExprNode) *ast.List {\n\tlist := &ast.List{Items: []ast.Node{}}\n\tfor _, exprs := range lists {\n\t\tinner := &ast.List{Items: []ast.Node{}}\n\t\tfor _, expr := range exprs {\n\t\t\tinner.Items = append(inner.Items, c.convert(expr))\n\t\t}\n\t\tlist.Items = append(list.Items, inner)\n\t}\n\treturn list\n}\n\nfunc (c *cc) convertParamMarkerExpr(n *driver.ParamMarkerExpr) *ast.ParamRef {\n\t// Parameter numbers start at one\n\tc.paramCount += 1\n\treturn &ast.ParamRef{\n\t\tNumber:   c.paramCount,\n\t\tLocation: n.Offset,\n\t}\n}\n\nfunc (c *cc) convertSelectField(n *pcast.SelectField) *ast.ResTarget {\n\tvar val ast.Node\n\tif n.WildCard != nil {\n\t\tval = c.convertWildCardField(n.WildCard)\n\t} else {\n\t\tval = c.convert(n.Expr)\n\t}\n\tvar name *string\n\tif n.AsName.O != \"\" {\n\t\tasname := identifier(n.AsName.O)\n\t\tname = &asname\n\t}\n\treturn &ast.ResTarget{\n\t\t// TODO: Populate Indirection field\n\t\tName:     name,\n\t\tVal:      val,\n\t\tLocation: n.Offset,\n\t}\n}\n\nfunc (c *cc) convertSelectStmt(n *pcast.SelectStmt) *ast.SelectStmt {\n\twindowClause := &ast.List{Items: make([]ast.Node, 0)}\n\torderByClause := c.convertOrderByClause(n.OrderBy)\n\tif orderByClause != nil {\n\t\twindowClause.Items = append(windowClause.Items, orderByClause)\n\t}\n\n\top, all := c.convertSetOprType(n.AfterSetOperator)\n\tstmt := &ast.SelectStmt{\n\t\tTargetList:   c.convertFieldList(n.Fields),\n\t\tFromClause:   c.convertTableRefsClause(n.From),\n\t\tGroupClause:  c.convertGroupByClause(n.GroupBy),\n\t\tHavingClause: c.convertHavingClause(n.Having),\n\t\tWhereClause:  c.convert(n.Where),\n\t\tWithClause:   c.convertWithClause(n.With),\n\t\tWindowClause: windowClause,\n\t\tOp:           op,\n\t\tAll:          all,\n\t}\n\tif n.Limit != nil {\n\t\tstmt.LimitCount = c.convert(n.Limit.Count)\n\t\tstmt.LimitOffset = c.convert(n.Limit.Offset)\n\t}\n\treturn stmt\n}\n\nfunc (c *cc) convertSubqueryExpr(n *pcast.SubqueryExpr) ast.Node {\n\t// Wrap subquery in SubLink to ensure parentheses are added\n\treturn &ast.SubLink{\n\t\tSubLinkType: ast.EXPR_SUBLINK,\n\t\tSubselect:   c.convert(n.Query),\n\t}\n}\n\nfunc (c *cc) convertTableRefsClause(n *pcast.TableRefsClause) *ast.List {\n\tif n == nil {\n\t\treturn &ast.List{}\n\t}\n\treturn c.convertJoin(n.TableRefs)\n}\n\nfunc (c *cc) convertCommonTableExpression(n *pcast.CommonTableExpression) *ast.CommonTableExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\n\tname := n.Name.String()\n\n\tcolumns := &ast.List{}\n\tfor _, col := range n.ColNameList {\n\t\tcolumns.Items = append(columns.Items, NewIdentifier(col.String()))\n\t}\n\n\t// CTE Query is wrapped in SubqueryExpr by TiDB parser.\n\t// We need to unwrap it to get the SelectStmt directly,\n\t// otherwise it would be double-wrapped with parentheses.\n\tvar cteQuery ast.Node\n\tif n.Query != nil {\n\t\tcteQuery = c.convert(n.Query.Query)\n\t}\n\n\treturn &ast.CommonTableExpr{\n\t\tCtename:     &name,\n\t\tCtequery:    cteQuery,\n\t\tCtecolnames: columns,\n\t}\n}\n\nfunc (c *cc) convertWithClause(n *pcast.WithClause) *ast.WithClause {\n\tif n == nil {\n\t\treturn nil\n\t}\n\tlist := &ast.List{}\n\tfor _, n := range n.CTEs {\n\t\tlist.Items = append(list.Items, c.convertCommonTableExpression(n))\n\t}\n\n\treturn &ast.WithClause{\n\t\tCtes:      list,\n\t\tRecursive: n.IsRecursive,\n\t\tLocation:  n.OriginTextPosition(),\n\t}\n}\n\nfunc (c *cc) convertUpdateStmt(n *pcast.UpdateStmt) *ast.UpdateStmt {\n\trels := c.convertTableRefsClause(n.TableRefs)\n\tif len(rels.Items) != 1 {\n\t\tpanic(\"expected one range var\")\n\t}\n\n\trelations := &ast.List{}\n\tconvertToRangeVarList(rels, relations)\n\n\t// TargetList\n\tlist := &ast.List{}\n\tfor _, a := range n.List {\n\t\tlist.Items = append(list.Items, c.convertAssignment(a))\n\t}\n\tstmt := &ast.UpdateStmt{\n\t\tRelations:     relations,\n\t\tTargetList:    list,\n\t\tWhereClause:   c.convert(n.Where),\n\t\tFromClause:    &ast.List{},\n\t\tReturningList: &ast.List{},\n\t\tWithClause:    c.convertWithClause(n.With),\n\t}\n\tif n.Limit != nil {\n\t\tstmt.LimitCount = c.convert(n.Limit.Count)\n\t}\n\treturn stmt\n}\n\nfunc (c *cc) convertValueExpr(n *driver.ValueExpr) *ast.A_Const {\n\tswitch n.TexprNode.Type.GetType() {\n\tcase mysql.TypeBit:\n\tcase mysql.TypeDate:\n\tcase mysql.TypeDatetime:\n\tcase mysql.TypeGeometry:\n\tcase mysql.TypeJSON:\n\tcase mysql.TypeNull:\n\tcase mysql.TypeSet:\n\tcase mysql.TypeShort:\n\tcase mysql.TypeDuration:\n\tcase mysql.TypeTimestamp:\n\t\t// TODO: Create an AST type for these?\n\n\tcase mysql.TypeTiny,\n\t\tmysql.TypeInt24,\n\t\tmysql.TypeYear,\n\t\tmysql.TypeLong,\n\t\tmysql.TypeLonglong:\n\t\treturn &ast.A_Const{\n\t\t\tVal: &ast.Integer{\n\t\t\t\tIval: n.Datum.GetInt64(),\n\t\t\t},\n\t\t\tLocation: n.OriginTextPosition(),\n\t\t}\n\n\tcase mysql.TypeDouble,\n\t\tmysql.TypeFloat,\n\t\tmysql.TypeNewDecimal:\n\t\treturn &ast.A_Const{\n\t\t\tVal: &ast.Float{\n\t\t\t\tStr: strconv.FormatFloat(n.Datum.GetFloat64(), 'f', -1, 64),\n\t\t\t},\n\t\t\tLocation: n.OriginTextPosition(),\n\t\t}\n\n\tcase mysql.TypeBlob, mysql.TypeString, mysql.TypeVarchar, mysql.TypeVarString, mysql.TypeLongBlob, mysql.TypeMediumBlob, mysql.TypeTinyBlob, mysql.TypeEnum:\n\t}\n\treturn &ast.A_Const{\n\t\tVal: &ast.String{\n\t\t\tStr: n.Datum.GetString(),\n\t\t},\n\t\tLocation: n.OriginTextPosition(),\n\t}\n}\n\nfunc (c *cc) convertWildCardField(n *pcast.WildCardField) *ast.ColumnRef {\n\titems := []ast.Node{}\n\tif t := n.Table.String(); t != \"\" {\n\t\titems = append(items, NewIdentifier(t))\n\t}\n\titems = append(items, &ast.A_Star{})\n\n\treturn &ast.ColumnRef{\n\t\tFields: &ast.List{\n\t\t\tItems: items,\n\t\t},\n\t}\n}\n\nfunc (c *cc) convertAdminStmt(n *pcast.AdminStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertAggregateFuncExpr(n *pcast.AggregateFuncExpr) *ast.FuncCall {\n\tname := strings.ToLower(n.F)\n\tfn := &ast.FuncCall{\n\t\tFunc: &ast.FuncName{\n\t\t\tName: name,\n\t\t},\n\t\tFuncname: &ast.List{\n\t\t\tItems: []ast.Node{\n\t\t\t\tNewIdentifier(name),\n\t\t\t},\n\t\t},\n\t\tArgs:     &ast.List{},\n\t\tAggOrder: &ast.List{},\n\t}\n\n\t// GROUP_CONCAT has special handling:\n\t// TiDB always adds the separator as the last argument\n\t// We need to extract it and use SEPARATOR syntax\n\targs := n.Args\n\tvar separator string\n\tif name == \"group_concat\" && len(args) >= 2 {\n\t\t// The last arg is always the separator\n\t\tif value, ok := args[len(args)-1].(*driver.ValueExpr); ok {\n\t\t\tseparator = value.GetString()\n\t\t\targs = args[:len(args)-1]\n\t\t}\n\t}\n\n\tfor _, a := range args {\n\t\tif value, ok := a.(*driver.ValueExpr); ok {\n\t\t\tif value.GetInt64() == int64(1) {\n\t\t\t\tfn.AggStar = true\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\t\tfn.Args.Items = append(fn.Args.Items, c.convert(a))\n\t}\n\tif n.Distinct {\n\t\tfn.AggDistinct = true\n\t}\n\n\t// Store separator for GROUP_CONCAT (only if non-default)\n\tif name == \"group_concat\" && separator != \"\" && separator != \",\" {\n\t\tfn.Separator = &separator\n\t}\n\n\treturn fn\n}\n\nfunc (c *cc) convertAlterDatabaseStmt(n *pcast.AlterDatabaseStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertAlterInstanceStmt(n *pcast.AlterInstanceStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertAlterTableSpec(n *pcast.AlterTableSpec) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertAlterUserStmt(n *pcast.AlterUserStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertAnalyzeTableStmt(n *pcast.AnalyzeTableStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertBRIEStmt(n *pcast.BRIEStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertBeginStmt(n *pcast.BeginStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertBetweenExpr(n *pcast.BetweenExpr) ast.Node {\n\treturn &ast.BetweenExpr{\n\t\tExpr:     c.convert(n.Expr),\n\t\tLeft:     c.convert(n.Left),\n\t\tRight:    c.convert(n.Right),\n\t\tLocation: n.OriginTextPosition(),\n\t\tNot:      n.Not,\n\t}\n}\n\nfunc (c *cc) convertBinlogStmt(n *pcast.BinlogStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertByItem(n *pcast.ByItem) ast.Node {\n\tswitch n.Expr.(type) {\n\tcase *pcast.PositionExpr:\n\t\treturn c.convertPositionExpr(n.Expr.(*pcast.PositionExpr))\n\tcase *pcast.ColumnNameExpr:\n\t\treturn c.convertColumnNameExpr(n.Expr.(*pcast.ColumnNameExpr))\n\tdefault:\n\t\treturn todo(n)\n\t}\n}\n\nfunc (c *cc) convertCaseExpr(n *pcast.CaseExpr) ast.Node {\n\tif n == nil {\n\t\treturn nil\n\t}\n\tlist := &ast.List{Items: []ast.Node{}}\n\tfor _, n := range n.WhenClauses {\n\t\tlist.Items = append(list.Items, c.convertWhenClause(n))\n\t}\n\treturn &ast.CaseExpr{\n\t\tArg:       c.convert(n.Value),\n\t\tArgs:      list,\n\t\tDefresult: c.convert(n.ElseClause),\n\t\tLocation:  n.OriginTextPosition(),\n\t}\n}\n\nfunc (c *cc) convertCleanupTableLockStmt(n *pcast.CleanupTableLockStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertColumnDef(n *pcast.ColumnDef) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertColumnName(n *pcast.ColumnName) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertColumnPosition(n *pcast.ColumnPosition) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertCommitStmt(n *pcast.CommitStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertCompareSubqueryExpr(n *pcast.CompareSubqueryExpr) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertConstraint(n *pcast.Constraint) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertCreateBindingStmt(n *pcast.CreateBindingStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertCreateDatabaseStmt(n *pcast.CreateDatabaseStmt) ast.Node {\n\treturn &ast.CreateSchemaStmt{\n\t\tName:        &n.Name.O,\n\t\tIfNotExists: n.IfNotExists,\n\t}\n}\n\nfunc (c *cc) convertCreateIndexStmt(n *pcast.CreateIndexStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertCreateSequenceStmt(n *pcast.CreateSequenceStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertCreateStatisticsStmt(n *pcast.CreateStatisticsStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertCreateUserStmt(n *pcast.CreateUserStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertCreateViewStmt(n *pcast.CreateViewStmt) ast.Node {\n\treturn &ast.ViewStmt{\n\t\tView:            c.convertTableName(n.ViewName),\n\t\tAliases:         &ast.List{},\n\t\tQuery:           c.convert(n.Select),\n\t\tReplace:         n.OrReplace,\n\t\tOptions:         &ast.List{},\n\t\tWithCheckOption: ast.ViewCheckOption(n.CheckOption),\n\t}\n}\n\nfunc (c *cc) convertDeallocateStmt(n *pcast.DeallocateStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertDefaultExpr(n *pcast.DefaultExpr) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertDeleteTableList(n *pcast.DeleteTableList) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertDoStmt(n *pcast.DoStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertDropBindingStmt(n *pcast.DropBindingStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertDropDatabaseStmt(n *pcast.DropDatabaseStmt) ast.Node {\n\treturn &ast.DropSchemaStmt{\n\t\tMissingOk: !n.IfExists,\n\t\tSchemas: []*ast.String{\n\t\t\tNewIdentifier(n.Name.O),\n\t\t},\n\t}\n}\n\nfunc (c *cc) convertDropIndexStmt(n *pcast.DropIndexStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertDropSequenceStmt(n *pcast.DropSequenceStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertDropStatisticsStmt(n *pcast.DropStatisticsStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertDropStatsStmt(n *pcast.DropStatsStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertDropUserStmt(n *pcast.DropUserStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertExecuteStmt(n *pcast.ExecuteStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertExplainForStmt(n *pcast.ExplainForStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertExplainStmt(n *pcast.ExplainStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertFlashBackTableStmt(n *pcast.FlashBackTableStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertFlushStmt(n *pcast.FlushStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertFrameBound(n *pcast.FrameBound) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertFrameClause(n *pcast.FrameClause) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertFuncCastExpr(n *pcast.FuncCastExpr) ast.Node {\n\ttypeName := types.TypeStr(n.Tp.GetType())\n\n\t// MySQL CAST AS UNSIGNED/SIGNED uses bigint internally.\n\t// We need to preserve the signed/unsigned info for formatting.\n\tif typeName == \"bigint\" {\n\t\tif mysql.HasUnsignedFlag(n.Tp.GetFlag()) {\n\t\t\ttypeName = \"bigint unsigned\"\n\t\t} else {\n\t\t\ttypeName = \"bigint signed\"\n\t\t}\n\t}\n\n\treturn &ast.TypeCast{\n\t\tArg:      c.convert(n.Expr),\n\t\tTypeName: &ast.TypeName{Name: typeName},\n\t}\n}\n\nfunc (c *cc) convertGetFormatSelectorExpr(n *pcast.GetFormatSelectorExpr) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertGrantRoleStmt(n *pcast.GrantRoleStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertGrantStmt(n *pcast.GrantStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertGroupByClause(n *pcast.GroupByClause) *ast.List {\n\tif n == nil {\n\t\treturn &ast.List{}\n\t}\n\n\tvar items []ast.Node\n\tfor _, item := range n.Items {\n\t\titems = append(items, c.convertByItem(item))\n\t}\n\n\treturn &ast.List{\n\t\tItems: items,\n\t}\n}\n\nfunc (c *cc) convertHavingClause(n *pcast.HavingClause) ast.Node {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn c.convert(n.Expr)\n}\n\nfunc (c *cc) convertIndexLockAndAlgorithm(n *pcast.IndexLockAndAlgorithm) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertIndexPartSpecification(n *pcast.IndexPartSpecification) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertIsNullExpr(n *pcast.IsNullExpr) ast.Node {\n\top := ast.BoolExprTypeIsNull\n\tif n.Not {\n\t\top = ast.BoolExprTypeIsNotNull\n\t}\n\treturn &ast.BoolExpr{\n\t\tBoolop: op,\n\t\tArgs: &ast.List{\n\t\t\tItems: []ast.Node{\n\t\t\t\tc.convert(n.Expr),\n\t\t\t},\n\t\t},\n\t}\n}\n\nfunc (c *cc) convertIsTruthExpr(n *pcast.IsTruthExpr) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertJoin(n *pcast.Join) *ast.List {\n\tif n == nil {\n\t\treturn &ast.List{}\n\t}\n\tif n.Right != nil && n.Left != nil {\n\t\t// MySQL doesn't have a FULL join type\n\t\tjoinType := ast.JoinType(n.Tp)\n\t\tif joinType >= ast.JoinTypeFull {\n\t\t\tjoinType++\n\t\t}\n\n\t\t// Convert USING clause\n\t\tvar usingClause *ast.List\n\t\tif len(n.Using) > 0 {\n\t\t\titems := make([]ast.Node, len(n.Using))\n\t\t\tfor i, col := range n.Using {\n\t\t\t\titems[i] = &ast.String{Str: col.Name.O}\n\t\t\t}\n\t\t\tusingClause = &ast.List{Items: items}\n\t\t}\n\n\t\treturn &ast.List{\n\t\t\tItems: []ast.Node{&ast.JoinExpr{\n\t\t\t\tJointype:    joinType,\n\t\t\t\tIsNatural:   n.NaturalJoin,\n\t\t\t\tLarg:        c.convert(n.Left),\n\t\t\t\tRarg:        c.convert(n.Right),\n\t\t\t\tUsingClause: usingClause,\n\t\t\t\tQuals:       c.convert(n.On),\n\t\t\t}},\n\t\t}\n\t}\n\tvar tables []ast.Node\n\tif n.Right != nil {\n\t\ttables = append(tables, c.convert(n.Right))\n\t}\n\tif n.Left != nil {\n\t\ttables = append(tables, c.convert(n.Left))\n\t}\n\treturn &ast.List{Items: tables}\n}\n\nfunc (c *cc) convertKillStmt(n *pcast.KillStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertLimit(n *pcast.Limit) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertLoadDataStmt(n *pcast.LoadDataStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertLoadStatsStmt(n *pcast.LoadStatsStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertLockTablesStmt(n *pcast.LockTablesStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertMatchAgainst(n *pcast.MatchAgainst) ast.Node {\n\tsearchTerm := c.convert(n.Against)\n\n\tstringSearchTerm := &ast.TypeCast{\n\t\tArg: searchTerm,\n\t\tTypeName: &ast.TypeName{\n\t\t\tName: \"text\", // Use 'text' type which maps to string in Go\n\t\t},\n\t\tLocation: n.OriginTextPosition(),\n\t}\n\n\tmatchOperation := &ast.A_Const{\n\t\tVal: &ast.String{Str: \"MATCH_AGAINST\"},\n\t}\n\n\treturn &ast.A_Expr{\n\t\tName: &ast.List{\n\t\t\tItems: []ast.Node{\n\t\t\t\t&ast.String{Str: \"AGAINST\"},\n\t\t\t},\n\t\t},\n\t\tLexpr:    matchOperation,\n\t\tRexpr:    stringSearchTerm,\n\t\tLocation: n.OriginTextPosition(),\n\t}\n}\n\nfunc (c *cc) convertMaxValueExpr(n *pcast.MaxValueExpr) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertOnCondition(n *pcast.OnCondition) ast.Node {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn c.convert(n.Expr)\n}\n\nfunc (c *cc) convertOnDeleteOpt(n *pcast.OnDeleteOpt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertOnUpdateOpt(n *pcast.OnUpdateOpt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertOrderByClause(n *pcast.OrderByClause) ast.Node {\n\tif n == nil {\n\t\treturn nil\n\t}\n\tlist := &ast.List{Items: []ast.Node{}}\n\tfor _, item := range n.Items {\n\t\tlist.Items = append(list.Items, c.convert(item.Expr))\n\t}\n\treturn list\n}\n\nfunc (c *cc) convertParenthesesExpr(n *pcast.ParenthesesExpr) ast.Node {\n\tif n == nil {\n\t\treturn nil\n\t}\n\tinner := c.convert(n.Expr)\n\t// Only wrap in ParenExpr for SELECT statements (needed for UNION with parenthesized subqueries)\n\t// For other expressions, the BoolExpr already adds parentheses\n\tif _, ok := inner.(*ast.SelectStmt); ok {\n\t\treturn &ast.ParenExpr{\n\t\t\tExpr:     inner,\n\t\t\tLocation: n.OriginTextPosition(),\n\t\t}\n\t}\n\treturn inner\n}\n\nfunc (c *cc) convertPartitionByClause(n *pcast.PartitionByClause) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertPatternInExpr(n *pcast.PatternInExpr) ast.Node {\n\tvar list []ast.Node\n\tvar val ast.Node\n\n\texpr := c.convert(n.Expr)\n\n\tfor _, v := range n.List {\n\t\tval = c.convert(v)\n\t\tif val != nil {\n\t\t\tlist = append(list, val)\n\t\t}\n\t}\n\n\tsel := c.convert(n.Sel)\n\n\tin := &ast.In{\n\t\tExpr:     expr,\n\t\tList:     list,\n\t\tNot:      n.Not,\n\t\tSel:      sel,\n\t\tLocation: n.OriginTextPosition(),\n\t}\n\n\treturn in\n}\n\nfunc (c *cc) convertPatternLikeExpr(n *pcast.PatternLikeOrIlikeExpr) ast.Node {\n\treturn &ast.A_Expr{\n\t\tKind: ast.A_Expr_Kind(9),\n\t\tName: &ast.List{\n\t\t\tItems: []ast.Node{\n\t\t\t\t&ast.String{Str: \"~~\"},\n\t\t\t},\n\t\t},\n\t\tLexpr: c.convert(n.Expr),\n\t\tRexpr: c.convert(n.Pattern),\n\t}\n}\n\nfunc (c *cc) convertPatternRegexpExpr(n *pcast.PatternRegexpExpr) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertPositionExpr(n *pcast.PositionExpr) ast.Node {\n\treturn &ast.Integer{Ival: int64(n.N)}\n}\n\nfunc (c *cc) convertPrepareStmt(n *pcast.PrepareStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertPrivElem(n *pcast.PrivElem) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertRecoverTableStmt(n *pcast.RecoverTableStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertReferenceDef(n *pcast.ReferenceDef) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertRepairTableStmt(n *pcast.RepairTableStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertRevokeRoleStmt(n *pcast.RevokeRoleStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertRevokeStmt(n *pcast.RevokeStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertRollbackStmt(n *pcast.RollbackStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertRowExpr(n *pcast.RowExpr) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertSetCollationExpr(n *pcast.SetCollationExpr) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertSetConfigStmt(n *pcast.SetConfigStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertSetDefaultRoleStmt(n *pcast.SetDefaultRoleStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertSetOprType(n *pcast.SetOprType) (op ast.SetOperation, all bool) {\n\tif n == nil {\n\t\treturn\n\t}\n\n\tswitch *n {\n\tcase pcast.Union:\n\t\top = ast.Union\n\tcase pcast.UnionAll:\n\t\top = ast.Union\n\t\tall = true\n\tcase pcast.Intersect:\n\t\top = ast.Intersect\n\tcase pcast.IntersectAll:\n\t\top = ast.Intersect\n\t\tall = true\n\tcase pcast.Except:\n\t\top = ast.Except\n\tcase pcast.ExceptAll:\n\t\top = ast.Except\n\t\tall = true\n\t}\n\treturn\n}\n\n// convertSetOprSelectList converts a list of SELECT from the Pingcap parser\n// into a tree. It is called for UNION, INTERSECT or EXCLUDE operation.\n//\n// Given an union with the following nodes:\n//\n//\t[Select{1}, Select{2}, Select{3}, Select{4}]\n//\n// The function will return:\n//\n//\tSelect{\n//\t    Larg: Select{\n//\t        Larg: Select{\n//\t            Larg: Select{1},\n//\t            Rarg: Select{2},\n//\t            Op: Union\n//\t        },\n//\t        Rarg: Select{3},\n//\t        Op: Union,\n//\t    },\n//\t    Rarg: Select{4},\n//\t    Op: Union,\n//\t}\nfunc (c *cc) convertSetOprSelectList(n *pcast.SetOprSelectList) ast.Node {\n\tselectStmts := make([]*ast.SelectStmt, len(n.Selects))\n\tfor i, node := range n.Selects {\n\t\tswitch node := node.(type) {\n\t\tcase *pcast.SelectStmt:\n\t\t\tselectStmts[i] = c.convertSelectStmt(node)\n\t\tcase *pcast.SetOprSelectList:\n\t\t\t// If this is a single-select SetOprSelectList (e.g., from parenthesized SELECT),\n\t\t\t// extract the inner select instead of building a UNION tree\n\t\t\tif len(node.Selects) == 1 {\n\t\t\t\tif innerSelect, ok := node.Selects[0].(*pcast.SelectStmt); ok {\n\t\t\t\t\tselectStmts[i] = c.convertSelectStmt(innerSelect)\n\t\t\t\t} else {\n\t\t\t\t\tselectStmts[i] = c.convertSetOprSelectList(node).(*ast.SelectStmt)\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tselectStmts[i] = c.convertSetOprSelectList(node).(*ast.SelectStmt)\n\t\t\t}\n\t\tdefault:\n\t\t\t// Handle other node types like ParenthesesExpr wrapping a SELECT\n\t\t\tconverted := c.convert(node)\n\t\t\tif ss, ok := converted.(*ast.SelectStmt); ok {\n\t\t\t\tselectStmts[i] = ss\n\t\t\t} else if pe, ok := converted.(*ast.ParenExpr); ok {\n\t\t\t\t// Unwrap ParenExpr to get the inner SelectStmt\n\t\t\t\tif inner, ok := pe.Expr.(*ast.SelectStmt); ok {\n\t\t\t\t\tselectStmts[i] = inner\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\top, all := c.convertSetOprType(n.AfterSetOperator)\n\ttree := &ast.SelectStmt{\n\t\tTargetList:  &ast.List{},\n\t\tFromClause:  &ast.List{},\n\t\tWhereClause: nil,\n\t\tOp:          op,\n\t\tAll:         all,\n\t\tWithClause:  c.convertWithClause(n.With),\n\t}\n\tfor _, stmt := range selectStmts {\n\t\t// We move Op and All from the child to the parent.\n\t\top, all := stmt.Op, stmt.All\n\t\tstmt.Op, stmt.All = ast.None, false\n\n\t\tswitch {\n\t\tcase tree.Larg == nil:\n\t\t\ttree.Larg = stmt\n\t\tcase tree.Rarg == nil:\n\t\t\ttree.Rarg = stmt\n\t\t\ttree.Op = op\n\t\t\ttree.All = all\n\t\tdefault:\n\t\t\ttree = &ast.SelectStmt{\n\t\t\t\tTargetList:  &ast.List{},\n\t\t\t\tFromClause:  &ast.List{},\n\t\t\t\tWhereClause: nil,\n\t\t\t\tLarg:        tree,\n\t\t\t\tRarg:        stmt,\n\t\t\t\tOp:          op,\n\t\t\t\tAll:         all,\n\t\t\t\tWithClause:  c.convertWithClause(n.With),\n\t\t\t}\n\t\t}\n\t}\n\n\treturn tree\n}\n\nfunc (c *cc) convertSetOprStmt(n *pcast.SetOprStmt) ast.Node {\n\tif n.SelectList != nil {\n\t\tsn := c.convertSetOprSelectList(n.SelectList)\n\t\tif ss, ok := sn.(*ast.SelectStmt); ok && n.Limit != nil {\n\t\t\tss.LimitOffset = c.convert(n.Limit.Offset)\n\t\t\tss.LimitCount = c.convert(n.Limit.Count)\n\t\t}\n\t\treturn sn\n\t}\n\treturn todo(n)\n}\n\nfunc (c *cc) convertSetPwdStmt(n *pcast.SetPwdStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertSetRoleStmt(n *pcast.SetRoleStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertSetStmt(n *pcast.SetStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertShowStmt(n *pcast.ShowStmt) ast.Node {\n\tif n.Tp != pcast.ShowWarnings {\n\t\treturn todo(n)\n\t}\n\tlevel := \"level\"\n\tcode := \"code\"\n\tmessage := \"message\"\n\tstmt := &ast.SelectStmt{\n\t\tFromClause: &ast.List{},\n\t\tTargetList: &ast.List{\n\t\t\tItems: []ast.Node{\n\t\t\t\t&ast.ResTarget{\n\t\t\t\t\tName: &level,\n\t\t\t\t\tVal:  &ast.A_Const{Val: &ast.String{}},\n\t\t\t\t},\n\t\t\t\t&ast.ResTarget{\n\t\t\t\t\tName: &code,\n\t\t\t\t\tVal:  &ast.A_Const{Val: &ast.Integer{}},\n\t\t\t\t},\n\t\t\t\t&ast.ResTarget{\n\t\t\t\t\tName: &message,\n\t\t\t\t\tVal:  &ast.A_Const{Val: &ast.String{}},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t}\n\treturn stmt\n}\n\nfunc (c *cc) convertShutdownStmt(n *pcast.ShutdownStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertSplitRegionStmt(n *pcast.SplitRegionStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertTableName(n *pcast.TableName) *ast.RangeVar {\n\tschema := identifier(n.Schema.String())\n\trel := identifier(n.Name.String())\n\treturn &ast.RangeVar{\n\t\tSchemaname: &schema,\n\t\tRelname:    &rel,\n\t}\n}\n\nfunc (c *cc) convertTableNameExpr(n *pcast.TableNameExpr) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertTableOptimizerHint(n *pcast.TableOptimizerHint) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertTableSource(node *pcast.TableSource) ast.Node {\n\tif node == nil {\n\t\treturn nil\n\t}\n\talias := node.AsName.String()\n\tswitch n := node.Source.(type) {\n\n\tcase *pcast.SelectStmt, *pcast.SetOprStmt:\n\t\trs := &ast.RangeSubselect{\n\t\t\tSubquery: c.convert(n),\n\t\t}\n\t\tif alias != \"\" {\n\t\t\trs.Alias = &ast.Alias{Aliasname: &alias}\n\t\t}\n\t\treturn rs\n\n\tcase *pcast.TableName:\n\t\trv := c.convertTableName(n)\n\t\tif alias != \"\" {\n\t\t\trv.Alias = &ast.Alias{Aliasname: &alias}\n\t\t}\n\t\treturn rv\n\n\tdefault:\n\t\treturn todo(n)\n\t}\n}\n\nfunc (c *cc) convertTableToTable(n *pcast.TableToTable) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertTimeUnitExpr(n *pcast.TimeUnitExpr) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertTraceStmt(n *pcast.TraceStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertTrimDirectionExpr(n *pcast.TrimDirectionExpr) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertTruncateTableStmt(n *pcast.TruncateTableStmt) *ast.TruncateStmt {\n\treturn &ast.TruncateStmt{\n\t\tRelations: toList(n.Table),\n\t}\n}\n\nfunc (c *cc) convertUnaryOperationExpr(n *pcast.UnaryOperationExpr) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertUnlockTablesStmt(n *pcast.UnlockTablesStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertUseStmt(n *pcast.UseStmt) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertValuesExpr(n *pcast.ValuesExpr) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertVariableAssignment(n *pcast.VariableAssignment) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertVariableExpr(n *pcast.VariableExpr) ast.Node {\n\t// MySQL @variable references are user-defined variables, NOT sqlc named parameters.\n\t// Use VariableExpr to preserve them as-is in the output.\n\treturn &ast.VariableExpr{\n\t\tName:     n.Name,\n\t\tLocation: n.OriginTextPosition(),\n\t}\n}\n\nfunc (c *cc) convertWhenClause(n *pcast.WhenClause) ast.Node {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CaseWhen{\n\t\tExpr:     c.convert(n.Expr),\n\t\tResult:   c.convert(n.Result),\n\t\tLocation: n.OriginTextPosition(),\n\t}\n}\n\nfunc (c *cc) convertWindowFuncExpr(n *pcast.WindowFuncExpr) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertWindowSpec(n *pcast.WindowSpec) ast.Node {\n\treturn todo(n)\n}\n\nfunc (c *cc) convertCallStmt(n *pcast.CallStmt) ast.Node {\n\tvar funcname ast.List\n\tfor _, s := range []string{n.Procedure.Schema.L, n.Procedure.FnName.L} {\n\t\tif s != \"\" {\n\t\t\tfuncname.Items = append(funcname.Items, NewIdentifier(s))\n\t\t}\n\t}\n\tvar args ast.List\n\tfor _, a := range n.Procedure.Args {\n\t\targs.Items = append(args.Items, c.convert(a))\n\t}\n\treturn &ast.CallStmt{\n\t\tFuncCall: &ast.FuncCall{\n\t\t\tFunc: &ast.FuncName{\n\t\t\t\tSchema: n.Procedure.Schema.L,\n\t\t\t\tName:   n.Procedure.FnName.L,\n\t\t\t},\n\t\t\tFuncname: &funcname,\n\t\t\tArgs:     &args,\n\t\t\tLocation: n.OriginTextPosition(),\n\t\t},\n\t}\n}\n\nfunc (c *cc) convertProcedureInfo(n *pcast.ProcedureInfo) ast.Node {\n\tvar params ast.List\n\tfor _, sp := range n.ProcedureParam {\n\t\tparamName := sp.ParamName\n\t\tparams.Items = append(params.Items, &ast.FuncParam{\n\t\t\tName: &paramName,\n\t\t\tType: &ast.TypeName{Name: types.TypeToStr(sp.ParamType.GetType(), sp.ParamType.GetCharset())},\n\t\t})\n\t}\n\treturn &ast.CreateFunctionStmt{\n\t\tParams: &params,\n\t\tFunc: &ast.FuncName{\n\t\t\tSchema: n.ProcedureName.Schema.L,\n\t\t\tName:   n.ProcedureName.Name.L,\n\t\t},\n\t}\n}\n\nfunc (c *cc) convert(node pcast.Node) ast.Node {\n\tswitch n := node.(type) {\n\n\tcase *driver.ParamMarkerExpr:\n\t\treturn c.convertParamMarkerExpr(n)\n\n\tcase *driver.ValueExpr:\n\t\treturn c.convertValueExpr(n)\n\n\tcase *pcast.AdminStmt:\n\t\treturn c.convertAdminStmt(n)\n\n\tcase *pcast.AggregateFuncExpr:\n\t\treturn c.convertAggregateFuncExpr(n)\n\n\tcase *pcast.AlterDatabaseStmt:\n\t\treturn c.convertAlterDatabaseStmt(n)\n\n\tcase *pcast.AlterInstanceStmt:\n\t\treturn c.convertAlterInstanceStmt(n)\n\n\tcase *pcast.AlterTableSpec:\n\t\treturn c.convertAlterTableSpec(n)\n\n\tcase *pcast.AlterTableStmt:\n\t\treturn c.convertAlterTableStmt(n)\n\n\tcase *pcast.AlterUserStmt:\n\t\treturn c.convertAlterUserStmt(n)\n\n\tcase *pcast.AnalyzeTableStmt:\n\t\treturn c.convertAnalyzeTableStmt(n)\n\n\tcase *pcast.Assignment:\n\t\treturn c.convertAssignment(n)\n\n\tcase *pcast.BRIEStmt:\n\t\treturn c.convertBRIEStmt(n)\n\n\tcase *pcast.BeginStmt:\n\t\treturn c.convertBeginStmt(n)\n\n\tcase *pcast.BetweenExpr:\n\t\treturn c.convertBetweenExpr(n)\n\n\tcase *pcast.BinaryOperationExpr:\n\t\treturn c.convertBinaryOperationExpr(n)\n\n\tcase *pcast.BinlogStmt:\n\t\treturn c.convertBinlogStmt(n)\n\n\tcase *pcast.ByItem:\n\t\treturn c.convertByItem(n)\n\n\tcase *pcast.CallStmt:\n\t\treturn c.convertCallStmt(n)\n\n\tcase *pcast.CaseExpr:\n\t\treturn c.convertCaseExpr(n)\n\n\tcase *pcast.CleanupTableLockStmt:\n\t\treturn c.convertCleanupTableLockStmt(n)\n\n\tcase *pcast.ColumnDef:\n\t\treturn c.convertColumnDef(n)\n\n\tcase *pcast.ColumnName:\n\t\treturn c.convertColumnName(n)\n\n\tcase *pcast.ColumnNameExpr:\n\t\treturn c.convertColumnNameExpr(n)\n\n\tcase *pcast.ColumnPosition:\n\t\treturn c.convertColumnPosition(n)\n\n\tcase *pcast.CommitStmt:\n\t\treturn c.convertCommitStmt(n)\n\n\tcase *pcast.CompareSubqueryExpr:\n\t\treturn c.convertCompareSubqueryExpr(n)\n\n\tcase *pcast.Constraint:\n\t\treturn c.convertConstraint(n)\n\n\tcase *pcast.CreateBindingStmt:\n\t\treturn c.convertCreateBindingStmt(n)\n\n\tcase *pcast.CreateDatabaseStmt:\n\t\treturn c.convertCreateDatabaseStmt(n)\n\n\tcase *pcast.CreateIndexStmt:\n\t\treturn c.convertCreateIndexStmt(n)\n\n\tcase *pcast.CreateSequenceStmt:\n\t\treturn c.convertCreateSequenceStmt(n)\n\n\tcase *pcast.CreateStatisticsStmt:\n\t\treturn c.convertCreateStatisticsStmt(n)\n\n\tcase *pcast.CreateTableStmt:\n\t\treturn c.convertCreateTableStmt(n)\n\n\tcase *pcast.CreateUserStmt:\n\t\treturn c.convertCreateUserStmt(n)\n\n\tcase *pcast.CreateViewStmt:\n\t\treturn c.convertCreateViewStmt(n)\n\n\tcase *pcast.DeallocateStmt:\n\t\treturn c.convertDeallocateStmt(n)\n\n\tcase *pcast.DefaultExpr:\n\t\treturn c.convertDefaultExpr(n)\n\n\tcase *pcast.DeleteStmt:\n\t\treturn c.convertDeleteStmt(n)\n\n\tcase *pcast.DeleteTableList:\n\t\treturn c.convertDeleteTableList(n)\n\n\tcase *pcast.DoStmt:\n\t\treturn c.convertDoStmt(n)\n\n\tcase *pcast.DropBindingStmt:\n\t\treturn c.convertDropBindingStmt(n)\n\n\tcase *pcast.DropDatabaseStmt:\n\t\treturn c.convertDropDatabaseStmt(n)\n\n\tcase *pcast.DropIndexStmt:\n\t\treturn c.convertDropIndexStmt(n)\n\n\tcase *pcast.DropSequenceStmt:\n\t\treturn c.convertDropSequenceStmt(n)\n\n\tcase *pcast.DropStatisticsStmt:\n\t\treturn c.convertDropStatisticsStmt(n)\n\n\tcase *pcast.DropStatsStmt:\n\t\treturn c.convertDropStatsStmt(n)\n\n\tcase *pcast.DropTableStmt:\n\t\treturn c.convertDropTableStmt(n)\n\n\tcase *pcast.DropUserStmt:\n\t\treturn c.convertDropUserStmt(n)\n\n\tcase *pcast.ExecuteStmt:\n\t\treturn c.convertExecuteStmt(n)\n\n\tcase *pcast.ExistsSubqueryExpr:\n\t\treturn c.convertExistsSubqueryExpr(n)\n\n\tcase *pcast.ExplainForStmt:\n\t\treturn c.convertExplainForStmt(n)\n\n\tcase *pcast.ExplainStmt:\n\t\treturn c.convertExplainStmt(n)\n\n\tcase *pcast.FieldList:\n\t\treturn c.convertFieldList(n)\n\n\tcase *pcast.FlashBackTableStmt:\n\t\treturn c.convertFlashBackTableStmt(n)\n\n\tcase *pcast.FlushStmt:\n\t\treturn c.convertFlushStmt(n)\n\n\tcase *pcast.FrameBound:\n\t\treturn c.convertFrameBound(n)\n\n\tcase *pcast.FrameClause:\n\t\treturn c.convertFrameClause(n)\n\n\tcase *pcast.FuncCallExpr:\n\t\treturn c.convertFuncCallExpr(n)\n\n\tcase *pcast.FuncCastExpr:\n\t\treturn c.convertFuncCastExpr(n)\n\n\tcase *pcast.GetFormatSelectorExpr:\n\t\treturn c.convertGetFormatSelectorExpr(n)\n\n\tcase *pcast.GrantRoleStmt:\n\t\treturn c.convertGrantRoleStmt(n)\n\n\tcase *pcast.GrantStmt:\n\t\treturn c.convertGrantStmt(n)\n\n\tcase *pcast.GroupByClause:\n\t\treturn c.convertGroupByClause(n)\n\n\tcase *pcast.HavingClause:\n\t\treturn c.convertHavingClause(n)\n\n\tcase *pcast.IndexLockAndAlgorithm:\n\t\treturn c.convertIndexLockAndAlgorithm(n)\n\n\tcase *pcast.IndexPartSpecification:\n\t\treturn c.convertIndexPartSpecification(n)\n\n\tcase *pcast.InsertStmt:\n\t\treturn c.convertInsertStmt(n)\n\n\tcase *pcast.IsNullExpr:\n\t\treturn c.convertIsNullExpr(n)\n\n\tcase *pcast.IsTruthExpr:\n\t\treturn c.convertIsTruthExpr(n)\n\n\tcase *pcast.Join:\n\t\treturn c.convertJoin(n)\n\n\tcase *pcast.KillStmt:\n\t\treturn c.convertKillStmt(n)\n\n\tcase *pcast.Limit:\n\t\treturn c.convertLimit(n)\n\n\tcase *pcast.LoadDataStmt:\n\t\treturn c.convertLoadDataStmt(n)\n\n\tcase *pcast.LoadStatsStmt:\n\t\treturn c.convertLoadStatsStmt(n)\n\n\tcase *pcast.LockTablesStmt:\n\t\treturn c.convertLockTablesStmt(n)\n\n\tcase *pcast.MatchAgainst:\n\t\treturn c.convertMatchAgainst(n)\n\n\tcase *pcast.MaxValueExpr:\n\t\treturn c.convertMaxValueExpr(n)\n\n\tcase *pcast.OnCondition:\n\t\treturn c.convertOnCondition(n)\n\n\tcase *pcast.OnDeleteOpt:\n\t\treturn c.convertOnDeleteOpt(n)\n\n\tcase *pcast.OnUpdateOpt:\n\t\treturn c.convertOnUpdateOpt(n)\n\n\tcase *pcast.OrderByClause:\n\t\treturn c.convertOrderByClause(n)\n\n\tcase *pcast.ParenthesesExpr:\n\t\treturn c.convertParenthesesExpr(n)\n\n\tcase *pcast.PartitionByClause:\n\t\treturn c.convertPartitionByClause(n)\n\n\tcase *pcast.PatternInExpr:\n\t\treturn c.convertPatternInExpr(n)\n\n\tcase *pcast.PatternLikeOrIlikeExpr:\n\t\treturn c.convertPatternLikeExpr(n)\n\n\tcase *pcast.PatternRegexpExpr:\n\t\treturn c.convertPatternRegexpExpr(n)\n\n\tcase *pcast.PositionExpr:\n\t\treturn c.convertPositionExpr(n)\n\n\tcase *pcast.PrepareStmt:\n\t\treturn c.convertPrepareStmt(n)\n\n\tcase *pcast.PrivElem:\n\t\treturn c.convertPrivElem(n)\n\n\tcase *pcast.ProcedureInfo:\n\t\treturn c.convertProcedureInfo(n)\n\n\tcase *pcast.RecoverTableStmt:\n\t\treturn c.convertRecoverTableStmt(n)\n\n\tcase *pcast.ReferenceDef:\n\t\treturn c.convertReferenceDef(n)\n\n\tcase *pcast.RenameTableStmt:\n\t\treturn c.convertRenameTableStmt(n)\n\n\tcase *pcast.RepairTableStmt:\n\t\treturn c.convertRepairTableStmt(n)\n\n\tcase *pcast.RevokeRoleStmt:\n\t\treturn c.convertRevokeRoleStmt(n)\n\n\tcase *pcast.RevokeStmt:\n\t\treturn c.convertRevokeStmt(n)\n\n\tcase *pcast.RollbackStmt:\n\t\treturn c.convertRollbackStmt(n)\n\n\tcase *pcast.RowExpr:\n\t\treturn c.convertRowExpr(n)\n\n\tcase *pcast.SelectField:\n\t\treturn c.convertSelectField(n)\n\n\tcase *pcast.SelectStmt:\n\t\treturn c.convertSelectStmt(n)\n\n\tcase *pcast.SetCollationExpr:\n\t\treturn c.convertSetCollationExpr(n)\n\n\tcase *pcast.SetConfigStmt:\n\t\treturn c.convertSetConfigStmt(n)\n\n\tcase *pcast.SetDefaultRoleStmt:\n\t\treturn c.convertSetDefaultRoleStmt(n)\n\n\tcase *pcast.SetOprSelectList:\n\t\treturn c.convertSetOprSelectList(n)\n\n\tcase *pcast.SetOprStmt:\n\t\treturn c.convertSetOprStmt(n)\n\n\tcase *pcast.SetPwdStmt:\n\t\treturn c.convertSetPwdStmt(n)\n\n\tcase *pcast.SetRoleStmt:\n\t\treturn c.convertSetRoleStmt(n)\n\n\tcase *pcast.SetStmt:\n\t\treturn c.convertSetStmt(n)\n\n\tcase *pcast.ShowStmt:\n\t\treturn c.convertShowStmt(n)\n\n\tcase *pcast.ShutdownStmt:\n\t\treturn c.convertShutdownStmt(n)\n\n\tcase *pcast.SplitRegionStmt:\n\t\treturn c.convertSplitRegionStmt(n)\n\n\tcase *pcast.SubqueryExpr:\n\t\treturn c.convertSubqueryExpr(n)\n\n\tcase *pcast.TableName:\n\t\treturn c.convertTableName(n)\n\n\tcase *pcast.TableNameExpr:\n\t\treturn c.convertTableNameExpr(n)\n\n\tcase *pcast.TableOptimizerHint:\n\t\treturn c.convertTableOptimizerHint(n)\n\n\tcase *pcast.TableRefsClause:\n\t\treturn c.convertTableRefsClause(n)\n\n\tcase *pcast.TableSource:\n\t\treturn c.convertTableSource(n)\n\n\tcase *pcast.TableToTable:\n\t\treturn c.convertTableToTable(n)\n\n\tcase *pcast.TimeUnitExpr:\n\t\treturn c.convertTimeUnitExpr(n)\n\n\tcase *pcast.TraceStmt:\n\t\treturn c.convertTraceStmt(n)\n\n\tcase *pcast.TrimDirectionExpr:\n\t\treturn c.convertTrimDirectionExpr(n)\n\n\tcase *pcast.TruncateTableStmt:\n\t\treturn c.convertTruncateTableStmt(n)\n\n\tcase *pcast.UnaryOperationExpr:\n\t\treturn c.convertUnaryOperationExpr(n)\n\n\tcase *pcast.UnlockTablesStmt:\n\t\treturn c.convertUnlockTablesStmt(n)\n\n\tcase *pcast.UpdateStmt:\n\t\treturn c.convertUpdateStmt(n)\n\n\tcase *pcast.UseStmt:\n\t\treturn c.convertUseStmt(n)\n\n\tcase *pcast.ValuesExpr:\n\t\treturn c.convertValuesExpr(n)\n\n\tcase *pcast.VariableAssignment:\n\t\treturn c.convertVariableAssignment(n)\n\n\tcase *pcast.VariableExpr:\n\t\treturn c.convertVariableExpr(n)\n\n\tcase *pcast.WhenClause:\n\t\treturn c.convertWhenClause(n)\n\n\tcase *pcast.WildCardField:\n\t\treturn c.convertWildCardField(n)\n\n\tcase *pcast.WindowFuncExpr:\n\t\treturn c.convertWindowFuncExpr(n)\n\n\tcase *pcast.WindowSpec:\n\t\treturn c.convertWindowSpec(n)\n\n\tcase nil:\n\t\treturn nil\n\n\tdefault:\n\t\treturn todo(n)\n\t}\n}\n"
  },
  {
    "path": "internal/engine/dolphin/format.go",
    "content": "package dolphin\n\n// QuoteIdent returns a quoted identifier if it needs quoting.\n// MySQL uses backticks for quoting identifiers.\nfunc (p *Parser) QuoteIdent(s string) string {\n\t// For now, don't quote - MySQL is less strict about quoting\n\treturn s\n}\n\n// TypeName returns the SQL type name for the given namespace and name.\n// Handles MySQL-specific type name mappings for formatting.\nfunc (p *Parser) TypeName(ns, name string) string {\n\tif ns != \"\" {\n\t\treturn ns + \".\" + name\n\t}\n\t// Map internal type names to MySQL CAST-compatible names for formatting\n\tswitch name {\n\tcase \"bigint unsigned\":\n\t\treturn \"UNSIGNED\"\n\tcase \"bigint signed\":\n\t\treturn \"SIGNED\"\n\t}\n\treturn name\n}\n\n// Param returns the parameter placeholder for the given number.\n// MySQL uses ? for all parameters (positional).\nfunc (p *Parser) Param(n int) string {\n\treturn \"?\"\n}\n\n// NamedParam returns the named parameter placeholder for the given name.\n// MySQL doesn't have native named parameters, so we use ? (positional).\n// The actual parameter names are handled by sqlc's rewrite phase.\nfunc (p *Parser) NamedParam(name string) string {\n\treturn \"?\"\n}\n\n// Cast returns a type cast expression.\n// MySQL uses CAST(expr AS type) syntax.\nfunc (p *Parser) Cast(arg, typeName string) string {\n\treturn \"CAST(\" + arg + \" AS \" + typeName + \")\"\n}\n"
  },
  {
    "path": "internal/engine/dolphin/parse.go",
    "content": "package dolphin\n\nimport (\n\t\"errors\"\n\t\"io\"\n\t\"regexp\"\n\t\"strconv\"\n\t\"strings\"\n\n\t\"github.com/pingcap/tidb/pkg/parser\"\n\t_ \"github.com/pingcap/tidb/pkg/parser/test_driver\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/source\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\nfunc NewParser() *Parser {\n\treturn &Parser{parser.New()}\n}\n\ntype Parser struct {\n\tpingcap *parser.Parser\n}\n\nvar lineColumn = regexp.MustCompile(`^line (\\d+) column (\\d+) (.*)`)\n\nfunc normalizeErr(err error) error {\n\tif err == nil {\n\t\treturn err\n\t}\n\tparts := strings.Split(err.Error(), \"\\n\")\n\tmsg := strings.TrimSpace(parts[0] + \"\\\"\")\n\tout := lineColumn.FindStringSubmatch(msg)\n\tif len(out) == 4 {\n\t\tline, lineErr := strconv.Atoi(out[1])\n\t\tcol, colErr := strconv.Atoi(out[2])\n\t\tif lineErr != nil || colErr != nil {\n\t\t\treturn errors.New(msg)\n\t\t}\n\t\treturn &sqlerr.Error{\n\t\t\tMessage: \"syntax error\",\n\t\t\tErr:     errors.New(out[3]),\n\t\t\tLine:    line,\n\t\t\tColumn:  col,\n\t\t}\n\t}\n\treturn errors.New(msg)\n}\n\nfunc (p *Parser) Parse(r io.Reader) ([]ast.Statement, error) {\n\tblob, err := io.ReadAll(r)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tstmtNodes, _, err := p.pingcap.Parse(string(blob), \"\", \"\")\n\tif err != nil {\n\t\treturn nil, normalizeErr(err)\n\t}\n\tvar stmts []ast.Statement\n\tfor i := range stmtNodes {\n\t\tconverter := &cc{}\n\t\tout := converter.convert(stmtNodes[i])\n\t\tif _, ok := out.(*ast.TODO); ok {\n\t\t\tcontinue\n\t\t}\n\n\t\t// TODO: Attach the text directly to the ast.Statement node\n\t\ttext := stmtNodes[i].Text()\n\t\tloc := strings.Index(string(blob), text)\n\n\t\tstmtLen := len(text)\n\t\tif text[stmtLen-1] == ';' {\n\t\t\tstmtLen -= 1 // Subtract one to remove semicolon\n\t\t}\n\n\t\tstmts = append(stmts, ast.Statement{\n\t\t\tRaw: &ast.RawStmt{\n\t\t\t\tStmt:         out,\n\t\t\t\tStmtLocation: loc,\n\t\t\t\tStmtLen:      stmtLen,\n\t\t\t},\n\t\t})\n\t}\n\treturn stmts, nil\n}\n\n// https://dev.mysql.com/doc/refman/8.0/en/comments.html\nfunc (p *Parser) CommentSyntax() source.CommentSyntax {\n\treturn source.CommentSyntax{\n\t\tDash:      true,\n\t\tSlashStar: true,\n\t\tHash:      true,\n\t}\n}\n"
  },
  {
    "path": "internal/engine/dolphin/reserved.go",
    "content": "package dolphin\n\nimport \"strings\"\n\n// https://dev.mysql.com/doc/refman/8.0/en/keywords.html\nfunc (p *Parser) IsReservedKeyword(s string) bool {\n\tswitch strings.ToLower(s) {\n\tcase \"accessible\":\n\tcase \"add\":\n\tcase \"all\":\n\tcase \"alter\":\n\tcase \"analyze\":\n\tcase \"and\":\n\tcase \"as\":\n\tcase \"asc\":\n\tcase \"asensitive\":\n\tcase \"before\":\n\tcase \"between\":\n\tcase \"bigint\":\n\tcase \"binary\":\n\tcase \"blob\":\n\tcase \"both\":\n\tcase \"by\":\n\tcase \"call\":\n\tcase \"cascade\":\n\tcase \"case\":\n\tcase \"change\":\n\tcase \"char\":\n\tcase \"character\":\n\tcase \"check\":\n\tcase \"collate\":\n\tcase \"column\":\n\tcase \"condition\":\n\tcase \"constraint\":\n\tcase \"continue\":\n\tcase \"convert\":\n\tcase \"create\":\n\tcase \"cross\":\n\tcase \"cube\":\n\tcase \"cume_dist\":\n\tcase \"current_date\":\n\tcase \"current_time\":\n\tcase \"current_timestamp\":\n\tcase \"current_user\":\n\tcase \"cursor\":\n\tcase \"database\":\n\tcase \"databases\":\n\tcase \"day_hour\":\n\tcase \"day_microsecond\":\n\tcase \"day_minute\":\n\tcase \"day_second\":\n\tcase \"dec\":\n\tcase \"decimal\":\n\tcase \"declare\":\n\tcase \"default\":\n\tcase \"delayed\":\n\tcase \"delete\":\n\tcase \"dense_rank\":\n\tcase \"desc\":\n\tcase \"describe\":\n\tcase \"deterministic\":\n\tcase \"distinct\":\n\tcase \"distinctrow\":\n\tcase \"div\":\n\tcase \"double\":\n\tcase \"drop\":\n\tcase \"dual\":\n\tcase \"each\":\n\tcase \"else\":\n\tcase \"elseif\":\n\tcase \"empty\":\n\tcase \"enclosed\":\n\tcase \"escaped\":\n\tcase \"except\":\n\tcase \"exists\":\n\tcase \"exit\":\n\tcase \"explain\":\n\tcase \"false\":\n\tcase \"fetch\":\n\tcase \"first_value\":\n\tcase \"float\":\n\tcase \"float4\":\n\tcase \"float8\":\n\tcase \"for\":\n\tcase \"force\":\n\tcase \"foreign\":\n\tcase \"from\":\n\tcase \"fulltext\":\n\tcase \"function\":\n\tcase \"generated\":\n\tcase \"get\":\n\tcase \"grant\":\n\tcase \"group\":\n\tcase \"grouping\":\n\tcase \"groups\":\n\tcase \"having\":\n\tcase \"high_priority\":\n\tcase \"hour_microsecond\":\n\tcase \"hour_minute\":\n\tcase \"hour_second\":\n\tcase \"if\":\n\tcase \"ignore\":\n\tcase \"in\":\n\tcase \"index\":\n\tcase \"infile\":\n\tcase \"inner\":\n\tcase \"inout\":\n\tcase \"insensitive\":\n\tcase \"insert\":\n\tcase \"int\":\n\tcase \"int1\":\n\tcase \"int2\":\n\tcase \"int3\":\n\tcase \"int4\":\n\tcase \"int8\":\n\tcase \"integer\":\n\tcase \"interval\":\n\tcase \"into\":\n\tcase \"io_after_gtids\":\n\tcase \"io_before_gtids\":\n\tcase \"is\":\n\tcase \"iterate\":\n\tcase \"join\":\n\tcase \"json_table\":\n\tcase \"key\":\n\tcase \"keys\":\n\tcase \"kill\":\n\tcase \"lag\":\n\tcase \"last_value\":\n\tcase \"lateral\":\n\tcase \"lead\":\n\tcase \"leading\":\n\tcase \"leave\":\n\tcase \"left\":\n\tcase \"like\":\n\tcase \"limit\":\n\tcase \"linear\":\n\tcase \"lines\":\n\tcase \"load\":\n\tcase \"localtime\":\n\tcase \"localtimestamp\":\n\tcase \"lock\":\n\tcase \"long\":\n\tcase \"longblob\":\n\tcase \"longtext\":\n\tcase \"loop\":\n\tcase \"low_priority\":\n\tcase \"master_bind\":\n\tcase \"master_ssl_verify_server_cert\":\n\tcase \"match\":\n\tcase \"maxvalue\":\n\tcase \"mediumblob\":\n\tcase \"mediumint\":\n\tcase \"mediumtext\":\n\tcase \"middleint\":\n\tcase \"minute_microsecond\":\n\tcase \"minute_second\":\n\tcase \"mod\":\n\tcase \"modifies\":\n\tcase \"natural\":\n\tcase \"not\":\n\tcase \"no_write_to_binlog\":\n\tcase \"nth_value\":\n\tcase \"ntile\":\n\tcase \"null\":\n\tcase \"numeric\":\n\tcase \"of\":\n\tcase \"on\":\n\tcase \"optimize\":\n\tcase \"optimizer_costs\":\n\tcase \"option\":\n\tcase \"optionally\":\n\tcase \"or\":\n\tcase \"order\":\n\tcase \"out\":\n\tcase \"outer\":\n\tcase \"outfile\":\n\tcase \"over\":\n\tcase \"partition\":\n\tcase \"percent_rank\":\n\tcase \"precision\":\n\tcase \"primary\":\n\tcase \"procedure\":\n\tcase \"purge\":\n\tcase \"range\":\n\tcase \"rank\":\n\tcase \"read\":\n\tcase \"reads\":\n\tcase \"read_write\":\n\tcase \"real\":\n\tcase \"recursive\":\n\tcase \"references\":\n\tcase \"regexp\":\n\tcase \"release\":\n\tcase \"rename\":\n\tcase \"repeat\":\n\tcase \"replace\":\n\tcase \"require\":\n\tcase \"resignal\":\n\tcase \"restrict\":\n\tcase \"return\":\n\tcase \"revoke\":\n\tcase \"right\":\n\tcase \"rlike\":\n\tcase \"row\":\n\tcase \"rows\":\n\tcase \"row_number\":\n\tcase \"schema\":\n\tcase \"schemas\":\n\tcase \"second_microsecond\":\n\tcase \"select\":\n\tcase \"sensitive\":\n\tcase \"separator\":\n\tcase \"set\":\n\tcase \"show\":\n\tcase \"signal\":\n\tcase \"smallint\":\n\tcase \"spatial\":\n\tcase \"specific\":\n\tcase \"sql\":\n\tcase \"sqlexception\":\n\tcase \"sqlstate\":\n\tcase \"sqlwarning\":\n\tcase \"sql_big_result\":\n\tcase \"sql_calc_found_rows\":\n\tcase \"sql_small_result\":\n\tcase \"ssl\":\n\tcase \"starting\":\n\tcase \"stored\":\n\tcase \"straight_join\":\n\tcase \"system\":\n\tcase \"table\":\n\tcase \"terminated\":\n\tcase \"then\":\n\tcase \"tinyblob\":\n\tcase \"tinyint\":\n\tcase \"tinytext\":\n\tcase \"to\":\n\tcase \"trailing\":\n\tcase \"trigger\":\n\tcase \"true\":\n\tcase \"undo\":\n\tcase \"union\":\n\tcase \"unique\":\n\tcase \"unlock\":\n\tcase \"unsigned\":\n\tcase \"update\":\n\tcase \"usage\":\n\tcase \"use\":\n\tcase \"using\":\n\tcase \"utc_date\":\n\tcase \"utc_time\":\n\tcase \"utc_timestamp\":\n\tcase \"values\":\n\tcase \"varbinary\":\n\tcase \"varchar\":\n\tcase \"varcharacter\":\n\tcase \"varying\":\n\tcase \"virtual\":\n\tcase \"when\":\n\tcase \"where\":\n\tcase \"while\":\n\tcase \"window\":\n\tcase \"with\":\n\tcase \"write\":\n\tcase \"xor\":\n\tcase \"year_month\":\n\tcase \"zerofill\":\n\tdefault:\n\t\treturn false\n\t}\n\treturn true\n}\n"
  },
  {
    "path": "internal/engine/dolphin/stdlib.go",
    "content": "package dolphin\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nfunc defaultSchema(name string) *catalog.Schema {\n\ts := &catalog.Schema{Name: name}\n\ts.Funcs = []*catalog.Function{\n\t\t{\n\t\t\tName: \"ABS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"tinyint\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"tinyint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ABS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ABS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"mediumint\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"mediumint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ABS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ABS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ABS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ABS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ACOS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ADDDATE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ADDTIME\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"time\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"time\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"time\"},\n\t\t},\n\t\t{\n\t\t\tName: \"AES_DECRYPT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"AES_DECRYPT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"AES_ENCRYPT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"binary\"},\n\t\t},\n\t\t{\n\t\t\tName: \"AES_ENCRYPT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"binary\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ANY_VALUE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ASCII\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ASIN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ATAN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ATAN2\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"AVG\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"BENCHMARK\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"BIN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"BIN_TO_UUID\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"BIN_TO_UUID\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"tinyint\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"BIT_AND\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"BIT_COUNT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"BIT_LENGTH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"BIT_OR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"BIT_XOR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CAST\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CEIL\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CEIL\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CEILING\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CEILING\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CHAR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CHARACTER_LENGTH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CHARSET\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CHAR_LENGTH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"COERCIBILITY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"COLLATION\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"COMPRESS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"binary\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CONCAT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CONCAT_WS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"CONNECTION_ID\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CONV\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CONVERT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CONVERT_TZ\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"datetime\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\t\t{\n\t\t\tName: \"COS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"COT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"COUNT\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"COUNT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CRC32\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"CUME_DIST\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"CURDATE\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"CURRENT_DATE\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"CURRENT_ROLE\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"CURRENT_TIME\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"time\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CURRENT_TIME\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"time\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"CURRENT_TIMESTAMP\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CURRENT_TIMESTAMP\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"CURRENT_USER\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"CURTIME\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"time\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CURTIME\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"time\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"DATABASE\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DATE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"datetime\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DATEDIFF\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"datetime\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"datetime\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DATE_ADD\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t\t},\n\t\t{\n\t\t\t// DATE_ADD with INTERVAL expression (2 args)\n\t\t\tName: \"DATE_ADD\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DATE_ADD_INTERVAL\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DATE_FORMAT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DATE_SUB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t\t},\n\t\t{\n\t\t\t// DATE_SUB with INTERVAL expression (2 args)\n\t\t\tName: \"DATE_SUB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DATE_SUB_INTERVAL\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DAY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DAYNAME\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DAYOFMONTH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DAYOFWEEK\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DAYOFYEAR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DEFAULT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DEGREES\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"DENSE_RANK\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DISTINCT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ELT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"EXP\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"EXPORT_SET\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"EXPORT_SET\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"EXPORT_SET\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"EXTRACT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"EXTRACTVALUE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"FIELD\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"FIND_IN_SET\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"FIRST_VALUE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"FLOOR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"FORMAT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"FORMAT_BYTES\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"FORMAT_PICO_TIME\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"time\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"FOUND_ROWS\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"FROM_BASE64\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"FROM_DAYS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t\t},\n\t\t{\n\t\t\tName: \"FROM_UNIXTIME\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"FROM_UNIXTIME\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"GEOMCOLLECTION\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"GEOMETRYCOLLECTION\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"GET_FORMAT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"GET_LOCK\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"GREATEST\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"GROUPING\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"GROUP_CONCAT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"text\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"GTID_SUBSET\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"GTID_SUBTRACT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"HEX\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"HEX\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"HOUR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"time\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"ICU_VERSION\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"IF\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"IFNULL\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"INET6_ATON\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"binary\"},\n\t\t},\n\t\t{\n\t\t\tName: \"INET6_NTOA\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"INET_ATON\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"INET_NTOA\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"INSERT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"INSTR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"INTERVAL\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ISNULL\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"IS_FREE_LOCK\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"IS_IPV4\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"IS_IPV4_COMPAT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"IS_IPV4_MAPPED\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"IS_IPV6\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"IS_USED_LOCK\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"IS_UUID\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_ARRAY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_ARRAYAGG\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_ARRAY_APPEND\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_ARRAY_INSERT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_CONTAINS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_CONTAINS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_CONTAINS_PATH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_DEPTH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_EXTRACT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_INSERT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_KEYS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_KEYS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_LENGTH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_LENGTH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_MERGE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_MERGE_PATCH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_MERGE_PRESERVE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_OBJECT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_OBJECTAGG\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_OVERLAPS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_PRETTY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_QUOTE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_REMOVE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_REPLACE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_SCHEMA_VALID\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_SCHEMA_VALIDATION_REPORT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_SEARCH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_SEARCH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_SET\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_STORAGE_FREE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_STORAGE_SIZE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_TYPE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_UNQUOTE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_VALID\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"JSON_VALUE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LAG\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"int\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LAST_DAY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"LAST_INSERT_ID\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LAST_INSERT_ID\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LAST_VALUE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LCASE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LEAD\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"int\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LEAST\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LEFT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LENGTH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LINESTRING\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LOAD_FILE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"LOCALTIME\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LOCALTIME\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\n\t\t{\n\t\t\tName:       \"LOCALTIMESTAMP\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LOCALTIMESTAMP\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LOCATE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LOCATE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LOG\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LOG\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LOG10\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LOG2\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LOWER\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LPAD\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LTRIM\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MAKEDATE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MAKETIME\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"time\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MAKE_SET\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MASTER_POS_WAIT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MASTER_POS_WAIT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MASTER_POS_WAIT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MAX\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MBRCONTAINS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MBRCOVEREDBY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MBRCOVERS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MBRDISJOINT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MBREQUALS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MBRINTERSECTS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MBROVERLAPS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MBRTOUCHES\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MBRWITHIN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MD5\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MICROSECOND\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"time\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MID\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MIN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MINUTE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"time\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MOD\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MONTH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MONTHNAME\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MULTILINESTRING\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MULTIPOINT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MULTIPOLYGON\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"NAME_CONST\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"NOW\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\t\t{\n\t\t\tName: \"NEXTVAL\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"NOW\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\t\t{\n\t\t\tName: \"NTH_VALUE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"NTILE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"NULLIF\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"OCT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"OCTET_LENGTH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ORD\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"PERCENT_RANK\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"PERIOD_ADD\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"PERIOD_DIFF\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"PI\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"POINT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"POLYGON\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"POSITION\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"POW\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"POWER\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"PS_CURRENT_THREAD_ID\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"PS_THREAD_ID\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"QUARTER\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"QUOTE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"RADIANS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"RAND\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"RAND\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"RANDOM_BYTES\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"binary\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"RANK\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"REGEXP_INSTR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"int\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"int\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"int\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"text\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"REGEXP_LIKE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"text\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"REGEXP_REPLACE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"int\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"int\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"text\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"REGEXP_SUBSTR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"int\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"int\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"text\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"RELEASE_ALL_LOCKS\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"RELEASE_LOCK\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"REPEAT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"REPLACE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"REVERSE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"RIGHT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"ROLES_GRAPHML\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ROUND\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ROUND\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"ROW_COUNT\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"ROW_NUMBER\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"RPAD\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"RTRIM\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"SCHEMA\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SECOND\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"time\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SEC_TO_TIME\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"time\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"SESSION_USER\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SHA\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SHA1\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SHA2\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SIGN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SIN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SLEEP\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SOUNDEX\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SPACE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SQRT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"STATEMENT_DIGEST\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"STATEMENT_DIGEST_TEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"STD\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"STDDEV\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"STDDEV_POP\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"STDDEV_SAMP\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"STRCMP\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"tinyint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"STR_TO_DATE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_AREA\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ASBINARY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"binary\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ASBINARY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"binary\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ASGEOJSON\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ASGEOJSON\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ASGEOJSON\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"tinyint\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ASTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ASTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ASWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"binary\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ASWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"binary\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ASWKT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ASWKT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_BUFFER\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_BUFFER\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_BUFFER\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_BUFFER\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_BUFFER_STRATEGY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"binary\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_BUFFER_STRATEGY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"binary\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_CENTROID\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_CONTAINS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_CONVEXHULL\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_CROSSES\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_DIFFERENCE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_DIMENSION\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"tinyint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_DISJOINT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_DISTANCE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_DISTANCE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_DISTANCE_SPHERE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_DISTANCE_SPHERE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ENDPOINT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ENVELOPE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_EQUALS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_EXTERIORRING\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_FRECHET_DISTANCE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_FRECHET_DISTANCE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOHASH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOHASH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMCOLLFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMCOLLFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMCOLLFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMCOLLFROMTXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMCOLLFROMTXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMCOLLFROMTXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMCOLLFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMCOLLFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMCOLLFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMETRYCOLLECTIONFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMETRYCOLLECTIONFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMETRYCOLLECTIONFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMETRYCOLLECTIONFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMETRYCOLLECTIONFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMETRYCOLLECTIONFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMETRYFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMETRYFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMETRYFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMETRYFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMETRYFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMETRYFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMETRYN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMETRYTYPE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMFROMGEOJSON\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMFROMGEOJSON\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"tinyint\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMFROMGEOJSON\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"tinyint\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_GEOMFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_HAUSDORFF_DISTANCE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_HAUSDORFF_DISTANCE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\n\t\t{\n\t\t\tName: \"ST_INTERIORRINGN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_INTERSECTION\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_INTERSECTS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ISCLOSED\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ISEMPTY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ISSIMPLE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_ISVALID\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LATFROMGEOHASH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LATITUDE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LATITUDE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LENGTH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LENGTH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LINEFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LINEFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LINEFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LINEFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LINEFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LINEFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LINEINTERPOLATEPOINT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LINEINTERPOLATEPOINTS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LINESTRINGFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LINESTRINGFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LINESTRINGFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LINESTRINGFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LINESTRINGFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LINESTRINGFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LONGFROMGEOHASH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LONGITUDE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_LONGITUDE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MAKEENVELOPE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MLINEFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MLINEFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MLINEFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MLINEFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MLINEFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MLINEFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MPOINTFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MPOINTFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MPOINTFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MPOINTFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MPOINTFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MPOINTFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MPOLYFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MPOLYFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MPOLYFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MPOLYFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MPOLYFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MPOLYFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTILINESTRINGFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTILINESTRINGFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTILINESTRINGFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTILINESTRINGFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTILINESTRINGFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTILINESTRINGFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTIPOINTFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTIPOINTFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTIPOINTFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTIPOINTFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTIPOINTFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTIPOINTFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTIPOLYGONFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTIPOLYGONFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTIPOLYGONFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTIPOLYGONFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTIPOLYGONFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_MULTIPOLYGONFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_NUMGEOMETRIES\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_NUMINTERIORRING\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_NUMINTERIORRINGS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_NUMPOINTS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_OVERLAPS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POINTATDISTANCE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POINTFROMGEOHASH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POINTFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POINTFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POINTFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POINTFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POINTFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POINTFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POINTN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POLYFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POLYFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POLYFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POLYFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POLYFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POLYFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POLYGONFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POLYGONFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POLYGONFROMTEXT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POLYGONFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POLYGONFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_POLYGONFROMWKB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_SIMPLIFY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_SRID\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_SRID\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_STARTPOINT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_SWAPXY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_SYMDIFFERENCE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_TOUCHES\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_TRANSFORM\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_UNION\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_VALIDATE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_WITHIN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_X\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_X\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_Y\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ST_Y\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SUBDATE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SUBSTR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SUBSTR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SUBSTRING\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SUBSTRING\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SUBSTRING_INDEX\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SUBTIME\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"time\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"time\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"time\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SUM\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"SYSDATE\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SYSDATE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"SYSTEM_USER\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TAN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TIME\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"datetime\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"time\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TIMEDIFF\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"time\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"time\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"time\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TIMESTAMP\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"datetime\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TIMESTAMP\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"datetime\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"datetime\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TIMESTAMPADD\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"datetime\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TIMESTAMPDIFF\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"datetime\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"datetime\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TIME_FORMAT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"time\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TIME_TO_SEC\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"time\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TO_BASE64\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TO_DAYS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TO_SECONDS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"datetime\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TRIM\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TRIM\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TRUNCATE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"UCASE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"UNCOMPRESS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"UNCOMPRESSED_LENGTH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"binary\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"UNHEX\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tName:       \"UNIX_TIMESTAMP\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"UNIX_TIMESTAMP\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"datetime\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"UPDATEXML\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"UPPER\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"USER\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"UTC_DATE\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"UTC_TIME\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"time\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"UTC_TIMESTAMP\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"datetime\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"UUID\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"UUID_SHORT\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t\t},\n\t\t{\n\t\t\tName: \"UUID_TO_BIN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"binary\"},\n\t\t},\n\t\t{\n\t\t\tName: \"UUID_TO_BIN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"tinyint\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"binary\"},\n\t\t},\n\t\t{\n\t\t\tName: \"VALIDATE_PASSWORD_STRENGTH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"VALUES\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"VARIANCE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"VAR_POP\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"VAR_SAMP\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"VERSION\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"WAIT_FOR_EXECUTED_GTID_SET\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"int\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"int\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType:       &ast.TypeName{Name: \"text\"},\n\t\t\t\t\tHasDefault: true,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"bool\"},\n\t\t},\n\t\t{\n\t\t\tName: \"WEEK\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"WEEK\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"WEEKDAY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"WEEKOFYEAR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"WEIGHT_STRING\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t\t},\n\t\t{\n\t\t\tName: \"YEAR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t\t{\n\t\t\tName: \"YEARWEEK\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"int\"},\n\t\t},\n\t}\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/dolphin/utils.go",
    "content": "package dolphin\n\nimport (\n\tpcast \"github.com/pingcap/tidb/pkg/parser/ast\"\n\t\"github.com/pingcap/tidb/pkg/parser/mysql\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\nfunc parseTableName(n *pcast.TableName) *ast.TableName {\n\treturn &ast.TableName{\n\t\tSchema: identifier(n.Schema.String()),\n\t\tName:   identifier(n.Name.String()),\n\t}\n}\n\nfunc toList(node pcast.Node) *ast.List {\n\tvar items []ast.Node\n\tswitch n := node.(type) {\n\tcase *pcast.TableName:\n\t\tif schema := n.Schema.String(); schema != \"\" {\n\t\t\titems = append(items, NewIdentifier(schema))\n\t\t}\n\t\titems = append(items, NewIdentifier(n.Name.String()))\n\tdefault:\n\t\treturn nil\n\t}\n\treturn &ast.List{Items: items}\n}\n\nfunc isNotNull(n *pcast.ColumnDef) bool {\n\tfor i := range n.Options {\n\t\tif n.Options[i].Tp == pcast.ColumnOptionNotNull {\n\t\t\treturn true\n\t\t}\n\t\tif n.Options[i].Tp == pcast.ColumnOptionPrimaryKey {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\nfunc convertToRangeVarList(list *ast.List, result *ast.List) {\n\tif len(list.Items) == 0 {\n\t\treturn\n\t}\n\tswitch rel := list.Items[0].(type) {\n\n\t// Special case for joins in updates\n\tcase *ast.JoinExpr:\n\t\tleft, ok := rel.Larg.(*ast.RangeVar)\n\t\tif !ok {\n\t\t\tif list, check := rel.Larg.(*ast.List); check {\n\t\t\t\tconvertToRangeVarList(list, result)\n\t\t\t} else if subselect, check := rel.Larg.(*ast.RangeSubselect); check {\n\t\t\t\t// Handle subqueries in JOIN clauses\n\t\t\t\tresult.Items = append(result.Items, subselect)\n\t\t\t} else {\n\t\t\t\tpanic(\"expected range var\")\n\t\t\t}\n\t\t}\n\t\tif left != nil {\n\t\t\tresult.Items = append(result.Items, left)\n\t\t}\n\n\t\tright, ok := rel.Rarg.(*ast.RangeVar)\n\t\tif !ok {\n\t\t\tif list, check := rel.Rarg.(*ast.List); check {\n\t\t\t\tconvertToRangeVarList(list, result)\n\t\t\t} else if subselect, check := rel.Rarg.(*ast.RangeSubselect); check {\n\t\t\t\t// Handle subqueries in JOIN clauses\n\t\t\t\tresult.Items = append(result.Items, subselect)\n\t\t\t} else {\n\t\t\t\tpanic(\"expected range var\")\n\t\t\t}\n\t\t}\n\t\tif right != nil {\n\t\t\tresult.Items = append(result.Items, right)\n\t\t}\n\n\tcase *ast.RangeVar:\n\t\tresult.Items = append(result.Items, rel)\n\n\tcase *ast.RangeSubselect:\n\t\tresult.Items = append(result.Items, rel)\n\n\tdefault:\n\t\tpanic(\"expected range var\")\n\t}\n}\n\nfunc isUnsigned(n *pcast.ColumnDef) bool {\n\treturn mysql.HasUnsignedFlag(n.Tp.GetFlag())\n}\n"
  },
  {
    "path": "internal/engine/postgresql/analyzer/analyze.go",
    "content": "package analyzer\n\nimport (\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"strings\"\n\t\"sync\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgconn\"\n\t\"github.com/jackc/pgx/v5/pgxpool\"\n\n\tcore \"github.com/sqlc-dev/sqlc/internal/analysis\"\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/dbmanager\"\n\t\"github.com/sqlc-dev/sqlc/internal/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/shfmt\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/named\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\ntype Analyzer struct {\n\tdb       config.Database\n\tclient   dbmanager.Client\n\tpool     *pgxpool.Pool\n\tdbg      opts.Debug\n\treplacer *shfmt.Replacer\n\tformats  sync.Map\n\tcolumns  sync.Map\n\ttables   sync.Map\n}\n\nfunc New(client dbmanager.Client, db config.Database) *Analyzer {\n\treturn &Analyzer{\n\t\tdb:       db,\n\t\tdbg:      opts.DebugFromEnv(),\n\t\tclient:   client,\n\t\treplacer: shfmt.NewReplacer(nil),\n\t}\n}\n\nconst columnQuery = `\nSELECT\n    pg_catalog.format_type(pg_attribute.atttypid, pg_attribute.atttypmod) AS data_type,\n\tpg_attribute.attnotnull as not_null,\n\tpg_attribute.attndims as array_dims\nFROM\n    pg_catalog.pg_attribute\nWHERE\n    attrelid = $1\n\tAND attnum = $2;\n`\n\nconst tableQuery = `\nSELECT\n    pg_class.relname as table_name,\n    pg_namespace.nspname as schema_name\nFROM\n    pg_catalog.pg_class \nJOIN\n    pg_catalog.pg_namespace ON pg_namespace.oid = pg_class.relnamespace\nWHERE\n    pg_class.oid = $1;\n`\n\ntype pgTable struct {\n\tTableName  string `db:\"table_name\"`\n\tSchemaName string `db:\"schema_name\"`\n}\n\n// Cache these types in memory\nfunc (a *Analyzer) tableInfo(ctx context.Context, oid uint32) (*pgTable, error) {\n\tctbl, ok := a.tables.Load(oid)\n\tif ok {\n\t\treturn ctbl.(*pgTable), nil\n\t}\n\trows, err := a.pool.Query(ctx, tableQuery, oid)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\ttbl, err := pgx.CollectOneRow(rows, pgx.RowToStructByName[pgTable])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\ta.tables.Store(oid, &tbl)\n\treturn &tbl, nil\n}\n\ntype pgColumn struct {\n\tDataType  string `db:\"data_type\"`\n\tNotNull   bool   `db:\"not_null\"`\n\tArrayDims int    `db:\"array_dims\"`\n}\n\ntype columnKey struct {\n\tOID  uint32\n\tAttr uint16\n}\n\n// Cache these types in memory\nfunc (a *Analyzer) columnInfo(ctx context.Context, field pgconn.FieldDescription) (*pgColumn, error) {\n\tkey := columnKey{field.TableOID, field.TableAttributeNumber}\n\tcinfo, ok := a.columns.Load(key)\n\tif ok {\n\t\treturn cinfo.(*pgColumn), nil\n\t}\n\trows, err := a.pool.Query(ctx, columnQuery, field.TableOID, int16(field.TableAttributeNumber))\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tcol, err := pgx.CollectOneRow(rows, pgx.RowToStructByName[pgColumn])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\ta.columns.Store(key, &col)\n\treturn &col, nil\n}\n\ntype formatKey struct {\n\tOID      uint32\n\tModified int32\n}\n\n// TODO: Use PGX to do the lookup for basic OID types\nfunc (a *Analyzer) formatType(ctx context.Context, oid uint32, modifier int32) (string, error) {\n\tkey := formatKey{oid, modifier}\n\tftyp, ok := a.formats.Load(key)\n\tif ok {\n\t\treturn ftyp.(string), nil\n\t}\n\trows, err := a.pool.Query(ctx, `SELECT format_type($1, $2)`, oid, modifier)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tdt, err := pgx.CollectOneRow(rows, pgx.RowTo[string])\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\ta.formats.Store(key, dt)\n\treturn dt, err\n}\n\n// TODO: This is bad\nfunc rewriteType(dt string) string {\n\tswitch {\n\tcase strings.HasPrefix(dt, \"character(\"):\n\t\treturn \"pg_catalog.bpchar\"\n\tcase strings.HasPrefix(dt, \"character varying\"):\n\t\treturn \"pg_catalog.varchar\"\n\tcase strings.HasPrefix(dt, \"bit varying\"):\n\t\treturn \"pg_catalog.varbit\"\n\tcase strings.HasPrefix(dt, \"bit(\"):\n\t\treturn \"pg_catalog.bit\"\n\t}\n\tswitch dt {\n\tcase \"bpchar\":\n\t\treturn \"pg_catalog.bpchar\"\n\tcase \"timestamp without time zone\":\n\t\treturn \"pg_catalog.timestamp\"\n\tcase \"timestamp with time zone\":\n\t\treturn \"pg_catalog.timestamptz\"\n\tcase \"time without time zone\":\n\t\treturn \"pg_catalog.time\"\n\tcase \"time with time zone\":\n\t\treturn \"pg_catalog.timetz\"\n\t}\n\treturn dt\n}\n\nfunc parseType(dt string) (string, bool, int) {\n\tsize := 0\n\tfor {\n\t\ttrimmed := strings.TrimSuffix(dt, \"[]\")\n\t\tif trimmed == dt {\n\t\t\treturn rewriteType(dt), size > 0, size\n\t\t}\n\t\tsize += 1\n\t\tdt = trimmed\n\t}\n}\n\n// Don't create a database per query\nfunc (a *Analyzer) Analyze(ctx context.Context, n ast.Node, query string, migrations []string, ps *named.ParamSet) (*core.Analysis, error) {\n\textractSqlErr := func(e error) error {\n\t\tvar pgErr *pgconn.PgError\n\t\tif errors.As(e, &pgErr) {\n\t\t\treturn &sqlerr.Error{\n\t\t\t\tCode:     pgErr.Code,\n\t\t\t\tMessage:  pgErr.Message,\n\t\t\t\tLocation: max(n.Pos()+int(pgErr.Position)-1, 0),\n\t\t\t}\n\t\t}\n\t\treturn e\n\t}\n\n\tif a.pool == nil {\n\t\tvar uri string\n\t\tif a.db.Managed {\n\t\t\tif a.client == nil {\n\t\t\t\treturn nil, fmt.Errorf(\"client is nil\")\n\t\t\t}\n\t\t\tedb, err := a.client.CreateDatabase(ctx, &dbmanager.CreateDatabaseRequest{\n\t\t\t\tEngine:     \"postgresql\",\n\t\t\t\tMigrations: migrations,\n\t\t\t})\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\turi = edb.Uri\n\t\t} else if a.dbg.OnlyManagedDatabases {\n\t\t\treturn nil, fmt.Errorf(\"database: connections disabled via SQLCDEBUG=databases=managed\")\n\t\t} else {\n\t\t\turi = a.replacer.Replace(a.db.URI)\n\t\t}\n\t\tconf, err := pgxpool.ParseConfig(uri)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tpool, err := pgxpool.NewWithConfig(ctx, conf)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\ta.pool = pool\n\t}\n\n\tc, err := a.pool.Acquire(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer c.Release()\n\n\t// TODO: Pick a random name\n\tdesc, err := c.Conn().Prepare(ctx, \"foo\", query)\n\tif err != nil {\n\t\treturn nil, extractSqlErr(err)\n\t}\n\n\tif err := c.Conn().Deallocate(ctx, \"foo\"); err != nil {\n\t\treturn nil, err\n\t}\n\n\tvar result core.Analysis\n\tfor _, field := range desc.Fields {\n\t\tif field.TableOID > 0 {\n\t\t\tcol, err := a.columnInfo(ctx, field)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\t// debug.Dump(i, field, col)\n\t\t\ttbl, err := a.tableInfo(ctx, field.TableOID)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tdt, isArray, dims := parseType(col.DataType)\n\t\t\tnotNull := col.NotNull\n\t\t\tname := field.Name\n\t\t\tresult.Columns = append(result.Columns, &core.Column{\n\t\t\t\tName:         name,\n\t\t\t\tOriginalName: field.Name,\n\t\t\t\tDataType:     dt,\n\t\t\t\tNotNull:      notNull,\n\t\t\t\tIsArray:      isArray,\n\t\t\t\tArrayDims:    int32(max(col.ArrayDims, dims)),\n\t\t\t\tTable: &core.Identifier{\n\t\t\t\t\tSchema: tbl.SchemaName,\n\t\t\t\t\tName:   tbl.TableName,\n\t\t\t\t},\n\t\t\t})\n\t\t} else {\n\t\t\tdataType, err := a.formatType(ctx, field.DataTypeOID, field.TypeModifier)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\t// debug.Dump(i, field, dataType)\n\t\t\tnotNull := false\n\t\t\tname := field.Name\n\t\t\tdt, isArray, dims := parseType(dataType)\n\t\t\tresult.Columns = append(result.Columns, &core.Column{\n\t\t\t\tName:         name,\n\t\t\t\tOriginalName: field.Name,\n\t\t\t\tDataType:     dt,\n\t\t\t\tNotNull:      notNull,\n\t\t\t\tIsArray:      isArray,\n\t\t\t\tArrayDims:    int32(dims),\n\t\t\t})\n\t\t}\n\t}\n\n\tfor i, oid := range desc.ParamOIDs {\n\t\tdataType, err := a.formatType(ctx, oid, -1)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tnotNull := false\n\t\tdt, isArray, dims := parseType(dataType)\n\t\tname := \"\"\n\t\tif ps != nil {\n\t\t\tname, _ = ps.NameFor(i + 1)\n\t\t}\n\t\tresult.Params = append(result.Params, &core.Parameter{\n\t\t\tNumber: int32(i + 1),\n\t\t\tColumn: &core.Column{\n\t\t\t\tName:      name,\n\t\t\t\tDataType:  dt,\n\t\t\t\tIsArray:   isArray,\n\t\t\t\tArrayDims: int32(dims),\n\t\t\t\tNotNull:   notNull,\n\t\t\t},\n\t\t})\n\t}\n\n\treturn &result, nil\n}\n\nfunc (a *Analyzer) Close(_ context.Context) error {\n\tif a.pool != nil {\n\t\ta.pool.Close()\n\t}\n\treturn nil\n}\n\n// SQL queries for schema introspection\nconst introspectTablesQuery = `\nSELECT\n    n.nspname AS schema_name,\n    c.relname AS table_name,\n    a.attname AS column_name,\n    pg_catalog.format_type(a.atttypid, a.atttypmod) AS data_type,\n    a.attnotnull AS not_null,\n    a.attndims AS array_dims,\n    COALESCE(\n        (SELECT true FROM pg_index i\n         WHERE i.indrelid = c.oid\n         AND i.indisprimary\n         AND a.attnum = ANY(i.indkey)),\n        false\n    ) AS is_primary_key\nFROM\n    pg_catalog.pg_class c\nJOIN\n    pg_catalog.pg_namespace n ON n.oid = c.relnamespace\nJOIN\n    pg_catalog.pg_attribute a ON a.attrelid = c.oid\nWHERE\n    c.relkind IN ('r', 'v', 'p')  -- tables, views, partitioned tables\n    AND a.attnum > 0  -- skip system columns\n    AND NOT a.attisdropped\n    AND n.nspname = ANY($1)\nORDER BY\n    n.nspname, c.relname, a.attnum\n`\n\nconst introspectEnumsQuery = `\nSELECT\n    n.nspname AS schema_name,\n    t.typname AS type_name,\n    e.enumlabel AS enum_value\nFROM\n    pg_catalog.pg_type t\nJOIN\n    pg_catalog.pg_namespace n ON n.oid = t.typnamespace\nJOIN\n    pg_catalog.pg_enum e ON e.enumtypid = t.oid\nWHERE\n    t.typtype = 'e'\n    AND n.nspname = ANY($1)\nORDER BY\n    n.nspname, t.typname, e.enumsortorder\n`\n\ntype introspectedColumn struct {\n\tSchemaName   string `db:\"schema_name\"`\n\tTableName    string `db:\"table_name\"`\n\tColumnName   string `db:\"column_name\"`\n\tDataType     string `db:\"data_type\"`\n\tNotNull      bool   `db:\"not_null\"`\n\tArrayDims    int    `db:\"array_dims\"`\n\tIsPrimaryKey bool   `db:\"is_primary_key\"`\n}\n\ntype introspectedEnum struct {\n\tSchemaName string `db:\"schema_name\"`\n\tTypeName   string `db:\"type_name\"`\n\tEnumValue  string `db:\"enum_value\"`\n}\n\n// IntrospectSchema queries the database to build a catalog containing\n// tables, columns, and enum types for the specified schemas.\nfunc (a *Analyzer) IntrospectSchema(ctx context.Context, schemas []string) (*catalog.Catalog, error) {\n\tif a.pool == nil {\n\t\treturn nil, fmt.Errorf(\"database connection not initialized\")\n\t}\n\n\tc, err := a.pool.Acquire(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer c.Release()\n\n\t// Query tables and columns\n\trows, err := c.Query(ctx, introspectTablesQuery, schemas)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"introspect tables: %w\", err)\n\t}\n\tcolumns, err := pgx.CollectRows(rows, pgx.RowToStructByName[introspectedColumn])\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"collect table rows: %w\", err)\n\t}\n\n\t// Query enums\n\tenumRows, err := c.Query(ctx, introspectEnumsQuery, schemas)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"introspect enums: %w\", err)\n\t}\n\tenums, err := pgx.CollectRows(enumRows, pgx.RowToStructByName[introspectedEnum])\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"collect enum rows: %w\", err)\n\t}\n\n\t// Build catalog\n\tcat := &catalog.Catalog{\n\t\tDefaultSchema: \"public\",\n\t\tSearchPath:    schemas,\n\t}\n\n\t// Create schema map for quick lookup\n\tschemaMap := make(map[string]*catalog.Schema)\n\tfor _, schemaName := range schemas {\n\t\tschema := &catalog.Schema{Name: schemaName}\n\t\tcat.Schemas = append(cat.Schemas, schema)\n\t\tschemaMap[schemaName] = schema\n\t}\n\n\t// Group columns by table\n\ttableMap := make(map[string]*catalog.Table)\n\tfor _, col := range columns {\n\t\tkey := col.SchemaName + \".\" + col.TableName\n\t\ttbl, exists := tableMap[key]\n\t\tif !exists {\n\t\t\ttbl = &catalog.Table{\n\t\t\t\tRel: &ast.TableName{\n\t\t\t\t\tSchema: col.SchemaName,\n\t\t\t\t\tName:   col.TableName,\n\t\t\t\t},\n\t\t\t}\n\t\t\ttableMap[key] = tbl\n\t\t\tif schema, ok := schemaMap[col.SchemaName]; ok {\n\t\t\t\tschema.Tables = append(schema.Tables, tbl)\n\t\t\t}\n\t\t}\n\n\t\tdt, isArray, dims := parseType(col.DataType)\n\t\ttbl.Columns = append(tbl.Columns, &catalog.Column{\n\t\t\tName:      col.ColumnName,\n\t\t\tType:      ast.TypeName{Name: dt},\n\t\t\tIsNotNull: col.NotNull,\n\t\t\tIsArray:   isArray || col.ArrayDims > 0,\n\t\t\tArrayDims: max(dims, col.ArrayDims),\n\t\t})\n\t}\n\n\t// Group enum values by type\n\tenumMap := make(map[string]*catalog.Enum)\n\tfor _, e := range enums {\n\t\tkey := e.SchemaName + \".\" + e.TypeName\n\t\tenum, exists := enumMap[key]\n\t\tif !exists {\n\t\t\tenum = &catalog.Enum{\n\t\t\t\tName: e.TypeName,\n\t\t\t}\n\t\t\tenumMap[key] = enum\n\t\t\tif schema, ok := schemaMap[e.SchemaName]; ok {\n\t\t\t\tschema.Types = append(schema.Types, enum)\n\t\t\t}\n\t\t}\n\t\tenum.Vals = append(enum.Vals, e.EnumValue)\n\t}\n\n\treturn cat, nil\n}\n\n// EnsureConn initializes the database connection pool if not already done.\n// This is useful for database-only mode where we need to connect before analyzing queries.\nfunc (a *Analyzer) EnsureConn(ctx context.Context, migrations []string) error {\n\tif a.pool != nil {\n\t\treturn nil\n\t}\n\n\tvar uri string\n\tif a.db.Managed {\n\t\tif a.client == nil {\n\t\t\treturn fmt.Errorf(\"client is nil\")\n\t\t}\n\t\tedb, err := a.client.CreateDatabase(ctx, &dbmanager.CreateDatabaseRequest{\n\t\t\tEngine:     \"postgresql\",\n\t\t\tMigrations: migrations,\n\t\t})\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\turi = edb.Uri\n\t} else if a.dbg.OnlyManagedDatabases {\n\t\treturn fmt.Errorf(\"database: connections disabled via SQLCDEBUG=databases=managed\")\n\t} else {\n\t\turi = a.replacer.Replace(a.db.URI)\n\t}\n\n\tconf, err := pgxpool.ParseConfig(uri)\n\tif err != nil {\n\t\treturn err\n\t}\n\tpool, err := pgxpool.NewWithConfig(ctx, conf)\n\tif err != nil {\n\t\treturn err\n\t}\n\ta.pool = pool\n\treturn nil\n}\n\n// GetColumnNames implements the expander.ColumnGetter interface.\n// It prepares a query and returns the column names from the result set description.\nfunc (a *Analyzer) GetColumnNames(ctx context.Context, query string) ([]string, error) {\n\tif a.pool == nil {\n\t\treturn nil, fmt.Errorf(\"database connection not initialized\")\n\t}\n\n\tconn, err := a.pool.Acquire(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer conn.Release()\n\n\tdesc, err := conn.Conn().Prepare(ctx, \"\", query)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tcolumns := make([]string, len(desc.Fields))\n\tfor i, field := range desc.Fields {\n\t\tcolumns[i] = field.Name\n\t}\n\n\treturn columns, nil\n}\n"
  },
  {
    "path": "internal/engine/postgresql/catalog.go",
    "content": "package postgresql\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n\n// toPointer converts an int to a pointer without a temporary\n// variable at the call-site, and is used by the generated schemas\nfunc toPointer(x int) *int {\n\treturn &x\n}\n\nfunc NewCatalog() *catalog.Catalog {\n\tc := catalog.New(\"public\")\n\tc.Schemas = append(c.Schemas, pgTemp())\n\tc.Schemas = append(c.Schemas, genPGCatalog())\n\tc.Schemas = append(c.Schemas, genInformationSchema())\n\tc.SearchPath = []string{\"pg_catalog\"}\n\tc.LoadExtension = loadExtension\n\treturn c\n}\n"
  },
  {
    "path": "internal/engine/postgresql/catalog_test.go",
    "content": "package postgresql\n\nimport (\n\t\"errors\"\n\t\"strconv\"\n\t\"strings\"\n\t\"testing\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n\n\t\"github.com/google/go-cmp/cmp\"\n)\n\nfunc TestUpdateErrors(t *testing.T) {\n\tp := NewParser()\n\tfor i, tc := range []struct {\n\t\tstmt string\n\t\terr  *sqlerr.Error\n\t}{\n\t\t{\n\t\t\t`\n\t\t\tCREATE TABLE foo ();\n\t\t\tCREATE TABLE foo ();\n\t\t\t`,\n\t\t\tsqlerr.RelationExists(\"foo\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tCREATE TYPE foo AS ENUM ('bar');\n\t\t\tCREATE TYPE foo AS ENUM ('bar');\n\t\t\t`,\n\t\t\tsqlerr.TypeExists(\"foo\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tDROP TABLE foo;\n\t\t\t`,\n\t\t\tsqlerr.RelationNotFound(\"foo\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tDROP TYPE foo;\n\t\t\t`,\n\t\t\tsqlerr.TypeNotFound(\"foo\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tCREATE TABLE foo ();\n\t\t\tCREATE TABLE bar ();\n\t\t\tALTER TABLE foo RENAME TO bar;\n\t\t\t`,\n\t\t\tsqlerr.RelationExists(\"bar\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tALTER TABLE foo RENAME TO bar;\n\t\t\t`,\n\t\t\tsqlerr.RelationNotFound(\"foo\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tCREATE TABLE foo ();\n\t\t\tALTER TABLE foo ADD COLUMN bar text;\n\t\t\tALTER TABLE foo ADD COLUMN bar text;\n\t\t\t`,\n\t\t\tsqlerr.ColumnExists(\"foo\", \"bar\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tCREATE TABLE foo ();\n\t\t\tALTER TABLE foo DROP COLUMN bar;\n\t\t\t`,\n\t\t\tsqlerr.ColumnNotFound(\"foo\", \"bar\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tCREATE TABLE foo ();\n\t\t\tALTER TABLE foo ALTER COLUMN bar SET NOT NULL;\n\t\t\t`,\n\t\t\tsqlerr.ColumnNotFound(\"foo\", \"bar\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tCREATE TABLE foo ();\n\t\t\tALTER TABLE foo ALTER COLUMN bar DROP NOT NULL;\n\t\t\t`,\n\t\t\tsqlerr.ColumnNotFound(\"foo\", \"bar\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tCREATE SCHEMA foo;\n\t\t\tCREATE SCHEMA foo;\n\t\t\t`,\n\t\t\tsqlerr.SchemaExists(\"foo\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tALTER TABLE foo.baz SET SCHEMA bar;\n\t\t\t`,\n\t\t\tsqlerr.SchemaNotFound(\"foo\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tCREATE SCHEMA foo;\n\t\t\tALTER TABLE foo.baz SET SCHEMA bar;\n\t\t\t`,\n\t\t\tsqlerr.RelationNotFound(\"baz\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tCREATE SCHEMA foo;\n\t\t\tCREATE TABLE foo.baz ();\n\t\t\tALTER TABLE foo.baz SET SCHEMA bar;\n\t\t\t`,\n\t\t\tsqlerr.SchemaNotFound(\"bar\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tDROP SCHEMA bar;\n\t\t\t`,\n\t\t\tsqlerr.SchemaNotFound(\"bar\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tALTER TABLE foo RENAME bar TO baz;\n\t\t\t`,\n\t\t\tsqlerr.RelationNotFound(\"foo\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tCREATE TABLE foo ();\n\t\t\tALTER TABLE foo RENAME bar TO baz;\n\t\t\t`,\n\t\t\tsqlerr.ColumnNotFound(\"foo\", \"bar\"),\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tCREATE TABLE foo (bar text, baz text);\n\t\t\tALTER TABLE foo RENAME bar TO baz;\n\t\t\t`,\n\t\t\tsqlerr.ColumnExists(\"foo\", \"baz\"),\n\t\t},\n\t} {\n\t\ttest := tc\n\t\tt.Run(strconv.Itoa(i), func(t *testing.T) {\n\t\t\tstmts, err := p.Parse(strings.NewReader(test.stmt))\n\t\t\tif err != nil {\n\t\t\t\tt.Log(test.stmt)\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\tc := NewCatalog()\n\t\t\terr = c.Build(stmts)\n\t\t\tif err == nil {\n\t\t\t\tt.Log(test.stmt)\n\t\t\t\tt.Fatal(\"err was nil\")\n\t\t\t}\n\n\t\t\tvar actual *sqlerr.Error\n\t\t\tif !errors.As(err, &actual) {\n\t\t\t\tt.Fatalf(\"err is not *sqlerr.Error: %#v\", err)\n\t\t\t}\n\n\t\t\tif diff := cmp.Diff(test.err.Error(), actual.Error()); diff != \"\" {\n\t\t\t\tt.Log(test.stmt)\n\t\t\t\tt.Errorf(\"error mismatch: \\n%s\", diff)\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/adminpack.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsAdminpack = []*catalog.Function{\n\t{\n\t\tName: \"pg_file_rename\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_file_rename\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_file_sync\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_file_unlink\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_file_write\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"pg_logdir_ls\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n}\n\nfunc Adminpack() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsAdminpack\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/amcheck.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsAmcheck = []*catalog.Function{\n\t{\n\t\tName: \"bt_index_check\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"index\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"bt_index_check\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"index\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"heapallindexed\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"bt_index_parent_check\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"index\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"bt_index_parent_check\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"index\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"heapallindexed\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"bt_index_parent_check\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"index\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"heapallindexed\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"rootdescend\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"verify_heapam\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"relation\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"on_error_stop\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"check_toast\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"skip\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"startblock\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"endblock\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n}\n\nfunc Amcheck() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsAmcheck\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/btree_gin.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsBtreeGin = []*catalog.Function{\n\t{\n\t\tName: \"gin_enum_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"gin_numeric_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n}\n\nfunc BtreeGin() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsBtreeGin\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/btree_gist.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsBtreeGist = []*catalog.Function{\n\t{\n\t\tName: \"cash_dist\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"date_dist\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"float4_dist\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float8_dist\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"gbtreekey16_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"gbtreekey16\"},\n\t},\n\t{\n\t\tName: \"gbtreekey16_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"gbtreekey16\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"gbtreekey2_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"gbtreekey2\"},\n\t},\n\t{\n\t\tName: \"gbtreekey2_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"gbtreekey2\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"gbtreekey32_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"gbtreekey32\"},\n\t},\n\t{\n\t\tName: \"gbtreekey32_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"gbtreekey32\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"gbtreekey4_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"gbtreekey4\"},\n\t},\n\t{\n\t\tName: \"gbtreekey4_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"gbtreekey4\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"gbtreekey8_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"gbtreekey8\"},\n\t},\n\t{\n\t\tName: \"gbtreekey8_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"gbtreekey8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"gbtreekey_var_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"gbtreekey_var\"},\n\t},\n\t{\n\t\tName: \"gbtreekey_var_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"gbtreekey_var\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"int2_dist\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int4_dist\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int8_dist\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"interval_dist\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"oid_dist\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"time_dist\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"ts_dist\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"tstz_dist\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n}\n\nfunc BtreeGist() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsBtreeGist\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/citext.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsCitext = []*catalog.Function{\n\t{\n\t\tName: \"citext\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"citext\"},\n\t},\n\t{\n\t\tName: \"citext\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"citext\"},\n\t},\n\t{\n\t\tName: \"citext\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"citext\"},\n\t},\n\t{\n\t\tName: \"citext_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"citext_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"citext_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"citext_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"citext_hash\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"citext_hash_extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"citext_larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"citext\"},\n\t},\n\t{\n\t\tName: \"citext_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"citext_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"citext_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"citext_pattern_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"citext_pattern_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"citext_pattern_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"citext_pattern_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"citext_pattern_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"citext_smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"citext\"},\n\t},\n\t{\n\t\tName: \"citextin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"citext\"},\n\t},\n\t{\n\t\tName: \"citextout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"citextsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"citext\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"citext\"},\n\t},\n\t{\n\t\tName: \"regexp_match\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"regexp_match\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"regexp_matches\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"regexp_matches\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"regexp_replace\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"regexp_replace\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"regexp_split_to_array\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"regexp_split_to_array\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"regexp_split_to_table\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"regexp_split_to_table\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"replace\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"split_part\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"strpos\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"texticlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"texticlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"texticnlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"texticnlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"texticregexeq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"texticregexeq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"texticregexne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"texticregexne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"translate\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"citext\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n}\n\nfunc Citext() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsCitext\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/cube.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsCube = []*catalog.Function{\n\t{\n\t\tName: \"cube\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cube\"},\n\t},\n\t{\n\t\tName: \"cube\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cube\"},\n\t},\n\t{\n\t\tName: \"cube\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cube\"},\n\t},\n\t{\n\t\tName: \"cube\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cube\"},\n\t},\n\t{\n\t\tName: \"cube\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cube\"},\n\t},\n\t{\n\t\tName: \"cube\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cube\"},\n\t},\n\t{\n\t\tName: \"cube_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"cube_contained\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cube_contains\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cube_coord\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"cube_coord_llur\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"cube_dim\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"cube_distance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"cube_enlarge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cube\"},\n\t},\n\t{\n\t\tName: \"cube_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cube_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cube_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cube_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cube\"},\n\t},\n\t{\n\t\tName: \"cube_inter\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cube\"},\n\t},\n\t{\n\t\tName: \"cube_is_point\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cube_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cube_ll_coord\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"cube_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cube_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cube_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"cube_overlap\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cube_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"cube_size\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"cube_subset\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cube\"},\n\t},\n\t{\n\t\tName: \"cube_union\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cube\"},\n\t},\n\t{\n\t\tName: \"cube_ur_coord\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"distance_chebyshev\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"distance_taxicab\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cube\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n}\n\nfunc Cube() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsCube\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/dblink.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsDblink = []*catalog.Function{\n\t{\n\t\tName: \"dblink\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"dblink\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"dblink\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"dblink\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"dblink_build_sql_delete\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"int2vector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_build_sql_insert\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"int2vector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_build_sql_update\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"int2vector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_cancel_query\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_close\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_close\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_close\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_close\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_connect\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_connect\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_connect_u\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_connect_u\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName:       \"dblink_current_query\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName:       \"dblink_disconnect\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_disconnect\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_error_message\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_exec\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_exec\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_exec\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_exec\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_fdw_validator\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"options\",\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"catalog\",\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"dblink_fetch\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"dblink_fetch\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"dblink_fetch\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"dblink_fetch\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"dblink_get_connections\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName:       \"dblink_get_notify\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"dblink_get_notify\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"conname\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"dblink_get_pkey\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"dblink_pkey_results\"},\n\t},\n\t{\n\t\tName: \"dblink_get_result\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"dblink_get_result\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"dblink_is_busy\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"dblink_open\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_open\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_open\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_open\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dblink_send_query\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n}\n\nfunc Dblink() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsDblink\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/earthdistance.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsEarthdistance = []*catalog.Function{\n\t{\n\t\tName:       \"earth\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"earth_box\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"earth\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cube\"},\n\t},\n\t{\n\t\tName: \"earth_distance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"earth\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"earth\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"gc_to_sec\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"geo_distance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"latitude\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"earth\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"ll_to_earth\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"earth\"},\n\t},\n\t{\n\t\tName: \"longitude\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"earth\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"sec_to_gc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n}\n\nfunc Earthdistance() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsEarthdistance\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/file_fdw.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsFileFdw = []*catalog.Function{\n\t{\n\t\tName:       \"file_fdw_handler\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"fdw_handler\"},\n\t},\n\t{\n\t\tName: \"file_fdw_validator\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n}\n\nfunc FileFdw() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsFileFdw\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/fuzzystrmatch.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsFuzzystrmatch = []*catalog.Function{\n\t{\n\t\tName: \"difference\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"dmetaphone\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dmetaphone_alt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"levenshtein\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"levenshtein\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"levenshtein_less_equal\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"levenshtein_less_equal\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"metaphone\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"soundex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"text_soundex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n}\n\nfunc Fuzzystrmatch() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsFuzzystrmatch\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/hstore.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsHstore = []*catalog.Function{\n\t{\n\t\tName: \"akeys\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"avals\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"defined\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"delete\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"hstore\"},\n\t},\n\t{\n\t\tName: \"delete\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"hstore\"},\n\t},\n\t{\n\t\tName: \"delete\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"hstore\"},\n\t},\n\t{\n\t\tName: \"each\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"hs\",\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"exist\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"exists_all\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"exists_any\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"fetchval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"ghstore_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ghstore\"},\n\t},\n\t{\n\t\tName: \"ghstore_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ghstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"hs_concat\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"hstore\"},\n\t},\n\t{\n\t\tName: \"hs_contained\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"hs_contains\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"hstore\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"hstore\"},\n\t},\n\t{\n\t\tName: \"hstore\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"hstore\"},\n\t},\n\t{\n\t\tName: \"hstore\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"hstore\"},\n\t},\n\t{\n\t\tName: \"hstore\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"hstore\"},\n\t},\n\t{\n\t\tName: \"hstore_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hstore_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"hstore_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"hstore_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"hstore_hash\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hstore_hash_extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hstore_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"hstore\"},\n\t},\n\t{\n\t\tName: \"hstore_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"hstore_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"hstore_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"hstore_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"hstore_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"hstore_to_array\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"hstore_to_json\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"hstore_to_json_loose\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"hstore_to_jsonb\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"hstore_to_jsonb_loose\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"hstore_to_matrix\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"hstore_version_diag\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"isdefined\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isexists\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"populate_record\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"skeys\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"slice\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"hstore\"},\n\t},\n\t{\n\t\tName: \"slice_array\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"svals\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"hstore\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"tconvert\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"hstore\"},\n\t},\n}\n\nfunc Hstore() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsHstore\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/intagg.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsIntagg = []*catalog.Function{\n\t{\n\t\tName: \"int_array_aggregate\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"int_array_enum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n}\n\nfunc Intagg() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsIntagg\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/intarray.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsIntarray = []*catalog.Function{\n\t{\n\t\tName: \"_int_contained\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"_int_contains\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"_int_different\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"_int_inter\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"_int_overlap\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"_int_same\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"_int_union\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"_intbig_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"intbig_gkey\"},\n\t},\n\t{\n\t\tName: \"_intbig_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"intbig_gkey\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"boolop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"query_int\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bqarr_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"query_int\"},\n\t},\n\t{\n\t\tName: \"bqarr_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"query_int\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"icount\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"idx\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"intarray_del_elem\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"intarray_push_array\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"intarray_push_elem\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"intset\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"intset_subtract\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"intset_union_elem\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"querytree\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"query_int\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"rboolop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"query_int\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"sort\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"sort\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"sort_asc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"sort_desc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"subarray\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"subarray\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"uniq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n}\n\nfunc Intarray() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsIntarray\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/isn.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsIsn = []*catalog.Function{\n\t{\n\t\tName: \"btean13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btean13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btean13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btean13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btean13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btean13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btean13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btean13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btisbn13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btisbn13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btisbn13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btisbncmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btisbncmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btisbncmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btismn13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btismn13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btismn13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btismncmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btismncmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btismncmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btissn13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btissn13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btissn13cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btissncmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btissncmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btissncmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btupccmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btupccmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"ean13_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ean13\"},\n\t},\n\t{\n\t\tName: \"ean13_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"ean13_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"ean13_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"ean13_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"hashean13\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashisbn\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashisbn13\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashismn\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashismn13\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashissn\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashissn13\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashupc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"is_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"is_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"is_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"is_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"is_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"is_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"is_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"is_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isbn\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"isbn\"},\n\t},\n\t{\n\t\tName: \"isbn13\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"isbn13\"},\n\t},\n\t{\n\t\tName: \"isbn13_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"isbn13\"},\n\t},\n\t{\n\t\tName: \"isbn_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"isbn\"},\n\t},\n\t{\n\t\tName: \"ismn\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ismn\"},\n\t},\n\t{\n\t\tName: \"ismn13\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ismn13\"},\n\t},\n\t{\n\t\tName: \"ismn13_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ismn13\"},\n\t},\n\t{\n\t\tName: \"ismn_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ismn\"},\n\t},\n\t{\n\t\tName: \"isn_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"isn_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"isn_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"isn_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName:       \"isn_weak\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isn_weak\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isngt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isnne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"issn\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"issn\"},\n\t},\n\t{\n\t\tName: \"issn13\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"issn13\"},\n\t},\n\t{\n\t\tName: \"issn13_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"issn13\"},\n\t},\n\t{\n\t\tName: \"issn_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"issn\"},\n\t},\n\t{\n\t\tName: \"make_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ean13\"},\n\t},\n\t{\n\t\tName: \"make_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"isbn\"},\n\t},\n\t{\n\t\tName: \"make_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"isbn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"isbn13\"},\n\t},\n\t{\n\t\tName: \"make_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ismn\"},\n\t},\n\t{\n\t\tName: \"make_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ismn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ismn13\"},\n\t},\n\t{\n\t\tName: \"make_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"issn\"},\n\t},\n\t{\n\t\tName: \"make_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"issn13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"issn13\"},\n\t},\n\t{\n\t\tName: \"make_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"upc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"upc\"},\n\t},\n\t{\n\t\tName: \"upc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ean13\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"upc\"},\n\t},\n\t{\n\t\tName: \"upc_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"upc\"},\n\t},\n}\n\nfunc Isn() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsIsn\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/lo.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsLo = []*catalog.Function{\n\t{\n\t\tName:       \"lo_manage\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName: \"lo_oid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lo\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n}\n\nfunc Lo() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsLo\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/ltree.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsLtree = []*catalog.Function{\n\t{\n\t\tName: \"_lt_q_regex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lquery[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"_lt_q_rregex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lquery[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"_ltq_extract_regex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"_ltq_regex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"_ltq_rregex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"_ltree_extract_isparent\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"_ltree_extract_risparent\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"_ltree_isparent\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"_ltree_r_isparent\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"_ltree_r_risparent\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"_ltree_risparent\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"_ltxtq_exec\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltxtquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"_ltxtq_extract_exec\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltxtquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"_ltxtq_rexec\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltxtquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"index\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"index\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"lca\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"lca\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"lca\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"lca\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"lca\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"lca\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"lca\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"lca\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"lquery_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"lquery\"},\n\t},\n\t{\n\t\tName: \"lquery_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"lquery_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"lt_q_regex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lquery[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"lt_q_rregex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lquery[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ltq_regex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ltq_rregex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ltree2text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"ltree_addltree\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"ltree_addtext\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"ltree_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"ltree_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ltree_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ltree_gist_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree_gist\"},\n\t},\n\t{\n\t\tName: \"ltree_gist_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree_gist\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"ltree_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ltree_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"ltree_isparent\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ltree_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ltree_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ltree_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ltree_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"ltree_risparent\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ltree_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"ltree_textadd\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"ltxtq_exec\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltxtquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ltxtq_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltxtquery\"},\n\t},\n\t{\n\t\tName: \"ltxtq_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltxtquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"ltxtq_rexec\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltxtquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ltxtq_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltxtquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"nlevel\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"subltree\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"subpath\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"subpath\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"ltree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n\t{\n\t\tName: \"text2ltree\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"ltree\"},\n\t},\n}\n\nfunc Ltree() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsLtree\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/pageinspect.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsPageinspect = []*catalog.Function{\n\t{\n\t\tName: \"brin_metapage_info\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"brin_page_items\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"index_oid\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"brin_page_type\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"brin_revmap_data\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tid\"},\n\t},\n\t{\n\t\tName: \"bt_metap\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"relname\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"bt_page_items\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"bt_page_items\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"relname\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"blkno\",\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"bt_page_stats\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"relname\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"blkno\",\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"fsm_page_contents\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"get_raw_page\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"get_raw_page\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"gin_leafpage_items\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"gin_metapage_info\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"gin_page_opaque_info\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"gist_page_items\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"index_oid\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"gist_page_items_bytea\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"gist_page_opaque_info\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"hash_bitmap_info\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"index_oid\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"blkno\",\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"hash_metapage_info\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"hash_page_items\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"hash_page_stats\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"hash_page_type\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"heap_page_item_attrs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"rel_oid\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"heap_page_item_attrs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"rel_oid\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"do_detoast\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"heap_page_items\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"heap_tuple_infomask_flags\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"t_infomask\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"t_infomask2\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"page_checksum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"blkno\",\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"page_header\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"page\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"tuple_data_split\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"rel_oid\",\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"t_data\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"t_infomask\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"t_infomask2\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"t_bits\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea[]\"},\n\t},\n\t{\n\t\tName: \"tuple_data_split\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"rel_oid\",\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"t_data\",\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"t_infomask\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"t_infomask2\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"t_bits\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"do_detoast\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea[]\"},\n\t},\n}\n\nfunc Pageinspect() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsPageinspect\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/pg_buffercache.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsPgBuffercache = []*catalog.Function{\n\t{\n\t\tName:       \"pg_buffercache_pages\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n}\n\nfunc PgBuffercache() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsPgBuffercache\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/pg_freespacemap.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsPgFreespacemap = []*catalog.Function{\n\t{\n\t\tName: \"pg_freespace\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"rel\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_freespace\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n}\n\nfunc PgFreespacemap() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsPgFreespacemap\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/pg_prewarm.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsPgPrewarm = []*catalog.Function{\n\t{\n\t\tName:       \"autoprewarm_dump_now\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"autoprewarm_start_worker\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_prewarm\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"mode\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"fork\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"first_block\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"last_block\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n}\n\nfunc PgPrewarm() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsPgPrewarm\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/pg_stat_statements.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsPgStatStatements = []*catalog.Function{\n\t{\n\t\tName: \"pg_stat_statements\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"showtext\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_statements_info\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_stat_statements_reset\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName:       \"userid\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"dbid\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"queryid\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n}\n\nfunc PgStatStatements() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsPgStatStatements\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/pg_trgm.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsPgTrgm = []*catalog.Function{\n\t{\n\t\tName: \"gtrgm_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"gtrgm\"},\n\t},\n\t{\n\t\tName: \"gtrgm_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"gtrgm\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"set_limit\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName:       \"show_limit\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"show_trgm\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"similarity\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"similarity_dist\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"similarity_op\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"strict_word_similarity\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"strict_word_similarity_commutator_op\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"strict_word_similarity_dist_commutator_op\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"strict_word_similarity_dist_op\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"strict_word_similarity_op\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"word_similarity\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"word_similarity_commutator_op\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"word_similarity_dist_commutator_op\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"word_similarity_dist_op\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"word_similarity_op\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n}\n\nfunc PgTrgm() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsPgTrgm\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/pg_visibility.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsPgVisibility = []*catalog.Function{\n\t{\n\t\tName: \"pg_check_frozen\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tid\"},\n\t},\n\t{\n\t\tName: \"pg_check_visible\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tid\"},\n\t},\n\t{\n\t\tName: \"pg_truncate_visibility_map\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_visibility\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_visibility\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"blkno\",\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_visibility_map\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_visibility_map\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"blkno\",\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_visibility_map_summary\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n}\n\nfunc PgVisibility() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsPgVisibility\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/pgcrypto.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsPgcrypto = []*catalog.Function{\n\t{\n\t\tName: \"armor\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"armor\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"crypt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"dearmor\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"decrypt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"decrypt_iv\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"digest\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"digest\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"encrypt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"encrypt_iv\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"gen_random_bytes\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"gen_salt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"gen_salt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"hmac\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"hmac\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pgp_armor_headers\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pgp_key_id\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pgp_pub_decrypt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pgp_pub_decrypt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pgp_pub_decrypt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pgp_pub_decrypt_bytea\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pgp_pub_decrypt_bytea\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pgp_pub_decrypt_bytea\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pgp_pub_encrypt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pgp_pub_encrypt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pgp_pub_encrypt_bytea\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pgp_pub_encrypt_bytea\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pgp_sym_decrypt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pgp_sym_decrypt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pgp_sym_decrypt_bytea\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pgp_sym_decrypt_bytea\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pgp_sym_encrypt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pgp_sym_encrypt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pgp_sym_encrypt_bytea\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pgp_sym_encrypt_bytea\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n}\n\nfunc Pgcrypto() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsPgcrypto\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/pgrowlocks.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsPgrowlocks = []*catalog.Function{\n\t{\n\t\tName: \"pgrowlocks\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"relname\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n}\n\nfunc Pgrowlocks() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsPgrowlocks\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/pgstattuple.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsPgstattuple = []*catalog.Function{\n\t{\n\t\tName: \"pg_relpages\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"relname\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_relpages\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"relname\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pgstatginindex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"relname\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pgstathashindex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"relname\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pgstatindex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"relname\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pgstatindex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"relname\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pgstattuple\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"reloid\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pgstattuple\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"relname\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pgstattuple_approx\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"reloid\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n}\n\nfunc Pgstattuple() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsPgstattuple\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/postgres_fdw.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsPostgresFdw = []*catalog.Function{\n\t{\n\t\tName: \"postgres_fdw_disconnect\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"postgres_fdw_disconnect_all\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"postgres_fdw_get_connections\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"postgres_fdw_handler\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"fdw_handler\"},\n\t},\n\t{\n\t\tName: \"postgres_fdw_validator\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n}\n\nfunc PostgresFdw() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsPostgresFdw\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/seg.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsSeg = []*catalog.Function{\n\t{\n\t\tName: \"seg_center\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"seg_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"seg_contained\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"seg_contains\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"seg_different\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"seg_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"seg_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"seg_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"seg\"},\n\t},\n\t{\n\t\tName: \"seg_inter\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"seg\"},\n\t},\n\t{\n\t\tName: \"seg_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"seg_left\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"seg_lower\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"seg_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"seg_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"seg_over_left\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"seg_over_right\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"seg_overlap\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"seg_right\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"seg_same\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"seg_size\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"seg_union\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"seg\"},\n\t},\n\t{\n\t\tName: \"seg_upper\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"seg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n}\n\nfunc Seg() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsSeg\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/sslinfo.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsSslinfo = []*catalog.Function{\n\t{\n\t\tName:       \"ssl_cipher\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName:       \"ssl_client_cert_present\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"ssl_client_dn\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"ssl_client_dn_field\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName:       \"ssl_client_serial\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName:       \"ssl_extension_info\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"ssl_is_used\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"ssl_issuer_dn\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"ssl_issuer_field\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName:       \"ssl_version\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n}\n\nfunc Sslinfo() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsSslinfo\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/tablefunc.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsTablefunc = []*catalog.Function{\n\t{\n\t\tName: \"connectby\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"connectby\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"connectby\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"connectby\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"crosstab\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"crosstab\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"crosstab\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"crosstab2\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tablefunc_crosstab_2\"},\n\t},\n\t{\n\t\tName: \"crosstab3\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tablefunc_crosstab_3\"},\n\t},\n\t{\n\t\tName: \"crosstab4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tablefunc_crosstab_4\"},\n\t},\n\t{\n\t\tName: \"normal_rand\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n}\n\nfunc Tablefunc() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsTablefunc\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/tcn.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsTcn = []*catalog.Function{\n\t{\n\t\tName:       \"triggered_change_notification\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n}\n\nfunc Tcn() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsTcn\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/unaccent.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsUnaccent = []*catalog.Function{\n\t{\n\t\tName: \"unaccent\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regdictionary\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"unaccent\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n}\n\nfunc Unaccent() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsUnaccent\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/uuid_ossp.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsUuidOssp = []*catalog.Function{\n\t{\n\t\tName:       \"uuid_generate_v1\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"uuid\"},\n\t},\n\t{\n\t\tName:       \"uuid_generate_v1mc\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"uuid\"},\n\t},\n\t{\n\t\tName: \"uuid_generate_v3\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"namespace\",\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"name\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"uuid\"},\n\t},\n\t{\n\t\tName:       \"uuid_generate_v4\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"uuid\"},\n\t},\n\t{\n\t\tName: \"uuid_generate_v5\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"namespace\",\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"name\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"uuid\"},\n\t},\n\t{\n\t\tName:       \"uuid_nil\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"uuid\"},\n\t},\n\t{\n\t\tName:       \"uuid_ns_dns\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"uuid\"},\n\t},\n\t{\n\t\tName:       \"uuid_ns_oid\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"uuid\"},\n\t},\n\t{\n\t\tName:       \"uuid_ns_url\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"uuid\"},\n\t},\n\t{\n\t\tName:       \"uuid_ns_x500\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"uuid\"},\n\t},\n}\n\nfunc UuidOssp() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsUuidOssp\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/contrib/xml2.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage contrib\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsXml2 = []*catalog.Function{\n\t{\n\t\tName: \"xml_encode_special_chars\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"xml_valid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xpath_bool\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xpath_list\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"xpath_list\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"xpath_nodeset\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"xpath_nodeset\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"xpath_nodeset\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"xpath_number\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"xpath_string\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"xpath_table\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"xslt_process\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"xslt_process\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n}\n\nfunc Xml2() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsXml2\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/convert.go",
    "content": "package postgresql\n\nimport (\n\t\"fmt\"\n\n\tpg \"github.com/pganalyze/pg_query_go/v6\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\nfunc convertFuncParamMode(m pg.FunctionParameterMode) (ast.FuncParamMode, error) {\n\tswitch m {\n\tcase pg.FunctionParameterMode_FUNC_PARAM_IN:\n\t\treturn ast.FuncParamIn, nil\n\tcase pg.FunctionParameterMode_FUNC_PARAM_OUT:\n\t\treturn ast.FuncParamOut, nil\n\tcase pg.FunctionParameterMode_FUNC_PARAM_INOUT:\n\t\treturn ast.FuncParamInOut, nil\n\tcase pg.FunctionParameterMode_FUNC_PARAM_VARIADIC:\n\t\treturn ast.FuncParamVariadic, nil\n\tcase pg.FunctionParameterMode_FUNC_PARAM_TABLE:\n\t\treturn ast.FuncParamTable, nil\n\tcase pg.FunctionParameterMode_FUNC_PARAM_DEFAULT:\n\t\treturn ast.FuncParamDefault, nil\n\tdefault:\n\t\treturn -1, fmt.Errorf(\"parse func param: invalid mode %v\", m)\n\t}\n}\n\nfunc convertSubLinkType(t pg.SubLinkType) (ast.SubLinkType, error) {\n\tswitch t {\n\tcase pg.SubLinkType_EXISTS_SUBLINK:\n\t\treturn ast.EXISTS_SUBLINK, nil\n\tcase pg.SubLinkType_ALL_SUBLINK:\n\t\treturn ast.ALL_SUBLINK, nil\n\tcase pg.SubLinkType_ANY_SUBLINK:\n\t\treturn ast.ANY_SUBLINK, nil\n\tcase pg.SubLinkType_ROWCOMPARE_SUBLINK:\n\t\treturn ast.ROWCOMPARE_SUBLINK, nil\n\tcase pg.SubLinkType_EXPR_SUBLINK:\n\t\treturn ast.EXPR_SUBLINK, nil\n\tcase pg.SubLinkType_MULTIEXPR_SUBLINK:\n\t\treturn ast.MULTIEXPR_SUBLINK, nil\n\tcase pg.SubLinkType_ARRAY_SUBLINK:\n\t\treturn ast.ARRAY_SUBLINK, nil\n\tcase pg.SubLinkType_CTE_SUBLINK:\n\t\treturn ast.CTE_SUBLINK, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"parse sublink type: unknown type %s\", t)\n\t}\n}\n\nfunc convertSetOperation(t pg.SetOperation) (ast.SetOperation, error) {\n\tswitch t {\n\tcase pg.SetOperation_SETOP_NONE:\n\t\treturn ast.None, nil\n\tcase pg.SetOperation_SETOP_UNION:\n\t\treturn ast.Union, nil\n\tcase pg.SetOperation_SETOP_INTERSECT:\n\t\treturn ast.Intersect, nil\n\tcase pg.SetOperation_SETOP_EXCEPT:\n\t\treturn ast.Except, nil\n\tdefault:\n\t\treturn 0, fmt.Errorf(\"parse set operation: unknown type %s\", t)\n\t}\n}\n\nfunc convertList(l *pg.List) *ast.List {\n\tout := &ast.List{}\n\tfor _, item := range l.Items {\n\t\tout.Items = append(out.Items, convertNode(item))\n\t}\n\treturn out\n}\n\nfunc convertSlice(nodes []*pg.Node) *ast.List {\n\tout := &ast.List{}\n\tfor _, n := range nodes {\n\t\tout.Items = append(out.Items, convertNode(n))\n\t}\n\treturn out\n}\n\nfunc convert(node *pg.Node) (ast.Node, error) {\n\treturn convertNode(node), nil\n}\n\nfunc convertA_ArrayExpr(n *pg.A_ArrayExpr) *ast.A_ArrayExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.A_ArrayExpr{\n\t\tElements: convertSlice(n.Elements),\n\t\tLocation: int(n.Location),\n\t}\n}\n\nfunc convertA_Const(n *pg.A_Const) *ast.A_Const {\n\tif n == nil {\n\t\treturn nil\n\t}\n\tvar val ast.Node\n\tif n.Isnull {\n\t\tval = &ast.Null{}\n\t} else {\n\t\tswitch v := n.Val.(type) {\n\t\tcase *pg.A_Const_Boolval:\n\t\t\tval = convertBoolean(v.Boolval)\n\t\tcase *pg.A_Const_Bsval:\n\t\t\tval = convertBitString(v.Bsval)\n\t\tcase *pg.A_Const_Fval:\n\t\t\tval = convertFloat(v.Fval)\n\t\tcase *pg.A_Const_Ival:\n\t\t\tval = convertInteger(v.Ival)\n\t\tcase *pg.A_Const_Sval:\n\t\t\tval = convertString(v.Sval)\n\t\t}\n\t}\n\treturn &ast.A_Const{\n\t\tVal:      val,\n\t\tLocation: int(n.Location),\n\t}\n}\n\nfunc convertA_Expr(n *pg.A_Expr) *ast.A_Expr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.A_Expr{\n\t\tKind:     ast.A_Expr_Kind(n.Kind),\n\t\tName:     convertSlice(n.Name),\n\t\tLexpr:    convertNode(n.Lexpr),\n\t\tRexpr:    convertNode(n.Rexpr),\n\t\tLocation: int(n.Location),\n\t}\n}\n\nfunc convertA_Indices(n *pg.A_Indices) *ast.A_Indices {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.A_Indices{\n\t\tIsSlice: n.IsSlice,\n\t\tLidx:    convertNode(n.Lidx),\n\t\tUidx:    convertNode(n.Uidx),\n\t}\n}\n\nfunc convertA_Indirection(n *pg.A_Indirection) *ast.A_Indirection {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.A_Indirection{\n\t\tArg:         convertNode(n.Arg),\n\t\tIndirection: convertSlice(n.Indirection),\n\t}\n}\n\nfunc convertA_Star(n *pg.A_Star) *ast.A_Star {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.A_Star{}\n}\n\nfunc convertAccessPriv(n *pg.AccessPriv) *ast.AccessPriv {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AccessPriv{\n\t\tPrivName: makeString(n.PrivName),\n\t\tCols:     convertSlice(n.Cols),\n\t}\n}\n\nfunc convertAggref(n *pg.Aggref) *ast.Aggref {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.Aggref{\n\t\tXpr:           convertNode(n.Xpr),\n\t\tAggfnoid:      ast.Oid(n.Aggfnoid),\n\t\tAggtype:       ast.Oid(n.Aggtype),\n\t\tAggcollid:     ast.Oid(n.Aggcollid),\n\t\tInputcollid:   ast.Oid(n.Inputcollid),\n\t\tAggargtypes:   convertSlice(n.Aggargtypes),\n\t\tAggdirectargs: convertSlice(n.Aggdirectargs),\n\t\tArgs:          convertSlice(n.Args),\n\t\tAggorder:      convertSlice(n.Aggorder),\n\t\tAggdistinct:   convertSlice(n.Aggdistinct),\n\t\tAggfilter:     convertNode(n.Aggfilter),\n\t\tAggstar:       n.Aggstar,\n\t\tAggvariadic:   n.Aggvariadic,\n\t\tAggkind:       makeByte(n.Aggkind),\n\t\tAgglevelsup:   ast.Index(n.Agglevelsup),\n\t\tAggsplit:      ast.AggSplit(n.Aggsplit),\n\t\tLocation:      int(n.Location),\n\t}\n}\n\nfunc convertAlias(n *pg.Alias) *ast.Alias {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.Alias{\n\t\tAliasname: makeString(n.Aliasname),\n\t\tColnames:  convertSlice(n.Colnames),\n\t}\n}\n\nfunc convertAlterCollationStmt(n *pg.AlterCollationStmt) *ast.AlterCollationStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterCollationStmt{\n\t\tCollname: convertSlice(n.Collname),\n\t}\n}\n\nfunc convertAlterDatabaseSetStmt(n *pg.AlterDatabaseSetStmt) *ast.AlterDatabaseSetStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterDatabaseSetStmt{\n\t\tDbname:  makeString(n.Dbname),\n\t\tSetstmt: convertVariableSetStmt(n.Setstmt),\n\t}\n}\n\nfunc convertAlterDatabaseStmt(n *pg.AlterDatabaseStmt) *ast.AlterDatabaseStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterDatabaseStmt{\n\t\tDbname:  makeString(n.Dbname),\n\t\tOptions: convertSlice(n.Options),\n\t}\n}\n\nfunc convertAlterDefaultPrivilegesStmt(n *pg.AlterDefaultPrivilegesStmt) *ast.AlterDefaultPrivilegesStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterDefaultPrivilegesStmt{\n\t\tOptions: convertSlice(n.Options),\n\t\tAction:  convertGrantStmt(n.Action),\n\t}\n}\n\nfunc convertAlterDomainStmt(n *pg.AlterDomainStmt) *ast.AlterDomainStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterDomainStmt{\n\t\tSubtype:   makeByte(n.Subtype),\n\t\tTypeName:  convertSlice(n.TypeName),\n\t\tName:      makeString(n.Name),\n\t\tDef:       convertNode(n.Def),\n\t\tBehavior:  ast.DropBehavior(n.Behavior),\n\t\tMissingOk: n.MissingOk,\n\t}\n}\n\nfunc convertAlterEnumStmt(n *pg.AlterEnumStmt) *ast.AlterEnumStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterEnumStmt{\n\t\tTypeName:           convertSlice(n.TypeName),\n\t\tOldVal:             makeString(n.OldVal),\n\t\tNewVal:             makeString(n.NewVal),\n\t\tNewValNeighbor:     makeString(n.NewValNeighbor),\n\t\tNewValIsAfter:      n.NewValIsAfter,\n\t\tSkipIfNewValExists: n.SkipIfNewValExists,\n\t}\n}\n\nfunc convertAlterEventTrigStmt(n *pg.AlterEventTrigStmt) *ast.AlterEventTrigStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterEventTrigStmt{\n\t\tTrigname:  makeString(n.Trigname),\n\t\tTgenabled: makeByte(n.Tgenabled),\n\t}\n}\n\nfunc convertAlterExtensionContentsStmt(n *pg.AlterExtensionContentsStmt) *ast.AlterExtensionContentsStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterExtensionContentsStmt{\n\t\tExtname: makeString(n.Extname),\n\t\tAction:  int(n.Action),\n\t\tObjtype: ast.ObjectType(n.Objtype),\n\t\tObject:  convertNode(n.Object),\n\t}\n}\n\nfunc convertAlterExtensionStmt(n *pg.AlterExtensionStmt) *ast.AlterExtensionStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterExtensionStmt{\n\t\tExtname: makeString(n.Extname),\n\t\tOptions: convertSlice(n.Options),\n\t}\n}\n\nfunc convertAlterFdwStmt(n *pg.AlterFdwStmt) *ast.AlterFdwStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterFdwStmt{\n\t\tFdwname:     makeString(n.Fdwname),\n\t\tFuncOptions: convertSlice(n.FuncOptions),\n\t\tOptions:     convertSlice(n.Options),\n\t}\n}\n\nfunc convertAlterForeignServerStmt(n *pg.AlterForeignServerStmt) *ast.AlterForeignServerStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterForeignServerStmt{\n\t\tServername: makeString(n.Servername),\n\t\tVersion:    makeString(n.Version),\n\t\tOptions:    convertSlice(n.Options),\n\t\tHasVersion: n.HasVersion,\n\t}\n}\n\nfunc convertAlterFunctionStmt(n *pg.AlterFunctionStmt) *ast.AlterFunctionStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterFunctionStmt{\n\t\tFunc:    convertObjectWithArgs(n.Func),\n\t\tActions: convertSlice(n.Actions),\n\t}\n}\n\nfunc convertAlterObjectDependsStmt(n *pg.AlterObjectDependsStmt) *ast.AlterObjectDependsStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterObjectDependsStmt{\n\t\tObjectType: ast.ObjectType(n.ObjectType),\n\t\tRelation:   convertRangeVar(n.Relation),\n\t\tObject:     convertNode(n.Object),\n\t\tExtname:    convertString(n.Extname),\n\t}\n}\n\nfunc convertAlterObjectSchemaStmt(n *pg.AlterObjectSchemaStmt) *ast.AlterObjectSchemaStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterObjectSchemaStmt{\n\t\tObjectType: ast.ObjectType(n.ObjectType),\n\t\tRelation:   convertRangeVar(n.Relation),\n\t\tObject:     convertNode(n.Object),\n\t\tNewschema:  makeString(n.Newschema),\n\t\tMissingOk:  n.MissingOk,\n\t}\n}\n\nfunc convertAlterOpFamilyStmt(n *pg.AlterOpFamilyStmt) *ast.AlterOpFamilyStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterOpFamilyStmt{\n\t\tOpfamilyname: convertSlice(n.Opfamilyname),\n\t\tAmname:       makeString(n.Amname),\n\t\tIsDrop:       n.IsDrop,\n\t\tItems:        convertSlice(n.Items),\n\t}\n}\n\nfunc convertAlterOperatorStmt(n *pg.AlterOperatorStmt) *ast.AlterOperatorStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterOperatorStmt{\n\t\tOpername: convertObjectWithArgs(n.Opername),\n\t\tOptions:  convertSlice(n.Options),\n\t}\n}\n\nfunc convertAlterOwnerStmt(n *pg.AlterOwnerStmt) *ast.AlterOwnerStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterOwnerStmt{\n\t\tObjectType: ast.ObjectType(n.ObjectType),\n\t\tRelation:   convertRangeVar(n.Relation),\n\t\tObject:     convertNode(n.Object),\n\t\tNewowner:   convertRoleSpec(n.Newowner),\n\t}\n}\n\nfunc convertAlterPolicyStmt(n *pg.AlterPolicyStmt) *ast.AlterPolicyStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterPolicyStmt{\n\t\tPolicyName: makeString(n.PolicyName),\n\t\tTable:      convertRangeVar(n.Table),\n\t\tRoles:      convertSlice(n.Roles),\n\t\tQual:       convertNode(n.Qual),\n\t\tWithCheck:  convertNode(n.WithCheck),\n\t}\n}\n\nfunc convertAlterPublicationStmt(n *pg.AlterPublicationStmt) *ast.AlterPublicationStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterPublicationStmt{\n\t\tPubname:      makeString(n.Pubname),\n\t\tOptions:      convertSlice(n.Options),\n\t\tTables:       convertSlice(n.Pubobjects),\n\t\tForAllTables: n.ForAllTables,\n\t\tTableAction:  ast.DefElemAction(n.Action),\n\t}\n}\n\nfunc convertAlterRoleSetStmt(n *pg.AlterRoleSetStmt) *ast.AlterRoleSetStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterRoleSetStmt{\n\t\tRole:     convertRoleSpec(n.Role),\n\t\tDatabase: makeString(n.Database),\n\t\tSetstmt:  convertVariableSetStmt(n.Setstmt),\n\t}\n}\n\nfunc convertAlterRoleStmt(n *pg.AlterRoleStmt) *ast.AlterRoleStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterRoleStmt{\n\t\tRole:    convertRoleSpec(n.Role),\n\t\tOptions: convertSlice(n.Options),\n\t\tAction:  int(n.Action),\n\t}\n}\n\nfunc convertAlterSeqStmt(n *pg.AlterSeqStmt) *ast.AlterSeqStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterSeqStmt{\n\t\tSequence:    convertRangeVar(n.Sequence),\n\t\tOptions:     convertSlice(n.Options),\n\t\tForIdentity: n.ForIdentity,\n\t\tMissingOk:   n.MissingOk,\n\t}\n}\n\nfunc convertAlterSubscriptionStmt(n *pg.AlterSubscriptionStmt) *ast.AlterSubscriptionStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterSubscriptionStmt{\n\t\tKind:        ast.AlterSubscriptionType(n.Kind),\n\t\tSubname:     makeString(n.Subname),\n\t\tConninfo:    makeString(n.Conninfo),\n\t\tPublication: convertSlice(n.Publication),\n\t\tOptions:     convertSlice(n.Options),\n\t}\n}\n\nfunc convertAlterSystemStmt(n *pg.AlterSystemStmt) *ast.AlterSystemStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterSystemStmt{\n\t\tSetstmt: convertVariableSetStmt(n.Setstmt),\n\t}\n}\n\nfunc convertAlterTSConfigurationStmt(n *pg.AlterTSConfigurationStmt) *ast.AlterTSConfigurationStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterTSConfigurationStmt{\n\t\tKind:      ast.AlterTSConfigType(n.Kind),\n\t\tCfgname:   convertSlice(n.Cfgname),\n\t\tTokentype: convertSlice(n.Tokentype),\n\t\tDicts:     convertSlice(n.Dicts),\n\t\tOverride:  n.Override,\n\t\tReplace:   n.Replace,\n\t\tMissingOk: n.MissingOk,\n\t}\n}\n\nfunc convertAlterTSDictionaryStmt(n *pg.AlterTSDictionaryStmt) *ast.AlterTSDictionaryStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterTSDictionaryStmt{\n\t\tDictname: convertSlice(n.Dictname),\n\t\tOptions:  convertSlice(n.Options),\n\t}\n}\n\nfunc convertAlterTableCmd(n *pg.AlterTableCmd) *ast.AlterTableCmd {\n\tif n == nil {\n\t\treturn nil\n\t}\n\tdef := convertNode(n.Def)\n\tcolumnDef := def.(*ast.ColumnDef)\n\treturn &ast.AlterTableCmd{\n\t\tSubtype:   ast.AlterTableType(n.Subtype),\n\t\tName:      makeString(n.Name),\n\t\tNewowner:  convertRoleSpec(n.Newowner),\n\t\tDef:       columnDef,\n\t\tBehavior:  ast.DropBehavior(n.Behavior),\n\t\tMissingOk: n.MissingOk,\n\t}\n}\n\nfunc convertAlterTableMoveAllStmt(n *pg.AlterTableMoveAllStmt) *ast.AlterTableMoveAllStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterTableMoveAllStmt{\n\t\tOrigTablespacename: makeString(n.OrigTablespacename),\n\t\tObjtype:            ast.ObjectType(n.Objtype),\n\t\tRoles:              convertSlice(n.Roles),\n\t\tNewTablespacename:  makeString(n.NewTablespacename),\n\t\tNowait:             n.Nowait,\n\t}\n}\n\nfunc convertAlterTableSpaceOptionsStmt(n *pg.AlterTableSpaceOptionsStmt) *ast.AlterTableSpaceOptionsStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterTableSpaceOptionsStmt{\n\t\tTablespacename: makeString(n.Tablespacename),\n\t\tOptions:        convertSlice(n.Options),\n\t\tIsReset:        n.IsReset,\n\t}\n}\n\nfunc convertAlterTableStmt(n *pg.AlterTableStmt) *ast.AlterTableStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterTableStmt{\n\t\tRelation:  convertRangeVar(n.Relation),\n\t\tCmds:      convertSlice(n.Cmds),\n\t\tRelkind:   ast.ObjectType(n.Objtype),\n\t\tMissingOk: n.MissingOk,\n\t}\n}\n\nfunc convertAlterUserMappingStmt(n *pg.AlterUserMappingStmt) *ast.AlterUserMappingStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlterUserMappingStmt{\n\t\tUser:       convertRoleSpec(n.User),\n\t\tServername: makeString(n.Servername),\n\t\tOptions:    convertSlice(n.Options),\n\t}\n}\n\nfunc convertAlternativeSubPlan(n *pg.AlternativeSubPlan) *ast.AlternativeSubPlan {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.AlternativeSubPlan{\n\t\tXpr:      convertNode(n.Xpr),\n\t\tSubplans: convertSlice(n.Subplans),\n\t}\n}\n\nfunc convertArrayCoerceExpr(n *pg.ArrayCoerceExpr) *ast.ArrayCoerceExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ArrayCoerceExpr{\n\t\tXpr:          convertNode(n.Xpr),\n\t\tArg:          convertNode(n.Arg),\n\t\tResulttype:   ast.Oid(n.Resulttype),\n\t\tResulttypmod: n.Resulttypmod,\n\t\tResultcollid: ast.Oid(n.Resultcollid),\n\t\tCoerceformat: ast.CoercionForm(n.Coerceformat),\n\t\tLocation:     int(n.Location),\n\t}\n}\n\nfunc convertArrayExpr(n *pg.ArrayExpr) *ast.ArrayExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ArrayExpr{\n\t\tXpr:           convertNode(n.Xpr),\n\t\tArrayTypeid:   ast.Oid(n.ArrayTypeid),\n\t\tArrayCollid:   ast.Oid(n.ArrayCollid),\n\t\tElementTypeid: ast.Oid(n.ElementTypeid),\n\t\tElements:      convertSlice(n.Elements),\n\t\tMultidims:     n.Multidims,\n\t\tLocation:      int(n.Location),\n\t}\n}\n\nfunc convertBitString(n *pg.BitString) *ast.BitString {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.BitString{\n\t\tStr: n.Bsval,\n\t}\n}\n\nfunc convertBoolExpr(n *pg.BoolExpr) *ast.BoolExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.BoolExpr{\n\t\tXpr:      convertNode(n.Xpr),\n\t\tBoolop:   ast.BoolExprType(n.Boolop),\n\t\tArgs:     convertSlice(n.Args),\n\t\tLocation: int(n.Location),\n\t}\n}\n\nfunc convertBoolean(n *pg.Boolean) *ast.Boolean {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.Boolean{\n\t\tBoolval: n.Boolval,\n\t}\n}\n\nfunc convertBooleanTest(n *pg.BooleanTest) *ast.BooleanTest {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.BooleanTest{\n\t\tXpr:          convertNode(n.Xpr),\n\t\tArg:          convertNode(n.Arg),\n\t\tBooltesttype: ast.BoolTestType(n.Booltesttype),\n\t\tLocation:     int(n.Location),\n\t}\n}\n\nfunc convertCallStmt(n *pg.CallStmt) *ast.CallStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\trel, err := parseRelationFromNodes(n.Funccall.Funcname)\n\tif err != nil {\n\t\t// TODO: How should we handle errors?\n\t\tpanic(err)\n\t}\n\n\treturn &ast.CallStmt{\n\t\tFuncCall: &ast.FuncCall{\n\t\t\tFunc:           rel.FuncName(),\n\t\t\tFuncname:       convertSlice(n.Funccall.Funcname),\n\t\t\tArgs:           convertSlice(n.Funccall.Args),\n\t\t\tAggOrder:       convertSlice(n.Funccall.AggOrder),\n\t\t\tAggFilter:      convertNode(n.Funccall.AggFilter),\n\t\t\tAggWithinGroup: n.Funccall.AggWithinGroup,\n\t\t\tAggStar:        n.Funccall.AggStar,\n\t\t\tAggDistinct:    n.Funccall.AggDistinct,\n\t\t\tFuncVariadic:   n.Funccall.FuncVariadic,\n\t\t\tOver:           convertWindowDef(n.Funccall.Over),\n\t\t\tLocation:       int(n.Funccall.Location),\n\t\t},\n\t}\n}\n\nfunc convertCaseExpr(n *pg.CaseExpr) *ast.CaseExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CaseExpr{\n\t\tXpr:        convertNode(n.Xpr),\n\t\tCasetype:   ast.Oid(n.Casetype),\n\t\tCasecollid: ast.Oid(n.Casecollid),\n\t\tArg:        convertNode(n.Arg),\n\t\tArgs:       convertSlice(n.Args),\n\t\tDefresult:  convertNode(n.Defresult),\n\t\tLocation:   int(n.Location),\n\t}\n}\n\nfunc convertCaseTestExpr(n *pg.CaseTestExpr) *ast.CaseTestExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CaseTestExpr{\n\t\tXpr:       convertNode(n.Xpr),\n\t\tTypeId:    ast.Oid(n.TypeId),\n\t\tTypeMod:   n.TypeMod,\n\t\tCollation: ast.Oid(n.Collation),\n\t}\n}\n\nfunc convertCaseWhen(n *pg.CaseWhen) *ast.CaseWhen {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CaseWhen{\n\t\tXpr:      convertNode(n.Xpr),\n\t\tExpr:     convertNode(n.Expr),\n\t\tResult:   convertNode(n.Result),\n\t\tLocation: int(n.Location),\n\t}\n}\n\nfunc convertCheckPointStmt(n *pg.CheckPointStmt) *ast.CheckPointStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CheckPointStmt{}\n}\n\nfunc convertClosePortalStmt(n *pg.ClosePortalStmt) *ast.ClosePortalStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ClosePortalStmt{\n\t\tPortalname: makeString(n.Portalname),\n\t}\n}\n\nfunc convertClusterStmt(n *pg.ClusterStmt) *ast.ClusterStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ClusterStmt{\n\t\tRelation:  convertRangeVar(n.Relation),\n\t\tIndexname: makeString(n.Indexname),\n\t}\n}\n\nfunc convertCoalesceExpr(n *pg.CoalesceExpr) *ast.CoalesceExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CoalesceExpr{\n\t\tXpr:            convertNode(n.Xpr),\n\t\tCoalescetype:   ast.Oid(n.Coalescetype),\n\t\tCoalescecollid: ast.Oid(n.Coalescecollid),\n\t\tArgs:           convertSlice(n.Args),\n\t\tLocation:       int(n.Location),\n\t}\n}\n\nfunc convertCoerceToDomain(n *pg.CoerceToDomain) *ast.CoerceToDomain {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CoerceToDomain{\n\t\tXpr:            convertNode(n.Xpr),\n\t\tArg:            convertNode(n.Arg),\n\t\tResulttype:     ast.Oid(n.Resulttype),\n\t\tResulttypmod:   n.Resulttypmod,\n\t\tResultcollid:   ast.Oid(n.Resultcollid),\n\t\tCoercionformat: ast.CoercionForm(n.Coercionformat),\n\t\tLocation:       int(n.Location),\n\t}\n}\n\nfunc convertCoerceToDomainValue(n *pg.CoerceToDomainValue) *ast.CoerceToDomainValue {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CoerceToDomainValue{\n\t\tXpr:       convertNode(n.Xpr),\n\t\tTypeId:    ast.Oid(n.TypeId),\n\t\tTypeMod:   n.TypeMod,\n\t\tCollation: ast.Oid(n.Collation),\n\t\tLocation:  int(n.Location),\n\t}\n}\n\nfunc convertCoerceViaIO(n *pg.CoerceViaIO) *ast.CoerceViaIO {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CoerceViaIO{\n\t\tXpr:          convertNode(n.Xpr),\n\t\tArg:          convertNode(n.Arg),\n\t\tResulttype:   ast.Oid(n.Resulttype),\n\t\tResultcollid: ast.Oid(n.Resultcollid),\n\t\tCoerceformat: ast.CoercionForm(n.Coerceformat),\n\t\tLocation:     int(n.Location),\n\t}\n}\n\nfunc convertCollateClause(n *pg.CollateClause) *ast.CollateClause {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CollateClause{\n\t\tArg:      convertNode(n.Arg),\n\t\tCollname: convertSlice(n.Collname),\n\t\tLocation: int(n.Location),\n\t}\n}\n\nfunc convertCollateExpr(n *pg.CollateExpr) *ast.CollateExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CollateExpr{\n\t\tXpr:      convertNode(n.Xpr),\n\t\tArg:      convertNode(n.Arg),\n\t\tCollOid:  ast.Oid(n.CollOid),\n\t\tLocation: int(n.Location),\n\t}\n}\n\nfunc convertColumnDef(n *pg.ColumnDef) *ast.ColumnDef {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ColumnDef{\n\t\tColname:       n.Colname,\n\t\tTypeName:      convertTypeName(n.TypeName),\n\t\tInhcount:      int(n.Inhcount),\n\t\tIsLocal:       n.IsLocal,\n\t\tIsNotNull:     n.IsNotNull,\n\t\tIsFromType:    n.IsFromType,\n\t\tStorage:       makeByte(n.Storage),\n\t\tRawDefault:    convertNode(n.RawDefault),\n\t\tCookedDefault: convertNode(n.CookedDefault),\n\t\tIdentity:      makeByte(n.Identity),\n\t\tCollClause:    convertCollateClause(n.CollClause),\n\t\tCollOid:       ast.Oid(n.CollOid),\n\t\tConstraints:   convertSlice(n.Constraints),\n\t\tFdwoptions:    convertSlice(n.Fdwoptions),\n\t\tLocation:      int(n.Location),\n\t}\n}\n\nfunc convertColumnRef(n *pg.ColumnRef) *ast.ColumnRef {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ColumnRef{\n\t\tFields:   convertSlice(n.Fields),\n\t\tLocation: int(n.Location),\n\t}\n}\n\nfunc convertCommentStmt(n *pg.CommentStmt) *ast.CommentStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CommentStmt{\n\t\tObjtype: ast.ObjectType(n.Objtype),\n\t\tObject:  convertNode(n.Object),\n\t\tComment: makeString(n.Comment),\n\t}\n}\n\nfunc convertCommonTableExpr(n *pg.CommonTableExpr) *ast.CommonTableExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CommonTableExpr{\n\t\tCtename:          makeString(n.Ctename),\n\t\tAliascolnames:    convertSlice(n.Aliascolnames),\n\t\tCtequery:         convertNode(n.Ctequery),\n\t\tLocation:         int(n.Location),\n\t\tCterecursive:     n.Cterecursive,\n\t\tCterefcount:      int(n.Cterefcount),\n\t\tCtecolnames:      convertSlice(n.Ctecolnames),\n\t\tCtecoltypes:      convertSlice(n.Ctecoltypes),\n\t\tCtecoltypmods:    convertSlice(n.Ctecoltypmods),\n\t\tCtecolcollations: convertSlice(n.Ctecolcollations),\n\t}\n}\n\nfunc convertCompositeTypeStmt(n *pg.CompositeTypeStmt) *ast.CompositeTypeStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\trel := parseRelationFromRangeVar(n.Typevar)\n\treturn &ast.CompositeTypeStmt{\n\t\tTypeName: rel.TypeName(),\n\t}\n}\n\nfunc convertConstraint(n *pg.Constraint) *ast.Constraint {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.Constraint{\n\t\tContype:        ast.ConstrType(n.Contype),\n\t\tConname:        makeString(n.Conname),\n\t\tDeferrable:     n.Deferrable,\n\t\tInitdeferred:   n.Initdeferred,\n\t\tLocation:       int(n.Location),\n\t\tIsNoInherit:    n.IsNoInherit,\n\t\tRawExpr:        convertNode(n.RawExpr),\n\t\tCookedExpr:     makeString(n.CookedExpr),\n\t\tGeneratedWhen:  makeByte(n.GeneratedWhen),\n\t\tKeys:           convertSlice(n.Keys),\n\t\tExclusions:     convertSlice(n.Exclusions),\n\t\tOptions:        convertSlice(n.Options),\n\t\tIndexname:      makeString(n.Indexname),\n\t\tIndexspace:     makeString(n.Indexspace),\n\t\tAccessMethod:   makeString(n.AccessMethod),\n\t\tWhereClause:    convertNode(n.WhereClause),\n\t\tPktable:        convertRangeVar(n.Pktable),\n\t\tFkAttrs:        convertSlice(n.FkAttrs),\n\t\tPkAttrs:        convertSlice(n.PkAttrs),\n\t\tFkMatchtype:    makeByte(n.FkMatchtype),\n\t\tFkUpdAction:    makeByte(n.FkUpdAction),\n\t\tFkDelAction:    makeByte(n.FkDelAction),\n\t\tOldConpfeqop:   convertSlice(n.OldConpfeqop),\n\t\tOldPktableOid:  ast.Oid(n.OldPktableOid),\n\t\tSkipValidation: n.SkipValidation,\n\t\tInitiallyValid: n.InitiallyValid,\n\t}\n}\n\nfunc convertConstraintsSetStmt(n *pg.ConstraintsSetStmt) *ast.ConstraintsSetStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ConstraintsSetStmt{\n\t\tConstraints: convertSlice(n.Constraints),\n\t\tDeferred:    n.Deferred,\n\t}\n}\n\nfunc convertConvertRowtypeExpr(n *pg.ConvertRowtypeExpr) *ast.ConvertRowtypeExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ConvertRowtypeExpr{\n\t\tXpr:           convertNode(n.Xpr),\n\t\tArg:           convertNode(n.Arg),\n\t\tResulttype:    ast.Oid(n.Resulttype),\n\t\tConvertformat: ast.CoercionForm(n.Convertformat),\n\t\tLocation:      int(n.Location),\n\t}\n}\n\nfunc convertCopyStmt(n *pg.CopyStmt) *ast.CopyStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CopyStmt{\n\t\tRelation:  convertRangeVar(n.Relation),\n\t\tQuery:     convertNode(n.Query),\n\t\tAttlist:   convertSlice(n.Attlist),\n\t\tIsFrom:    n.IsFrom,\n\t\tIsProgram: n.IsProgram,\n\t\tFilename:  makeString(n.Filename),\n\t\tOptions:   convertSlice(n.Options),\n\t}\n}\n\nfunc convertCreateAmStmt(n *pg.CreateAmStmt) *ast.CreateAmStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateAmStmt{\n\t\tAmname:      makeString(n.Amname),\n\t\tHandlerName: convertSlice(n.HandlerName),\n\t\tAmtype:      makeByte(n.Amtype),\n\t}\n}\n\nfunc convertCreateCastStmt(n *pg.CreateCastStmt) *ast.CreateCastStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateCastStmt{\n\t\tSourcetype: convertTypeName(n.Sourcetype),\n\t\tTargettype: convertTypeName(n.Targettype),\n\t\tFunc:       convertObjectWithArgs(n.Func),\n\t\tContext:    ast.CoercionContext(n.Context),\n\t\tInout:      n.Inout,\n\t}\n}\n\nfunc convertCreateConversionStmt(n *pg.CreateConversionStmt) *ast.CreateConversionStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateConversionStmt{\n\t\tConversionName:  convertSlice(n.ConversionName),\n\t\tForEncodingName: makeString(n.ForEncodingName),\n\t\tToEncodingName:  makeString(n.ToEncodingName),\n\t\tFuncName:        convertSlice(n.FuncName),\n\t\tDef:             n.Def,\n\t}\n}\n\nfunc convertCreateDomainStmt(n *pg.CreateDomainStmt) *ast.CreateDomainStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateDomainStmt{\n\t\tDomainname:  convertSlice(n.Domainname),\n\t\tTypeName:    convertTypeName(n.TypeName),\n\t\tCollClause:  convertCollateClause(n.CollClause),\n\t\tConstraints: convertSlice(n.Constraints),\n\t}\n}\n\nfunc convertCreateEnumStmt(n *pg.CreateEnumStmt) *ast.CreateEnumStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\trel, err := parseRelationFromNodes(n.TypeName)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn &ast.CreateEnumStmt{\n\t\tTypeName: rel.TypeName(),\n\t\tVals:     convertSlice(n.Vals),\n\t}\n}\n\nfunc convertCreateEventTrigStmt(n *pg.CreateEventTrigStmt) *ast.CreateEventTrigStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateEventTrigStmt{\n\t\tTrigname:   makeString(n.Trigname),\n\t\tEventname:  makeString(n.Eventname),\n\t\tWhenclause: convertSlice(n.Whenclause),\n\t\tFuncname:   convertSlice(n.Funcname),\n\t}\n}\n\nfunc convertCreateExtensionStmt(n *pg.CreateExtensionStmt) *ast.CreateExtensionStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateExtensionStmt{\n\t\tExtname:     makeString(n.Extname),\n\t\tIfNotExists: n.IfNotExists,\n\t\tOptions:     convertSlice(n.Options),\n\t}\n}\n\nfunc convertCreateFdwStmt(n *pg.CreateFdwStmt) *ast.CreateFdwStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateFdwStmt{\n\t\tFdwname:     makeString(n.Fdwname),\n\t\tFuncOptions: convertSlice(n.FuncOptions),\n\t\tOptions:     convertSlice(n.Options),\n\t}\n}\n\nfunc convertCreateForeignServerStmt(n *pg.CreateForeignServerStmt) *ast.CreateForeignServerStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateForeignServerStmt{\n\t\tServername:  makeString(n.Servername),\n\t\tServertype:  makeString(n.Servertype),\n\t\tVersion:     makeString(n.Version),\n\t\tFdwname:     makeString(n.Fdwname),\n\t\tIfNotExists: n.IfNotExists,\n\t\tOptions:     convertSlice(n.Options),\n\t}\n}\n\nfunc convertCreateForeignTableStmt(n *pg.CreateForeignTableStmt) *ast.CreateForeignTableStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateForeignTableStmt{\n\t\tServername: makeString(n.Servername),\n\t\tOptions:    convertSlice(n.Options),\n\t}\n}\n\nfunc convertCreateFunctionStmt(n *pg.CreateFunctionStmt) *ast.CreateFunctionStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\trel, err := parseRelationFromNodes(n.Funcname)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn &ast.CreateFunctionStmt{\n\t\tReplace:    n.Replace,\n\t\tFunc:       rel.FuncName(),\n\t\tParams:     convertSlice(n.Parameters),\n\t\tReturnType: convertTypeName(n.ReturnType),\n\t\tOptions:    convertSlice(n.Options),\n\t}\n}\n\nfunc convertCreateOpClassItem(n *pg.CreateOpClassItem) *ast.CreateOpClassItem {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateOpClassItem{\n\t\tItemtype:    int(n.Itemtype),\n\t\tName:        convertObjectWithArgs(n.Name),\n\t\tNumber:      int(n.Number),\n\t\tOrderFamily: convertSlice(n.OrderFamily),\n\t\tClassArgs:   convertSlice(n.ClassArgs),\n\t\tStoredtype:  convertTypeName(n.Storedtype),\n\t}\n}\n\nfunc convertCreateOpClassStmt(n *pg.CreateOpClassStmt) *ast.CreateOpClassStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateOpClassStmt{\n\t\tOpclassname:  convertSlice(n.Opclassname),\n\t\tOpfamilyname: convertSlice(n.Opfamilyname),\n\t\tAmname:       makeString(n.Amname),\n\t\tDatatype:     convertTypeName(n.Datatype),\n\t\tItems:        convertSlice(n.Items),\n\t\tIsDefault:    n.IsDefault,\n\t}\n}\n\nfunc convertCreateOpFamilyStmt(n *pg.CreateOpFamilyStmt) *ast.CreateOpFamilyStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateOpFamilyStmt{\n\t\tOpfamilyname: convertSlice(n.Opfamilyname),\n\t\tAmname:       makeString(n.Amname),\n\t}\n}\n\nfunc convertCreatePLangStmt(n *pg.CreatePLangStmt) *ast.CreatePLangStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreatePLangStmt{\n\t\tReplace:     n.Replace,\n\t\tPlname:      makeString(n.Plname),\n\t\tPlhandler:   convertSlice(n.Plhandler),\n\t\tPlinline:    convertSlice(n.Plinline),\n\t\tPlvalidator: convertSlice(n.Plvalidator),\n\t\tPltrusted:   n.Pltrusted,\n\t}\n}\n\nfunc convertCreatePolicyStmt(n *pg.CreatePolicyStmt) *ast.CreatePolicyStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreatePolicyStmt{\n\t\tPolicyName: makeString(n.PolicyName),\n\t\tTable:      convertRangeVar(n.Table),\n\t\tCmdName:    makeString(n.CmdName),\n\t\tPermissive: n.Permissive,\n\t\tRoles:      convertSlice(n.Roles),\n\t\tQual:       convertNode(n.Qual),\n\t\tWithCheck:  convertNode(n.WithCheck),\n\t}\n}\n\nfunc convertCreatePublicationStmt(n *pg.CreatePublicationStmt) *ast.CreatePublicationStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreatePublicationStmt{\n\t\tPubname:      makeString(n.Pubname),\n\t\tOptions:      convertSlice(n.Options),\n\t\tTables:       convertSlice(n.Pubobjects),\n\t\tForAllTables: n.ForAllTables,\n\t}\n}\n\nfunc convertCreateRangeStmt(n *pg.CreateRangeStmt) *ast.CreateRangeStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateRangeStmt{\n\t\tTypeName: convertSlice(n.TypeName),\n\t\tParams:   convertSlice(n.Params),\n\t}\n}\n\nfunc convertCreateRoleStmt(n *pg.CreateRoleStmt) *ast.CreateRoleStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateRoleStmt{\n\t\tStmtType: ast.RoleStmtType(n.StmtType),\n\t\tRole:     makeString(n.Role),\n\t\tOptions:  convertSlice(n.Options),\n\t}\n}\n\nfunc convertCreateSchemaStmt(n *pg.CreateSchemaStmt) *ast.CreateSchemaStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateSchemaStmt{\n\t\tName:        makeString(n.Schemaname),\n\t\tAuthrole:    convertRoleSpec(n.Authrole),\n\t\tSchemaElts:  convertSlice(n.SchemaElts),\n\t\tIfNotExists: n.IfNotExists,\n\t}\n}\n\nfunc convertCreateSeqStmt(n *pg.CreateSeqStmt) *ast.CreateSeqStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateSeqStmt{\n\t\tSequence:    convertRangeVar(n.Sequence),\n\t\tOptions:     convertSlice(n.Options),\n\t\tOwnerId:     ast.Oid(n.OwnerId),\n\t\tForIdentity: n.ForIdentity,\n\t\tIfNotExists: n.IfNotExists,\n\t}\n}\n\nfunc convertCreateStatsStmt(n *pg.CreateStatsStmt) *ast.CreateStatsStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateStatsStmt{\n\t\tDefnames:    convertSlice(n.Defnames),\n\t\tStatTypes:   convertSlice(n.StatTypes),\n\t\tExprs:       convertSlice(n.Exprs),\n\t\tRelations:   convertSlice(n.Relations),\n\t\tIfNotExists: n.IfNotExists,\n\t}\n}\n\nfunc convertCreateStmt(n *pg.CreateStmt) *ast.CreateStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateStmt{\n\t\tRelation:       convertRangeVar(n.Relation),\n\t\tTableElts:      convertSlice(n.TableElts),\n\t\tInhRelations:   convertSlice(n.InhRelations),\n\t\tPartbound:      convertPartitionBoundSpec(n.Partbound),\n\t\tPartspec:       convertPartitionSpec(n.Partspec),\n\t\tOfTypename:     convertTypeName(n.OfTypename),\n\t\tConstraints:    convertSlice(n.Constraints),\n\t\tOptions:        convertSlice(n.Options),\n\t\tOncommit:       ast.OnCommitAction(n.Oncommit),\n\t\tTablespacename: makeString(n.Tablespacename),\n\t\tIfNotExists:    n.IfNotExists,\n\t}\n}\n\nfunc convertCreateSubscriptionStmt(n *pg.CreateSubscriptionStmt) *ast.CreateSubscriptionStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateSubscriptionStmt{\n\t\tSubname:     makeString(n.Subname),\n\t\tConninfo:    makeString(n.Conninfo),\n\t\tPublication: convertSlice(n.Publication),\n\t\tOptions:     convertSlice(n.Options),\n\t}\n}\n\nfunc convertCreateTableAsStmt(n *pg.CreateTableAsStmt) *ast.CreateTableAsStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\tres := &ast.CreateTableAsStmt{\n\t\tQuery:        convertNode(n.Query),\n\t\tInto:         convertIntoClause(n.Into),\n\t\tRelkind:      ast.ObjectType(n.Objtype),\n\t\tIsSelectInto: n.IsSelectInto,\n\t\tIfNotExists:  n.IfNotExists,\n\t}\n\treturn res\n}\n\nfunc convertCreateTableSpaceStmt(n *pg.CreateTableSpaceStmt) *ast.CreateTableSpaceStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateTableSpaceStmt{\n\t\tTablespacename: makeString(n.Tablespacename),\n\t\tOwner:          convertRoleSpec(n.Owner),\n\t\tLocation:       makeString(n.Location),\n\t\tOptions:        convertSlice(n.Options),\n\t}\n}\n\nfunc convertCreateTransformStmt(n *pg.CreateTransformStmt) *ast.CreateTransformStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateTransformStmt{\n\t\tReplace:  n.Replace,\n\t\tTypeName: convertTypeName(n.TypeName),\n\t\tLang:     makeString(n.Lang),\n\t\tFromsql:  convertObjectWithArgs(n.Fromsql),\n\t\tTosql:    convertObjectWithArgs(n.Tosql),\n\t}\n}\n\nfunc convertCreateTrigStmt(n *pg.CreateTrigStmt) *ast.CreateTrigStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateTrigStmt{\n\t\tTrigname:       makeString(n.Trigname),\n\t\tRelation:       convertRangeVar(n.Relation),\n\t\tFuncname:       convertSlice(n.Funcname),\n\t\tArgs:           convertSlice(n.Args),\n\t\tRow:            n.Row,\n\t\tTiming:         int16(n.Timing),\n\t\tEvents:         int16(n.Events),\n\t\tColumns:        convertSlice(n.Columns),\n\t\tWhenClause:     convertNode(n.WhenClause),\n\t\tIsconstraint:   n.Isconstraint,\n\t\tTransitionRels: convertSlice(n.TransitionRels),\n\t\tDeferrable:     n.Deferrable,\n\t\tInitdeferred:   n.Initdeferred,\n\t\tConstrrel:      convertRangeVar(n.Constrrel),\n\t}\n}\n\nfunc convertCreateUserMappingStmt(n *pg.CreateUserMappingStmt) *ast.CreateUserMappingStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreateUserMappingStmt{\n\t\tUser:        convertRoleSpec(n.User),\n\t\tServername:  makeString(n.Servername),\n\t\tIfNotExists: n.IfNotExists,\n\t\tOptions:     convertSlice(n.Options),\n\t}\n}\n\nfunc convertCreatedbStmt(n *pg.CreatedbStmt) *ast.CreatedbStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CreatedbStmt{\n\t\tDbname:  makeString(n.Dbname),\n\t\tOptions: convertSlice(n.Options),\n\t}\n}\n\nfunc convertCurrentOfExpr(n *pg.CurrentOfExpr) *ast.CurrentOfExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.CurrentOfExpr{\n\t\tXpr:         convertNode(n.Xpr),\n\t\tCvarno:      ast.Index(n.Cvarno),\n\t\tCursorName:  makeString(n.CursorName),\n\t\tCursorParam: int(n.CursorParam),\n\t}\n}\n\nfunc convertDeallocateStmt(n *pg.DeallocateStmt) *ast.DeallocateStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.DeallocateStmt{\n\t\tName: makeString(n.Name),\n\t}\n}\n\nfunc convertDeclareCursorStmt(n *pg.DeclareCursorStmt) *ast.DeclareCursorStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.DeclareCursorStmt{\n\t\tPortalname: makeString(n.Portalname),\n\t\tOptions:    int(n.Options),\n\t\tQuery:      convertNode(n.Query),\n\t}\n}\n\nfunc convertDefElem(n *pg.DefElem) *ast.DefElem {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.DefElem{\n\t\tDefnamespace: makeString(n.Defnamespace),\n\t\tDefname:      makeString(n.Defname),\n\t\tArg:          convertNode(n.Arg),\n\t\tDefaction:    ast.DefElemAction(n.Defaction),\n\t\tLocation:     int(n.Location),\n\t}\n}\n\nfunc convertDefineStmt(n *pg.DefineStmt) *ast.DefineStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.DefineStmt{\n\t\tKind:        ast.ObjectType(n.Kind),\n\t\tOldstyle:    n.Oldstyle,\n\t\tDefnames:    convertSlice(n.Defnames),\n\t\tArgs:        convertSlice(n.Args),\n\t\tDefinition:  convertSlice(n.Definition),\n\t\tIfNotExists: n.IfNotExists,\n\t}\n}\n\nfunc convertDeleteStmt(n *pg.DeleteStmt) *ast.DeleteStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.DeleteStmt{\n\t\tRelations: &ast.List{\n\t\t\tItems: []ast.Node{convertRangeVar(n.Relation)},\n\t\t},\n\t\tUsingClause:   convertSlice(n.UsingClause),\n\t\tWhereClause:   convertNode(n.WhereClause),\n\t\tReturningList: convertSlice(n.ReturningList),\n\t\tWithClause:    convertWithClause(n.WithClause),\n\t}\n}\n\nfunc convertDiscardStmt(n *pg.DiscardStmt) *ast.DiscardStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.DiscardStmt{\n\t\tTarget: ast.DiscardMode(n.Target),\n\t}\n}\n\nfunc convertDoStmt(n *pg.DoStmt) *ast.DoStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.DoStmt{\n\t\tArgs: convertSlice(n.Args),\n\t}\n}\n\nfunc convertDropOwnedStmt(n *pg.DropOwnedStmt) *ast.DropOwnedStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.DropOwnedStmt{\n\t\tRoles:    convertSlice(n.Roles),\n\t\tBehavior: ast.DropBehavior(n.Behavior),\n\t}\n}\n\nfunc convertDropRoleStmt(n *pg.DropRoleStmt) *ast.DropRoleStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.DropRoleStmt{\n\t\tRoles:     convertSlice(n.Roles),\n\t\tMissingOk: n.MissingOk,\n\t}\n}\n\nfunc convertDropStmt(n *pg.DropStmt) *ast.DropStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.DropStmt{\n\t\tObjects:    convertSlice(n.Objects),\n\t\tRemoveType: ast.ObjectType(n.RemoveType),\n\t\tBehavior:   ast.DropBehavior(n.Behavior),\n\t\tMissingOk:  n.MissingOk,\n\t\tConcurrent: n.Concurrent,\n\t}\n}\n\nfunc convertDropSubscriptionStmt(n *pg.DropSubscriptionStmt) *ast.DropSubscriptionStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.DropSubscriptionStmt{\n\t\tSubname:   makeString(n.Subname),\n\t\tMissingOk: n.MissingOk,\n\t\tBehavior:  ast.DropBehavior(n.Behavior),\n\t}\n}\n\nfunc convertDropTableSpaceStmt(n *pg.DropTableSpaceStmt) *ast.DropTableSpaceStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.DropTableSpaceStmt{\n\t\tTablespacename: makeString(n.Tablespacename),\n\t\tMissingOk:      n.MissingOk,\n\t}\n}\n\nfunc convertDropUserMappingStmt(n *pg.DropUserMappingStmt) *ast.DropUserMappingStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.DropUserMappingStmt{\n\t\tUser:       convertRoleSpec(n.User),\n\t\tServername: makeString(n.Servername),\n\t\tMissingOk:  n.MissingOk,\n\t}\n}\n\nfunc convertDropdbStmt(n *pg.DropdbStmt) *ast.DropdbStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.DropdbStmt{\n\t\tDbname:    makeString(n.Dbname),\n\t\tMissingOk: n.MissingOk,\n\t}\n}\n\nfunc convertExecuteStmt(n *pg.ExecuteStmt) *ast.ExecuteStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ExecuteStmt{\n\t\tName:   makeString(n.Name),\n\t\tParams: convertSlice(n.Params),\n\t}\n}\n\nfunc convertExplainStmt(n *pg.ExplainStmt) *ast.ExplainStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ExplainStmt{\n\t\tQuery:   convertNode(n.Query),\n\t\tOptions: convertSlice(n.Options),\n\t}\n}\n\nfunc convertFetchStmt(n *pg.FetchStmt) *ast.FetchStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.FetchStmt{\n\t\tDirection:  ast.FetchDirection(n.Direction),\n\t\tHowMany:    n.HowMany,\n\t\tPortalname: makeString(n.Portalname),\n\t\tIsmove:     n.Ismove,\n\t}\n}\n\nfunc convertFieldSelect(n *pg.FieldSelect) *ast.FieldSelect {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.FieldSelect{\n\t\tXpr:          convertNode(n.Xpr),\n\t\tArg:          convertNode(n.Arg),\n\t\tFieldnum:     ast.AttrNumber(n.Fieldnum),\n\t\tResulttype:   ast.Oid(n.Resulttype),\n\t\tResulttypmod: n.Resulttypmod,\n\t\tResultcollid: ast.Oid(n.Resultcollid),\n\t}\n}\n\nfunc convertFieldStore(n *pg.FieldStore) *ast.FieldStore {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.FieldStore{\n\t\tXpr:        convertNode(n.Xpr),\n\t\tArg:        convertNode(n.Arg),\n\t\tNewvals:    convertSlice(n.Newvals),\n\t\tFieldnums:  convertSlice(n.Fieldnums),\n\t\tResulttype: ast.Oid(n.Resulttype),\n\t}\n}\n\nfunc convertFloat(n *pg.Float) *ast.Float {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.Float{\n\t\tStr: n.Fval,\n\t}\n}\n\nfunc convertFromExpr(n *pg.FromExpr) *ast.FromExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.FromExpr{\n\t\tFromlist: convertSlice(n.Fromlist),\n\t\tQuals:    convertNode(n.Quals),\n\t}\n}\n\nfunc convertFuncCall(n *pg.FuncCall) *ast.FuncCall {\n\tif n == nil {\n\t\treturn nil\n\t}\n\trel, err := parseRelationFromNodes(n.Funcname)\n\tif err != nil {\n\t\t// TODO: How should we handle errors?\n\t\tpanic(err)\n\t}\n\treturn &ast.FuncCall{\n\t\tFunc:           rel.FuncName(),\n\t\tFuncname:       convertSlice(n.Funcname),\n\t\tArgs:           convertSlice(n.Args),\n\t\tAggOrder:       convertSlice(n.AggOrder),\n\t\tAggFilter:      convertNode(n.AggFilter),\n\t\tAggWithinGroup: n.AggWithinGroup,\n\t\tAggStar:        n.AggStar,\n\t\tAggDistinct:    n.AggDistinct,\n\t\tFuncVariadic:   n.FuncVariadic,\n\t\tOver:           convertWindowDef(n.Over),\n\t\tLocation:       int(n.Location),\n\t}\n}\n\nfunc convertFuncExpr(n *pg.FuncExpr) *ast.FuncExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.FuncExpr{\n\t\tXpr:            convertNode(n.Xpr),\n\t\tFuncid:         ast.Oid(n.Funcid),\n\t\tFuncresulttype: ast.Oid(n.Funcresulttype),\n\t\tFuncretset:     n.Funcretset,\n\t\tFuncvariadic:   n.Funcvariadic,\n\t\tFuncformat:     ast.CoercionForm(n.Funcformat),\n\t\tFunccollid:     ast.Oid(n.Funccollid),\n\t\tInputcollid:    ast.Oid(n.Inputcollid),\n\t\tArgs:           convertSlice(n.Args),\n\t\tLocation:       int(n.Location),\n\t}\n}\n\nfunc convertFunctionParameter(n *pg.FunctionParameter) *ast.FunctionParameter {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.FunctionParameter{\n\t\tName:    makeString(n.Name),\n\t\tArgType: convertTypeName(n.ArgType),\n\t\tMode:    ast.FunctionParameterMode(n.Mode),\n\t\tDefexpr: convertNode(n.Defexpr),\n\t}\n}\n\nfunc convertGrantRoleStmt(n *pg.GrantRoleStmt) *ast.GrantRoleStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.GrantRoleStmt{\n\t\tGrantedRoles: convertSlice(n.GrantedRoles),\n\t\tGranteeRoles: convertSlice(n.GranteeRoles),\n\t\tIsGrant:      n.IsGrant,\n\t\tGrantor:      convertRoleSpec(n.Grantor),\n\t\tBehavior:     ast.DropBehavior(n.Behavior),\n\t}\n}\n\nfunc convertGrantStmt(n *pg.GrantStmt) *ast.GrantStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.GrantStmt{\n\t\tIsGrant:     n.IsGrant,\n\t\tTargtype:    ast.GrantTargetType(n.Targtype),\n\t\tObjtype:     ast.GrantObjectType(n.Objtype),\n\t\tObjects:     convertSlice(n.Objects),\n\t\tPrivileges:  convertSlice(n.Privileges),\n\t\tGrantees:    convertSlice(n.Grantees),\n\t\tGrantOption: n.GrantOption,\n\t\tBehavior:    ast.DropBehavior(n.Behavior),\n\t}\n}\n\nfunc convertGroupingFunc(n *pg.GroupingFunc) *ast.GroupingFunc {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.GroupingFunc{\n\t\tXpr:         convertNode(n.Xpr),\n\t\tArgs:        convertSlice(n.Args),\n\t\tRefs:        convertSlice(n.Refs),\n\t\tAgglevelsup: ast.Index(n.Agglevelsup),\n\t\tLocation:    int(n.Location),\n\t}\n}\n\nfunc convertGroupingSet(n *pg.GroupingSet) *ast.GroupingSet {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.GroupingSet{\n\t\tKind:     ast.GroupingSetKind(n.Kind),\n\t\tContent:  convertSlice(n.Content),\n\t\tLocation: int(n.Location),\n\t}\n}\n\nfunc convertImportForeignSchemaStmt(n *pg.ImportForeignSchemaStmt) *ast.ImportForeignSchemaStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ImportForeignSchemaStmt{\n\t\tServerName:   makeString(n.ServerName),\n\t\tRemoteSchema: makeString(n.RemoteSchema),\n\t\tLocalSchema:  makeString(n.LocalSchema),\n\t\tListType:     ast.ImportForeignSchemaType(n.ListType),\n\t\tTableList:    convertSlice(n.TableList),\n\t\tOptions:      convertSlice(n.Options),\n\t}\n}\n\nfunc convertIndexElem(n *pg.IndexElem) *ast.IndexElem {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.IndexElem{\n\t\tName:          makeString(n.Name),\n\t\tExpr:          convertNode(n.Expr),\n\t\tIndexcolname:  makeString(n.Indexcolname),\n\t\tCollation:     convertSlice(n.Collation),\n\t\tOpclass:       convertSlice(n.Opclass),\n\t\tOrdering:      ast.SortByDir(n.Ordering),\n\t\tNullsOrdering: ast.SortByNulls(n.NullsOrdering),\n\t}\n}\n\nfunc convertIndexStmt(n *pg.IndexStmt) *ast.IndexStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.IndexStmt{\n\t\tIdxname:        makeString(n.Idxname),\n\t\tRelation:       convertRangeVar(n.Relation),\n\t\tAccessMethod:   makeString(n.AccessMethod),\n\t\tTableSpace:     makeString(n.TableSpace),\n\t\tIndexParams:    convertSlice(n.IndexParams),\n\t\tOptions:        convertSlice(n.Options),\n\t\tWhereClause:    convertNode(n.WhereClause),\n\t\tExcludeOpNames: convertSlice(n.ExcludeOpNames),\n\t\tIdxcomment:     makeString(n.Idxcomment),\n\t\tIndexOid:       ast.Oid(n.IndexOid),\n\t\tUnique:         n.Unique,\n\t\tPrimary:        n.Primary,\n\t\tIsconstraint:   n.Isconstraint,\n\t\tDeferrable:     n.Deferrable,\n\t\tInitdeferred:   n.Initdeferred,\n\t\tTransformed:    n.Transformed,\n\t\tConcurrent:     n.Concurrent,\n\t\tIfNotExists:    n.IfNotExists,\n\t}\n}\n\nfunc convertInferClause(n *pg.InferClause) *ast.InferClause {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.InferClause{\n\t\tIndexElems:  convertSlice(n.IndexElems),\n\t\tWhereClause: convertNode(n.WhereClause),\n\t\tConname:     makeString(n.Conname),\n\t\tLocation:    int(n.Location),\n\t}\n}\n\nfunc convertInferenceElem(n *pg.InferenceElem) *ast.InferenceElem {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.InferenceElem{\n\t\tXpr:          convertNode(n.Xpr),\n\t\tExpr:         convertNode(n.Expr),\n\t\tInfercollid:  ast.Oid(n.Infercollid),\n\t\tInferopclass: ast.Oid(n.Inferopclass),\n\t}\n}\n\nfunc convertInlineCodeBlock(n *pg.InlineCodeBlock) *ast.InlineCodeBlock {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.InlineCodeBlock{\n\t\tSourceText:    makeString(n.SourceText),\n\t\tLangOid:       ast.Oid(n.LangOid),\n\t\tLangIsTrusted: n.LangIsTrusted,\n\t}\n}\n\nfunc convertInsertStmt(n *pg.InsertStmt) *ast.InsertStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.InsertStmt{\n\t\tRelation:         convertRangeVar(n.Relation),\n\t\tCols:             convertSlice(n.Cols),\n\t\tSelectStmt:       convertNode(n.SelectStmt),\n\t\tOnConflictClause: convertOnConflictClause(n.OnConflictClause),\n\t\tReturningList:    convertSlice(n.ReturningList),\n\t\tWithClause:       convertWithClause(n.WithClause),\n\t\tOverride:         ast.OverridingKind(n.Override),\n\t}\n}\n\nfunc convertInteger(n *pg.Integer) *ast.Integer {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.Integer{\n\t\tIval: int64(n.Ival),\n\t}\n}\n\nfunc convertIntoClause(n *pg.IntoClause) *ast.IntoClause {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.IntoClause{\n\t\tRel:            convertRangeVar(n.Rel),\n\t\tColNames:       convertSlice(n.ColNames),\n\t\tOptions:        convertSlice(n.Options),\n\t\tOnCommit:       ast.OnCommitAction(n.OnCommit),\n\t\tTableSpaceName: makeString(n.TableSpaceName),\n\t\tViewQuery:      convertNode(n.ViewQuery),\n\t\tSkipData:       n.SkipData,\n\t}\n}\n\nfunc convertJoinExpr(n *pg.JoinExpr) *ast.JoinExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.JoinExpr{\n\t\tJointype:    ast.JoinType(n.Jointype),\n\t\tIsNatural:   n.IsNatural,\n\t\tLarg:        convertNode(n.Larg),\n\t\tRarg:        convertNode(n.Rarg),\n\t\tUsingClause: convertSlice(n.UsingClause),\n\t\tQuals:       convertNode(n.Quals),\n\t\tAlias:       convertAlias(n.Alias),\n\t\tRtindex:     int(n.Rtindex),\n\t}\n}\n\nfunc convertListenStmt(n *pg.ListenStmt) *ast.ListenStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ListenStmt{\n\t\tConditionname: makeString(n.Conditionname),\n\t}\n}\n\nfunc convertLoadStmt(n *pg.LoadStmt) *ast.LoadStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.LoadStmt{\n\t\tFilename: makeString(n.Filename),\n\t}\n}\n\nfunc convertLockStmt(n *pg.LockStmt) *ast.LockStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.LockStmt{\n\t\tRelations: convertSlice(n.Relations),\n\t\tMode:      int(n.Mode),\n\t\tNowait:    n.Nowait,\n\t}\n}\n\nfunc convertLockingClause(n *pg.LockingClause) *ast.LockingClause {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.LockingClause{\n\t\tLockedRels: convertSlice(n.LockedRels),\n\t\tStrength:   ast.LockClauseStrength(n.Strength),\n\t\tWaitPolicy: ast.LockWaitPolicy(n.WaitPolicy),\n\t}\n}\n\nfunc convertMinMaxExpr(n *pg.MinMaxExpr) *ast.MinMaxExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.MinMaxExpr{\n\t\tXpr:          convertNode(n.Xpr),\n\t\tMinmaxtype:   ast.Oid(n.Minmaxtype),\n\t\tMinmaxcollid: ast.Oid(n.Minmaxcollid),\n\t\tInputcollid:  ast.Oid(n.Inputcollid),\n\t\tOp:           ast.MinMaxOp(n.Op),\n\t\tArgs:         convertSlice(n.Args),\n\t\tLocation:     int(n.Location),\n\t}\n}\n\nfunc convertMultiAssignRef(n *pg.MultiAssignRef) *ast.MultiAssignRef {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.MultiAssignRef{\n\t\tSource:   convertNode(n.Source),\n\t\tColno:    int(n.Colno),\n\t\tNcolumns: int(n.Ncolumns),\n\t}\n}\n\nfunc convertNamedArgExpr(n *pg.NamedArgExpr) *ast.NamedArgExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.NamedArgExpr{\n\t\tXpr:       convertNode(n.Xpr),\n\t\tArg:       convertNode(n.Arg),\n\t\tName:      makeString(n.Name),\n\t\tArgnumber: int(n.Argnumber),\n\t\tLocation:  int(n.Location),\n\t}\n}\n\nfunc convertNextValueExpr(n *pg.NextValueExpr) *ast.NextValueExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.NextValueExpr{\n\t\tXpr:    convertNode(n.Xpr),\n\t\tSeqid:  ast.Oid(n.Seqid),\n\t\tTypeId: ast.Oid(n.TypeId),\n\t}\n}\n\nfunc convertNotifyStmt(n *pg.NotifyStmt) *ast.NotifyStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.NotifyStmt{\n\t\tConditionname: makeString(n.Conditionname),\n\t\tPayload:       makeString(n.Payload),\n\t}\n}\n\nfunc convertNullTest(n *pg.NullTest) *ast.NullTest {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.NullTest{\n\t\tXpr:          convertNode(n.Xpr),\n\t\tArg:          convertNode(n.Arg),\n\t\tNulltesttype: ast.NullTestType(n.Nulltesttype),\n\t\tArgisrow:     n.Argisrow,\n\t\tLocation:     int(n.Location),\n\t}\n}\n\nfunc convertNullIfExpr(n *pg.NullIfExpr) *ast.NullIfExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.NullIfExpr{\n\t\tXpr:          convertNode(n.Xpr),\n\t\tOpno:         ast.Oid(n.Opno),\n\t\tOpresulttype: ast.Oid(n.Opresulttype),\n\t\tOpretset:     n.Opretset,\n\t\tOpcollid:     ast.Oid(n.Opcollid),\n\t\tInputcollid:  ast.Oid(n.Inputcollid),\n\t\tArgs:         convertSlice(n.Args),\n\t\tLocation:     int(n.Location),\n\t}\n}\n\nfunc convertObjectWithArgs(n *pg.ObjectWithArgs) *ast.ObjectWithArgs {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ObjectWithArgs{\n\t\tObjname:         convertSlice(n.Objname),\n\t\tObjargs:         convertSlice(n.Objargs),\n\t\tArgsUnspecified: n.ArgsUnspecified,\n\t}\n}\n\nfunc convertOnConflictClause(n *pg.OnConflictClause) *ast.OnConflictClause {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.OnConflictClause{\n\t\tAction:      ast.OnConflictAction(n.Action),\n\t\tInfer:       convertInferClause(n.Infer),\n\t\tTargetList:  convertSlice(n.TargetList),\n\t\tWhereClause: convertNode(n.WhereClause),\n\t\tLocation:    int(n.Location),\n\t}\n}\n\nfunc convertOnConflictExpr(n *pg.OnConflictExpr) *ast.OnConflictExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.OnConflictExpr{\n\t\tAction:          ast.OnConflictAction(n.Action),\n\t\tArbiterElems:    convertSlice(n.ArbiterElems),\n\t\tArbiterWhere:    convertNode(n.ArbiterWhere),\n\t\tConstraint:      ast.Oid(n.Constraint),\n\t\tOnConflictSet:   convertSlice(n.OnConflictSet),\n\t\tOnConflictWhere: convertNode(n.OnConflictWhere),\n\t\tExclRelIndex:    int(n.ExclRelIndex),\n\t\tExclRelTlist:    convertSlice(n.ExclRelTlist),\n\t}\n}\n\nfunc convertOpExpr(n *pg.OpExpr) *ast.OpExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.OpExpr{\n\t\tXpr:          convertNode(n.Xpr),\n\t\tOpno:         ast.Oid(n.Opno),\n\t\tOpresulttype: ast.Oid(n.Opresulttype),\n\t\tOpretset:     n.Opretset,\n\t\tOpcollid:     ast.Oid(n.Opcollid),\n\t\tInputcollid:  ast.Oid(n.Inputcollid),\n\t\tArgs:         convertSlice(n.Args),\n\t\tLocation:     int(n.Location),\n\t}\n}\n\nfunc convertParam(n *pg.Param) *ast.Param {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.Param{\n\t\tXpr:         convertNode(n.Xpr),\n\t\tParamkind:   ast.ParamKind(n.Paramkind),\n\t\tParamid:     int(n.Paramid),\n\t\tParamtype:   ast.Oid(n.Paramtype),\n\t\tParamtypmod: n.Paramtypmod,\n\t\tParamcollid: ast.Oid(n.Paramcollid),\n\t\tLocation:    int(n.Location),\n\t}\n}\n\nfunc convertParamRef(n *pg.ParamRef) *ast.ParamRef {\n\tif n == nil {\n\t\treturn nil\n\t}\n\tvar dollar bool\n\tif n.Number != 0 {\n\t\tdollar = true\n\t}\n\treturn &ast.ParamRef{\n\t\tDollar:   dollar,\n\t\tNumber:   int(n.Number),\n\t\tLocation: int(n.Location),\n\t}\n}\n\nfunc convertPartitionBoundSpec(n *pg.PartitionBoundSpec) *ast.PartitionBoundSpec {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.PartitionBoundSpec{\n\t\tStrategy:    makeByte(n.Strategy),\n\t\tListdatums:  convertSlice(n.Listdatums),\n\t\tLowerdatums: convertSlice(n.Lowerdatums),\n\t\tUpperdatums: convertSlice(n.Upperdatums),\n\t\tLocation:    int(n.Location),\n\t}\n}\n\nfunc convertPartitionCmd(n *pg.PartitionCmd) *ast.PartitionCmd {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.PartitionCmd{\n\t\tName:  convertRangeVar(n.Name),\n\t\tBound: convertPartitionBoundSpec(n.Bound),\n\t}\n}\n\nfunc convertPartitionElem(n *pg.PartitionElem) *ast.PartitionElem {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.PartitionElem{\n\t\tName:      makeString(n.Name),\n\t\tExpr:      convertNode(n.Expr),\n\t\tCollation: convertSlice(n.Collation),\n\t\tOpclass:   convertSlice(n.Opclass),\n\t\tLocation:  int(n.Location),\n\t}\n}\n\nfunc convertPartitionRangeDatum(n *pg.PartitionRangeDatum) *ast.PartitionRangeDatum {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.PartitionRangeDatum{\n\t\tKind:     ast.PartitionRangeDatumKind(n.Kind),\n\t\tValue:    convertNode(n.Value),\n\t\tLocation: int(n.Location),\n\t}\n}\n\nfunc convertPartitionSpec(n *pg.PartitionSpec) *ast.PartitionSpec {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.PartitionSpec{\n\t\tStrategy:   makeString(n.Strategy.String()),\n\t\tPartParams: convertSlice(n.PartParams),\n\t\tLocation:   int(n.Location),\n\t}\n}\n\nfunc convertPrepareStmt(n *pg.PrepareStmt) *ast.PrepareStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.PrepareStmt{\n\t\tName:     makeString(n.Name),\n\t\tArgtypes: convertSlice(n.Argtypes),\n\t\tQuery:    convertNode(n.Query),\n\t}\n}\n\nfunc convertQuery(n *pg.Query) *ast.Query {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.Query{\n\t\tCommandType:      ast.CmdType(n.CommandType),\n\t\tQuerySource:      ast.QuerySource(n.QuerySource),\n\t\tCanSetTag:        n.CanSetTag,\n\t\tUtilityStmt:      convertNode(n.UtilityStmt),\n\t\tResultRelation:   int(n.ResultRelation),\n\t\tHasAggs:          n.HasAggs,\n\t\tHasWindowFuncs:   n.HasWindowFuncs,\n\t\tHasTargetSrfs:    n.HasTargetSrfs,\n\t\tHasSubLinks:      n.HasSubLinks,\n\t\tHasDistinctOn:    n.HasDistinctOn,\n\t\tHasRecursive:     n.HasRecursive,\n\t\tHasModifyingCte:  n.HasModifyingCte,\n\t\tHasForUpdate:     n.HasForUpdate,\n\t\tHasRowSecurity:   n.HasRowSecurity,\n\t\tCteList:          convertSlice(n.CteList),\n\t\tRtable:           convertSlice(n.Rtable),\n\t\tJointree:         convertFromExpr(n.Jointree),\n\t\tTargetList:       convertSlice(n.TargetList),\n\t\tOverride:         ast.OverridingKind(n.Override),\n\t\tOnConflict:       convertOnConflictExpr(n.OnConflict),\n\t\tReturningList:    convertSlice(n.ReturningList),\n\t\tGroupClause:      convertSlice(n.GroupClause),\n\t\tGroupingSets:     convertSlice(n.GroupingSets),\n\t\tHavingQual:       convertNode(n.HavingQual),\n\t\tWindowClause:     convertSlice(n.WindowClause),\n\t\tDistinctClause:   convertSlice(n.DistinctClause),\n\t\tSortClause:       convertSlice(n.SortClause),\n\t\tLimitOffset:      convertNode(n.LimitOffset),\n\t\tLimitCount:       convertNode(n.LimitCount),\n\t\tRowMarks:         convertSlice(n.RowMarks),\n\t\tSetOperations:    convertNode(n.SetOperations),\n\t\tConstraintDeps:   convertSlice(n.ConstraintDeps),\n\t\tWithCheckOptions: convertSlice(n.WithCheckOptions),\n\t\tStmtLocation:     int(n.StmtLocation),\n\t\tStmtLen:          int(n.StmtLen),\n\t}\n}\n\nfunc convertRangeFunction(n *pg.RangeFunction) *ast.RangeFunction {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RangeFunction{\n\t\tLateral:    n.Lateral,\n\t\tOrdinality: n.Ordinality,\n\t\tIsRowsfrom: n.IsRowsfrom,\n\t\tFunctions:  convertSlice(n.Functions),\n\t\tAlias:      convertAlias(n.Alias),\n\t\tColdeflist: convertSlice(n.Coldeflist),\n\t}\n}\n\nfunc convertRangeSubselect(n *pg.RangeSubselect) *ast.RangeSubselect {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RangeSubselect{\n\t\tLateral:  n.Lateral,\n\t\tSubquery: convertNode(n.Subquery),\n\t\tAlias:    convertAlias(n.Alias),\n\t}\n}\n\nfunc convertRangeTableFunc(n *pg.RangeTableFunc) *ast.RangeTableFunc {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RangeTableFunc{\n\t\tLateral:    n.Lateral,\n\t\tDocexpr:    convertNode(n.Docexpr),\n\t\tRowexpr:    convertNode(n.Rowexpr),\n\t\tNamespaces: convertSlice(n.Namespaces),\n\t\tColumns:    convertSlice(n.Columns),\n\t\tAlias:      convertAlias(n.Alias),\n\t\tLocation:   int(n.Location),\n\t}\n}\n\nfunc convertRangeTableFuncCol(n *pg.RangeTableFuncCol) *ast.RangeTableFuncCol {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RangeTableFuncCol{\n\t\tColname:       makeString(n.Colname),\n\t\tTypeName:      convertTypeName(n.TypeName),\n\t\tForOrdinality: n.ForOrdinality,\n\t\tIsNotNull:     n.IsNotNull,\n\t\tColexpr:       convertNode(n.Colexpr),\n\t\tColdefexpr:    convertNode(n.Coldefexpr),\n\t\tLocation:      int(n.Location),\n\t}\n}\n\nfunc convertRangeTableSample(n *pg.RangeTableSample) *ast.RangeTableSample {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RangeTableSample{\n\t\tRelation:   convertNode(n.Relation),\n\t\tMethod:     convertSlice(n.Method),\n\t\tArgs:       convertSlice(n.Args),\n\t\tRepeatable: convertNode(n.Repeatable),\n\t\tLocation:   int(n.Location),\n\t}\n}\n\nfunc convertRangeTblEntry(n *pg.RangeTblEntry) *ast.RangeTblEntry {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RangeTblEntry{\n\t\tRtekind:         ast.RTEKind(n.Rtekind),\n\t\tRelid:           ast.Oid(n.Relid),\n\t\tRelkind:         makeByte(n.Relkind),\n\t\tTablesample:     convertTableSampleClause(n.Tablesample),\n\t\tSubquery:        convertQuery(n.Subquery),\n\t\tSecurityBarrier: n.SecurityBarrier,\n\t\tJointype:        ast.JoinType(n.Jointype),\n\t\tJoinaliasvars:   convertSlice(n.Joinaliasvars),\n\t\tFunctions:       convertSlice(n.Functions),\n\t\tFuncordinality:  n.Funcordinality,\n\t\tTablefunc:       convertTableFunc(n.Tablefunc),\n\t\tValuesLists:     convertSlice(n.ValuesLists),\n\t\tCtename:         makeString(n.Ctename),\n\t\tCtelevelsup:     ast.Index(n.Ctelevelsup),\n\t\tSelfReference:   n.SelfReference,\n\t\tColtypes:        convertSlice(n.Coltypes),\n\t\tColtypmods:      convertSlice(n.Coltypmods),\n\t\tColcollations:   convertSlice(n.Colcollations),\n\t\tEnrname:         makeString(n.Enrname),\n\t\tEnrtuples:       n.Enrtuples,\n\t\tAlias:           convertAlias(n.Alias),\n\t\tEref:            convertAlias(n.Eref),\n\t\tLateral:         n.Lateral,\n\t\tInh:             n.Inh,\n\t\tInFromCl:        n.InFromCl,\n\t\tSecurityQuals:   convertSlice(n.SecurityQuals),\n\t}\n}\n\nfunc convertRangeTblFunction(n *pg.RangeTblFunction) *ast.RangeTblFunction {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RangeTblFunction{\n\t\tFuncexpr:          convertNode(n.Funcexpr),\n\t\tFunccolcount:      int(n.Funccolcount),\n\t\tFunccolnames:      convertSlice(n.Funccolnames),\n\t\tFunccoltypes:      convertSlice(n.Funccoltypes),\n\t\tFunccoltypmods:    convertSlice(n.Funccoltypmods),\n\t\tFunccolcollations: convertSlice(n.Funccolcollations),\n\t\tFuncparams:        makeUint32Slice(n.Funcparams),\n\t}\n}\n\nfunc convertRangeTblRef(n *pg.RangeTblRef) *ast.RangeTblRef {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RangeTblRef{\n\t\tRtindex: int(n.Rtindex),\n\t}\n}\n\nfunc convertRangeVar(n *pg.RangeVar) *ast.RangeVar {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RangeVar{\n\t\tCatalogname:    makeString(n.Catalogname),\n\t\tSchemaname:     makeString(n.Schemaname),\n\t\tRelname:        makeString(n.Relname),\n\t\tInh:            n.Inh,\n\t\tRelpersistence: makeByte(n.Relpersistence),\n\t\tAlias:          convertAlias(n.Alias),\n\t\tLocation:       int(n.Location),\n\t}\n}\n\nfunc convertRawStmt(n *pg.RawStmt) *ast.RawStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RawStmt{\n\t\tStmt:         convertNode(n.Stmt),\n\t\tStmtLocation: int(n.StmtLocation),\n\t\tStmtLen:      int(n.StmtLen),\n\t}\n}\n\nfunc convertReassignOwnedStmt(n *pg.ReassignOwnedStmt) *ast.ReassignOwnedStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ReassignOwnedStmt{\n\t\tRoles:   convertSlice(n.Roles),\n\t\tNewrole: convertRoleSpec(n.Newrole),\n\t}\n}\n\nfunc convertRefreshMatViewStmt(n *pg.RefreshMatViewStmt) *ast.RefreshMatViewStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RefreshMatViewStmt{\n\t\tConcurrent: n.Concurrent,\n\t\tSkipData:   n.SkipData,\n\t\tRelation:   convertRangeVar(n.Relation),\n\t}\n}\n\nfunc convertReindexStmt(n *pg.ReindexStmt) *ast.ReindexStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ReindexStmt{\n\t\tKind:     ast.ReindexObjectType(n.Kind),\n\t\tRelation: convertRangeVar(n.Relation),\n\t\tName:     makeString(n.Name),\n\t\t// Options:  int(n.Options), TODO: Support params\n\t}\n}\n\nfunc convertRelabelType(n *pg.RelabelType) *ast.RelabelType {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RelabelType{\n\t\tXpr:           convertNode(n.Xpr),\n\t\tArg:           convertNode(n.Arg),\n\t\tResulttype:    ast.Oid(n.Resulttype),\n\t\tResulttypmod:  n.Resulttypmod,\n\t\tResultcollid:  ast.Oid(n.Resultcollid),\n\t\tRelabelformat: ast.CoercionForm(n.Relabelformat),\n\t\tLocation:      int(n.Location),\n\t}\n}\n\nfunc convertRenameStmt(n *pg.RenameStmt) *ast.RenameStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RenameStmt{\n\t\tRenameType:   ast.ObjectType(n.RenameType),\n\t\tRelationType: ast.ObjectType(n.RelationType),\n\t\tRelation:     convertRangeVar(n.Relation),\n\t\tObject:       convertNode(n.Object),\n\t\tSubname:      makeString(n.Subname),\n\t\tNewname:      makeString(n.Newname),\n\t\tBehavior:     ast.DropBehavior(n.Behavior),\n\t\tMissingOk:    n.MissingOk,\n\t}\n}\n\nfunc convertReplicaIdentityStmt(n *pg.ReplicaIdentityStmt) *ast.ReplicaIdentityStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ReplicaIdentityStmt{\n\t\tIdentityType: makeByte(n.IdentityType),\n\t\tName:         makeString(n.Name),\n\t}\n}\n\nfunc convertResTarget(n *pg.ResTarget) *ast.ResTarget {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ResTarget{\n\t\tName:        makeString(n.Name),\n\t\tIndirection: convertSlice(n.Indirection),\n\t\tVal:         convertNode(n.Val),\n\t\tLocation:    int(n.Location),\n\t}\n}\n\nfunc convertRoleSpec(n *pg.RoleSpec) *ast.RoleSpec {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RoleSpec{\n\t\tRoletype: ast.RoleSpecType(n.Roletype),\n\t\tRolename: makeString(n.Rolename),\n\t\tLocation: int(n.Location),\n\t}\n}\n\nfunc convertRowCompareExpr(n *pg.RowCompareExpr) *ast.RowCompareExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RowCompareExpr{\n\t\tXpr:          convertNode(n.Xpr),\n\t\tRctype:       ast.RowCompareType(n.Rctype),\n\t\tOpnos:        convertSlice(n.Opnos),\n\t\tOpfamilies:   convertSlice(n.Opfamilies),\n\t\tInputcollids: convertSlice(n.Inputcollids),\n\t\tLargs:        convertSlice(n.Largs),\n\t\tRargs:        convertSlice(n.Rargs),\n\t}\n}\n\nfunc convertRowExpr(n *pg.RowExpr) *ast.RowExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RowExpr{\n\t\tXpr:       convertNode(n.Xpr),\n\t\tArgs:      convertSlice(n.Args),\n\t\tRowTypeid: ast.Oid(n.RowTypeid),\n\t\tRowFormat: ast.CoercionForm(n.RowFormat),\n\t\tColnames:  convertSlice(n.Colnames),\n\t\tLocation:  int(n.Location),\n\t}\n}\n\nfunc convertRowMarkClause(n *pg.RowMarkClause) *ast.RowMarkClause {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RowMarkClause{\n\t\tRti:        ast.Index(n.Rti),\n\t\tStrength:   ast.LockClauseStrength(n.Strength),\n\t\tWaitPolicy: ast.LockWaitPolicy(n.WaitPolicy),\n\t\tPushedDown: n.PushedDown,\n\t}\n}\n\nfunc convertRuleStmt(n *pg.RuleStmt) *ast.RuleStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.RuleStmt{\n\t\tRelation:    convertRangeVar(n.Relation),\n\t\tRulename:    makeString(n.Rulename),\n\t\tWhereClause: convertNode(n.WhereClause),\n\t\tEvent:       ast.CmdType(n.Event),\n\t\tInstead:     n.Instead,\n\t\tActions:     convertSlice(n.Actions),\n\t\tReplace:     n.Replace,\n\t}\n}\n\nfunc convertSQLValueFunction(n *pg.SQLValueFunction) *ast.SQLValueFunction {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.SQLValueFunction{\n\t\tXpr:      convertNode(n.Xpr),\n\t\tOp:       ast.SQLValueFunctionOp(n.Op),\n\t\tType:     ast.Oid(n.Type),\n\t\tTypmod:   n.Typmod,\n\t\tLocation: int(n.Location),\n\t}\n}\n\nfunc convertScalarArrayOpExpr(n *pg.ScalarArrayOpExpr) *ast.ScalarArrayOpExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ScalarArrayOpExpr{\n\t\tXpr:         convertNode(n.Xpr),\n\t\tOpno:        ast.Oid(n.Opno),\n\t\tUseOr:       n.UseOr,\n\t\tInputcollid: ast.Oid(n.Inputcollid),\n\t\tArgs:        convertSlice(n.Args),\n\t\tLocation:    int(n.Location),\n\t}\n}\n\nfunc convertSecLabelStmt(n *pg.SecLabelStmt) *ast.SecLabelStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.SecLabelStmt{\n\t\tObjtype:  ast.ObjectType(n.Objtype),\n\t\tObject:   convertNode(n.Object),\n\t\tProvider: makeString(n.Provider),\n\t\tLabel:    makeString(n.Label),\n\t}\n}\n\nfunc convertSelectStmt(n *pg.SelectStmt) *ast.SelectStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\top, err := convertSetOperation(n.Op)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn &ast.SelectStmt{\n\t\tDistinctClause: convertSlice(n.DistinctClause),\n\t\tIntoClause:     convertIntoClause(n.IntoClause),\n\t\tTargetList:     convertSlice(n.TargetList),\n\t\tFromClause:     convertSlice(n.FromClause),\n\t\tWhereClause:    convertNode(n.WhereClause),\n\t\tGroupClause:    convertSlice(n.GroupClause),\n\t\tHavingClause:   convertNode(n.HavingClause),\n\t\tWindowClause:   convertSlice(n.WindowClause),\n\t\tValuesLists:    convertSlice(n.ValuesLists),\n\t\tSortClause:     convertSlice(n.SortClause),\n\t\tLimitOffset:    convertNode(n.LimitOffset),\n\t\tLimitCount:     convertNode(n.LimitCount),\n\t\tLockingClause:  convertSlice(n.LockingClause),\n\t\tWithClause:     convertWithClause(n.WithClause),\n\t\tOp:             op,\n\t\tAll:            n.All,\n\t\tLarg:           convertSelectStmt(n.Larg),\n\t\tRarg:           convertSelectStmt(n.Rarg),\n\t}\n}\n\nfunc convertSetOperationStmt(n *pg.SetOperationStmt) *ast.SetOperationStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\top, err := convertSetOperation(n.Op)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn &ast.SetOperationStmt{\n\t\tOp:            op,\n\t\tAll:           n.All,\n\t\tLarg:          convertNode(n.Larg),\n\t\tRarg:          convertNode(n.Rarg),\n\t\tColTypes:      convertSlice(n.ColTypes),\n\t\tColTypmods:    convertSlice(n.ColTypmods),\n\t\tColCollations: convertSlice(n.ColCollations),\n\t\tGroupClauses:  convertSlice(n.GroupClauses),\n\t}\n}\n\nfunc convertSetToDefault(n *pg.SetToDefault) *ast.SetToDefault {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.SetToDefault{\n\t\tXpr:       convertNode(n.Xpr),\n\t\tTypeId:    ast.Oid(n.TypeId),\n\t\tTypeMod:   n.TypeMod,\n\t\tCollation: ast.Oid(n.Collation),\n\t\tLocation:  int(n.Location),\n\t}\n}\n\nfunc convertSortBy(n *pg.SortBy) *ast.SortBy {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.SortBy{\n\t\tNode:        convertNode(n.Node),\n\t\tSortbyDir:   ast.SortByDir(n.SortbyDir),\n\t\tSortbyNulls: ast.SortByNulls(n.SortbyNulls),\n\t\tUseOp:       convertSlice(n.UseOp),\n\t\tLocation:    int(n.Location),\n\t}\n}\n\nfunc convertSortGroupClause(n *pg.SortGroupClause) *ast.SortGroupClause {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.SortGroupClause{\n\t\tTleSortGroupRef: ast.Index(n.TleSortGroupRef),\n\t\tEqop:            ast.Oid(n.Eqop),\n\t\tSortop:          ast.Oid(n.Sortop),\n\t\tNullsFirst:      n.NullsFirst,\n\t\tHashable:        n.Hashable,\n\t}\n}\n\nfunc convertString(n *pg.String) *ast.String {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.String{\n\t\tStr: n.Sval,\n\t}\n}\n\nfunc convertSubLink(n *pg.SubLink) *ast.SubLink {\n\tif n == nil {\n\t\treturn nil\n\t}\n\tslt, err := convertSubLinkType(n.SubLinkType)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn &ast.SubLink{\n\t\tXpr:         convertNode(n.Xpr),\n\t\tSubLinkType: slt,\n\t\tSubLinkId:   int(n.SubLinkId),\n\t\tTestexpr:    convertNode(n.Testexpr),\n\t\tOperName:    convertSlice(n.OperName),\n\t\tSubselect:   convertNode(n.Subselect),\n\t\tLocation:    int(n.Location),\n\t}\n}\n\nfunc convertSubPlan(n *pg.SubPlan) *ast.SubPlan {\n\tif n == nil {\n\t\treturn nil\n\t}\n\tslt, err := convertSubLinkType(n.SubLinkType)\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\treturn &ast.SubPlan{\n\t\tXpr:               convertNode(n.Xpr),\n\t\tSubLinkType:       slt,\n\t\tTestexpr:          convertNode(n.Testexpr),\n\t\tParamIds:          convertSlice(n.ParamIds),\n\t\tPlanId:            int(n.PlanId),\n\t\tPlanName:          makeString(n.PlanName),\n\t\tFirstColType:      ast.Oid(n.FirstColType),\n\t\tFirstColTypmod:    n.FirstColTypmod,\n\t\tFirstColCollation: ast.Oid(n.FirstColCollation),\n\t\tUseHashTable:      n.UseHashTable,\n\t\tUnknownEqFalse:    n.UnknownEqFalse,\n\t\tParallelSafe:      n.ParallelSafe,\n\t\tSetParam:          convertSlice(n.SetParam),\n\t\tParParam:          convertSlice(n.ParParam),\n\t\tArgs:              convertSlice(n.Args),\n\t\tStartupCost:       ast.Cost(n.StartupCost),\n\t\tPerCallCost:       ast.Cost(n.PerCallCost),\n\t}\n}\n\nfunc convertTableFunc(n *pg.TableFunc) *ast.TableFunc {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.TableFunc{\n\t\tNsUris:        convertSlice(n.NsUris),\n\t\tNsNames:       convertSlice(n.NsNames),\n\t\tDocexpr:       convertNode(n.Docexpr),\n\t\tRowexpr:       convertNode(n.Rowexpr),\n\t\tColnames:      convertSlice(n.Colnames),\n\t\tColtypes:      convertSlice(n.Coltypes),\n\t\tColtypmods:    convertSlice(n.Coltypmods),\n\t\tColcollations: convertSlice(n.Colcollations),\n\t\tColexprs:      convertSlice(n.Colexprs),\n\t\tColdefexprs:   convertSlice(n.Coldefexprs),\n\t\tNotnulls:      makeUint32Slice(n.Notnulls),\n\t\tOrdinalitycol: int(n.Ordinalitycol),\n\t\tLocation:      int(n.Location),\n\t}\n}\n\nfunc convertTableLikeClause(n *pg.TableLikeClause) *ast.TableLikeClause {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.TableLikeClause{\n\t\tRelation: convertRangeVar(n.Relation),\n\t\tOptions:  n.Options,\n\t}\n}\n\nfunc convertTableSampleClause(n *pg.TableSampleClause) *ast.TableSampleClause {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.TableSampleClause{\n\t\tTsmhandler: ast.Oid(n.Tsmhandler),\n\t\tArgs:       convertSlice(n.Args),\n\t\tRepeatable: convertNode(n.Repeatable),\n\t}\n}\n\nfunc convertTargetEntry(n *pg.TargetEntry) *ast.TargetEntry {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.TargetEntry{\n\t\tXpr:             convertNode(n.Xpr),\n\t\tExpr:            convertNode(n.Expr),\n\t\tResno:           ast.AttrNumber(n.Resno),\n\t\tResname:         makeString(n.Resname),\n\t\tRessortgroupref: ast.Index(n.Ressortgroupref),\n\t\tResorigtbl:      ast.Oid(n.Resorigtbl),\n\t\tResorigcol:      ast.AttrNumber(n.Resorigcol),\n\t\tResjunk:         n.Resjunk,\n\t}\n}\n\nfunc convertTransactionStmt(n *pg.TransactionStmt) *ast.TransactionStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.TransactionStmt{\n\t\tKind:    ast.TransactionStmtKind(n.Kind),\n\t\tOptions: convertSlice(n.Options),\n\t\tGid:     makeString(n.Gid),\n\t}\n}\n\nfunc convertTriggerTransition(n *pg.TriggerTransition) *ast.TriggerTransition {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.TriggerTransition{\n\t\tName:    makeString(n.Name),\n\t\tIsNew:   n.IsNew,\n\t\tIsTable: n.IsTable,\n\t}\n}\n\nfunc convertTruncateStmt(n *pg.TruncateStmt) *ast.TruncateStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.TruncateStmt{\n\t\tRelations:   convertSlice(n.Relations),\n\t\tRestartSeqs: n.RestartSeqs,\n\t\tBehavior:    ast.DropBehavior(n.Behavior),\n\t}\n}\n\nfunc convertTypeCast(n *pg.TypeCast) *ast.TypeCast {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.TypeCast{\n\t\tArg:      convertNode(n.Arg),\n\t\tTypeName: convertTypeName(n.TypeName),\n\t\tLocation: int(n.Location),\n\t}\n}\n\nfunc convertTypeName(n *pg.TypeName) *ast.TypeName {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.TypeName{\n\t\tNames:       convertSlice(n.Names),\n\t\tTypeOid:     ast.Oid(n.TypeOid),\n\t\tSetof:       n.Setof,\n\t\tPctType:     n.PctType,\n\t\tTypmods:     convertSlice(n.Typmods),\n\t\tTypemod:     n.Typemod,\n\t\tArrayBounds: convertSlice(n.ArrayBounds),\n\t\tLocation:    int(n.Location),\n\t}\n}\n\nfunc convertUnlistenStmt(n *pg.UnlistenStmt) *ast.UnlistenStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.UnlistenStmt{\n\t\tConditionname: makeString(n.Conditionname),\n\t}\n}\n\nfunc convertUpdateStmt(n *pg.UpdateStmt) *ast.UpdateStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\n\treturn &ast.UpdateStmt{\n\t\tRelations: &ast.List{\n\t\t\tItems: []ast.Node{convertRangeVar(n.Relation)},\n\t\t},\n\t\tTargetList:    convertSlice(n.TargetList),\n\t\tWhereClause:   convertNode(n.WhereClause),\n\t\tFromClause:    convertSlice(n.FromClause),\n\t\tReturningList: convertSlice(n.ReturningList),\n\t\tWithClause:    convertWithClause(n.WithClause),\n\t}\n}\n\nfunc convertVacuumStmt(n *pg.VacuumStmt) *ast.VacuumStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.VacuumStmt{\n\t\t// FIXME: The VacuumStmt node has changed quite a bit\n\t\t// Options:  n.Options\n\t\t// Relation: convertRangeVar(n.Relation),\n\t\t// VaCols:   convertSlice(n.VaCols),\n\t}\n}\n\nfunc convertVar(n *pg.Var) *ast.Var {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.Var{\n\t\tXpr:         convertNode(n.Xpr),\n\t\tVarno:       ast.Index(n.Varno),\n\t\tVarattno:    ast.AttrNumber(n.Varattno),\n\t\tVartype:     ast.Oid(n.Vartype),\n\t\tVartypmod:   n.Vartypmod,\n\t\tVarcollid:   ast.Oid(n.Varcollid),\n\t\tVarlevelsup: ast.Index(n.Varlevelsup),\n\t\tLocation:    int(n.Location),\n\t}\n}\n\nfunc convertVariableSetStmt(n *pg.VariableSetStmt) *ast.VariableSetStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.VariableSetStmt{\n\t\tKind:    ast.VariableSetKind(n.Kind),\n\t\tName:    makeString(n.Name),\n\t\tArgs:    convertSlice(n.Args),\n\t\tIsLocal: n.IsLocal,\n\t}\n}\n\nfunc convertVariableShowStmt(n *pg.VariableShowStmt) *ast.VariableShowStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.VariableShowStmt{\n\t\tName: makeString(n.Name),\n\t}\n}\n\nfunc convertViewStmt(n *pg.ViewStmt) *ast.ViewStmt {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.ViewStmt{\n\t\tView:            convertRangeVar(n.View),\n\t\tAliases:         convertSlice(n.Aliases),\n\t\tQuery:           convertNode(n.Query),\n\t\tReplace:         n.Replace,\n\t\tOptions:         convertSlice(n.Options),\n\t\tWithCheckOption: ast.ViewCheckOption(n.WithCheckOption),\n\t}\n}\n\nfunc convertWindowClause(n *pg.WindowClause) *ast.WindowClause {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.WindowClause{\n\t\tName:            makeString(n.Name),\n\t\tRefname:         makeString(n.Refname),\n\t\tPartitionClause: convertSlice(n.PartitionClause),\n\t\tOrderClause:     convertSlice(n.OrderClause),\n\t\tFrameOptions:    int(n.FrameOptions),\n\t\tStartOffset:     convertNode(n.StartOffset),\n\t\tEndOffset:       convertNode(n.EndOffset),\n\t\tWinref:          ast.Index(n.Winref),\n\t\tCopiedOrder:     n.CopiedOrder,\n\t}\n}\n\nfunc convertWindowDef(n *pg.WindowDef) *ast.WindowDef {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.WindowDef{\n\t\tName:            makeString(n.Name),\n\t\tRefname:         makeString(n.Refname),\n\t\tPartitionClause: convertSlice(n.PartitionClause),\n\t\tOrderClause:     convertSlice(n.OrderClause),\n\t\tFrameOptions:    int(n.FrameOptions),\n\t\tStartOffset:     convertNode(n.StartOffset),\n\t\tEndOffset:       convertNode(n.EndOffset),\n\t\tLocation:        int(n.Location),\n\t}\n}\n\nfunc convertWindowFunc(n *pg.WindowFunc) *ast.WindowFunc {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.WindowFunc{\n\t\tXpr:         convertNode(n.Xpr),\n\t\tWinfnoid:    ast.Oid(n.Winfnoid),\n\t\tWintype:     ast.Oid(n.Wintype),\n\t\tWincollid:   ast.Oid(n.Wincollid),\n\t\tInputcollid: ast.Oid(n.Inputcollid),\n\t\tArgs:        convertSlice(n.Args),\n\t\tAggfilter:   convertNode(n.Aggfilter),\n\t\tWinref:      ast.Index(n.Winref),\n\t\tWinstar:     n.Winstar,\n\t\tWinagg:      n.Winagg,\n\t\tLocation:    int(n.Location),\n\t}\n}\n\nfunc convertWithCheckOption(n *pg.WithCheckOption) *ast.WithCheckOption {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.WithCheckOption{\n\t\tKind:     ast.WCOKind(n.Kind),\n\t\tRelname:  makeString(n.Relname),\n\t\tPolname:  makeString(n.Polname),\n\t\tQual:     convertNode(n.Qual),\n\t\tCascaded: n.Cascaded,\n\t}\n}\n\nfunc convertWithClause(n *pg.WithClause) *ast.WithClause {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.WithClause{\n\t\tCtes:      convertSlice(n.Ctes),\n\t\tRecursive: n.Recursive,\n\t\tLocation:  int(n.Location),\n\t}\n}\n\nfunc convertXmlExpr(n *pg.XmlExpr) *ast.XmlExpr {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.XmlExpr{\n\t\tXpr:       convertNode(n.Xpr),\n\t\tOp:        ast.XmlExprOp(n.Op),\n\t\tName:      makeString(n.Name),\n\t\tNamedArgs: convertSlice(n.NamedArgs),\n\t\tArgNames:  convertSlice(n.ArgNames),\n\t\tArgs:      convertSlice(n.Args),\n\t\tXmloption: ast.XmlOptionType(n.Xmloption),\n\t\tType:      ast.Oid(n.Type),\n\t\tTypmod:    n.Typmod,\n\t\tLocation:  int(n.Location),\n\t}\n}\n\nfunc convertXmlSerialize(n *pg.XmlSerialize) *ast.XmlSerialize {\n\tif n == nil {\n\t\treturn nil\n\t}\n\treturn &ast.XmlSerialize{\n\t\tXmloption: ast.XmlOptionType(n.Xmloption),\n\t\tExpr:      convertNode(n.Expr),\n\t\tTypeName:  convertTypeName(n.TypeName),\n\t\tLocation:  int(n.Location),\n\t}\n}\n\nfunc convertNode(node *pg.Node) ast.Node {\n\tif node == nil || node.Node == nil {\n\t\treturn &ast.TODO{}\n\t}\n\n\tswitch n := node.Node.(type) {\n\n\tcase *pg.Node_AArrayExpr:\n\t\treturn convertA_ArrayExpr(n.AArrayExpr)\n\n\tcase *pg.Node_AConst:\n\t\treturn convertA_Const(n.AConst)\n\n\tcase *pg.Node_AExpr:\n\t\treturn convertA_Expr(n.AExpr)\n\n\tcase *pg.Node_AIndices:\n\t\treturn convertA_Indices(n.AIndices)\n\n\tcase *pg.Node_AIndirection:\n\t\treturn convertA_Indirection(n.AIndirection)\n\n\tcase *pg.Node_AStar:\n\t\treturn convertA_Star(n.AStar)\n\n\tcase *pg.Node_AccessPriv:\n\t\treturn convertAccessPriv(n.AccessPriv)\n\n\tcase *pg.Node_Aggref:\n\t\treturn convertAggref(n.Aggref)\n\n\tcase *pg.Node_Alias:\n\t\treturn convertAlias(n.Alias)\n\n\tcase *pg.Node_AlterCollationStmt:\n\t\treturn convertAlterCollationStmt(n.AlterCollationStmt)\n\n\tcase *pg.Node_AlterDatabaseSetStmt:\n\t\treturn convertAlterDatabaseSetStmt(n.AlterDatabaseSetStmt)\n\n\tcase *pg.Node_AlterDatabaseStmt:\n\t\treturn convertAlterDatabaseStmt(n.AlterDatabaseStmt)\n\n\tcase *pg.Node_AlterDefaultPrivilegesStmt:\n\t\treturn convertAlterDefaultPrivilegesStmt(n.AlterDefaultPrivilegesStmt)\n\n\tcase *pg.Node_AlterDomainStmt:\n\t\treturn convertAlterDomainStmt(n.AlterDomainStmt)\n\n\tcase *pg.Node_AlterEnumStmt:\n\t\treturn convertAlterEnumStmt(n.AlterEnumStmt)\n\n\tcase *pg.Node_AlterEventTrigStmt:\n\t\treturn convertAlterEventTrigStmt(n.AlterEventTrigStmt)\n\n\tcase *pg.Node_AlterExtensionContentsStmt:\n\t\treturn convertAlterExtensionContentsStmt(n.AlterExtensionContentsStmt)\n\n\tcase *pg.Node_AlterExtensionStmt:\n\t\treturn convertAlterExtensionStmt(n.AlterExtensionStmt)\n\n\tcase *pg.Node_AlterFdwStmt:\n\t\treturn convertAlterFdwStmt(n.AlterFdwStmt)\n\n\tcase *pg.Node_AlterForeignServerStmt:\n\t\treturn convertAlterForeignServerStmt(n.AlterForeignServerStmt)\n\n\tcase *pg.Node_AlterFunctionStmt:\n\t\treturn convertAlterFunctionStmt(n.AlterFunctionStmt)\n\n\tcase *pg.Node_AlterObjectDependsStmt:\n\t\treturn convertAlterObjectDependsStmt(n.AlterObjectDependsStmt)\n\n\tcase *pg.Node_AlterObjectSchemaStmt:\n\t\treturn convertAlterObjectSchemaStmt(n.AlterObjectSchemaStmt)\n\n\tcase *pg.Node_AlterOpFamilyStmt:\n\t\treturn convertAlterOpFamilyStmt(n.AlterOpFamilyStmt)\n\n\tcase *pg.Node_AlterOperatorStmt:\n\t\treturn convertAlterOperatorStmt(n.AlterOperatorStmt)\n\n\tcase *pg.Node_AlterOwnerStmt:\n\t\treturn convertAlterOwnerStmt(n.AlterOwnerStmt)\n\n\tcase *pg.Node_AlterPolicyStmt:\n\t\treturn convertAlterPolicyStmt(n.AlterPolicyStmt)\n\n\tcase *pg.Node_AlterPublicationStmt:\n\t\treturn convertAlterPublicationStmt(n.AlterPublicationStmt)\n\n\tcase *pg.Node_AlterRoleSetStmt:\n\t\treturn convertAlterRoleSetStmt(n.AlterRoleSetStmt)\n\n\tcase *pg.Node_AlterRoleStmt:\n\t\treturn convertAlterRoleStmt(n.AlterRoleStmt)\n\n\tcase *pg.Node_AlterSeqStmt:\n\t\treturn convertAlterSeqStmt(n.AlterSeqStmt)\n\n\tcase *pg.Node_AlterSubscriptionStmt:\n\t\treturn convertAlterSubscriptionStmt(n.AlterSubscriptionStmt)\n\n\tcase *pg.Node_AlterSystemStmt:\n\t\treturn convertAlterSystemStmt(n.AlterSystemStmt)\n\n\tcase *pg.Node_AlterTsconfigurationStmt:\n\t\treturn convertAlterTSConfigurationStmt(n.AlterTsconfigurationStmt)\n\n\tcase *pg.Node_AlterTsdictionaryStmt:\n\t\treturn convertAlterTSDictionaryStmt(n.AlterTsdictionaryStmt)\n\n\tcase *pg.Node_AlterTableCmd:\n\t\treturn convertAlterTableCmd(n.AlterTableCmd)\n\n\tcase *pg.Node_AlterTableMoveAllStmt:\n\t\treturn convertAlterTableMoveAllStmt(n.AlterTableMoveAllStmt)\n\n\tcase *pg.Node_AlterTableSpaceOptionsStmt:\n\t\treturn convertAlterTableSpaceOptionsStmt(n.AlterTableSpaceOptionsStmt)\n\n\tcase *pg.Node_AlterTableStmt:\n\t\treturn convertAlterTableStmt(n.AlterTableStmt)\n\n\tcase *pg.Node_AlterUserMappingStmt:\n\t\treturn convertAlterUserMappingStmt(n.AlterUserMappingStmt)\n\n\tcase *pg.Node_AlternativeSubPlan:\n\t\treturn convertAlternativeSubPlan(n.AlternativeSubPlan)\n\n\tcase *pg.Node_ArrayCoerceExpr:\n\t\treturn convertArrayCoerceExpr(n.ArrayCoerceExpr)\n\n\tcase *pg.Node_ArrayExpr:\n\t\treturn convertArrayExpr(n.ArrayExpr)\n\n\tcase *pg.Node_BitString:\n\t\treturn convertBitString(n.BitString)\n\n\tcase *pg.Node_BoolExpr:\n\t\treturn convertBoolExpr(n.BoolExpr)\n\n\tcase *pg.Node_Boolean:\n\t\treturn convertBoolean(n.Boolean)\n\n\tcase *pg.Node_BooleanTest:\n\t\treturn convertBooleanTest(n.BooleanTest)\n\n\tcase *pg.Node_CallStmt:\n\t\treturn convertCallStmt(n.CallStmt)\n\n\tcase *pg.Node_CaseExpr:\n\t\treturn convertCaseExpr(n.CaseExpr)\n\n\tcase *pg.Node_CaseTestExpr:\n\t\treturn convertCaseTestExpr(n.CaseTestExpr)\n\n\tcase *pg.Node_CaseWhen:\n\t\treturn convertCaseWhen(n.CaseWhen)\n\n\tcase *pg.Node_CheckPointStmt:\n\t\treturn convertCheckPointStmt(n.CheckPointStmt)\n\n\tcase *pg.Node_ClosePortalStmt:\n\t\treturn convertClosePortalStmt(n.ClosePortalStmt)\n\n\tcase *pg.Node_ClusterStmt:\n\t\treturn convertClusterStmt(n.ClusterStmt)\n\n\tcase *pg.Node_CoalesceExpr:\n\t\treturn convertCoalesceExpr(n.CoalesceExpr)\n\n\tcase *pg.Node_CoerceToDomain:\n\t\treturn convertCoerceToDomain(n.CoerceToDomain)\n\n\tcase *pg.Node_CoerceToDomainValue:\n\t\treturn convertCoerceToDomainValue(n.CoerceToDomainValue)\n\n\tcase *pg.Node_CoerceViaIo:\n\t\treturn convertCoerceViaIO(n.CoerceViaIo)\n\n\tcase *pg.Node_CollateClause:\n\t\treturn convertCollateClause(n.CollateClause)\n\n\tcase *pg.Node_CollateExpr:\n\t\treturn convertCollateExpr(n.CollateExpr)\n\n\tcase *pg.Node_ColumnDef:\n\t\treturn convertColumnDef(n.ColumnDef)\n\n\tcase *pg.Node_ColumnRef:\n\t\treturn convertColumnRef(n.ColumnRef)\n\n\tcase *pg.Node_CommentStmt:\n\t\treturn convertCommentStmt(n.CommentStmt)\n\n\tcase *pg.Node_CommonTableExpr:\n\t\treturn convertCommonTableExpr(n.CommonTableExpr)\n\n\tcase *pg.Node_CompositeTypeStmt:\n\t\treturn convertCompositeTypeStmt(n.CompositeTypeStmt)\n\n\tcase *pg.Node_Constraint:\n\t\treturn convertConstraint(n.Constraint)\n\n\tcase *pg.Node_ConstraintsSetStmt:\n\t\treturn convertConstraintsSetStmt(n.ConstraintsSetStmt)\n\n\tcase *pg.Node_ConvertRowtypeExpr:\n\t\treturn convertConvertRowtypeExpr(n.ConvertRowtypeExpr)\n\n\tcase *pg.Node_CopyStmt:\n\t\treturn convertCopyStmt(n.CopyStmt)\n\n\tcase *pg.Node_CreateAmStmt:\n\t\treturn convertCreateAmStmt(n.CreateAmStmt)\n\n\tcase *pg.Node_CreateCastStmt:\n\t\treturn convertCreateCastStmt(n.CreateCastStmt)\n\n\tcase *pg.Node_CreateConversionStmt:\n\t\treturn convertCreateConversionStmt(n.CreateConversionStmt)\n\n\tcase *pg.Node_CreateDomainStmt:\n\t\treturn convertCreateDomainStmt(n.CreateDomainStmt)\n\n\tcase *pg.Node_CreateEnumStmt:\n\t\treturn convertCreateEnumStmt(n.CreateEnumStmt)\n\n\tcase *pg.Node_CreateEventTrigStmt:\n\t\treturn convertCreateEventTrigStmt(n.CreateEventTrigStmt)\n\n\tcase *pg.Node_CreateExtensionStmt:\n\t\treturn convertCreateExtensionStmt(n.CreateExtensionStmt)\n\n\tcase *pg.Node_CreateFdwStmt:\n\t\treturn convertCreateFdwStmt(n.CreateFdwStmt)\n\n\tcase *pg.Node_CreateForeignServerStmt:\n\t\treturn convertCreateForeignServerStmt(n.CreateForeignServerStmt)\n\n\tcase *pg.Node_CreateForeignTableStmt:\n\t\treturn convertCreateForeignTableStmt(n.CreateForeignTableStmt)\n\n\tcase *pg.Node_CreateFunctionStmt:\n\t\treturn convertCreateFunctionStmt(n.CreateFunctionStmt)\n\n\tcase *pg.Node_CreateOpClassItem:\n\t\treturn convertCreateOpClassItem(n.CreateOpClassItem)\n\n\tcase *pg.Node_CreateOpClassStmt:\n\t\treturn convertCreateOpClassStmt(n.CreateOpClassStmt)\n\n\tcase *pg.Node_CreateOpFamilyStmt:\n\t\treturn convertCreateOpFamilyStmt(n.CreateOpFamilyStmt)\n\n\tcase *pg.Node_CreatePlangStmt:\n\t\treturn convertCreatePLangStmt(n.CreatePlangStmt)\n\n\tcase *pg.Node_CreatePolicyStmt:\n\t\treturn convertCreatePolicyStmt(n.CreatePolicyStmt)\n\n\tcase *pg.Node_CreatePublicationStmt:\n\t\treturn convertCreatePublicationStmt(n.CreatePublicationStmt)\n\n\tcase *pg.Node_CreateRangeStmt:\n\t\treturn convertCreateRangeStmt(n.CreateRangeStmt)\n\n\tcase *pg.Node_CreateRoleStmt:\n\t\treturn convertCreateRoleStmt(n.CreateRoleStmt)\n\n\tcase *pg.Node_CreateSchemaStmt:\n\t\treturn convertCreateSchemaStmt(n.CreateSchemaStmt)\n\n\tcase *pg.Node_CreateSeqStmt:\n\t\treturn convertCreateSeqStmt(n.CreateSeqStmt)\n\n\tcase *pg.Node_CreateStatsStmt:\n\t\treturn convertCreateStatsStmt(n.CreateStatsStmt)\n\n\tcase *pg.Node_CreateStmt:\n\t\treturn convertCreateStmt(n.CreateStmt)\n\n\tcase *pg.Node_CreateSubscriptionStmt:\n\t\treturn convertCreateSubscriptionStmt(n.CreateSubscriptionStmt)\n\n\tcase *pg.Node_CreateTableAsStmt:\n\t\treturn convertCreateTableAsStmt(n.CreateTableAsStmt)\n\n\tcase *pg.Node_CreateTableSpaceStmt:\n\t\treturn convertCreateTableSpaceStmt(n.CreateTableSpaceStmt)\n\n\tcase *pg.Node_CreateTransformStmt:\n\t\treturn convertCreateTransformStmt(n.CreateTransformStmt)\n\n\tcase *pg.Node_CreateTrigStmt:\n\t\treturn convertCreateTrigStmt(n.CreateTrigStmt)\n\n\tcase *pg.Node_CreateUserMappingStmt:\n\t\treturn convertCreateUserMappingStmt(n.CreateUserMappingStmt)\n\n\tcase *pg.Node_CreatedbStmt:\n\t\treturn convertCreatedbStmt(n.CreatedbStmt)\n\n\tcase *pg.Node_CurrentOfExpr:\n\t\treturn convertCurrentOfExpr(n.CurrentOfExpr)\n\n\tcase *pg.Node_DeallocateStmt:\n\t\treturn convertDeallocateStmt(n.DeallocateStmt)\n\n\tcase *pg.Node_DeclareCursorStmt:\n\t\treturn convertDeclareCursorStmt(n.DeclareCursorStmt)\n\n\tcase *pg.Node_DefElem:\n\t\treturn convertDefElem(n.DefElem)\n\n\tcase *pg.Node_DefineStmt:\n\t\treturn convertDefineStmt(n.DefineStmt)\n\n\tcase *pg.Node_DeleteStmt:\n\t\treturn convertDeleteStmt(n.DeleteStmt)\n\n\tcase *pg.Node_DiscardStmt:\n\t\treturn convertDiscardStmt(n.DiscardStmt)\n\n\tcase *pg.Node_DoStmt:\n\t\treturn convertDoStmt(n.DoStmt)\n\n\tcase *pg.Node_DropOwnedStmt:\n\t\treturn convertDropOwnedStmt(n.DropOwnedStmt)\n\n\tcase *pg.Node_DropRoleStmt:\n\t\treturn convertDropRoleStmt(n.DropRoleStmt)\n\n\tcase *pg.Node_DropStmt:\n\t\treturn convertDropStmt(n.DropStmt)\n\n\tcase *pg.Node_DropSubscriptionStmt:\n\t\treturn convertDropSubscriptionStmt(n.DropSubscriptionStmt)\n\n\tcase *pg.Node_DropTableSpaceStmt:\n\t\treturn convertDropTableSpaceStmt(n.DropTableSpaceStmt)\n\n\tcase *pg.Node_DropUserMappingStmt:\n\t\treturn convertDropUserMappingStmt(n.DropUserMappingStmt)\n\n\tcase *pg.Node_DropdbStmt:\n\t\treturn convertDropdbStmt(n.DropdbStmt)\n\n\tcase *pg.Node_ExecuteStmt:\n\t\treturn convertExecuteStmt(n.ExecuteStmt)\n\n\tcase *pg.Node_ExplainStmt:\n\t\treturn convertExplainStmt(n.ExplainStmt)\n\n\tcase *pg.Node_FetchStmt:\n\t\treturn convertFetchStmt(n.FetchStmt)\n\n\tcase *pg.Node_FieldSelect:\n\t\treturn convertFieldSelect(n.FieldSelect)\n\n\tcase *pg.Node_FieldStore:\n\t\treturn convertFieldStore(n.FieldStore)\n\n\tcase *pg.Node_Float:\n\t\treturn convertFloat(n.Float)\n\n\tcase *pg.Node_FromExpr:\n\t\treturn convertFromExpr(n.FromExpr)\n\n\tcase *pg.Node_FuncCall:\n\t\treturn convertFuncCall(n.FuncCall)\n\n\tcase *pg.Node_FuncExpr:\n\t\treturn convertFuncExpr(n.FuncExpr)\n\n\tcase *pg.Node_FunctionParameter:\n\t\treturn convertFunctionParameter(n.FunctionParameter)\n\n\tcase *pg.Node_GrantRoleStmt:\n\t\treturn convertGrantRoleStmt(n.GrantRoleStmt)\n\n\tcase *pg.Node_GrantStmt:\n\t\treturn convertGrantStmt(n.GrantStmt)\n\n\tcase *pg.Node_GroupingFunc:\n\t\treturn convertGroupingFunc(n.GroupingFunc)\n\n\tcase *pg.Node_GroupingSet:\n\t\treturn convertGroupingSet(n.GroupingSet)\n\n\tcase *pg.Node_ImportForeignSchemaStmt:\n\t\treturn convertImportForeignSchemaStmt(n.ImportForeignSchemaStmt)\n\n\tcase *pg.Node_IndexElem:\n\t\treturn convertIndexElem(n.IndexElem)\n\n\tcase *pg.Node_IndexStmt:\n\t\treturn convertIndexStmt(n.IndexStmt)\n\n\tcase *pg.Node_InferClause:\n\t\treturn convertInferClause(n.InferClause)\n\n\tcase *pg.Node_InferenceElem:\n\t\treturn convertInferenceElem(n.InferenceElem)\n\n\tcase *pg.Node_InlineCodeBlock:\n\t\treturn convertInlineCodeBlock(n.InlineCodeBlock)\n\n\tcase *pg.Node_InsertStmt:\n\t\treturn convertInsertStmt(n.InsertStmt)\n\n\tcase *pg.Node_Integer:\n\t\treturn convertInteger(n.Integer)\n\n\tcase *pg.Node_IntoClause:\n\t\treturn convertIntoClause(n.IntoClause)\n\n\tcase *pg.Node_JoinExpr:\n\t\treturn convertJoinExpr(n.JoinExpr)\n\n\tcase *pg.Node_List:\n\t\treturn convertList(n.List)\n\n\tcase *pg.Node_ListenStmt:\n\t\treturn convertListenStmt(n.ListenStmt)\n\n\tcase *pg.Node_LoadStmt:\n\t\treturn convertLoadStmt(n.LoadStmt)\n\n\tcase *pg.Node_LockStmt:\n\t\treturn convertLockStmt(n.LockStmt)\n\n\tcase *pg.Node_LockingClause:\n\t\treturn convertLockingClause(n.LockingClause)\n\n\tcase *pg.Node_MinMaxExpr:\n\t\treturn convertMinMaxExpr(n.MinMaxExpr)\n\n\tcase *pg.Node_MultiAssignRef:\n\t\treturn convertMultiAssignRef(n.MultiAssignRef)\n\n\tcase *pg.Node_NamedArgExpr:\n\t\treturn convertNamedArgExpr(n.NamedArgExpr)\n\n\tcase *pg.Node_NextValueExpr:\n\t\treturn convertNextValueExpr(n.NextValueExpr)\n\n\tcase *pg.Node_NotifyStmt:\n\t\treturn convertNotifyStmt(n.NotifyStmt)\n\n\tcase *pg.Node_NullTest:\n\t\treturn convertNullTest(n.NullTest)\n\n\tcase *pg.Node_NullIfExpr:\n\t\treturn convertNullIfExpr(n.NullIfExpr)\n\n\tcase *pg.Node_ObjectWithArgs:\n\t\treturn convertObjectWithArgs(n.ObjectWithArgs)\n\n\tcase *pg.Node_OnConflictClause:\n\t\treturn convertOnConflictClause(n.OnConflictClause)\n\n\tcase *pg.Node_OnConflictExpr:\n\t\treturn convertOnConflictExpr(n.OnConflictExpr)\n\n\tcase *pg.Node_OpExpr:\n\t\treturn convertOpExpr(n.OpExpr)\n\n\tcase *pg.Node_Param:\n\t\treturn convertParam(n.Param)\n\n\tcase *pg.Node_ParamRef:\n\t\treturn convertParamRef(n.ParamRef)\n\n\tcase *pg.Node_PartitionBoundSpec:\n\t\treturn convertPartitionBoundSpec(n.PartitionBoundSpec)\n\n\tcase *pg.Node_PartitionCmd:\n\t\treturn convertPartitionCmd(n.PartitionCmd)\n\n\tcase *pg.Node_PartitionElem:\n\t\treturn convertPartitionElem(n.PartitionElem)\n\n\tcase *pg.Node_PartitionRangeDatum:\n\t\treturn convertPartitionRangeDatum(n.PartitionRangeDatum)\n\n\tcase *pg.Node_PartitionSpec:\n\t\treturn convertPartitionSpec(n.PartitionSpec)\n\n\tcase *pg.Node_PrepareStmt:\n\t\treturn convertPrepareStmt(n.PrepareStmt)\n\n\tcase *pg.Node_Query:\n\t\treturn convertQuery(n.Query)\n\n\tcase *pg.Node_RangeFunction:\n\t\treturn convertRangeFunction(n.RangeFunction)\n\n\tcase *pg.Node_RangeSubselect:\n\t\treturn convertRangeSubselect(n.RangeSubselect)\n\n\tcase *pg.Node_RangeTableFunc:\n\t\treturn convertRangeTableFunc(n.RangeTableFunc)\n\n\tcase *pg.Node_RangeTableFuncCol:\n\t\treturn convertRangeTableFuncCol(n.RangeTableFuncCol)\n\n\tcase *pg.Node_RangeTableSample:\n\t\treturn convertRangeTableSample(n.RangeTableSample)\n\n\tcase *pg.Node_RangeTblEntry:\n\t\treturn convertRangeTblEntry(n.RangeTblEntry)\n\n\tcase *pg.Node_RangeTblFunction:\n\t\treturn convertRangeTblFunction(n.RangeTblFunction)\n\n\tcase *pg.Node_RangeTblRef:\n\t\treturn convertRangeTblRef(n.RangeTblRef)\n\n\tcase *pg.Node_RangeVar:\n\t\treturn convertRangeVar(n.RangeVar)\n\n\tcase *pg.Node_RawStmt:\n\t\treturn convertRawStmt(n.RawStmt)\n\n\tcase *pg.Node_ReassignOwnedStmt:\n\t\treturn convertReassignOwnedStmt(n.ReassignOwnedStmt)\n\n\tcase *pg.Node_RefreshMatViewStmt:\n\t\treturn convertRefreshMatViewStmt(n.RefreshMatViewStmt)\n\n\tcase *pg.Node_ReindexStmt:\n\t\treturn convertReindexStmt(n.ReindexStmt)\n\n\tcase *pg.Node_RelabelType:\n\t\treturn convertRelabelType(n.RelabelType)\n\n\tcase *pg.Node_RenameStmt:\n\t\treturn convertRenameStmt(n.RenameStmt)\n\n\tcase *pg.Node_ReplicaIdentityStmt:\n\t\treturn convertReplicaIdentityStmt(n.ReplicaIdentityStmt)\n\n\tcase *pg.Node_ResTarget:\n\t\treturn convertResTarget(n.ResTarget)\n\n\tcase *pg.Node_RoleSpec:\n\t\treturn convertRoleSpec(n.RoleSpec)\n\n\tcase *pg.Node_RowCompareExpr:\n\t\treturn convertRowCompareExpr(n.RowCompareExpr)\n\n\tcase *pg.Node_RowExpr:\n\t\treturn convertRowExpr(n.RowExpr)\n\n\tcase *pg.Node_RowMarkClause:\n\t\treturn convertRowMarkClause(n.RowMarkClause)\n\n\tcase *pg.Node_RuleStmt:\n\t\treturn convertRuleStmt(n.RuleStmt)\n\n\tcase *pg.Node_SqlvalueFunction:\n\t\treturn convertSQLValueFunction(n.SqlvalueFunction)\n\n\tcase *pg.Node_ScalarArrayOpExpr:\n\t\treturn convertScalarArrayOpExpr(n.ScalarArrayOpExpr)\n\n\tcase *pg.Node_SecLabelStmt:\n\t\treturn convertSecLabelStmt(n.SecLabelStmt)\n\n\tcase *pg.Node_SelectStmt:\n\t\treturn convertSelectStmt(n.SelectStmt)\n\n\tcase *pg.Node_SetOperationStmt:\n\t\treturn convertSetOperationStmt(n.SetOperationStmt)\n\n\tcase *pg.Node_SetToDefault:\n\t\treturn convertSetToDefault(n.SetToDefault)\n\n\tcase *pg.Node_SortBy:\n\t\treturn convertSortBy(n.SortBy)\n\n\tcase *pg.Node_SortGroupClause:\n\t\treturn convertSortGroupClause(n.SortGroupClause)\n\n\tcase *pg.Node_String_:\n\t\treturn convertString(n.String_)\n\n\tcase *pg.Node_SubLink:\n\t\treturn convertSubLink(n.SubLink)\n\n\tcase *pg.Node_SubPlan:\n\t\treturn convertSubPlan(n.SubPlan)\n\n\tcase *pg.Node_TableFunc:\n\t\treturn convertTableFunc(n.TableFunc)\n\n\tcase *pg.Node_TableLikeClause:\n\t\treturn convertTableLikeClause(n.TableLikeClause)\n\n\tcase *pg.Node_TableSampleClause:\n\t\treturn convertTableSampleClause(n.TableSampleClause)\n\n\tcase *pg.Node_TargetEntry:\n\t\treturn convertTargetEntry(n.TargetEntry)\n\n\tcase *pg.Node_TransactionStmt:\n\t\treturn convertTransactionStmt(n.TransactionStmt)\n\n\tcase *pg.Node_TriggerTransition:\n\t\treturn convertTriggerTransition(n.TriggerTransition)\n\n\tcase *pg.Node_TruncateStmt:\n\t\treturn convertTruncateStmt(n.TruncateStmt)\n\n\tcase *pg.Node_TypeCast:\n\t\treturn convertTypeCast(n.TypeCast)\n\n\tcase *pg.Node_TypeName:\n\t\treturn convertTypeName(n.TypeName)\n\n\tcase *pg.Node_UnlistenStmt:\n\t\treturn convertUnlistenStmt(n.UnlistenStmt)\n\n\tcase *pg.Node_UpdateStmt:\n\t\treturn convertUpdateStmt(n.UpdateStmt)\n\n\tcase *pg.Node_VacuumStmt:\n\t\treturn convertVacuumStmt(n.VacuumStmt)\n\n\tcase *pg.Node_Var:\n\t\treturn convertVar(n.Var)\n\n\tcase *pg.Node_VariableSetStmt:\n\t\treturn convertVariableSetStmt(n.VariableSetStmt)\n\n\tcase *pg.Node_VariableShowStmt:\n\t\treturn convertVariableShowStmt(n.VariableShowStmt)\n\n\tcase *pg.Node_ViewStmt:\n\t\treturn convertViewStmt(n.ViewStmt)\n\n\tcase *pg.Node_WindowClause:\n\t\treturn convertWindowClause(n.WindowClause)\n\n\tcase *pg.Node_WindowDef:\n\t\treturn convertWindowDef(n.WindowDef)\n\n\tcase *pg.Node_WindowFunc:\n\t\treturn convertWindowFunc(n.WindowFunc)\n\n\tcase *pg.Node_WithCheckOption:\n\t\treturn convertWithCheckOption(n.WithCheckOption)\n\n\tcase *pg.Node_WithClause:\n\t\treturn convertWithClause(n.WithClause)\n\n\tcase *pg.Node_XmlExpr:\n\t\treturn convertXmlExpr(n.XmlExpr)\n\n\tcase *pg.Node_XmlSerialize:\n\t\treturn convertXmlSerialize(n.XmlSerialize)\n\n\tdefault:\n\t\treturn &ast.TODO{}\n\t}\n}\n"
  },
  {
    "path": "internal/engine/postgresql/extension.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage postgresql\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/engine/postgresql/contrib\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nfunc loadExtension(name string) *catalog.Schema {\n\tswitch name {\n\tcase \"adminpack\":\n\t\treturn contrib.Adminpack()\n\tcase \"amcheck\":\n\t\treturn contrib.Amcheck()\n\tcase \"btree_gin\":\n\t\treturn contrib.BtreeGin()\n\tcase \"btree_gist\":\n\t\treturn contrib.BtreeGist()\n\tcase \"citext\":\n\t\treturn contrib.Citext()\n\tcase \"cube\":\n\t\treturn contrib.Cube()\n\tcase \"dblink\":\n\t\treturn contrib.Dblink()\n\tcase \"earthdistance\":\n\t\treturn contrib.Earthdistance()\n\tcase \"file_fdw\":\n\t\treturn contrib.FileFdw()\n\tcase \"fuzzystrmatch\":\n\t\treturn contrib.Fuzzystrmatch()\n\tcase \"hstore\":\n\t\treturn contrib.Hstore()\n\tcase \"intagg\":\n\t\treturn contrib.Intagg()\n\tcase \"intarray\":\n\t\treturn contrib.Intarray()\n\tcase \"isn\":\n\t\treturn contrib.Isn()\n\tcase \"lo\":\n\t\treturn contrib.Lo()\n\tcase \"ltree\":\n\t\treturn contrib.Ltree()\n\tcase \"pageinspect\":\n\t\treturn contrib.Pageinspect()\n\tcase \"pg_buffercache\":\n\t\treturn contrib.PgBuffercache()\n\tcase \"pg_freespacemap\":\n\t\treturn contrib.PgFreespacemap()\n\tcase \"pg_prewarm\":\n\t\treturn contrib.PgPrewarm()\n\tcase \"pg_stat_statements\":\n\t\treturn contrib.PgStatStatements()\n\tcase \"pg_trgm\":\n\t\treturn contrib.PgTrgm()\n\tcase \"pg_visibility\":\n\t\treturn contrib.PgVisibility()\n\tcase \"pgcrypto\":\n\t\treturn contrib.Pgcrypto()\n\tcase \"pgrowlocks\":\n\t\treturn contrib.Pgrowlocks()\n\tcase \"pgstattuple\":\n\t\treturn contrib.Pgstattuple()\n\tcase \"postgres_fdw\":\n\t\treturn contrib.PostgresFdw()\n\tcase \"seg\":\n\t\treturn contrib.Seg()\n\tcase \"sslinfo\":\n\t\treturn contrib.Sslinfo()\n\tcase \"tablefunc\":\n\t\treturn contrib.Tablefunc()\n\tcase \"tcn\":\n\t\treturn contrib.Tcn()\n\tcase \"unaccent\":\n\t\treturn contrib.Unaccent()\n\tcase \"uuid-ossp\":\n\t\treturn contrib.UuidOssp()\n\tcase \"xml2\":\n\t\treturn contrib.Xml2()\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "internal/engine/postgresql/information_schema.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage postgresql\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsgenInformationSchema = []*catalog.Function{}\n\nfunc genInformationSchema() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"information_schema\"}\n\ts.Funcs = funcsgenInformationSchema\n\ts.Tables = []*catalog.Table{\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"_pg_foreign_data_wrappers\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"oid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"fdwowner\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"fdwoptions\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_data_wrapper_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_data_wrapper_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"authorization_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"foreign_data_wrapper_language\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"_pg_foreign_servers\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"oid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"srvoptions\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_data_wrapper_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_data_wrapper_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"foreign_server_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"foreign_server_version\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"authorization_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"_pg_foreign_table_columns\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"nspname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"attname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"attfdwoptions\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"_pg_foreign_tables\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"ftoptions\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"authorization_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"_pg_user_mappings\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"oid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"umoptions\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"umuser\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"authorization_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"srvowner\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"administrable_role_authorizations\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantee\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"role_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_grantable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"applicable_roles\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantee\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"role_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_grantable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"attributes\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"attribute_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"ordinal_position\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"attribute_default\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_nullable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"data_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_maximum_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_octet_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision_radix\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_scale\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datetime_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"interval_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"interval_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"attribute_udt_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"attribute_udt_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"attribute_udt_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"maximum_cardinality\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"dtd_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_derived_reference_attribute\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"character_sets\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_repertoire\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"form_of_use\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"default_collate_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"default_collate_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"default_collate_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"check_constraint_routine_usage\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"check_constraints\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"check_clause\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"collation_character_set_applicability\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"collations\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"pad_attribute\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"column_column_usage\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"column_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"dependent_column\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"column_domain_usage\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"domain_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"domain_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"domain_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"column_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"column_options\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"column_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"option_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"option_value\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"column_privileges\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantor\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantee\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"column_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"privilege_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_grantable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"column_udt_usage\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"column_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"columns\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"column_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"ordinal_position\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"column_default\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_nullable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"data_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_maximum_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_octet_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision_radix\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_scale\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datetime_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"interval_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"interval_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"domain_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"domain_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"domain_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"maximum_cardinality\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"dtd_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_self_referencing\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_identity\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"identity_generation\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"identity_start\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"identity_increment\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"identity_maximum\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"identity_minimum\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"identity_cycle\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_generated\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"generation_expression\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_updatable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"constraint_column_usage\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"column_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"constraint_table_usage\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"data_type_privileges\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"object_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"object_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"object_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"object_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"dtd_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"domain_constraints\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"domain_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"domain_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"domain_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_deferrable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"initially_deferred\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"domain_udt_usage\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"domain_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"domain_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"domain_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"domains\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"domain_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"domain_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"domain_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"data_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_maximum_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_octet_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision_radix\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_scale\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datetime_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"interval_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"interval_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"domain_default\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"maximum_cardinality\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"dtd_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"element_types\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"object_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"object_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"object_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"object_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collection_type_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"data_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_maximum_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_octet_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision_radix\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_scale\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datetime_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"interval_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"interval_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"domain_default\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"maximum_cardinality\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"dtd_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"enabled_roles\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"role_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"foreign_data_wrapper_options\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_data_wrapper_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_data_wrapper_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"option_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"option_value\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"foreign_data_wrappers\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_data_wrapper_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_data_wrapper_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"authorization_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"library_name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"foreign_data_wrapper_language\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"foreign_server_options\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"option_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"option_value\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"foreign_servers\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_data_wrapper_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_data_wrapper_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"foreign_server_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"foreign_server_version\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"authorization_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"foreign_table_options\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"option_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"option_value\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"foreign_tables\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"information_schema_catalog_name\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"catalog_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"key_column_usage\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"column_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"ordinal_position\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"position_in_unique_constraint\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"parameters\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"ordinal_position\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"parameter_mode\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_result\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"as_locator\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"parameter_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"data_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_maximum_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_octet_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision_radix\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_scale\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datetime_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"interval_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"interval_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"maximum_cardinality\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"dtd_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"parameter_default\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"referential_constraints\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"unique_constraint_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"unique_constraint_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"unique_constraint_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"match_option\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"update_rule\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"delete_rule\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"role_column_grants\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantor\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantee\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"column_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"privilege_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_grantable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"role_routine_grants\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantor\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantee\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"privilege_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_grantable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"role_table_grants\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantor\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantee\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"privilege_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_grantable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"with_hierarchy\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"role_udt_grants\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantor\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantee\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"privilege_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_grantable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"role_usage_grants\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantor\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantee\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"object_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"object_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"object_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"object_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"privilege_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_grantable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"routine_column_usage\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"column_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"routine_privileges\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantor\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantee\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"privilege_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_grantable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"routine_routine_usage\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"routine_sequence_usage\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sequence_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sequence_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sequence_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"routine_table_usage\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"routines\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"routine_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"routine_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"module_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"module_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"module_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"data_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_maximum_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_octet_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision_radix\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_scale\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datetime_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"interval_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"interval_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"type_udt_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"type_udt_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"type_udt_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"scope_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"maximum_cardinality\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"dtd_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"routine_body\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"routine_definition\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"external_name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"external_language\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"parameter_style\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_deterministic\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"sql_data_access\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_null_call\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"sql_path\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"schema_level_routine\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"max_dynamic_result_sets\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_user_defined_cast\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_implicitly_invocable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"security_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"to_sql_specific_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"to_sql_specific_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"to_sql_specific_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"as_locator\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"created\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"time_stamp\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_altered\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"time_stamp\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"new_savepoint_level\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_udt_dependent\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"result_cast_from_data_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"result_cast_as_locator\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_char_max_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_char_octet_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_char_set_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_char_set_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_char_set_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_collation_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_collation_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_collation_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_numeric_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_numeric_precision_radix\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_numeric_scale\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_datetime_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"result_cast_interval_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_interval_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_type_udt_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_type_udt_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_type_udt_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_scope_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_scope_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_scope_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_maximum_cardinality\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"result_cast_dtd_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"schemata\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"catalog_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schema_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schema_owner\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"default_character_set_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"default_character_set_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"default_character_set_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"sql_path\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"sequences\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"sequence_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sequence_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sequence_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"data_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision_radix\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_scale\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"start_value\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"minimum_value\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"maximum_value\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"increment\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"cycle_option\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"sql_features\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"feature_id\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"feature_name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"sub_feature_id\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"sub_feature_name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_supported\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_verified_by\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"comments\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"sql_implementation_info\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"implementation_info_id\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"implementation_info_name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"integer_value\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"character_value\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"comments\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"sql_parts\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"feature_id\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"feature_name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_supported\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_verified_by\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"comments\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"sql_sizing\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sizing_id\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"sizing_name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"supported_value\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"comments\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"table_constraints\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"constraint_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"constraint_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_deferrable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"initially_deferred\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"enforced\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"nulls_distinct\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"table_privileges\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantor\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantee\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"privilege_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_grantable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"with_hierarchy\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"tables\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"table_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"self_referencing_column_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"reference_generation\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"user_defined_type_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"user_defined_type_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"user_defined_type_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_insertable_into\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_typed\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"commit_action\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"transforms\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"group_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"transform_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"triggered_update_columns\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"trigger_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"trigger_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"trigger_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"event_object_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"event_object_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"event_object_table\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"event_object_column\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"triggers\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"trigger_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"trigger_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"trigger_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"event_manipulation\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"event_object_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"event_object_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"event_object_table\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"action_order\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"action_condition\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"action_statement\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"action_orientation\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"action_timing\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"action_reference_old_table\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"action_reference_new_table\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"action_reference_old_row\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"action_reference_new_row\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"created\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"time_stamp\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"udt_privileges\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantor\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantee\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"udt_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"privilege_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_grantable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"usage_privileges\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantor\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"grantee\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"object_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"object_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"object_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"object_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"privilege_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_grantable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"user_defined_types\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"user_defined_type_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"user_defined_type_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"user_defined_type_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"user_defined_type_category\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_instantiable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_final\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"ordering_form\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"ordering_category\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"ordering_routine_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"ordering_routine_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"ordering_routine_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"reference_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"data_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_maximum_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_octet_length\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"character_set_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"collation_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_precision_radix\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numeric_scale\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datetime_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"interval_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"interval_precision\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"cardinal_number\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"source_dtd_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"ref_dtd_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"user_mapping_options\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"authorization_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"option_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"option_value\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"user_mappings\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"authorization_identifier\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"foreign_server_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"view_column_usage\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"view_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"view_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"view_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"column_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"view_routine_usage\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"specific_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"view_table_usage\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"view_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"view_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"view_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"information_schema\",\n\t\t\t\tName:    \"views\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_catalog\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"table_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"sql_identifier\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"view_definition\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"check_option\",\n\t\t\t\t\tType: ast.TypeName{Name: \"character_data\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_updatable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_insertable_into\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_trigger_updatable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_trigger_deletable\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"is_trigger_insertable_into\",\n\t\t\t\t\tType: ast.TypeName{Name: \"yes_or_no\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t}\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/parse.go",
    "content": "package postgresql\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"strings\"\n\n\tnodes \"github.com/pganalyze/pg_query_go/v6\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/engine/postgresql/parser\"\n\t\"github.com/sqlc-dev/sqlc/internal/source\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\nfunc stringSlice(list *nodes.List) []string {\n\titems := []string{}\n\tfor _, item := range list.Items {\n\t\tif n, ok := item.Node.(*nodes.Node_String_); ok {\n\t\t\titems = append(items, n.String_.Sval)\n\t\t}\n\t}\n\treturn items\n}\n\nfunc stringSliceFromNodes(s []*nodes.Node) []string {\n\tvar items []string\n\tfor _, item := range s {\n\t\tif n, ok := item.Node.(*nodes.Node_String_); ok {\n\t\t\titems = append(items, n.String_.Sval)\n\t\t}\n\t}\n\treturn items\n}\n\ntype relation struct {\n\tCatalog string\n\tSchema  string\n\tName    string\n}\n\nfunc (r relation) TableName() *ast.TableName {\n\treturn &ast.TableName{\n\t\tCatalog: r.Catalog,\n\t\tSchema:  r.Schema,\n\t\tName:    r.Name,\n\t}\n}\n\nfunc (r relation) TypeName() *ast.TypeName {\n\treturn &ast.TypeName{\n\t\tCatalog: r.Catalog,\n\t\tSchema:  r.Schema,\n\t\tName:    r.Name,\n\t}\n}\n\nfunc (r relation) FuncName() *ast.FuncName {\n\treturn &ast.FuncName{\n\t\tCatalog: r.Catalog,\n\t\tSchema:  r.Schema,\n\t\tName:    r.Name,\n\t}\n}\n\nfunc parseRelationFromNodes(list []*nodes.Node) (*relation, error) {\n\tparts := stringSliceFromNodes(list)\n\tswitch len(parts) {\n\tcase 1:\n\t\treturn &relation{\n\t\t\tName: parts[0],\n\t\t}, nil\n\tcase 2:\n\t\treturn &relation{\n\t\t\tSchema: parts[0],\n\t\t\tName:   parts[1],\n\t\t}, nil\n\tcase 3:\n\t\treturn &relation{\n\t\t\tCatalog: parts[0],\n\t\t\tSchema:  parts[1],\n\t\t\tName:    parts[2],\n\t\t}, nil\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"invalid name: %s\", joinNodes(list, \".\"))\n\t}\n}\n\nfunc parseRelationFromRangeVar(rv *nodes.RangeVar) *relation {\n\treturn &relation{\n\t\tCatalog: rv.Catalogname,\n\t\tSchema:  rv.Schemaname,\n\t\tName:    rv.Relname,\n\t}\n}\n\nfunc parseRelation(in *nodes.Node) (*relation, error) {\n\tswitch n := in.Node.(type) {\n\tcase *nodes.Node_List:\n\t\treturn parseRelationFromNodes(n.List.Items)\n\tcase *nodes.Node_RangeVar:\n\t\treturn parseRelationFromRangeVar(n.RangeVar), nil\n\tcase *nodes.Node_TypeName:\n\t\treturn parseRelationFromNodes(n.TypeName.Names)\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"unexpected node type: %T\", n)\n\t}\n}\n\nfunc parseColName(node *nodes.Node) (*ast.ColumnRef, *ast.TableName, error) {\n\tswitch n := node.Node.(type) {\n\tcase *nodes.Node_List:\n\t\tparts := stringSlice(n.List)\n\t\tvar tbl *ast.TableName\n\t\tvar ref *ast.ColumnRef\n\t\tswitch len(parts) {\n\t\tcase 2:\n\t\t\ttbl = &ast.TableName{Name: parts[0]}\n\t\t\tref = &ast.ColumnRef{Name: parts[1]}\n\t\tcase 3:\n\t\t\ttbl = &ast.TableName{Schema: parts[0], Name: parts[1]}\n\t\t\tref = &ast.ColumnRef{Name: parts[2]}\n\t\tcase 4:\n\t\t\ttbl = &ast.TableName{Catalog: parts[0], Schema: parts[1], Name: parts[2]}\n\t\t\tref = &ast.ColumnRef{Name: parts[3]}\n\t\tdefault:\n\t\t\treturn nil, nil, fmt.Errorf(\"column specifier %q is not the proper format, expected '[catalog.][schema.]colname.tablename'\", strings.Join(parts, \".\"))\n\t\t}\n\t\treturn ref, tbl, nil\n\tdefault:\n\t\treturn nil, nil, fmt.Errorf(\"parseColName: unexpected node type: %T\", n)\n\t}\n}\n\nfunc joinNodes(list []*nodes.Node, sep string) string {\n\treturn strings.Join(stringSliceFromNodes(list), sep)\n}\n\nfunc NewParser() *Parser {\n\treturn &Parser{}\n}\n\ntype Parser struct {\n}\n\nvar errSkip = errors.New(\"skip stmt\")\n\nfunc (p *Parser) Parse(r io.Reader) ([]ast.Statement, error) {\n\tcontents, err := io.ReadAll(r)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\ttree, err := Parse(string(contents))\n\tif err != nil {\n\t\tpErr := normalizeErr(err)\n\t\treturn nil, pErr\n\t}\n\n\tvar stmts []ast.Statement\n\tfor _, raw := range tree.Stmts {\n\t\tn, err := translate(raw.Stmt)\n\t\tif err == errSkip {\n\t\t\tcontinue\n\t\t}\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif n == nil {\n\t\t\treturn nil, fmt.Errorf(\"unexpected nil node\")\n\t\t}\n\t\tstmts = append(stmts, ast.Statement{\n\t\t\tRaw: &ast.RawStmt{\n\t\t\t\tStmt:         n,\n\t\t\t\tStmtLocation: int(raw.StmtLocation),\n\t\t\t\tStmtLen:      int(raw.StmtLen),\n\t\t\t},\n\t\t})\n\t}\n\treturn stmts, nil\n}\n\nfunc normalizeErr(err error) error {\n\t//TODO: errors.As complains that *parser.Error does not implement error\n\tif pErr, ok := err.(*parser.Error); ok {\n\t\tsErr := &sqlerr.Error{\n\t\t\tMessage: pErr.Message,\n\t\t\t//Err:      pErr,\n\t\t\tLine:     pErr.Lineno,\n\t\t\tLocation: pErr.Cursorpos,\n\t\t}\n\t\treturn sErr\n\t}\n\n\treturn err\n}\n\n// https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-COMMENTS\nfunc (p *Parser) CommentSyntax() source.CommentSyntax {\n\treturn source.CommentSyntax{\n\t\tDash:      true,\n\t\tSlashStar: true,\n\t}\n}\n\nfunc translate(node *nodes.Node) (ast.Node, error) {\n\tswitch inner := node.Node.(type) {\n\n\tcase *nodes.Node_AlterEnumStmt:\n\t\tn := inner.AlterEnumStmt\n\t\trel, err := parseRelationFromNodes(n.TypeName)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tif n.OldVal != \"\" {\n\t\t\treturn &ast.AlterTypeRenameValueStmt{\n\t\t\t\tType:     rel.TypeName(),\n\t\t\t\tOldValue: makeString(n.OldVal),\n\t\t\t\tNewValue: makeString(n.NewVal),\n\t\t\t}, nil\n\t\t} else {\n\t\t\treturn &ast.AlterTypeAddValueStmt{\n\t\t\t\tType:               rel.TypeName(),\n\t\t\t\tNewValue:           makeString(n.NewVal),\n\t\t\t\tNewValHasNeighbor:  len(n.NewValNeighbor) > 0,\n\t\t\t\tNewValNeighbor:     makeString(n.NewValNeighbor),\n\t\t\t\tNewValIsAfter:      n.NewValIsAfter,\n\t\t\t\tSkipIfNewValExists: n.SkipIfNewValExists,\n\t\t\t}, nil\n\t\t}\n\n\tcase *nodes.Node_AlterObjectSchemaStmt:\n\t\tn := inner.AlterObjectSchemaStmt\n\t\tswitch n.ObjectType {\n\n\t\tcase nodes.ObjectType_OBJECT_TABLE, nodes.ObjectType_OBJECT_VIEW, nodes.ObjectType_OBJECT_MATVIEW:\n\t\t\trel := parseRelationFromRangeVar(n.Relation)\n\t\t\treturn &ast.AlterTableSetSchemaStmt{\n\t\t\t\tTable:     rel.TableName(),\n\t\t\t\tNewSchema: makeString(n.Newschema),\n\t\t\t\tMissingOk: n.MissingOk,\n\t\t\t}, nil\n\n\t\tcase nodes.ObjectType_OBJECT_TYPE:\n\t\t\trel, err := parseRelation(n.Object)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\treturn &ast.AlterTypeSetSchemaStmt{\n\t\t\t\tType:      rel.TypeName(),\n\t\t\t\tNewSchema: makeString(n.Newschema),\n\t\t\t}, nil\n\t\t}\n\t\treturn nil, errSkip\n\n\tcase *nodes.Node_AlterTableStmt:\n\t\tn := inner.AlterTableStmt\n\t\trel := parseRelationFromRangeVar(n.Relation)\n\t\tat := &ast.AlterTableStmt{\n\t\t\tTable:     rel.TableName(),\n\t\t\tCmds:      &ast.List{},\n\t\t\tMissingOk: n.MissingOk,\n\t\t}\n\t\tfor _, cmd := range n.Cmds {\n\t\t\tswitch cmdOneOf := cmd.Node.(type) {\n\t\t\tcase *nodes.Node_AlterTableCmd:\n\t\t\t\taltercmd := cmdOneOf.AlterTableCmd\n\t\t\t\titem := &ast.AlterTableCmd{Name: &altercmd.Name, MissingOk: altercmd.MissingOk}\n\n\t\t\t\tswitch altercmd.Subtype {\n\t\t\t\tcase nodes.AlterTableType_AT_AddColumn:\n\t\t\t\t\td, ok := altercmd.Def.Node.(*nodes.Node_ColumnDef)\n\t\t\t\t\tif !ok {\n\t\t\t\t\t\treturn nil, fmt.Errorf(\"expected alter table definition to be a ColumnDef\")\n\t\t\t\t\t}\n\n\t\t\t\t\trel, err := parseRelationFromNodes(d.ColumnDef.TypeName.Names)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn nil, err\n\t\t\t\t\t}\n\t\t\t\t\titem.Subtype = ast.AT_AddColumn\n\t\t\t\t\titem.Def = &ast.ColumnDef{\n\t\t\t\t\t\tColname:   d.ColumnDef.Colname,\n\t\t\t\t\t\tTypeName:  rel.TypeName(),\n\t\t\t\t\t\tIsNotNull: isNotNull(d.ColumnDef),\n\t\t\t\t\t\tIsArray:   isArray(d.ColumnDef.TypeName),\n\t\t\t\t\t\tArrayDims: len(d.ColumnDef.TypeName.ArrayBounds),\n\t\t\t\t\t}\n\n\t\t\t\tcase nodes.AlterTableType_AT_AlterColumnType:\n\t\t\t\t\td, ok := altercmd.Def.Node.(*nodes.Node_ColumnDef)\n\t\t\t\t\tif !ok {\n\t\t\t\t\t\treturn nil, fmt.Errorf(\"expected alter table definition to be a ColumnDef\")\n\t\t\t\t\t}\n\t\t\t\t\tcol := \"\"\n\t\t\t\t\tif altercmd.Name != \"\" {\n\t\t\t\t\t\tcol = altercmd.Name\n\t\t\t\t\t} else if d.ColumnDef.Colname != \"\" {\n\t\t\t\t\t\tcol = d.ColumnDef.Colname\n\t\t\t\t\t} else {\n\t\t\t\t\t\treturn nil, fmt.Errorf(\"unknown name for alter column type\")\n\t\t\t\t\t}\n\t\t\t\t\trel, err := parseRelationFromNodes(d.ColumnDef.TypeName.Names)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn nil, err\n\t\t\t\t\t}\n\t\t\t\t\titem.Subtype = ast.AT_AlterColumnType\n\t\t\t\t\titem.Def = &ast.ColumnDef{\n\t\t\t\t\t\tColname:   col,\n\t\t\t\t\t\tTypeName:  rel.TypeName(),\n\t\t\t\t\t\tIsNotNull: isNotNull(d.ColumnDef),\n\t\t\t\t\t\tIsArray:   isArray(d.ColumnDef.TypeName),\n\t\t\t\t\t\tArrayDims: len(d.ColumnDef.TypeName.ArrayBounds),\n\t\t\t\t\t}\n\n\t\t\t\tcase nodes.AlterTableType_AT_DropColumn:\n\t\t\t\t\titem.Subtype = ast.AT_DropColumn\n\n\t\t\t\tcase nodes.AlterTableType_AT_DropNotNull:\n\t\t\t\t\titem.Subtype = ast.AT_DropNotNull\n\n\t\t\t\tcase nodes.AlterTableType_AT_SetNotNull:\n\t\t\t\t\titem.Subtype = ast.AT_SetNotNull\n\n\t\t\t\tdefault:\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\n\t\t\t\tat.Cmds.Items = append(at.Cmds.Items, item)\n\t\t\t}\n\t\t}\n\t\treturn at, nil\n\n\tcase *nodes.Node_CommentStmt:\n\t\tn := inner.CommentStmt\n\t\tswitch n.Objtype {\n\n\t\tcase nodes.ObjectType_OBJECT_COLUMN:\n\t\t\tcol, tbl, err := parseColName(n.Object)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, fmt.Errorf(\"COMMENT ON COLUMN: %w\", err)\n\t\t\t}\n\t\t\treturn &ast.CommentOnColumnStmt{\n\t\t\t\tCol:     col,\n\t\t\t\tTable:   tbl,\n\t\t\t\tComment: makeString(n.Comment),\n\t\t\t}, nil\n\n\t\tcase nodes.ObjectType_OBJECT_SCHEMA:\n\t\t\to, ok := n.Object.Node.(*nodes.Node_String_)\n\t\t\tif !ok {\n\t\t\t\treturn nil, fmt.Errorf(\"COMMENT ON SCHEMA: unexpected node type: %T\", n.Object)\n\t\t\t}\n\t\t\treturn &ast.CommentOnSchemaStmt{\n\t\t\t\tSchema:  &ast.String{Str: o.String_.Sval},\n\t\t\t\tComment: makeString(n.Comment),\n\t\t\t}, nil\n\n\t\tcase nodes.ObjectType_OBJECT_TABLE:\n\t\t\trel, err := parseRelation(n.Object)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, fmt.Errorf(\"COMMENT ON TABLE: %w\", err)\n\t\t\t}\n\t\t\treturn &ast.CommentOnTableStmt{\n\t\t\t\tTable:   rel.TableName(),\n\t\t\t\tComment: makeString(n.Comment),\n\t\t\t}, nil\n\n\t\tcase nodes.ObjectType_OBJECT_TYPE:\n\t\t\trel, err := parseRelation(n.Object)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\treturn &ast.CommentOnTypeStmt{\n\t\t\t\tType:    rel.TypeName(),\n\t\t\t\tComment: makeString(n.Comment),\n\t\t\t}, nil\n\n\t\tcase nodes.ObjectType_OBJECT_VIEW:\n\t\t\trel, err := parseRelation(n.Object)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, fmt.Errorf(\"COMMENT ON VIEW: %w\", err)\n\t\t\t}\n\t\t\treturn &ast.CommentOnViewStmt{\n\t\t\t\tView:    rel.TableName(),\n\t\t\t\tComment: makeString(n.Comment),\n\t\t\t}, nil\n\n\t\t}\n\t\treturn nil, errSkip\n\n\tcase *nodes.Node_CompositeTypeStmt:\n\t\tn := inner.CompositeTypeStmt\n\t\trel := parseRelationFromRangeVar(n.Typevar)\n\t\treturn &ast.CompositeTypeStmt{\n\t\t\tTypeName: rel.TypeName(),\n\t\t}, nil\n\n\tcase *nodes.Node_CreateStmt:\n\t\tn := inner.CreateStmt\n\t\trel := parseRelationFromRangeVar(n.Relation)\n\t\tcreate := &ast.CreateTableStmt{\n\t\t\tName:        rel.TableName(),\n\t\t\tIfNotExists: n.IfNotExists,\n\t\t}\n\t\tfor _, node := range n.InhRelations {\n\t\t\tswitch item := node.Node.(type) {\n\t\t\tcase *nodes.Node_RangeVar:\n\t\t\t\tif item.RangeVar.Inh {\n\t\t\t\t\trel := parseRelationFromRangeVar(item.RangeVar)\n\t\t\t\t\tcreate.Inherits = append(create.Inherits, rel.TableName())\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tprimaryKey := make(map[string]bool)\n\t\tfor _, elt := range n.TableElts {\n\t\t\tswitch item := elt.Node.(type) {\n\t\t\tcase *nodes.Node_Constraint:\n\t\t\t\tif item.Constraint.Contype == nodes.ConstrType_CONSTR_PRIMARY {\n\t\t\t\t\tfor _, key := range item.Constraint.Keys {\n\t\t\t\t\t\t// FIXME: Possible nil pointer dereference\n\t\t\t\t\t\tprimaryKey[key.Node.(*nodes.Node_String_).String_.Sval] = true\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\tcase *nodes.Node_TableLikeClause:\n\t\t\t\trel := parseRelationFromRangeVar(item.TableLikeClause.Relation)\n\t\t\t\tcreate.ReferTable = rel.TableName()\n\t\t\t}\n\t\t}\n\t\tfor _, elt := range n.TableElts {\n\t\t\tswitch item := elt.Node.(type) {\n\t\t\tcase *nodes.Node_ColumnDef:\n\t\t\t\trel, err := parseRelationFromNodes(item.ColumnDef.TypeName.Names)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, err\n\t\t\t\t}\n\n\t\t\t\tprimary := false\n\t\t\t\tfor _, con := range item.ColumnDef.Constraints {\n\t\t\t\t\tif constraint, ok := con.Node.(*nodes.Node_Constraint); ok {\n\t\t\t\t\t\tprimary = constraint.Constraint.Contype == nodes.ConstrType_CONSTR_PRIMARY\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcreate.Cols = append(create.Cols, &ast.ColumnDef{\n\t\t\t\t\tColname:    item.ColumnDef.Colname,\n\t\t\t\t\tTypeName:   rel.TypeName(),\n\t\t\t\t\tIsNotNull:  isNotNull(item.ColumnDef) || primaryKey[item.ColumnDef.Colname],\n\t\t\t\t\tIsArray:    isArray(item.ColumnDef.TypeName),\n\t\t\t\t\tArrayDims:  len(item.ColumnDef.TypeName.ArrayBounds),\n\t\t\t\t\tPrimaryKey: primary,\n\t\t\t\t})\n\t\t\t}\n\t\t}\n\t\treturn create, nil\n\n\tcase *nodes.Node_CreateEnumStmt:\n\t\tn := inner.CreateEnumStmt\n\t\trel, err := parseRelationFromNodes(n.TypeName)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tstmt := &ast.CreateEnumStmt{\n\t\t\tTypeName: rel.TypeName(),\n\t\t\tVals:     &ast.List{},\n\t\t}\n\t\tfor _, val := range n.Vals {\n\t\t\tswitch v := val.Node.(type) {\n\t\t\tcase *nodes.Node_String_:\n\t\t\t\tstmt.Vals.Items = append(stmt.Vals.Items, &ast.String{\n\t\t\t\t\tStr: v.String_.Sval,\n\t\t\t\t})\n\t\t\t}\n\t\t}\n\t\treturn stmt, nil\n\n\tcase *nodes.Node_CreateFunctionStmt:\n\t\tn := inner.CreateFunctionStmt\n\t\tfn, err := parseRelationFromNodes(n.Funcname)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tvar rt *ast.TypeName\n\t\tif n.ReturnType != nil {\n\t\t\trel, err := parseRelationFromNodes(n.ReturnType.Names)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\trt = rel.TypeName()\n\t\t}\n\t\tstmt := &ast.CreateFunctionStmt{\n\t\t\tFunc:       fn.FuncName(),\n\t\t\tReturnType: rt,\n\t\t\tReplace:    n.Replace,\n\t\t\tParams:     &ast.List{},\n\t\t\tOptions:    convertSlice(n.Options),\n\t\t}\n\t\tfor _, item := range n.Parameters {\n\t\t\targ := item.Node.(*nodes.Node_FunctionParameter).FunctionParameter\n\t\t\trel, err := parseRelationFromNodes(arg.ArgType.Names)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tmode, err := convertFuncParamMode(arg.Mode)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tfp := &ast.FuncParam{\n\t\t\t\tName: &arg.Name,\n\t\t\t\tType: rel.TypeName(),\n\t\t\t\tMode: mode,\n\t\t\t}\n\t\t\tif arg.Defexpr != nil {\n\t\t\t\tfp.DefExpr = &ast.TODO{}\n\t\t\t}\n\t\t\tstmt.Params.Items = append(stmt.Params.Items, fp)\n\t\t}\n\t\treturn stmt, nil\n\n\tcase *nodes.Node_CreateSchemaStmt:\n\t\tn := inner.CreateSchemaStmt\n\t\treturn &ast.CreateSchemaStmt{\n\t\t\tName:        makeString(n.Schemaname),\n\t\t\tIfNotExists: n.IfNotExists,\n\t\t}, nil\n\n\tcase *nodes.Node_DropStmt:\n\t\tn := inner.DropStmt\n\t\tswitch n.RemoveType {\n\n\t\tcase nodes.ObjectType_OBJECT_FUNCTION:\n\t\t\tdrop := &ast.DropFunctionStmt{\n\t\t\t\tMissingOk: n.MissingOk,\n\t\t\t}\n\t\t\tfor _, obj := range n.Objects {\n\t\t\t\tnowa, ok := obj.Node.(*nodes.Node_ObjectWithArgs)\n\t\t\t\tif !ok {\n\t\t\t\t\treturn nil, fmt.Errorf(\"nodes.DropStmt: FUNCTION: unknown type in objects list: %T\", obj)\n\t\t\t\t}\n\t\t\t\towa := nowa.ObjectWithArgs\n\t\t\t\tfn, err := parseRelationFromNodes(owa.Objname)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, fmt.Errorf(\"nodes.DropStmt: FUNCTION: %w\", err)\n\t\t\t\t}\n\t\t\t\targs := make([]*ast.TypeName, len(owa.Objargs))\n\t\t\t\tfor i, objarg := range owa.Objargs {\n\t\t\t\t\ttn, ok := objarg.Node.(*nodes.Node_TypeName)\n\t\t\t\t\tif !ok {\n\t\t\t\t\t\treturn nil, fmt.Errorf(\"nodes.DropStmt: FUNCTION: unknown type in objargs list: %T\", objarg)\n\t\t\t\t\t}\n\t\t\t\t\tat, err := parseRelationFromNodes(tn.TypeName.Names)\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn nil, fmt.Errorf(\"nodes.DropStmt: FUNCTION: %w\", err)\n\t\t\t\t\t}\n\t\t\t\t\targs[i] = at.TypeName()\n\t\t\t\t}\n\t\t\t\tdrop.Funcs = append(drop.Funcs, &ast.FuncSpec{\n\t\t\t\t\tName:    fn.FuncName(),\n\t\t\t\t\tArgs:    args,\n\t\t\t\t\tHasArgs: !owa.ArgsUnspecified,\n\t\t\t\t})\n\t\t\t}\n\t\t\treturn drop, nil\n\n\t\tcase nodes.ObjectType_OBJECT_SCHEMA:\n\t\t\tdrop := &ast.DropSchemaStmt{\n\t\t\t\tMissingOk: n.MissingOk,\n\t\t\t}\n\t\t\tfor _, obj := range n.Objects {\n\t\t\t\tval, ok := obj.Node.(*nodes.Node_String_)\n\t\t\t\tif !ok {\n\t\t\t\t\treturn nil, fmt.Errorf(\"nodes.DropStmt: SCHEMA: unknown type in objects list: %T\", obj)\n\t\t\t\t}\n\t\t\t\tdrop.Schemas = append(drop.Schemas, &ast.String{Str: val.String_.Sval})\n\t\t\t}\n\t\t\treturn drop, nil\n\n\t\tcase nodes.ObjectType_OBJECT_TABLE, nodes.ObjectType_OBJECT_VIEW, nodes.ObjectType_OBJECT_MATVIEW:\n\t\t\tdrop := &ast.DropTableStmt{\n\t\t\t\tIfExists: n.MissingOk,\n\t\t\t}\n\t\t\tfor _, obj := range n.Objects {\n\t\t\t\tname, err := parseRelation(obj)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, fmt.Errorf(\"nodes.DropStmt: TABLE: %w\", err)\n\t\t\t\t}\n\t\t\t\tdrop.Tables = append(drop.Tables, name.TableName())\n\t\t\t}\n\t\t\treturn drop, nil\n\n\t\tcase nodes.ObjectType_OBJECT_TYPE:\n\t\t\tdrop := &ast.DropTypeStmt{\n\t\t\t\tIfExists: n.MissingOk,\n\t\t\t}\n\t\t\tfor _, obj := range n.Objects {\n\t\t\t\tname, err := parseRelation(obj)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn nil, fmt.Errorf(\"nodes.DropStmt: TYPE: %w\", err)\n\t\t\t\t}\n\t\t\t\tdrop.Types = append(drop.Types, name.TypeName())\n\t\t\t}\n\t\t\treturn drop, nil\n\n\t\t}\n\t\treturn nil, errSkip\n\n\tcase *nodes.Node_RenameStmt:\n\t\tn := inner.RenameStmt\n\t\tswitch n.RenameType {\n\n\t\tcase nodes.ObjectType_OBJECT_COLUMN:\n\t\t\trel := parseRelationFromRangeVar(n.Relation)\n\t\t\treturn &ast.RenameColumnStmt{\n\t\t\t\tTable:     rel.TableName(),\n\t\t\t\tCol:       &ast.ColumnRef{Name: n.Subname},\n\t\t\t\tNewName:   makeString(n.Newname),\n\t\t\t\tMissingOk: n.MissingOk,\n\t\t\t}, nil\n\n\t\tcase nodes.ObjectType_OBJECT_TABLE, nodes.ObjectType_OBJECT_MATVIEW, nodes.ObjectType_OBJECT_VIEW:\n\t\t\trel := parseRelationFromRangeVar(n.Relation)\n\t\t\treturn &ast.RenameTableStmt{\n\t\t\t\tTable:     rel.TableName(),\n\t\t\t\tNewName:   makeString(n.Newname),\n\t\t\t\tMissingOk: n.MissingOk,\n\t\t\t}, nil\n\n\t\tcase nodes.ObjectType_OBJECT_TYPE:\n\t\t\trel, err := parseRelation(n.Object)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, fmt.Errorf(\"nodes.RenameStmt: TYPE: %w\", err)\n\t\t\t}\n\t\t\treturn &ast.RenameTypeStmt{\n\t\t\t\tType:    rel.TypeName(),\n\t\t\t\tNewName: makeString(n.Newname),\n\t\t\t}, nil\n\n\t\t}\n\t\treturn nil, errSkip\n\n\tdefault:\n\t\treturn convert(node)\n\t}\n}\n"
  },
  {
    "path": "internal/engine/postgresql/parse_default.go",
    "content": "//go:build !windows && cgo\n\npackage postgresql\n\nimport (\n\tnodes \"github.com/pganalyze/pg_query_go/v6\"\n)\n\nvar Parse = nodes.Parse\nvar Fingerprint = nodes.Fingerprint\n"
  },
  {
    "path": "internal/engine/postgresql/parse_wasi.go",
    "content": "//go:build windows || !cgo\n\npackage postgresql\n\nimport (\n\tnodes \"github.com/wasilibs/go-pgquery\"\n)\n\nvar Parse = nodes.Parse\nvar Fingerprint = nodes.Fingerprint\n"
  },
  {
    "path": "internal/engine/postgresql/parser/parser_default.go",
    "content": "//go:build !windows && cgo\n\npackage parser\n\nimport \"github.com/pganalyze/pg_query_go/v6/parser\"\n\ntype Error = parser.Error\n"
  },
  {
    "path": "internal/engine/postgresql/parser/parser_wasi.go",
    "content": "//go:build windows || !cgo\n\npackage parser\n\nimport \"github.com/wasilibs/go-pgquery/parser\"\n\ntype Error = parser.Error\n"
  },
  {
    "path": "internal/engine/postgresql/pg_catalog.go",
    "content": "// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage postgresql\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcsgenPGCatalog = []*catalog.Function{\n\t{\n\t\tName:       \"RI_FKey_cascade_del\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName:       \"RI_FKey_cascade_upd\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName:       \"RI_FKey_check_ins\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName:       \"RI_FKey_check_upd\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName:       \"RI_FKey_noaction_del\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName:       \"RI_FKey_noaction_upd\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName:       \"RI_FKey_restrict_del\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName:       \"RI_FKey_restrict_upd\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName:       \"RI_FKey_setdefault_del\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName:       \"RI_FKey_setdefault_upd\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName:       \"RI_FKey_setnull_del\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName:       \"RI_FKey_setnull_upd\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName: \"abbrev\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cidr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"abbrev\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"abs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"abs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"abs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"abs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"abs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"abs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"aclcontains\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"aclitem[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"aclitem\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"acldefault\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"aclitem[]\"},\n\t},\n\t{\n\t\tName: \"aclexplode\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"acl\",\n\t\t\t\tType: &ast.TypeName{Name: \"aclitem[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"aclinsert\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"aclitem[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"aclitem\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"aclitem[]\"},\n\t},\n\t{\n\t\tName: \"aclitemeq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"aclitem\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"aclitem\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"aclitemin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"aclitem\"},\n\t},\n\t{\n\t\tName: \"aclitemout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"aclitem\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"aclremove\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"aclitem[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"aclitem\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"aclitem[]\"},\n\t},\n\t{\n\t\tName: \"acos\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"acosd\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"acosh\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"age\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"age\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"age\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"age\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"age\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"amvalidate\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"any_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t},\n\t{\n\t\tName: \"any_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"anyarray_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyarray\"},\n\t},\n\t{\n\t\tName: \"anyarray_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"anyarray_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"anycompatible_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anycompatible\"},\n\t},\n\t{\n\t\tName: \"anycompatible_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatible\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"anycompatiblearray_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t},\n\t{\n\t\tName: \"anycompatiblearray_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"anycompatiblearray_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"anycompatiblemultirange_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anycompatiblemultirange\"},\n\t},\n\t{\n\t\tName: \"anycompatiblemultirange_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatiblemultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"anycompatiblenonarray_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anycompatiblenonarray\"},\n\t},\n\t{\n\t\tName: \"anycompatiblenonarray_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatiblenonarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"anycompatiblerange_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anycompatiblerange\"},\n\t},\n\t{\n\t\tName: \"anycompatiblerange_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatiblerange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"anyelement_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"anyelement_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"anyenum_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyenum\"},\n\t},\n\t{\n\t\tName: \"anyenum_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"anymultirange_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anymultirange\"},\n\t},\n\t{\n\t\tName: \"anymultirange_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"anynonarray_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anynonarray\"},\n\t},\n\t{\n\t\tName: \"anynonarray_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anynonarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"anyrange_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyrange\"},\n\t},\n\t{\n\t\tName: \"anyrange_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"anytextcat\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anynonarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"area\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"area\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"area\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"array_agg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyarray\"},\n\t},\n\t{\n\t\tName: \"array_agg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anynonarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyarray\"},\n\t},\n\t{\n\t\tName: \"array_append\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatible\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t},\n\t{\n\t\tName: \"array_cat\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t},\n\t{\n\t\tName: \"array_dims\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"array_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"array_fill\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyarray\"},\n\t},\n\t{\n\t\tName: \"array_fill\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyarray\"},\n\t},\n\t{\n\t\tName: \"array_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"array_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"array_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyarray\"},\n\t},\n\t{\n\t\tName: \"array_larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyarray\"},\n\t},\n\t{\n\t\tName: \"array_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"array_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"array_lower\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"array_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"array_ndims\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"array_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"array_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"array_position\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatible\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"array_position\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatible\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"array_positions\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatible\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"array_prepend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatible\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t},\n\t{\n\t\tName: \"array_remove\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatible\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t},\n\t{\n\t\tName: \"array_replace\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatible\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatible\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t},\n\t{\n\t\tName: \"array_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"array_smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyarray\"},\n\t},\n\t{\n\t\tName: \"array_to_json\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"array_to_json\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"array_to_string\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"array_to_string\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"array_to_tsvector\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"array_upper\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"arraycontained\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"arraycontains\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"arrayoverlap\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ascii\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"asin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"asind\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"asinh\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"atan\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"atan2\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"atan2d\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"atand\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"atanh\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"avg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"avg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"avg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"avg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"avg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"avg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"avg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_create_empty_extension\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_set_missing_value\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_set_next_array_pg_type_oid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_set_next_heap_pg_class_oid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_set_next_heap_relfilenode\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_set_next_index_pg_class_oid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_set_next_index_relfilenode\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_set_next_multirange_array_pg_type_oid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_set_next_multirange_pg_type_oid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_set_next_pg_authid_oid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_set_next_pg_enum_oid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_set_next_pg_tablespace_oid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_set_next_pg_type_oid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_set_next_toast_pg_class_oid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_set_next_toast_relfilenode\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"binary_upgrade_set_record_init_privs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"bit\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"bit\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"bit\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"bit_and\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"bit_and\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"bit_and\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"bit_and\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"bit_count\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"bit_count\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"bit_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"bit_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"bit_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"bit_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"bit_or\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"bit_or\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"bit_or\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"bit_or\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"bit_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"bit_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"bit_xor\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"bit_xor\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"bit_xor\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"bit_xor\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"bitand\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"bitcat\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit varying\"},\n\t},\n\t{\n\t\tName: \"bitcmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"biteq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bitge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bitgt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bitle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bitlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bitne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bitnot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"bitor\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"bitshiftleft\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"bitshiftright\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"bittypmodin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"bittypmodout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"bitxor\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"bool\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bool\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bool_and\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bool_or\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"booland_statefunc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"booleq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"boolge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"boolgt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"boolin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"boolle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"boollt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"boolne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"boolor_statefunc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"boolout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"boolsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"bound_box\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"box\"},\n\t},\n\t{\n\t\tName: \"box\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"box\"},\n\t},\n\t{\n\t\tName: \"box\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"box\"},\n\t},\n\t{\n\t\tName: \"box\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"box\"},\n\t},\n\t{\n\t\tName: \"box\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"box\"},\n\t},\n\t{\n\t\tName: \"box_above\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_above_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_add\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"box\"},\n\t},\n\t{\n\t\tName: \"box_below\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_below_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_center\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"box_contain\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_contain_pt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_contained\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_distance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"box_div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"box\"},\n\t},\n\t{\n\t\tName: \"box_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"box\"},\n\t},\n\t{\n\t\tName: \"box_intersect\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"box\"},\n\t},\n\t{\n\t\tName: \"box_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_left\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"box\"},\n\t},\n\t{\n\t\tName: \"box_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"box_overabove\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_overbelow\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_overlap\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_overleft\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_overright\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_right\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_same\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"box_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"box_sub\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"box\"},\n\t},\n\t{\n\t\tName: \"bpchar\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"character\"},\n\t},\n\t{\n\t\tName: \"bpchar\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"character\"},\n\t},\n\t{\n\t\tName: \"bpchar\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"character\"},\n\t},\n\t{\n\t\tName: \"bpchar_larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"character\"},\n\t},\n\t{\n\t\tName: \"bpchar_pattern_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpchar_pattern_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpchar_pattern_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpchar_pattern_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpchar_smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"character\"},\n\t},\n\t{\n\t\tName: \"bpcharcmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"bpchareq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpcharge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpchargt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpchariclike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpcharicnlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpcharicregexeq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpcharicregexne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpcharin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"character\"},\n\t},\n\t{\n\t\tName: \"bpcharle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpcharlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpcharlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpcharne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpcharnlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpcharout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"bpcharregexeq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpcharregexne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bpcharsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"bpchartypmodin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"bpchartypmodout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"brin_bloom_summary_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_brin_bloom_summary\"},\n\t},\n\t{\n\t\tName: \"brin_bloom_summary_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_brin_bloom_summary\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"brin_bloom_summary_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_brin_bloom_summary\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"brin_desummarize_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"brin_minmax_multi_summary_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_brin_minmax_multi_summary\"},\n\t},\n\t{\n\t\tName: \"brin_minmax_multi_summary_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_brin_minmax_multi_summary\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"brin_minmax_multi_summary_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_brin_minmax_multi_summary\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"brin_summarize_new_values\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"brin_summarize_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"broadcast\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"btarraycmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btboolcmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btbpchar_pattern_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btcharcmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btequalimage\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"btfloat48cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btfloat4cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btfloat84cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btfloat8cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btint24cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btint28cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btint2cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btint42cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btint48cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btint4cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btint82cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btint84cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btint8cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btnamecmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btnametextcmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btoidcmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btoidvectorcmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btrecordcmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btrecordimagecmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btrim\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"btrim\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"btrim\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"bttext_pattern_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"bttextcmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"bttextnamecmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"bttidcmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"btvarstrequalimage\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"byteacat\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"byteacmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"byteaeq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"byteage\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"byteagt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"byteain\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"byteale\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bytealike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"bytealt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"byteane\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"byteanlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"byteaout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"byteasend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"cardinality\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"cash_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"cash_div_cash\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"cash_div_flt4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"cash_div_flt8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"cash_div_int2\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"cash_div_int4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"cash_div_int8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"cash_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cash_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cash_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cash_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"cash_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cash_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cash_mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"cash_mul_flt4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"cash_mul_flt8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"cash_mul_int2\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"cash_mul_int4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"cash_mul_int8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"cash_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cash_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"cash_pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"cash_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"cash_words\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"cashlarger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"cashsmaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"cbrt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"ceil\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"ceil\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"ceiling\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"ceiling\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"center\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"center\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"char\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"char\"},\n\t},\n\t{\n\t\tName: \"char\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"char\"},\n\t},\n\t{\n\t\tName: \"char_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"char_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"character_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"character_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"chareq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"charge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"chargt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"charin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"char\"},\n\t},\n\t{\n\t\tName: \"charle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"charlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"charne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"charout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"charsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"chr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"cideq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"cidin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cid\"},\n\t},\n\t{\n\t\tName: \"cidout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"cidr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cidr\"},\n\t},\n\t{\n\t\tName: \"cidr_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cidr\"},\n\t},\n\t{\n\t\tName: \"cidr_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cidr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"cidr_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cidr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"cidsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"circle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"circle\"},\n\t},\n\t{\n\t\tName: \"circle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"circle\"},\n\t},\n\t{\n\t\tName: \"circle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"circle\"},\n\t},\n\t{\n\t\tName: \"circle_above\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_add_pt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"circle\"},\n\t},\n\t{\n\t\tName: \"circle_below\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_center\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"circle_contain\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_contain_pt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_contained\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_distance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"circle_div_pt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"circle\"},\n\t},\n\t{\n\t\tName: \"circle_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"circle\"},\n\t},\n\t{\n\t\tName: \"circle_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_left\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_mul_pt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"circle\"},\n\t},\n\t{\n\t\tName: \"circle_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"circle_overabove\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_overbelow\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_overlap\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_overleft\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_overright\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_right\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_same\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"circle_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"circle_sub_pt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"circle\"},\n\t},\n\t{\n\t\tName:       \"clock_timestamp\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"close_ls\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"close_lseg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"close_pb\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"close_pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"close_ps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"close_sb\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"col_description\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"concat_ws\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"convert\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"convert_from\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"convert_to\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"corr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"cos\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"cosd\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"cosh\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"cot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"cotd\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName:       \"count\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"count\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"covar_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"covar_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"cstring_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"cstring_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"cstring_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName:       \"cume_dist\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"cume_dist\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName:       \"current_database\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"name\"},\n\t},\n\t{\n\t\tName:       \"current_query\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName:       \"current_schema\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"name\"},\n\t},\n\t{\n\t\tName: \"current_schemas\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"name[]\"},\n\t},\n\t{\n\t\tName: \"current_setting\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"current_setting\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName:       \"current_user\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"name\"},\n\t},\n\t{\n\t\tName: \"currtid2\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tid\"},\n\t},\n\t{\n\t\tName: \"currval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"cursor_to_xml\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"cursor\",\n\t\t\t\tType: &ast.TypeName{Name: \"refcursor\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"count\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"nulls\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"tableforest\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"targetns\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"cursor_to_xmlschema\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"cursor\",\n\t\t\t\tType: &ast.TypeName{Name: \"refcursor\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"nulls\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"tableforest\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"targetns\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"database_to_xml\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"nulls\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"tableforest\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"targetns\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"database_to_xml_and_xmlschema\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"nulls\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"tableforest\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"targetns\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"database_to_xmlschema\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"nulls\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"tableforest\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"targetns\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t},\n\t{\n\t\tName: \"date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t},\n\t{\n\t\tName: \"date_bin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"date_bin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"date_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"date_cmp_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"date_cmp_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"date_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_eq_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_eq_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_ge_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_ge_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_gt_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_gt_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t},\n\t{\n\t\tName: \"date_larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t},\n\t{\n\t\tName: \"date_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_le_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_le_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_lt_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_lt_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"date_mi_interval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"date_mii\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t},\n\t{\n\t\tName: \"date_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_ne_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_ne_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"date_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"date_part\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"date_part\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"date_part\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"date_part\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"date_part\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"date_part\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"date_pl_interval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"date_pli\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t},\n\t{\n\t\tName: \"date_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"date_smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t},\n\t{\n\t\tName: \"date_trunc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"date_trunc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"date_trunc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"date_trunc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName:       \"datemultirange\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"datemultirange\"},\n\t},\n\t{\n\t\tName: \"datemultirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"daterange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"datemultirange\"},\n\t},\n\t{\n\t\tName: \"datemultirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"daterange[]\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"datemultirange\"},\n\t},\n\t{\n\t\tName: \"daterange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"daterange\"},\n\t},\n\t{\n\t\tName: \"daterange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"daterange\"},\n\t},\n\t{\n\t\tName: \"daterange_canonical\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"daterange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"daterange\"},\n\t},\n\t{\n\t\tName: \"daterange_subdiff\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"datetime_pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"datetimetz_pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"dcbrt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"decode\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"degrees\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName:       \"dense_rank\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"dense_rank\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"dexp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"diagonal\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"lseg\"},\n\t},\n\t{\n\t\tName: \"diameter\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_bp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_bs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_cpoint\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_cpoly\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_lp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_ls\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_pathp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_pb\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_pc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_polyc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_polyp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_ppath\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_ppoly\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_ps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_sb\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_sl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dist_sp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"dlog1\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dlog10\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"domain_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"any\"},\n\t},\n\t{\n\t\tName: \"dpow\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dround\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dsqrt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"dtrunc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"elem_contained_by_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"elem_contained_by_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"encode\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"enum_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"enum_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"enum_first\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyenum\"},\n\t},\n\t{\n\t\tName: \"enum_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"enum_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"enum_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyenum\"},\n\t},\n\t{\n\t\tName: \"enum_larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyenum\"},\n\t},\n\t{\n\t\tName: \"enum_last\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyenum\"},\n\t},\n\t{\n\t\tName: \"enum_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"enum_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"enum_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"enum_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"enum_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyarray\"},\n\t},\n\t{\n\t\tName: \"enum_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyarray\"},\n\t},\n\t{\n\t\tName: \"enum_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"enum_smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyenum\"},\n\t},\n\t{\n\t\tName: \"event_trigger_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"event_trigger\"},\n\t},\n\t{\n\t\tName: \"event_trigger_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"event_trigger\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"every\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"exp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"exp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"extract\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"extract\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"extract\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"extract\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"extract\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"extract\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"factorial\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"family\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"fdw_handler_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"fdw_handler\"},\n\t},\n\t{\n\t\tName: \"fdw_handler_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"fdw_handler\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"first_value\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"float4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float48div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float48eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float48ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float48gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float48le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float48lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float48mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float48mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float48ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float48pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float4_accum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision[]\"},\n\t},\n\t{\n\t\tName: \"float4abs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float4div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float4eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float4ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float4gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float4in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float4larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float4le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float4lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float4mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float4mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float4ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float4out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"float4pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float4send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"float4smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float4um\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float4up\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"float8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float84div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float84eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float84ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float84gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float84le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float84lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float84mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float84mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float84ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float84pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_accum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision[]\"},\n\t},\n\t{\n\t\tName: \"float8_avg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_combine\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision[]\"},\n\t},\n\t{\n\t\tName: \"float8_corr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_covar_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_covar_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_regr_accum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision[]\"},\n\t},\n\t{\n\t\tName: \"float8_regr_avgx\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_regr_avgy\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_regr_combine\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision[]\"},\n\t},\n\t{\n\t\tName: \"float8_regr_intercept\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_regr_r2\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_regr_slope\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_regr_sxx\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_regr_sxy\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_regr_syy\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_stddev_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_stddev_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_var_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8_var_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8abs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float8ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float8gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float8in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float8lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float8mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"float8out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"float8pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"float8smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8um\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"float8up\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"floor\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"floor\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"flt4_mul_cash\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"flt8_mul_cash\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"fmgr_c_validator\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"fmgr_internal_validator\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"fmgr_sql_validator\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"format\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"format\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"format_type\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"gcd\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"gcd\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"gcd\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName:       \"gen_random_uuid\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"uuid\"},\n\t},\n\t{\n\t\tName: \"generate_series\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"generate_series\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"generate_series\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"generate_series\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"generate_series\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"generate_series\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"generate_series\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"generate_series\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"generate_subscripts\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"generate_subscripts\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"get_bit\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"get_bit\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"get_byte\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName:       \"get_current_ts_config\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"regconfig\"},\n\t},\n\t{\n\t\tName:       \"getdatabaseencoding\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"name\"},\n\t},\n\t{\n\t\tName:       \"getpgusername\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"name\"},\n\t},\n\t{\n\t\tName: \"gin_clean_pending_list\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"gin_cmp_tslexeme\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"gin_compare_jsonb\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"gtsvectorin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"gtsvector\"},\n\t},\n\t{\n\t\tName: \"gtsvectorout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"gtsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"has_any_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_any_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_any_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_any_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_any_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_any_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_column_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_database_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_database_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_database_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_database_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_database_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_database_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_foreign_data_wrapper_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_foreign_data_wrapper_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_foreign_data_wrapper_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_foreign_data_wrapper_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_foreign_data_wrapper_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_foreign_data_wrapper_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_function_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_function_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_function_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_function_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_function_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_function_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_language_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_language_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_language_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_language_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_language_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_language_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_parameter_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_parameter_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_parameter_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_schema_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_schema_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_schema_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_schema_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_schema_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_schema_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_sequence_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_sequence_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_sequence_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_sequence_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_sequence_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_sequence_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_server_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_server_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_server_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_server_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_server_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_server_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_table_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_table_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_table_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_table_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_table_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_table_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_tablespace_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_tablespace_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_tablespace_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_tablespace_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_tablespace_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_tablespace_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_type_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_type_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_type_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_type_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_type_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"has_type_privilege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"hash_aclitem\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"aclitem\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hash_aclitem_extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"aclitem\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hash_array\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hash_array_extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hash_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hash_multirange_extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hash_numeric\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hash_numeric_extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hash_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hash_range_extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hash_record\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hash_record_extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashbpchar\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashbpcharextended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashchar\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashcharextended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashenum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashenumextended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashfloat4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashfloat4extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashfloat8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashfloat8extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashinet\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashinetextended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashint2\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashint2extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashint4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashint4extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashint8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashint8extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashmacaddr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashmacaddr8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashmacaddr8extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashmacaddrextended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashname\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashnameextended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashoid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashoidextended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashoidvector\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashoidvectorextended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashtext\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashtextextended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"hashtid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"hashtidextended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"height\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"host\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"hostmask\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"in_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"index_am_handler_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"index_am_handler\"},\n\t},\n\t{\n\t\tName: \"index_am_handler_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"index_am_handler\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName:       \"inet_client_addr\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName:       \"inet_client_port\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"inet_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"inet_merge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cidr\"},\n\t},\n\t{\n\t\tName: \"inet_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"inet_same_family\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"inet_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName:       \"inet_server_addr\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName:       \"inet_server_port\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"inetand\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"inetmi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"inetmi_int8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"inetnot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"inetor\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"inetpl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"initcap\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"int2\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int24div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int24eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int24ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int24gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int24le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int24lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int24mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int24mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int24ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int24pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int28div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int28eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int28ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int28gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int28le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int28lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int28mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int28mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int28ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int28pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int2_avg_accum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint[]\"},\n\t},\n\t{\n\t\tName: \"int2_avg_accum_inv\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint[]\"},\n\t},\n\t{\n\t\tName: \"int2_mul_cash\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"int2_sum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int2abs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2and\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int2ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int2gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int2in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2int4_sum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int2larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int2lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int2mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2mod\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int2not\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2or\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"int2pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"int2shl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2shr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2um\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2up\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int2vectorin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"int2vector\"},\n\t},\n\t{\n\t\tName: \"int2vectorout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"int2vector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"int2vectorsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"int2vector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"int2xor\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"int4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int42div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int42eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int42ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int42gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int42le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int42lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int42mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int42mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int42ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int42pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int48div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int48eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int48ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int48gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int48le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int48lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int48mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int48mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int48ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int48pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int4_avg_accum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint[]\"},\n\t},\n\t{\n\t\tName: \"int4_avg_accum_inv\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint[]\"},\n\t},\n\t{\n\t\tName: \"int4_avg_combine\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint[]\"},\n\t},\n\t{\n\t\tName: \"int4_mul_cash\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"int4_sum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int4abs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4and\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int4ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int4gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int4in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4inc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int4lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int4mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4mod\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName:       \"int4multirange\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"int4multirange\"},\n\t},\n\t{\n\t\tName: \"int4multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"int4range\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"int4multirange\"},\n\t},\n\t{\n\t\tName: \"int4multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"int4range[]\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"int4multirange\"},\n\t},\n\t{\n\t\tName: \"int4ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int4not\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4or\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"int4pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"int4range\"},\n\t},\n\t{\n\t\tName: \"int4range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"int4range\"},\n\t},\n\t{\n\t\tName: \"int4range_canonical\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"int4range\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"int4range\"},\n\t},\n\t{\n\t\tName: \"int4range_subdiff\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"int4send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"int4shl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4shr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4um\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4up\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int4xor\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"int8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int82div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int82eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int82ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int82gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int82le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int82lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int82mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int82mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int82ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int82pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int84div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int84eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int84ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int84gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int84le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int84lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int84mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int84mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int84ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int84pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8_avg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"int8_mul_cash\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"int8_sum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"int8abs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8and\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8dec\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8dec_any\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int8ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int8gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int8in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8inc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8inc_any\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8inc_float8_float8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int8lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int8mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8mod\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"int8multirange\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"int8multirange\"},\n\t},\n\t{\n\t\tName: \"int8multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"int8range\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"int8multirange\"},\n\t},\n\t{\n\t\tName: \"int8multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"int8range[]\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"int8multirange\"},\n\t},\n\t{\n\t\tName: \"int8ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"int8not\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8or\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"int8pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8pl_inet\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"int8range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"int8range\"},\n\t},\n\t{\n\t\tName: \"int8range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"int8range\"},\n\t},\n\t{\n\t\tName: \"int8range_canonical\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"int8range\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"int8range\"},\n\t},\n\t{\n\t\tName: \"int8range_subdiff\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"int8send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"int8shl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8shr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8um\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8up\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"int8xor\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"integer_pl_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t},\n\t{\n\t\tName: \"inter_lb\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"inter_sb\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"inter_sl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"interval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"interval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"interval_accum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval[]\"},\n\t},\n\t{\n\t\tName: \"interval_accum_inv\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval[]\"},\n\t},\n\t{\n\t\tName: \"interval_avg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"interval_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"interval_combine\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval[]\"},\n\t},\n\t{\n\t\tName: \"interval_div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"interval_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"interval_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"interval_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"interval_hash\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"interval_hash_extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"interval_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"interval_larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"interval_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"interval_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"interval_mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"interval_mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"interval_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"interval_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"interval_pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"interval_pl_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"interval_pl_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time without time zone\"},\n\t},\n\t{\n\t\tName: \"interval_pl_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"interval_pl_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"interval_pl_timetz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time with time zone\"},\n\t},\n\t{\n\t\tName: \"interval_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"interval_smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"interval_um\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"intervaltypmodin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"intervaltypmodout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"is_normalized\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isclosed\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isempty\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isempty\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isfinite\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isfinite\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isfinite\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isfinite\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ishorizontal\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ishorizontal\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ishorizontal\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isopen\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isparallel\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isparallel\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isperp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isperp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isvertical\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isvertical\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"isvertical\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"json_agg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"json_array_element\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"element_index\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"json_array_element_text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"element_index\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"json_array_elements\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"json_array_elements_text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"json_array_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName:       \"json_build_array\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"json_build_array\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName:       \"json_build_object\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"json_build_object\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"json_each\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"json_each_text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"json_extract_path\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path_elems\",\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"json_extract_path_text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path_elems\",\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"json_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"json_object\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"json_object\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"json_object_agg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"json_object_field\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"field_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"json_object_field_text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"field_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"json_object_keys\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"json_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"json_populate_record\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"base\",\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"use_json_as_text\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"json_populate_recordset\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"base\",\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"use_json_as_text\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"json_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"json_strip_nulls\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"json_to_record\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"json_to_recordset\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"json_to_tsvector\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"json_to_tsvector\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"json_typeof\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"jsonb_agg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_array_element\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"element_index\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_array_element_text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"element_index\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"jsonb_array_elements\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_array_elements_text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"jsonb_array_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName:       \"jsonb_build_array\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_build_array\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName:       \"jsonb_build_object\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_build_object\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"jsonb_concat\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_contained\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_contains\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_delete\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_delete\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_delete\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path_elems\",\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_delete_path\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_each\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"jsonb_each_text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"jsonb_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_exists\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_exists_all\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_exists_any\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_extract_path\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path_elems\",\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_extract_path_text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path_elems\",\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"jsonb_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_hash\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"jsonb_hash_extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"jsonb_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_insert\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"jsonb_in\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path\",\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"replacement\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"insert_after\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_object\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_object\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_object_agg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_object_field\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"field_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_object_field_text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"from_json\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"field_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"jsonb_object_keys\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"jsonb_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"jsonb_path_exists\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"target\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonpath\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"vars\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"silent\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_path_exists_opr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonpath\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_path_exists_tz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"target\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonpath\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"vars\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"silent\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_path_match\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"target\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonpath\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"vars\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"silent\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_path_match_opr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonpath\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_path_match_tz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"target\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonpath\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"vars\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"silent\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"jsonb_path_query\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"target\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonpath\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"vars\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"silent\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_path_query_array\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"target\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonpath\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"vars\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"silent\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_path_query_array_tz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"target\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonpath\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"vars\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"silent\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_path_query_first\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"target\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonpath\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"vars\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"silent\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_path_query_first_tz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"target\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonpath\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"vars\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"silent\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_path_query_tz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"target\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonpath\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"vars\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"silent\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_populate_record\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"jsonb_populate_recordset\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"jsonb_pretty\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"jsonb_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"jsonb_set\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"jsonb_in\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path\",\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"replacement\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"create_if_missing\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_set_lax\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"jsonb_in\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"path\",\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"replacement\",\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"create_if_missing\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"null_value_treatment\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_strip_nulls\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"jsonb_to_record\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"jsonb_to_recordset\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"jsonb_to_tsvector\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"jsonb_to_tsvector\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"jsonb_typeof\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"jsonpath_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonpath\"},\n\t},\n\t{\n\t\tName: \"jsonpath_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonpath\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"jsonpath_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonpath\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"justify_days\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"justify_hours\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"justify_interval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"lag\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatible\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatible\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anycompatible\"},\n\t},\n\t{\n\t\tName: \"lag\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"lag\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"language_handler_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"language_handler\"},\n\t},\n\t{\n\t\tName: \"language_handler_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"language_handler\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"last_value\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName:       \"lastval\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"lcm\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"lcm\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"lcm\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"lead\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatible\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatible\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anycompatible\"},\n\t},\n\t{\n\t\tName: \"lead\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"lead\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"left\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"like\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"like\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"like\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"like_escape\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"like_escape\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"line\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"line\"},\n\t},\n\t{\n\t\tName: \"line_distance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"line_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"line_horizontal\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"line_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"line\"},\n\t},\n\t{\n\t\tName: \"line_interpt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"line_intersect\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"line_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"line_parallel\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"line_perp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"line_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"line_vertical\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ln\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"ln\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"lo_close\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"lo_creat\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"lo_create\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"lo_export\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"lo_from_bytea\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"lo_get\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"lo_get\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"lo_import\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"lo_import\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"lo_lseek\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"lo_lseek64\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"lo_open\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"lo_put\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"lo_tell\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"lo_tell64\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"lo_truncate\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"lo_truncate64\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"lo_unlink\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"log\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"log\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"log\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"log10\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"log10\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"loread\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"lower\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"lower\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"lower\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"lower_inc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"lower_inc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"lower_inf\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"lower_inf\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"lowrite\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"lpad\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"lpad\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"lseg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"lseg\"},\n\t},\n\t{\n\t\tName: \"lseg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"lseg\"},\n\t},\n\t{\n\t\tName: \"lseg_center\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"lseg_distance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"lseg_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"lseg_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"lseg_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"lseg_horizontal\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"lseg_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"lseg\"},\n\t},\n\t{\n\t\tName: \"lseg_interpt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"lseg_intersect\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"lseg_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"lseg_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"lseg_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"lseg_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"lseg_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"lseg_parallel\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"lseg_perp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"lseg_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"lseg_vertical\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ltrim\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"ltrim\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"ltrim\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"macaddr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"macaddr\"},\n\t},\n\t{\n\t\tName: \"macaddr8\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"macaddr8\"},\n\t},\n\t{\n\t\tName: \"macaddr8_and\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"macaddr8\"},\n\t},\n\t{\n\t\tName: \"macaddr8_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"macaddr8_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"macaddr8_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"macaddr8_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"macaddr8_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"macaddr8\"},\n\t},\n\t{\n\t\tName: \"macaddr8_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"macaddr8_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"macaddr8_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"macaddr8_not\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"macaddr8\"},\n\t},\n\t{\n\t\tName: \"macaddr8_or\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"macaddr8\"},\n\t},\n\t{\n\t\tName: \"macaddr8_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"macaddr8_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"macaddr8_set7bit\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"macaddr8\"},\n\t},\n\t{\n\t\tName: \"macaddr_and\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"macaddr\"},\n\t},\n\t{\n\t\tName: \"macaddr_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"macaddr_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"macaddr_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"macaddr_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"macaddr_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"macaddr\"},\n\t},\n\t{\n\t\tName: \"macaddr_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"macaddr_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"macaddr_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"macaddr_not\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"macaddr\"},\n\t},\n\t{\n\t\tName: \"macaddr_or\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"macaddr\"},\n\t},\n\t{\n\t\tName: \"macaddr_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"macaddr_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"make_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"year\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"month\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"day\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t},\n\t{\n\t\tName: \"make_interval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName:       \"years\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"months\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"weeks\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"days\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"hours\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"mins\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"secs\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"make_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"hour\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"min\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"sec\",\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time without time zone\"},\n\t},\n\t{\n\t\tName: \"make_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"year\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"month\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"mday\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"hour\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"min\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"sec\",\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"make_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"year\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"month\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"mday\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"hour\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"min\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"sec\",\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"make_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"year\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"month\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"mday\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"hour\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"min\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"sec\",\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"timezone\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"makeaclitem\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"aclitem\"},\n\t},\n\t{\n\t\tName: \"masklen\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyarray\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyenum\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"character\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tid\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time with time zone\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time without time zone\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"max\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xid8\"},\n\t},\n\t{\n\t\tName: \"md5\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"md5\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyarray\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyenum\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyenum\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"character\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tid\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time with time zone\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time without time zone\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"min\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xid8\"},\n\t},\n\t{\n\t\tName: \"min_scale\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"mod\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"mod\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"mod\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"mod\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"smallint\"},\n\t},\n\t{\n\t\tName:       \"mode\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"money\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"money\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"money\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"mul_d_interval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anymultirange\"},\n\t},\n\t{\n\t\tName: \"multirange_adjacent_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_adjacent_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_after_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_after_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_before_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_before_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"multirange_contained_by_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_contained_by_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_contains_elem\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_contains_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_contains_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anymultirange\"},\n\t},\n\t{\n\t\tName: \"multirange_intersect\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anymultirange\"},\n\t},\n\t{\n\t\tName: \"multirange_intersect_agg_transfn\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anymultirange\"},\n\t},\n\t{\n\t\tName: \"multirange_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_minus\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anymultirange\"},\n\t},\n\t{\n\t\tName: \"multirange_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"multirange_overlaps_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_overlaps_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_overleft_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_overleft_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_overright_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_overright_range\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"multirange_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"multirange_union\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anymultirange\"},\n\t},\n\t{\n\t\tName: \"mxid_age\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"name\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"name\"},\n\t},\n\t{\n\t\tName: \"name\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character varying\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"name\"},\n\t},\n\t{\n\t\tName: \"name\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"name\"},\n\t},\n\t{\n\t\tName: \"nameconcatoid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"name\"},\n\t},\n\t{\n\t\tName: \"nameeq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"nameeqtext\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"namege\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"namegetext\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"namegt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"namegttext\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"nameiclike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"nameicnlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"nameicregexeq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"nameicregexne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"namein\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"name\"},\n\t},\n\t{\n\t\tName: \"namele\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"nameletext\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"namelike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"namelt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"namelttext\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"namene\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"namenetext\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"namenlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"nameout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"nameregexeq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"nameregexne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"namesend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"netmask\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"network\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cidr\"},\n\t},\n\t{\n\t\tName: \"network_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"network_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"network_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"network_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"network_larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"network_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"network_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"network_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"network_overlap\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"network_smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"network_sub\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"network_subeq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"network_sup\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"network_supeq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"nextval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"normalize\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"notlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"notlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"notlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"now\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"npoints\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"npoints\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"nth_value\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"ntile\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"num_nonnulls\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"num_nulls\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"numeric\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_abs\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_add\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"numeric_div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_div_trunc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"numeric_exp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"numeric_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"numeric_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_inc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"numeric_ln\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_log\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"numeric_mod\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"numeric_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"numeric_pl_pg_lsn\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName: \"numeric_power\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"numeric_smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_sqrt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_sub\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_uminus\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numeric_uplus\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"numerictypmodin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"numerictypmodout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName:       \"nummultirange\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"nummultirange\"},\n\t},\n\t{\n\t\tName: \"nummultirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"nummultirange\"},\n\t},\n\t{\n\t\tName: \"nummultirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numrange[]\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"nummultirange\"},\n\t},\n\t{\n\t\tName: \"numnode\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"numrange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numrange\"},\n\t},\n\t{\n\t\tName: \"numrange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numrange\"},\n\t},\n\t{\n\t\tName: \"numrange_subdiff\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"obj_description\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"obj_description\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"octet_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"octet_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"octet_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"octet_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"oid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"oideq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"oidge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"oidgt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"oidin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"oidlarger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"oidle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"oidlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"oidne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"oidout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"oidsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"oidsmaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"oidvectoreq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"oidvectorge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"oidvectorgt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"oidvectorin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oidvector\"},\n\t},\n\t{\n\t\tName: \"oidvectorle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"oidvectorlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"oidvectorne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"oidvectorout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"oidvectorsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"oidvectortypes\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oidvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"on_pb\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"on_pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"on_ppath\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"on_ps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"on_sb\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"on_sl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"line\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"overlaps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"overlaps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"overlaps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"overlaps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"overlaps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"overlaps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"overlaps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"overlaps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"overlaps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"overlaps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"overlaps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"overlaps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"overlaps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"overlay\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"overlay\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"overlay\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"overlay\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"overlay\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"overlay\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"parse_ident\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"str\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"strict\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"path\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"path\"},\n\t},\n\t{\n\t\tName: \"path_add\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"path\"},\n\t},\n\t{\n\t\tName: \"path_add_pt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"path\"},\n\t},\n\t{\n\t\tName: \"path_contain_pt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"path_distance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"path_div_pt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"path\"},\n\t},\n\t{\n\t\tName: \"path_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"path\"},\n\t},\n\t{\n\t\tName: \"path_inter\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"path_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"path_mul_pt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"path\"},\n\t},\n\t{\n\t\tName: \"path_n_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"path_n_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"path_n_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"path_n_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"path_n_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"path_npoints\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"path_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"path_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"path_sub_pt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"path\"},\n\t},\n\t{\n\t\tName: \"pclose\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"path\"},\n\t},\n\t{\n\t\tName:       \"percent_rank\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"percent_rank\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"percentile_cont\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"percentile_cont\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision[]\"},\n\t},\n\t{\n\t\tName: \"percentile_cont\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"percentile_cont\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval[]\"},\n\t},\n\t{\n\t\tName: \"percentile_disc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyarray\"},\n\t},\n\t{\n\t\tName: \"percentile_disc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"pg_advisory_lock\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_advisory_lock\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_advisory_lock_shared\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_advisory_lock_shared\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_advisory_unlock\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_advisory_unlock\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"pg_advisory_unlock_all\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_advisory_unlock_shared\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_advisory_unlock_shared\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_advisory_xact_lock\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_advisory_xact_lock\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_advisory_xact_lock_shared\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_advisory_xact_lock_shared\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName:       \"pg_available_extension_versions\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_available_extensions\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_backend_pid\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"pg_backup_start\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"label\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"fast\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName: \"pg_backup_stop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName:       \"wait_for_archive\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_blocking_pids\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"pg_cancel_backend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_char_to_encoding\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName:       \"pg_client_encoding\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"name\"},\n\t},\n\t{\n\t\tName: \"pg_collation_actual_version\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_collation_for\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_collation_is_visible\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_column_compression\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_column_is_updatable\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_column_size\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName:       \"pg_conf_load_time\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName:       \"pg_config\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_control_checkpoint\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_control_init\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_control_recovery\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_control_system\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_conversion_is_visible\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_copy_logical_replication_slot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"src_slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"dst_slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_copy_logical_replication_slot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"src_slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"dst_slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"temporary\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_copy_logical_replication_slot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"src_slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"dst_slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"temporary\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"plugin\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_copy_physical_replication_slot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"src_slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"dst_slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_copy_physical_replication_slot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"src_slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"dst_slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"temporary\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_create_logical_replication_slot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"plugin\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"temporary\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"twophase\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_create_physical_replication_slot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"immediately_reserve\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"temporary\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_create_restore_point\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName:       \"pg_current_logfile\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_current_logfile\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName:       \"pg_current_snapshot\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"pg_snapshot\"},\n\t},\n\t{\n\t\tName:       \"pg_current_wal_flush_lsn\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName:       \"pg_current_wal_insert_lsn\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName:       \"pg_current_wal_lsn\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName:       \"pg_current_xact_id\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"xid8\"},\n\t},\n\t{\n\t\tName:       \"pg_current_xact_id_if_assigned\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"xid8\"},\n\t},\n\t{\n\t\tName:       \"pg_cursor\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_database_collation_actual_version\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_database_size\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_database_size\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_ddl_command_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_ddl_command\"},\n\t},\n\t{\n\t\tName: \"pg_ddl_command_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_ddl_command\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"pg_ddl_command_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_ddl_command\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pg_dependencies_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_dependencies\"},\n\t},\n\t{\n\t\tName: \"pg_dependencies_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_dependencies\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"pg_dependencies_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_dependencies\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pg_describe_object\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_drop_replication_slot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_encoding_max_length\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"pg_encoding_to_char\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"name\"},\n\t},\n\t{\n\t\tName:       \"pg_event_trigger_ddl_commands\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_event_trigger_dropped_objects\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_event_trigger_table_rewrite_oid\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName:       \"pg_event_trigger_table_rewrite_reason\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName:       \"pg_export_snapshot\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_extension_config_dump\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_extension_update_paths\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_filenode_relation\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regclass\"},\n\t},\n\t{\n\t\tName: \"pg_function_is_visible\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"pg_get_backend_memory_contexts\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_get_catalog_foreign_keys\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_get_constraintdef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_constraintdef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_expr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_expr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_function_arg_default\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_function_arguments\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_function_identity_arguments\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_function_result\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_function_sqlbody\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_functiondef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_indexdef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_indexdef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName:       \"pg_get_keywords\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_get_multixact_members\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"multixid\",\n\t\t\t\tType: &ast.TypeName{Name: \"xid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_get_object_address\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"type\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"object_names\",\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"object_args\",\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_get_partition_constraintdef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_partkeydef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_publication_tables\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"pubname\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_get_replica_identity_index\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regclass\"},\n\t},\n\t{\n\t\tName:       \"pg_get_replication_slots\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_get_ruledef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_ruledef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_serial_sequence\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName:       \"pg_get_shmem_allocations\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_get_statisticsobjdef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_statisticsobjdef_columns\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_statisticsobjdef_expressions\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"pg_get_triggerdef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_triggerdef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_userbyid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"name\"},\n\t},\n\t{\n\t\tName: \"pg_get_viewdef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_viewdef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_viewdef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_viewdef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_get_viewdef\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName:       \"pg_get_wal_replay_pause_state\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName:       \"pg_get_wal_resource_managers\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_has_role\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_has_role\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_has_role\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_has_role\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_has_role\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_has_role\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"pg_hba_file_rules\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_ident_file_mappings\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_identify_object\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"classid\",\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"objid\",\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"objsubid\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_identify_object_as_address\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"classid\",\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"objid\",\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"objsubid\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_import_system_collations\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regnamespace\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"pg_index_column_has_property\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_index_has_property\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_indexam_has_property\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_indexam_progress_phasename\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_indexes_size\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"pg_is_in_recovery\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_is_other_temp_schema\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"pg_is_wal_replay_paused\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_isolation_test_session_is_blocked\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"pg_jit_available\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"pg_last_committed_xact\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_last_wal_receive_lsn\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName:       \"pg_last_wal_replay_lsn\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName:       \"pg_last_xact_replay_timestamp\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName:       \"pg_listening_channels\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName:       \"pg_lock_status\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_log_backend_memory_contexts\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_logical_emit_message\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName: \"pg_logical_emit_message\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName: \"pg_logical_slot_get_binary_changes\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"upto_lsn\",\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"upto_nchanges\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"options\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"text[]\"},\n\t\t\t\tMode:       ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_logical_slot_get_changes\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"upto_lsn\",\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"upto_nchanges\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"options\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"text[]\"},\n\t\t\t\tMode:       ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_logical_slot_peek_binary_changes\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"upto_lsn\",\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"upto_nchanges\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"options\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"text[]\"},\n\t\t\t\tMode:       ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_logical_slot_peek_changes\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"upto_lsn\",\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"upto_nchanges\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"options\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"text[]\"},\n\t\t\t\tMode:       ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_ls_archive_statusdir\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_ls_dir\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_ls_dir\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName:       \"pg_ls_logdir\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_ls_logicalmapdir\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_ls_logicalsnapdir\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_ls_replslotdir\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_ls_tmpdir\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_ls_tmpdir\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"tablespace\",\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_ls_waldir\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_lsn\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_hash\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_hash_extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_mii\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_pli\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pg_lsn_smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName: \"pg_mcv_list_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_mcv_list\"},\n\t},\n\t{\n\t\tName: \"pg_mcv_list_items\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"mcv_list\",\n\t\t\t\tType: &ast.TypeName{Name: \"pg_mcv_list\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_mcv_list_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_mcv_list\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"pg_mcv_list_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_mcv_list\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName:       \"pg_my_temp_schema\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"pg_ndistinct_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_ndistinct\"},\n\t},\n\t{\n\t\tName: \"pg_ndistinct_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_ndistinct\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"pg_ndistinct_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_ndistinct\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pg_nextoid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"pg_node_tree_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_node_tree\"},\n\t},\n\t{\n\t\tName: \"pg_node_tree_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"pg_node_tree_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName:       \"pg_notification_queue_usage\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"pg_notify\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_opclass_is_visible\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_operator_is_visible\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_opfamily_is_visible\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_options_to_table\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"options_array\",\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_partition_ancestors\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"partitionid\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regclass\"},\n\t},\n\t{\n\t\tName: \"pg_partition_root\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regclass\"},\n\t},\n\t{\n\t\tName: \"pg_partition_tree\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"rootrelid\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_postmaster_start_time\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName:       \"pg_prepared_statement\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_prepared_xact\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_promote\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName:       \"wait\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"wait_seconds\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_read_binary_file\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pg_read_binary_file\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pg_read_binary_file\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pg_read_file\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_read_file\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_read_file\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_read_file_old\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_relation_filenode\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"pg_relation_filepath\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_relation_is_publishable\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_relation_is_updatable\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"pg_relation_size\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_relation_size\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"pg_reload_conf\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_replication_origin_advance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_replication_origin_create\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"pg_replication_origin_drop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_replication_origin_oid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"pg_replication_origin_progress\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName:       \"pg_replication_origin_session_is_setup\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_replication_origin_session_progress\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName:       \"pg_replication_origin_session_reset\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_replication_origin_session_setup\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName:       \"pg_replication_origin_xact_reset\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_replication_origin_xact_setup\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_replication_slot_advance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"upto_lsn\",\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_rotate_logfile\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"pg_rotate_logfile_old\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_safe_snapshot_blocking_pids\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer[]\"},\n\t},\n\t{\n\t\tName: \"pg_sequence_last_value\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_sequence_parameters\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"sequence_oid\",\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_settings_get_flags\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName:       \"pg_show_all_file_settings\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_show_all_settings\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_show_replication_origin_status\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_size_bytes\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_size_pretty\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_size_pretty\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_sleep\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_sleep_for\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_sleep_until\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_snapshot_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"pg_snapshot\"},\n\t},\n\t{\n\t\tName: \"pg_snapshot_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_snapshot\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"pg_snapshot_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_snapshot\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"pg_snapshot_xip\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_snapshot\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xid8\"},\n\t},\n\t{\n\t\tName: \"pg_snapshot_xmax\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_snapshot\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xid8\"},\n\t},\n\t{\n\t\tName: \"pg_snapshot_xmin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_snapshot\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xid8\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_clear_snapshot\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_stat_file\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"filename\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_stat_file\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"filename\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"missing_ok\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_force_next_flush\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_activity\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"pid\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_analyze_count\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_archiver\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_autoanalyze_count\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_autovacuum_count\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_backend_activity\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_backend_activity_start\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_backend_client_addr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_backend_client_port\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_backend_dbid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_backend_idset\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_backend_pid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_backend_start\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_backend_userid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_backend_wait_event\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_backend_wait_event_type\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_backend_xact_start\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_bgwriter_buf_written_checkpoints\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_bgwriter_buf_written_clean\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_bgwriter_maxwritten_clean\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_bgwriter_requested_checkpoints\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_bgwriter_stat_reset_time\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_bgwriter_timed_checkpoints\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_blocks_fetched\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_blocks_hit\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_buf_alloc\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_buf_fsync_backend\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_buf_written_backend\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_checkpoint_sync_time\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_checkpoint_write_time\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_active_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_blk_read_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_blk_write_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_blocks_fetched\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_blocks_hit\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_checksum_failures\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_checksum_last_failure\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_conflict_all\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_conflict_bufferpin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_conflict_lock\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_conflict_snapshot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_conflict_startup_deadlock\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_conflict_tablespace\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_deadlocks\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_idle_in_transaction_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_numbackends\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_session_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_sessions\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_sessions_abandoned\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_sessions_fatal\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_sessions_killed\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_stat_reset_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_temp_bytes\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_temp_files\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_tuples_deleted\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_tuples_fetched\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_tuples_inserted\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_tuples_returned\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_tuples_updated\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_xact_commit\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_db_xact_rollback\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_dead_tuples\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_function_calls\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_function_self_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_function_total_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_ins_since_vacuum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_last_analyze_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_last_autoanalyze_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_last_autovacuum_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_last_vacuum_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_live_tuples\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_mod_since_analyze\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_numscans\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_progress_info\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"cmdtype\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_recovery_prefetch\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_replication_slot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"slot_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_slru\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_snapshot_timestamp\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_subscription\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"subid\",\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_subscription_stats\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"subid\",\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_tuples_deleted\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_tuples_fetched\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_tuples_hot_updated\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_tuples_inserted\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_tuples_returned\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_tuples_updated\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_vacuum_count\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_wal\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_wal_receiver\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_get_wal_senders\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_xact_blocks_fetched\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_xact_blocks_hit\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_xact_function_calls\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_xact_function_self_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_xact_function_total_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_xact_numscans\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_xact_tuples_deleted\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_xact_tuples_fetched\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_xact_tuples_hot_updated\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_xact_tuples_inserted\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_xact_tuples_returned\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_get_xact_tuples_updated\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_stat_have_stats\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"pg_stat_reset\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_stat_reset_replication_slot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_stat_reset_shared\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_stat_reset_single_function_counters\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_stat_reset_single_table_counters\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_stat_reset_slru\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_stat_reset_subscription_stats\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_statistics_obj_is_visible\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"pg_stop_making_pinned_objects\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName:       \"pg_switch_wal\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"pg_lsn\"},\n\t},\n\t{\n\t\tName: \"pg_table_is_visible\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_table_size\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_tablespace_databases\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"oid\"},\n\t},\n\t{\n\t\tName: \"pg_tablespace_location\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_tablespace_size\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_tablespace_size\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"pg_terminate_backend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"pid\",\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName:       \"timeout\",\n\t\t\t\tHasDefault: true,\n\t\t\t\tType:       &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"pg_timezone_abbrevs\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName:       \"pg_timezone_names\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_total_relation_size\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"pg_trigger_depth\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"pg_try_advisory_lock\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_try_advisory_lock\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_try_advisory_lock_shared\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_try_advisory_lock_shared\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_try_advisory_xact_lock\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_try_advisory_xact_lock\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_try_advisory_xact_lock_shared\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_try_advisory_xact_lock_shared\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_ts_config_is_visible\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_ts_dict_is_visible\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_ts_parser_is_visible\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_ts_template_is_visible\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_type_is_visible\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_typeof\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regtype\"},\n\t},\n\t{\n\t\tName: \"pg_visible_in_snapshot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_snapshot\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pg_wal_lsn_diff\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName:       \"pg_wal_replay_pause\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName:       \"pg_wal_replay_resume\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"pg_walfile_name\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"pg_walfile_name_offset\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"lsn\",\n\t\t\t\tType: &ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_xact_commit_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"pg_xact_commit_timestamp_origin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"xid\",\n\t\t\t\tType: &ast.TypeName{Name: \"xid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"pg_xact_status\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"phraseto_tsquery\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName: \"phraseto_tsquery\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName:       \"pi\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"plainto_tsquery\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName: \"plainto_tsquery\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName:       \"plpgsql_call_handler\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"language_handler\"},\n\t},\n\t{\n\t\tName: \"plpgsql_validator\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"point\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"point\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"point\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"point\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"lseg\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"point\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"point_above\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"point_add\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"point_below\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"point_distance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"point_div\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"point_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"point_horiz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"point_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"point_left\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"point_mul\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"point_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"point_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"point_right\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"point_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"point_sub\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"point_vert\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"poly_above\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"poly_below\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"poly_center\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"point\"},\n\t},\n\t{\n\t\tName: \"poly_contain\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"poly_contain_pt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"poly_contained\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"poly_distance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"poly_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"polygon\"},\n\t},\n\t{\n\t\tName: \"poly_left\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"poly_npoints\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"poly_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"poly_overabove\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"poly_overbelow\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"poly_overlap\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"poly_overleft\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"poly_overright\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"poly_right\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"poly_same\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"poly_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"polygon\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"polygon\"},\n\t},\n\t{\n\t\tName: \"polygon\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"polygon\"},\n\t},\n\t{\n\t\tName: \"polygon\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"polygon\"},\n\t},\n\t{\n\t\tName: \"polygon\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"polygon\"},\n\t},\n\t{\n\t\tName: \"popen\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"path\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"path\"},\n\t},\n\t{\n\t\tName: \"position\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"position\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"position\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"postgresql_fdw_validator\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pow\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"pow\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"power\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"power\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"pt_contained_circle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"pt_contained_poly\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"query_to_xml\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"query\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"nulls\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"tableforest\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"targetns\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"query_to_xml_and_xmlschema\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"query\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"nulls\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"tableforest\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"targetns\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"query_to_xmlschema\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"query\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"nulls\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"tableforest\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"targetns\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"querytree\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"quote_ident\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"quote_literal\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"quote_literal\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"quote_nullable\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"quote_nullable\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"radians\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"radius\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"circle\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName:       \"random\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"range_adjacent\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_adjacent_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_after\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_after_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_agg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anymultirange\"},\n\t},\n\t{\n\t\tName: \"range_agg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anymultirange\"},\n\t},\n\t{\n\t\tName: \"range_before\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_before_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"range_contained_by\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_contained_by_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_contains\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_contains_elem\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_contains_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyrange\"},\n\t},\n\t{\n\t\tName: \"range_intersect\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyrange\"},\n\t},\n\t{\n\t\tName: \"range_intersect_agg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anymultirange\"},\n\t},\n\t{\n\t\tName: \"range_intersect_agg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyrange\"},\n\t},\n\t{\n\t\tName: \"range_intersect_agg_transfn\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyrange\"},\n\t},\n\t{\n\t\tName: \"range_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_merge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyrange\"},\n\t},\n\t{\n\t\tName: \"range_merge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyrange\"},\n\t},\n\t{\n\t\tName: \"range_minus\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyrange\"},\n\t},\n\t{\n\t\tName: \"range_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"range_overlaps\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_overlaps_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_overleft\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_overleft_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_overright\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_overright_multirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"range_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"range_union\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyrange\"},\n\t},\n\t{\n\t\tName:       \"rank\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"rank\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"record_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"record_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"record_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"record_image_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"record_image_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"record_image_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"record_image_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"record_image_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"record_image_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"record_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"record_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"record_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"record_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"record_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"record_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"regclass\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regclass\"},\n\t},\n\t{\n\t\tName: \"regclassin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regclass\"},\n\t},\n\t{\n\t\tName: \"regclassout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"regclasssend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"regcollationin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regcollation\"},\n\t},\n\t{\n\t\tName: \"regcollationout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regcollation\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"regcollationsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regcollation\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"regconfigin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regconfig\"},\n\t},\n\t{\n\t\tName: \"regconfigout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"regconfigsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"regdictionaryin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regdictionary\"},\n\t},\n\t{\n\t\tName: \"regdictionaryout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regdictionary\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"regdictionarysend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regdictionary\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"regexp_count\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"regexp_count\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"regexp_count\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"regexp_instr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"regexp_instr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"regexp_instr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"regexp_instr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"regexp_instr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"regexp_instr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"regexp_like\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"regexp_like\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"regexp_match\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"regexp_match\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"regexp_matches\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"regexp_matches\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"regexp_replace\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"regexp_replace\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"regexp_replace\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"regexp_replace\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"regexp_replace\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"regexp_split_to_array\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"regexp_split_to_array\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"regexp_split_to_table\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"regexp_split_to_table\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"regexp_substr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"regexp_substr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"regexp_substr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"regexp_substr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"regexp_substr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"regnamespacein\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regnamespace\"},\n\t},\n\t{\n\t\tName: \"regnamespaceout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regnamespace\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"regnamespacesend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regnamespace\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"regoperatorin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regoperator\"},\n\t},\n\t{\n\t\tName: \"regoperatorout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regoperator\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"regoperatorsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regoperator\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"regoperin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regoper\"},\n\t},\n\t{\n\t\tName: \"regoperout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regoper\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"regopersend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regoper\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"regprocedurein\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regprocedure\"},\n\t},\n\t{\n\t\tName: \"regprocedureout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regprocedure\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"regproceduresend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regprocedure\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"regprocin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regproc\"},\n\t},\n\t{\n\t\tName: \"regprocout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regproc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"regprocsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regproc\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"regr_avgx\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"regr_avgy\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"regr_count\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"regr_intercept\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"regr_r2\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"regr_slope\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"regr_sxx\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"regr_sxy\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"regr_syy\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"regrolein\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regrole\"},\n\t},\n\t{\n\t\tName: \"regroleout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regrole\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"regrolesend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regrole\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"regtypein\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regtype\"},\n\t},\n\t{\n\t\tName: \"regtypeout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regtype\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"regtypesend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regtype\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"repeat\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"replace\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"reverse\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"right\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"round\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"round\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"round\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName:       \"row_number\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"row_security_active\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"row_security_active\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"row_to_json\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"row_to_json\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"record\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"rpad\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"rpad\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"rtrim\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"rtrim\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"rtrim\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"satisfies_hash_partition\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"scale\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"schema_to_xml\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"schema\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"nulls\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"tableforest\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"targetns\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"schema_to_xml_and_xmlschema\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"schema\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"nulls\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"tableforest\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"targetns\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"schema_to_xmlschema\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"schema\",\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"nulls\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"tableforest\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"targetns\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName:       \"session_user\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"name\"},\n\t},\n\t{\n\t\tName: \"set_bit\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"set_bit\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"set_byte\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"set_config\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"set_masklen\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cidr\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cidr\"},\n\t},\n\t{\n\t\tName: \"set_masklen\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"inet\"},\n\t},\n\t{\n\t\tName: \"setseed\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"setval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"setval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"setweight\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"setweight\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"sha224\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"sha256\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"sha384\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"sha512\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"shell_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"shell_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"void\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"shobj_description\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"sign\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"sign\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"similar_escape\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"similar_to_escape\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"similar_to_escape\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"sin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"sind\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"sinh\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"slope\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"point\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"spg_poly_quad_compress\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"polygon\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"box\"},\n\t},\n\t{\n\t\tName: \"split_part\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"sqrt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"sqrt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"starts_with\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"statement_timestamp\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"stddev\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"stddev\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"stddev\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"stddev\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"stddev\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"stddev\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"stddev_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"stddev_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"stddev_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"stddev_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"stddev_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"stddev_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"stddev_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"stddev_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"stddev_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"stddev_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"stddev_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"stddev_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"string_agg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"string_agg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"string_to_array\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"string_to_array\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"string_to_table\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"string_to_table\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"strip\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"strpos\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"substr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"substr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"substr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"substr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"substring\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"substring\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit\"},\n\t},\n\t{\n\t\tName: \"substring\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"substring\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bytea\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"substring\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"substring\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"substring\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"substring\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"sum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"sum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"sum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"sum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"sum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"money\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"money\"},\n\t},\n\t{\n\t\tName: \"sum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"sum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"sum\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName:       \"suppress_redundant_updates_trigger\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName: \"table_am_handler_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"table_am_handler\"},\n\t},\n\t{\n\t\tName: \"table_am_handler_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"table_am_handler\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"table_to_xml\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"tbl\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"nulls\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"tableforest\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"targetns\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"table_to_xml_and_xmlschema\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"tbl\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"nulls\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"tableforest\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"targetns\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"table_to_xmlschema\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"tbl\",\n\t\t\t\tType: &ast.TypeName{Name: \"regclass\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"nulls\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"tableforest\",\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"targetns\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"tan\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"tand\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"tanh\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"inet\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"text\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xml\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"text_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"text_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"text_larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"text_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"text_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"text_pattern_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"text_pattern_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"text_pattern_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"text_pattern_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"text_smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"textanycat\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anynonarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"textcat\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"texteq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"texteqname\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"textgename\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"textgtname\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"texticlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"texticnlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"texticregexeq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"texticregexne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"textin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"textlen\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"textlename\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"textlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"textltname\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"textne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"textnename\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"textnlike\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"textout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"textregexeq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"textregexne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"textsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"tideq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tidge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tidgt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tidin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tid\"},\n\t},\n\t{\n\t\tName: \"tidlarger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tid\"},\n\t},\n\t{\n\t\tName: \"tidle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tidlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tidne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tidout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"tidsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"tidsmaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tid\"},\n\t},\n\t{\n\t\tName: \"time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time without time zone\"},\n\t},\n\t{\n\t\tName: \"time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time without time zone\"},\n\t},\n\t{\n\t\tName: \"time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time without time zone\"},\n\t},\n\t{\n\t\tName: \"time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time without time zone\"},\n\t},\n\t{\n\t\tName: \"time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time without time zone\"},\n\t},\n\t{\n\t\tName: \"time_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"time_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"time_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"time_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"time_hash\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"time_hash_extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"time_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time without time zone\"},\n\t},\n\t{\n\t\tName: \"time_larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time without time zone\"},\n\t},\n\t{\n\t\tName: \"time_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"time_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"time_mi_interval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time without time zone\"},\n\t},\n\t{\n\t\tName: \"time_mi_time\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"time_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"time_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"time_pl_interval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time without time zone\"},\n\t},\n\t{\n\t\tName: \"time_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"time_smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time without time zone\"},\n\t},\n\t{\n\t\tName: \"timedate_pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName:       \"timeofday\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"timestamp_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"timestamp_cmp_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"timestamp_cmp_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"timestamp_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_eq_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_eq_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_ge_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_ge_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_gt_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_gt_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_hash\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"timestamp_hash_extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"timestamp_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"timestamp_larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"timestamp_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_le_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_le_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_lt_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_lt_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"timestamp_mi_interval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"timestamp_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_ne_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_ne_timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamp_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"timestamp_pl_interval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"timestamp_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"timestamp_smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"timestamptypmodin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"timestamptypmodout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"timestamptz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"timestamptz_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"timestamptz_cmp_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"timestamptz_cmp_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"timestamptz_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_eq_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_eq_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_ge_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_ge_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_gt_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_gt_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"timestamptz_larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"timestamptz_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_le_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_le_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_lt_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_lt_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_mi\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"interval\"},\n\t},\n\t{\n\t\tName: \"timestamptz_mi_interval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"timestamptz_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_ne_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_ne_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timestamptz_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"timestamptz_pl_interval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"timestamptz_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"timestamptz_smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"timestamptztypmodin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"timestamptztypmodout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"timetypmodin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"timetypmodout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"timetz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time with time zone\"},\n\t},\n\t{\n\t\tName: \"timetz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time with time zone\"},\n\t},\n\t{\n\t\tName: \"timetz\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time with time zone\"},\n\t},\n\t{\n\t\tName: \"timetz_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"timetz_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timetz_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timetz_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timetz_hash\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"timetz_hash_extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"timetz_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time with time zone\"},\n\t},\n\t{\n\t\tName: \"timetz_larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time with time zone\"},\n\t},\n\t{\n\t\tName: \"timetz_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timetz_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timetz_mi_interval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time with time zone\"},\n\t},\n\t{\n\t\tName: \"timetz_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"timetz_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"timetz_pl_interval\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time with time zone\"},\n\t},\n\t{\n\t\tName: \"timetz_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"timetz_smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time with time zone\"},\n\t},\n\t{\n\t\tName: \"timetzdate_pl\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"date\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"timetztypmodin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"timetztypmodout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"timezone\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time with time zone\"},\n\t},\n\t{\n\t\tName: \"timezone\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"time with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"time with time zone\"},\n\t},\n\t{\n\t\tName: \"timezone\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"timezone\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"timezone\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"timezone\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t},\n\t{\n\t\tName: \"to_ascii\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"to_ascii\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"to_ascii\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"to_char\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"to_char\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"to_char\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"to_char\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"interval\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"to_char\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"to_char\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"to_char\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"to_char\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"to_date\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"date\"},\n\t},\n\t{\n\t\tName: \"to_hex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"to_hex\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"to_json\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"to_jsonb\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyelement\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"to_number\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"to_regclass\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regclass\"},\n\t},\n\t{\n\t\tName: \"to_regcollation\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regcollation\"},\n\t},\n\t{\n\t\tName: \"to_regnamespace\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regnamespace\"},\n\t},\n\t{\n\t\tName: \"to_regoper\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regoper\"},\n\t},\n\t{\n\t\tName: \"to_regoperator\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regoperator\"},\n\t},\n\t{\n\t\tName: \"to_regproc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regproc\"},\n\t},\n\t{\n\t\tName: \"to_regprocedure\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regprocedure\"},\n\t},\n\t{\n\t\tName: \"to_regrole\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regrole\"},\n\t},\n\t{\n\t\tName: \"to_regtype\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"regtype\"},\n\t},\n\t{\n\t\tName: \"to_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"to_timestamp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"to_tsquery\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName: \"to_tsquery\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName: \"to_tsvector\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"to_tsvector\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"to_tsvector\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"to_tsvector\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"to_tsvector\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"to_tsvector\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName:       \"transaction_timestamp\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t},\n\t{\n\t\tName: \"translate\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"trigger_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName: \"trigger_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"trigger\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"trim_array\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyarray\"},\n\t},\n\t{\n\t\tName: \"trim_scale\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"trunc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"trunc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"macaddr\"},\n\t},\n\t{\n\t\tName: \"trunc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"macaddr8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"macaddr8\"},\n\t},\n\t{\n\t\tName: \"trunc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"trunc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"ts_debug\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"config\",\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"document\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"ts_debug\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"document\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"ts_delete\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"ts_delete\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"ts_filter\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"char[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"ts_headline\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"ts_headline\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"ts_headline\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"ts_headline\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"json\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"json\"},\n\t},\n\t{\n\t\tName: \"ts_headline\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"ts_headline\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"ts_headline\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"ts_headline\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"jsonb\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"jsonb\"},\n\t},\n\t{\n\t\tName: \"ts_headline\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"ts_headline\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"ts_headline\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"ts_headline\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"ts_lexize\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regdictionary\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName: \"ts_match_qv\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ts_match_tq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ts_match_tt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ts_match_vq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"ts_parse\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"parser_oid\",\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"txt\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"ts_parse\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"parser_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"txt\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"ts_rank\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"ts_rank\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"ts_rank\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"ts_rank\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"ts_rank_cd\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"ts_rank_cd\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real[]\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"ts_rank_cd\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"ts_rank_cd\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t},\n\t{\n\t\tName: \"ts_rewrite\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName: \"ts_rewrite\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName: \"ts_stat\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"query\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"ts_stat\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"query\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tName: \"weights\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"ts_token_type\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"parser_oid\",\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"ts_token_type\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"parser_name\",\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"tsm_handler_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsm_handler\"},\n\t},\n\t{\n\t\tName: \"tsm_handler_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsm_handler\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName:       \"tsmultirange\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"tsmultirange\"},\n\t},\n\t{\n\t\tName: \"tsmultirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsmultirange\"},\n\t},\n\t{\n\t\tName: \"tsmultirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsrange[]\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsmultirange\"},\n\t},\n\t{\n\t\tName: \"tsq_mcontained\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tsq_mcontains\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tsquery_and\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName: \"tsquery_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"tsquery_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tsquery_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tsquery_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tsquery_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tsquery_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tsquery_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tsquery_not\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName: \"tsquery_or\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName: \"tsquery_phrase\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName: \"tsquery_phrase\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName: \"tsqueryin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName: \"tsqueryout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"tsquerysend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsquery\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"tsrange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsrange\"},\n\t},\n\t{\n\t\tName: \"tsrange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsrange\"},\n\t},\n\t{\n\t\tName: \"tsrange_subdiff\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp without time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName:       \"tstzmultirange\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"tstzmultirange\"},\n\t},\n\t{\n\t\tName: \"tstzmultirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tstzrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tstzmultirange\"},\n\t},\n\t{\n\t\tName: \"tstzmultirange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tstzrange[]\"},\n\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tstzmultirange\"},\n\t},\n\t{\n\t\tName: \"tstzrange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tstzrange\"},\n\t},\n\t{\n\t\tName: \"tstzrange\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tstzrange\"},\n\t},\n\t{\n\t\tName: \"tstzrange_subdiff\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"timestamp with time zone\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"tsvector_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"tsvector_concat\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"tsvector_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tsvector_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tsvector_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tsvector_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tsvector_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tsvector_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"tsvector_to_array\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text[]\"},\n\t},\n\t{\n\t\tName:       \"tsvector_update_trigger\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName:       \"tsvector_update_trigger_column\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName: \"tsvectorin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsvector\"},\n\t},\n\t{\n\t\tName: \"tsvectorout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"tsvectorsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName:       \"txid_current\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"txid_current_if_assigned\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName:       \"txid_current_snapshot\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"txid_snapshot\"},\n\t},\n\t{\n\t\tName: \"txid_snapshot_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"txid_snapshot\"},\n\t},\n\t{\n\t\tName: \"txid_snapshot_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"txid_snapshot\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"txid_snapshot_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"txid_snapshot\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"txid_snapshot_xip\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"txid_snapshot\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"txid_snapshot_xmax\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"txid_snapshot\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"txid_snapshot_xmin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"txid_snapshot\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"txid_status\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"txid_visible_in_snapshot\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"txid_snapshot\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName:       \"unique_key_recheck\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"trigger\"},\n\t},\n\t{\n\t\tName: \"unistr\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"unknownin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"unknown\"},\n\t},\n\t{\n\t\tName: \"unknownout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"unknown\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"unknownsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"unknown\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"unnest\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyarray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"unnest\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyrange\"},\n\t},\n\t{\n\t\tName: \"unnest\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tName: \"tsvector\",\n\t\t\t\tType: &ast.TypeName{Name: \"tsvector\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"record\"},\n\t},\n\t{\n\t\tName: \"upper\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"upper\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"anyelement\"},\n\t},\n\t{\n\t\tName: \"upper\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"upper_inc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"upper_inc\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"upper_inf\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anymultirange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"upper_inf\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anyrange\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"uuid_cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"uuid_eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"uuid_ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"uuid_gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"uuid_hash\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"uuid_hash_extended\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bigint\"},\n\t},\n\t{\n\t\tName: \"uuid_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"uuid\"},\n\t},\n\t{\n\t\tName: \"uuid_le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"uuid_lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"uuid_ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"uuid_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"uuid_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"uuid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"var_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"var_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"var_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"var_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"var_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"var_pop\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"var_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"var_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"var_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"var_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"var_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"var_samp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"varbit\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit varying\"},\n\t},\n\t{\n\t\tName: \"varbit_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bit varying\"},\n\t},\n\t{\n\t\tName: \"varbit_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"varbit_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"varbitcmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"varbiteq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"varbitge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"varbitgt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"varbitle\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"varbitlt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"varbitne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bit varying\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"varbittypmodin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"varbittypmodout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"varchar\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character varying\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"boolean\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"character varying\"},\n\t},\n\t{\n\t\tName: \"varchar\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"name\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"character varying\"},\n\t},\n\t{\n\t\tName: \"varcharin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"oid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"character varying\"},\n\t},\n\t{\n\t\tName: \"varcharout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character varying\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"varcharsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"character varying\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"varchartypmodin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"varchartypmodout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"variance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"variance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"variance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"bigint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"variance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"variance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName: \"variance\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"smallint\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"numeric\"},\n\t},\n\t{\n\t\tName:       \"version\",\n\t\tArgs:       []*catalog.Argument{},\n\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t},\n\t{\n\t\tName: \"void_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"void\"},\n\t},\n\t{\n\t\tName: \"void_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"void\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"void_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"void\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"websearch_to_tsquery\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"regconfig\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName: \"websearch_to_tsquery\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"tsquery\"},\n\t},\n\t{\n\t\tName: \"width\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"box\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"double precision\"},\n\t},\n\t{\n\t\tName: \"width_bucket\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatible\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"anycompatiblearray\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"width_bucket\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"double precision\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"width_bucket\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"numeric\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"xid\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xid\"},\n\t},\n\t{\n\t\tName: \"xid8_larger\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xid8\"},\n\t},\n\t{\n\t\tName: \"xid8_smaller\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xid8\"},\n\t},\n\t{\n\t\tName: \"xid8cmp\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t},\n\t{\n\t\tName: \"xid8eq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xid8ge\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xid8gt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xid8in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xid8\"},\n\t},\n\t{\n\t\tName: \"xid8le\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xid8lt\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xid8ne\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xid8out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"xid8send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid8\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"xideq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xideqint4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xidin\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xid\"},\n\t},\n\t{\n\t\tName: \"xidneq\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xidneqint4\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xidout\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"xidsend\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xid\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"xml\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"xml_in\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"cstring\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"xml_is_well_formed\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xml_is_well_formed_content\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xml_is_well_formed_document\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xml_out\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xml\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"cstring\"},\n\t},\n\t{\n\t\tName: \"xml_send\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xml\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"bytea\"},\n\t},\n\t{\n\t\tName: \"xmlagg\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xml\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"xmlcomment\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"xmlconcat2\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xml\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xml\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml\"},\n\t},\n\t{\n\t\tName: \"xmlexists\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xml\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xmlvalidate\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xml\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xpath\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xml\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml[]\"},\n\t},\n\t{\n\t\tName: \"xpath\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xml\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"xml[]\"},\n\t},\n\t{\n\t\tName: \"xpath_exists\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xml\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n\t{\n\t\tName: \"xpath_exists\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"xml\"},\n\t\t\t},\n\t\t\t{\n\t\t\t\tType: &ast.TypeName{Name: \"text[]\"},\n\t\t\t},\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"boolean\"},\n\t},\n}\n\nfunc genPGCatalog() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"pg_catalog\"}\n\ts.Funcs = funcsgenPGCatalog\n\ts.Tables = []*catalog.Table{\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_aggregate\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggfnoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggkind\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggnumdirectargs\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggtransfn\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggfinalfn\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggcombinefn\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggserialfn\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggdeserialfn\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggmtransfn\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggminvtransfn\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggmfinalfn\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggfinalextra\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggmfinalextra\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggfinalmodify\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggmfinalmodify\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggsortop\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggtranstype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggtransspace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggmtranstype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"aggmtransspace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"agginitval\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"aggminitval\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_am\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amhandler\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amtype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_amop\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amopfamily\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amoplefttype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amoprighttype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amopstrategy\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amoppurpose\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amopopr\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amopmethod\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amopsortfamily\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_amproc\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amprocfamily\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amproclefttype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amprocrighttype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amprocnum\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"amproc\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_attrdef\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"adrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"adnum\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"adbin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_attribute\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"atttypid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attstattarget\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attlen\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attnum\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attndims\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attcacheoff\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"atttypmod\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attbyval\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attalign\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attstorage\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attcompression\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attnotnull\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"atthasdef\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"atthasmissing\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attidentity\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attgenerated\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attisdropped\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attislocal\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attinhcount\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"attcollation\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"attacl\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_aclitem\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"attoptions\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"attfdwoptions\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"attmissingval\",\n\t\t\t\t\tType: ast.TypeName{Name: \"anyarray\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_auth_members\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"roleid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"member\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"grantor\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"admin_option\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_authid\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rolname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rolsuper\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rolinherit\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rolcreaterole\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rolcreatedb\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rolcanlogin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rolreplication\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rolbypassrls\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rolconnlimit\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"rolpassword\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"rolvaliduntil\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_available_extension_versions\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"version\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"installed\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"superuser\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"trusted\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relocatable\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schema\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"requires\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_name\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"comment\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_available_extensions\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"default_version\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"installed_version\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"comment\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_backend_memory_contexts\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName: \"name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"ident\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"parent\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"level\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"total_bytes\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"total_nblocks\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"free_bytes\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"free_chunks\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"used_bytes\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_cast\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"castsource\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"casttarget\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"castfunc\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"castcontext\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"castmethod\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_class\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relnamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"reltype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"reloftype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relam\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relfilenode\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"reltablespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relpages\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"reltuples\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"float4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relallvisible\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"reltoastrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relhasindex\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relisshared\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relpersistence\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relkind\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relnatts\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relchecks\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relhasrules\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relhastriggers\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relhassubclass\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relrowsecurity\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relforcerowsecurity\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relispopulated\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relreplident\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relispartition\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relrewrite\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relfrozenxid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"relminmxid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"relacl\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_aclitem\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"reloptions\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"relpartbound\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_collation\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"collname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"collnamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"collowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"collprovider\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"collisdeterministic\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"collencoding\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"collcollate\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"collctype\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"colliculocale\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"collversion\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_config\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName: \"name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"setting\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_constraint\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"conname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"connamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"contype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"condeferrable\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"condeferred\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"convalidated\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"conrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"contypid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"conindid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"conparentid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"confrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"confupdtype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"confdeltype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"confmatchtype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"conislocal\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"coninhcount\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"connoinherit\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"conkey\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_int2\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"confkey\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_int2\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"conpfeqop\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_oid\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"conppeqop\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_oid\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"conffeqop\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_oid\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"confdelsetcols\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_int2\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"conexclop\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_oid\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"conbin\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_conversion\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"conname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"connamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"conowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"conforencoding\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"contoencoding\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"conproc\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"condefault\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_cursors\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName: \"name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"statement\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"is_holdable\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"is_binary\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"is_scrollable\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"creation_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_database\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"datname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"datdba\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"encoding\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"datlocprovider\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"datistemplate\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"datallowconn\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"datconnlimit\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"datfrozenxid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"datminmxid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"dattablespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"datcollate\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"text\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"datctype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"text\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"daticulocale\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"datcollversion\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"datacl\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_aclitem\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_db_role_setting\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"setdatabase\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"setrole\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"setconfig\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_default_acl\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"defaclrole\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"defaclnamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"defaclobjtype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"defaclacl\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"_aclitem\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tIsArray:   true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_depend\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"classid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"objid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"objsubid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"refclassid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"refobjid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"refobjsubid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"deptype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_description\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"objoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"classoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"objsubid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"description\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"text\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_enum\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"enumtypid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"enumsortorder\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"float4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"enumlabel\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_event_trigger\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"evtname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"evtevent\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"evtowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"evtfoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"evtenabled\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"evttags\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_extension\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"extname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"extowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"extnamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"extrelocatable\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"extversion\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"text\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"extconfig\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_oid\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"extcondition\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_file_settings\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName: \"sourcefile\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sourceline\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"seqno\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"setting\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"applied\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"error\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_foreign_data_wrapper\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"fdwname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"fdwowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"fdwhandler\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"fdwvalidator\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"fdwacl\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_aclitem\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"fdwoptions\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_foreign_server\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"srvname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"srvowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"srvfdw\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"srvtype\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"srvversion\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"srvacl\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_aclitem\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"srvoptions\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_foreign_table\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ftrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ftserver\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"ftoptions\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_group\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"groname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"grosysid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"grolist\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_oid\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_hba_file_rules\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"line_number\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"database\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"user_name\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"address\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"netmask\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"auth_method\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"options\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"error\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_ident_file_mappings\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"line_number\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"map_name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"sys_name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"pg_username\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"error\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_index\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indexrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indnatts\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indnkeyatts\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indisunique\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indnullsnotdistinct\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indisprimary\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indisexclusion\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indimmediate\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indisclustered\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indisvalid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indcheckxmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indisready\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indislive\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indisreplident\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indkey\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2vector\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tIsArray:   true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indcollation\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oidvector\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tIsArray:   true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indclass\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oidvector\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tIsArray:   true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"indoption\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2vector\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tIsArray:   true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"indexprs\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"indpred\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_indexes\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tablename\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"indexname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tablespace\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"indexdef\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_inherits\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"inhrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"inhparent\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"inhseqno\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"inhdetachpending\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_init_privs\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"objoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"classoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"objsubid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"privtype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"initprivs\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"_aclitem\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tIsArray:   true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_language\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"lanname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"lanowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"lanispl\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"lanpltrusted\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"lanplcallfoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"laninline\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"lanvalidator\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"lanacl\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_aclitem\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_largeobject\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"loid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"pageno\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"data\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bytea\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_largeobject_metadata\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"lomowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"lomacl\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_aclitem\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_locks\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName: \"locktype\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"database\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relation\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"page\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tuple\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tLength: toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"virtualxid\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"transactionid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"classid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"objid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"objsubid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tLength: toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"virtualtransaction\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"mode\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"granted\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"fastpath\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"waitstart\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_matviews\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"matviewname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"matviewowner\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tablespace\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"hasindexes\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"ispopulated\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"definition\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_namespace\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"nspname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"nspowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"nspacl\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_aclitem\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_opclass\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"opcmethod\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"opcname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"opcnamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"opcowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"opcfamily\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"opcintype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"opcdefault\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"opckeytype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_operator\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oprname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oprnamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oprowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oprkind\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oprcanmerge\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oprcanhash\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oprleft\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oprright\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oprresult\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oprcom\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oprnegate\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oprcode\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oprrest\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oprjoin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_opfamily\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"opfmethod\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"opfname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"opfnamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"opfowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_parameter_acl\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"parname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"text\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"paracl\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_aclitem\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_partitioned_table\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"partrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"partstrat\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"partnatts\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"partdefid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"partattrs\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2vector\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tIsArray:   true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"partclass\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oidvector\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tIsArray:   true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"partcollation\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oidvector\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tIsArray:   true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"partexprs\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_policies\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tablename\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"policyname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"permissive\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"roles\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_name\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"cmd\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"qual\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"with_check\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_policy\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"polname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"polrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"polcmd\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"polpermissive\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"polroles\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"_oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tIsArray:   true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"polqual\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"polwithcheck\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_prepared_statements\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName: \"name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"statement\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"prepare_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"parameter_types\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_regtype\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"from_sql\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"generic_plans\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"custom_plans\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_prepared_xacts\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"transaction\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"gid\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"prepared\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"owner\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"database\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_proc\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"proname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"pronamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"proowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prolang\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"procost\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"float4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prorows\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"float4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"provariadic\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prosupport\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prokind\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prosecdef\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"proleakproof\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"proisstrict\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"proretset\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"provolatile\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"proparallel\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"pronargs\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"pronargdefaults\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prorettype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"proargtypes\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oidvector\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tIsArray:   true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"proallargtypes\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_oid\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"proargmodes\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_char\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"proargnames\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"proargdefaults\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"protrftypes\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_oid\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prosrc\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"text\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"probin\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"prosqlbody\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"proconfig\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"proacl\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_aclitem\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_publication\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"pubname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"pubowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"puballtables\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"pubinsert\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"pubupdate\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"pubdelete\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"pubtruncate\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"pubviaroot\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_publication_namespace\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"pnpubid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"pnnspid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_publication_rel\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prpubid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"prqual\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"prattrs\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"int2vector\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_publication_tables\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"pubname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tablename\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"attnames\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_name\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"rowfilter\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_range\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rngtypid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rngsubtype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rngmultitypid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rngcollation\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rngsubopc\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rngcanonical\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rngsubdiff\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_replication_origin\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"roident\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"roname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"text\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_replication_origin_status\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"local_id\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"external_id\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"remote_lsn\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"local_lsn\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_replication_slots\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"slot_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"plugin\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"slot_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datoid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"database\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"temporary\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"active\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"active_pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"xmin\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"catalog_xmin\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"restart_lsn\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"confirmed_flush_lsn\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"wal_status\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"safe_wal_size\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"two_phase\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_rewrite\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"rulename\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ev_class\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ev_type\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ev_enabled\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"is_instead\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ev_qual\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ev_action\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_roles\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"rolname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"rolsuper\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"rolinherit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"rolcreaterole\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"rolcreatedb\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"rolcanlogin\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"rolreplication\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"rolconnlimit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"rolpassword\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"rolvaliduntil\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"rolbypassrls\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"rolconfig\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"oid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_rules\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tablename\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"rulename\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"definition\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_seclabel\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"objoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"classoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"objsubid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"provider\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"text\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"label\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"text\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_seclabels\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"objoid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"classoid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"objsubid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"objtype\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"objnamespace\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"objname\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"provider\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"label\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_sequence\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"seqrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"seqtypid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"seqstart\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"seqincrement\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"seqmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"seqmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"seqcache\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"seqcycle\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_sequences\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sequencename\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sequenceowner\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"data_type\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"regtype\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"start_value\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"min_value\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"max_value\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"increment_by\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"cycle\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"cache_size\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_value\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_settings\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName: \"name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"setting\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"unit\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"category\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"short_desc\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"extra_desc\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"context\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"vartype\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"source\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"min_val\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"max_val\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"enumvals\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"boot_val\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"reset_val\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"sourcefile\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sourceline\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"pending_restart\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_shadow\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"usename\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"usesysid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"usecreatedb\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"usesuper\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"userepl\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"usebypassrls\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"passwd\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"valuntil\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"useconfig\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_shdepend\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"dbid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"classid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"objid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"objsubid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"refclassid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"refobjid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"deptype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_shdescription\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"objoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"classoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"description\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"text\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_shmem_allocations\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName: \"name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"off\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"size\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"allocated_size\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_shseclabel\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"objoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"classoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"provider\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"text\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"label\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"text\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_activity\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"datid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"leader_pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"usesysid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"usename\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"application_name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"client_addr\",\n\t\t\t\t\tType: ast.TypeName{Name: \"inet\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"client_hostname\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"client_port\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"backend_start\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"xact_start\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"query_start\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"state_change\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"wait_event_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"wait_event\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"state\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"backend_xid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"backend_xmin\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"query_id\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"query\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"backend_type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_all_indexes\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"indexrelid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"indexrelname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_scan\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_tup_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_tup_fetch\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_all_tables\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"seq_scan\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"seq_tup_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_scan\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_tup_fetch\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_ins\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_upd\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_del\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_hot_upd\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_live_tup\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_dead_tup\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_mod_since_analyze\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_ins_since_vacuum\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_vacuum\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_autovacuum\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_analyze\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_autoanalyze\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"vacuum_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"autovacuum_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"analyze_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"autoanalyze_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_archiver\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"archived_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"last_archived_wal\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_archived_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"failed_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"last_failed_wal\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_failed_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"stats_reset\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_bgwriter\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"checkpoints_timed\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"checkpoints_req\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"checkpoint_write_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"checkpoint_sync_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"buffers_checkpoint\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"buffers_clean\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"maxwritten_clean\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"buffers_backend\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"buffers_backend_fsync\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"buffers_alloc\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"stats_reset\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_database\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"datid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"numbackends\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"xact_commit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"xact_rollback\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tup_returned\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tup_fetched\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tup_inserted\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tup_updated\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tup_deleted\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"conflicts\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"temp_files\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"temp_bytes\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"deadlocks\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"checksum_failures\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"checksum_last_failure\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blk_read_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blk_write_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"session_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"active_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idle_in_transaction_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sessions\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sessions_abandoned\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sessions_fatal\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sessions_killed\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"stats_reset\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_database_conflicts\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"datid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"confl_tablespace\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"confl_lock\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"confl_snapshot\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"confl_bufferpin\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"confl_deadlock\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_gssapi\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"gss_authenticated\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"principal\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"encrypted\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_progress_analyze\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"phase\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sample_blks_total\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sample_blks_scanned\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"ext_stats_total\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"ext_stats_computed\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"child_tables_total\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"child_tables_done\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"current_child_table_relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_progress_basebackup\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"phase\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"backup_total\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"backup_streamed\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tablespaces_total\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tablespaces_streamed\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_progress_cluster\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"command\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"phase\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"cluster_index_relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"heap_tuples_scanned\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"heap_tuples_written\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"heap_blks_total\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"heap_blks_scanned\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"index_rebuild_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_progress_copy\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"command\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"type\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"bytes_processed\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"bytes_total\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tuples_processed\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tuples_excluded\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_progress_create_index\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"index_relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"command\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"phase\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"lockers_total\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"lockers_done\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"current_locker_pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blocks_total\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blocks_done\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tuples_total\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tuples_done\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"partitions_total\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"partitions_done\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_progress_vacuum\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"datname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"phase\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"heap_blks_total\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"heap_blks_scanned\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"heap_blks_vacuumed\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"index_vacuum_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"max_dead_tuples\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"num_dead_tuples\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_recovery_prefetch\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"stats_reset\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"prefetch\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"skip_init\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"skip_new\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"skip_fpw\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"skip_rep\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"wal_distance\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"block_distance\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"io_depth\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_replication\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"usesysid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"usename\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"application_name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"client_addr\",\n\t\t\t\t\tType: ast.TypeName{Name: \"inet\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"client_hostname\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"client_port\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"backend_start\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"backend_xmin\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"state\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sent_lsn\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"write_lsn\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"flush_lsn\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"replay_lsn\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"write_lag\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"interval\"},\n\t\t\t\t\tLength: toPointer(16),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"flush_lag\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"interval\"},\n\t\t\t\t\tLength: toPointer(16),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"replay_lag\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"interval\"},\n\t\t\t\t\tLength: toPointer(16),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sync_priority\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"sync_state\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"reply_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_replication_slots\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName: \"slot_name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"spill_txns\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"spill_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"spill_bytes\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"stream_txns\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"stream_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"stream_bytes\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"total_txns\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"total_bytes\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"stats_reset\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_slru\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName: \"name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blks_zeroed\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blks_written\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blks_exists\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"flushes\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"truncates\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"stats_reset\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_ssl\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"ssl\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"version\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"cipher\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"bits\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"client_dn\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"client_serial\",\n\t\t\t\t\tType: ast.TypeName{Name: \"numeric\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"issuer_dn\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_subscription\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"subid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"subname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"received_lsn\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_msg_send_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_msg_receipt_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"latest_end_lsn\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"latest_end_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_subscription_stats\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"subid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"subname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"apply_error_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sync_error_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"stats_reset\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_sys_indexes\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"indexrelid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"indexrelname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_scan\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_tup_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_tup_fetch\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_sys_tables\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"seq_scan\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"seq_tup_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_scan\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_tup_fetch\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_ins\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_upd\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_del\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_hot_upd\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_live_tup\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_dead_tup\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_mod_since_analyze\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_ins_since_vacuum\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_vacuum\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_autovacuum\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_analyze\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_autoanalyze\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"vacuum_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"autovacuum_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"analyze_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"autoanalyze_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_user_functions\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"funcid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"funcname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"calls\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"total_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"self_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_user_indexes\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"indexrelid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"indexrelname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_scan\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_tup_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_tup_fetch\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_user_tables\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"seq_scan\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"seq_tup_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_scan\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_tup_fetch\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_ins\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_upd\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_del\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_hot_upd\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_live_tup\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_dead_tup\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_mod_since_analyze\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_ins_since_vacuum\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_vacuum\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_autovacuum\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_analyze\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_autoanalyze\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"vacuum_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"autovacuum_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"analyze_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"autoanalyze_count\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_wal\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"wal_records\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"wal_fpi\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"wal_bytes\",\n\t\t\t\t\tType: ast.TypeName{Name: \"numeric\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"wal_buffers_full\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"wal_write\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"wal_sync\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"wal_write_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"wal_sync_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"stats_reset\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_wal_receiver\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"pid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"status\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"receive_start_lsn\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"receive_start_tli\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"written_lsn\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"flushed_lsn\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"received_tli\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_msg_send_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"last_msg_receipt_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"latest_end_lsn\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"latest_end_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"slot_name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"sender_host\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"sender_port\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"conninfo\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_xact_all_tables\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"seq_scan\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"seq_tup_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_scan\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_tup_fetch\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_ins\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_upd\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_del\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_hot_upd\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_xact_sys_tables\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"seq_scan\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"seq_tup_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_scan\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_tup_fetch\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_ins\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_upd\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_del\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_hot_upd\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_xact_user_functions\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"funcid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"funcname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"calls\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"total_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"self_time\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stat_xact_user_tables\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"seq_scan\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"seq_tup_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_scan\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_tup_fetch\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_ins\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_upd\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_del\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_tup_hot_upd\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_statio_all_indexes\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"indexrelid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"indexrelname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_statio_all_sequences\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_statio_all_tables\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"heap_blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"heap_blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"toast_blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"toast_blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tidx_blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tidx_blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_statio_sys_indexes\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"indexrelid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"indexrelname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_statio_sys_sequences\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_statio_sys_tables\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"heap_blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"heap_blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"toast_blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"toast_blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tidx_blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tidx_blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_statio_user_indexes\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"indexrelid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"indexrelname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_statio_user_sequences\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_statio_user_tables\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"relid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"relname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"heap_blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"heap_blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"idx_blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"toast_blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"toast_blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tidx_blks_read\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tidx_blks_hit\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int8\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_statistic\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"starelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"staattnum\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stainherit\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stanullfrac\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"float4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stawidth\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stadistinct\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"float4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stakind1\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stakind2\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stakind3\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stakind4\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stakind5\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"staop1\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"staop2\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"staop3\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"staop4\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"staop5\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stacoll1\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stacoll2\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stacoll3\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stacoll4\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stacoll5\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"stanumbers1\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_float4\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"stanumbers2\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_float4\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"stanumbers3\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_float4\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"stanumbers4\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_float4\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"stanumbers5\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_float4\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"stavalues1\",\n\t\t\t\t\tType: ast.TypeName{Name: \"anyarray\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"stavalues2\",\n\t\t\t\t\tType: ast.TypeName{Name: \"anyarray\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"stavalues3\",\n\t\t\t\t\tType: ast.TypeName{Name: \"anyarray\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"stavalues4\",\n\t\t\t\t\tType: ast.TypeName{Name: \"anyarray\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"stavalues5\",\n\t\t\t\t\tType: ast.TypeName{Name: \"anyarray\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_statistic_ext\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stxrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stxname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stxnamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stxowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stxstattarget\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stxkeys\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2vector\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tIsArray:   true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stxkind\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"_char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tIsArray:   true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"stxexprs\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_statistic_ext_data\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stxoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"stxdinherit\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"stxdndistinct\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_ndistinct\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"stxddependencies\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_dependencies\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"stxdmcv\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_mcv_list\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"stxdexpr\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_pg_statistic\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stats\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tablename\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"attname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"inherited\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"null_frac\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"avg_width\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_distinct\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"most_common_vals\",\n\t\t\t\t\tType: ast.TypeName{Name: \"anyarray\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"most_common_freqs\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_float4\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"histogram_bounds\",\n\t\t\t\t\tType: ast.TypeName{Name: \"anyarray\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"correlation\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"most_common_elems\",\n\t\t\t\t\tType: ast.TypeName{Name: \"anyarray\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"most_common_elem_freqs\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_float4\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"elem_count_histogram\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_float4\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stats_ext\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tablename\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"statistics_schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"statistics_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"statistics_owner\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"attnames\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_name\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"exprs\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"kinds\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_char\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"inherited\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"n_distinct\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_ndistinct\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"dependencies\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_dependencies\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"most_common_vals\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"most_common_val_nulls\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_bool\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"most_common_freqs\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_float8\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"most_common_base_freqs\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_float8\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_stats_ext_exprs\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tablename\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"statistics_schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"statistics_name\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"statistics_owner\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"expr\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"inherited\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"null_frac\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"avg_width\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"n_distinct\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"most_common_vals\",\n\t\t\t\t\tType: ast.TypeName{Name: \"anyarray\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"most_common_freqs\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_float4\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"histogram_bounds\",\n\t\t\t\t\tType: ast.TypeName{Name: \"anyarray\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"correlation\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"float4\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"most_common_elems\",\n\t\t\t\t\tType: ast.TypeName{Name: \"anyarray\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"most_common_elem_freqs\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_float4\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"elem_count_histogram\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_float4\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_subscription\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"subdbid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"subskiplsn\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"subname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"subowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"subenabled\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"subbinary\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"substream\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"subtwophasestate\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"subdisableonerr\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"subconninfo\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"text\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"subslotname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"subsynccommit\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"text\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"subpublications\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tIsArray:   true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_subscription_rel\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"srsubid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"srrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"srsubstate\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"srsublsn\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"pg_lsn\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_tables\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tablename\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tableowner\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tablespace\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"hasindexes\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"hasrules\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"hastriggers\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"rowsecurity\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_tablespace\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"spcname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"spcowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"spcacl\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_aclitem\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"spcoptions\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_timezone_abbrevs\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName: \"abbrev\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"utc_offset\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"interval\"},\n\t\t\t\t\tLength: toPointer(16),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"is_dst\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_timezone_names\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName: \"name\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"abbrev\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"utc_offset\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"interval\"},\n\t\t\t\t\tLength: toPointer(16),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"is_dst\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_transform\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"trftype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"trflang\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"trffromsql\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"trftosql\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_trigger\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tgrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tgparentid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tgname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tgfoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tgtype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tgenabled\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tgisinternal\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tgconstrrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tgconstrindid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tgconstraint\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tgdeferrable\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tginitdeferred\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tgnargs\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tgattr\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2vector\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tIsArray:   true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tgargs\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bytea\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"tgqual\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tgoldtable\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"tgnewtable\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_ts_config\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cfgname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cfgnamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cfgowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cfgparser\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_ts_config_map\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"mapcfg\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"maptokentype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"mapseqno\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"mapdict\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_ts_dict\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"dictname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"dictnamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"dictowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"dicttemplate\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"dictinitoption\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_ts_parser\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prsname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prsnamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prsstart\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prstoken\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prsend\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prsheadline\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"prslextype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_ts_template\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tmplname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tmplnamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tmplinit\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"tmpllexize\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_type\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typname\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"name\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typnamespace\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typowner\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typlen\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int2\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(2),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typbyval\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typtype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typcategory\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typispreferred\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typisdefined\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typdelim\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typrelid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typsubscript\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typelem\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typarray\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typinput\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typoutput\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typreceive\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typsend\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typmodin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typmodout\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typanalyze\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"regproc\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typalign\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typstorage\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"char\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typnotnull\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typbasetype\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typtypmod\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typndims\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"int4\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"typcollation\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"typdefaultbin\",\n\t\t\t\t\tType: ast.TypeName{Name: \"pg_node_tree\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"typdefault\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"typacl\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_aclitem\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_user\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"usename\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"usesysid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"usecreatedb\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"usesuper\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"userepl\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"usebypassrls\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"bool\"},\n\t\t\t\t\tLength: toPointer(1),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"passwd\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"valuntil\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"timestamptz\"},\n\t\t\t\t\tLength: toPointer(8),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"useconfig\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_user_mapping\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:      \"tableoid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmax\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"cmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"cid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"xmin\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"xid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"ctid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"tid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(6),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"oid\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"umuser\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:      \"umserver\",\n\t\t\t\t\tType:      ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\tLength:    toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"umoptions\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_user_mappings\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"umid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"srvid\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"srvname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"umuser\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"oid\"},\n\t\t\t\t\tLength: toPointer(4),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"usename\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:    \"umoptions\",\n\t\t\t\t\tType:    ast.TypeName{Name: \"_text\"},\n\t\t\t\t\tIsArray: true,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"pg_catalog\",\n\t\t\t\tSchema:  \"pg_catalog\",\n\t\t\t\tName:    \"pg_views\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{\n\t\t\t\t\tName:   \"schemaname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"viewname\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName:   \"viewowner\",\n\t\t\t\t\tType:   ast.TypeName{Name: \"name\"},\n\t\t\t\t\tLength: toPointer(64),\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tName: \"definition\",\n\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t}\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/postgresql/pg_temp.go",
    "content": "package postgresql\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nfunc pgTemp() *catalog.Schema {\n\treturn &catalog.Schema{Name: \"pg_temp\"}\n}\n"
  },
  {
    "path": "internal/engine/postgresql/reserved.go",
    "content": "package postgresql\n\nimport (\n\t\"fmt\"\n\t\"strings\"\n)\n\n// hasMixedCase returns true if the string has any uppercase letters\n// (identifiers with mixed case need quoting in PostgreSQL)\nfunc hasMixedCase(s string) bool {\n\tfor _, r := range s {\n\t\tif r >= 'A' && r <= 'Z' {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n\n// QuoteIdent returns a quoted identifier if it needs quoting.\n// This implements the format.Dialect interface.\nfunc (p *Parser) QuoteIdent(s string) string {\n\tif p.IsReservedKeyword(s) || hasMixedCase(s) {\n\t\treturn `\"` + s + `\"`\n\t}\n\treturn s\n}\n\n// TypeName returns the SQL type name for the given namespace and name.\n// This implements the format.Dialect interface.\nfunc (p *Parser) TypeName(ns, name string) string {\n\tif ns == \"pg_catalog\" {\n\t\tswitch name {\n\t\tcase \"int4\":\n\t\t\treturn \"integer\"\n\t\tcase \"int8\":\n\t\t\treturn \"bigint\"\n\t\tcase \"int2\":\n\t\t\treturn \"smallint\"\n\t\tcase \"float4\":\n\t\t\treturn \"real\"\n\t\tcase \"float8\":\n\t\t\treturn \"double precision\"\n\t\tcase \"bool\":\n\t\t\treturn \"boolean\"\n\t\tcase \"bpchar\":\n\t\t\treturn \"character\"\n\t\tcase \"timestamptz\":\n\t\t\treturn \"timestamp with time zone\"\n\t\tcase \"timetz\":\n\t\t\treturn \"time with time zone\"\n\t\tdefault:\n\t\t\treturn name\n\t\t}\n\t}\n\tif ns != \"\" {\n\t\treturn ns + \".\" + name\n\t}\n\treturn name\n}\n\n// Param returns the parameter placeholder for the given number.\n// PostgreSQL uses $1, $2, etc.\nfunc (p *Parser) Param(n int) string {\n\treturn fmt.Sprintf(\"$%d\", n)\n}\n\n// NamedParam returns the named parameter placeholder for the given name.\n// PostgreSQL/sqlc uses @name syntax.\nfunc (p *Parser) NamedParam(name string) string {\n\treturn \"@\" + name\n}\n\n// Cast returns a type cast expression.\n// PostgreSQL uses expr::type syntax.\nfunc (p *Parser) Cast(arg, typeName string) string {\n\treturn arg + \"::\" + typeName\n}\n\n// https://www.postgresql.org/docs/current/sql-keywords-appendix.html\nfunc (p *Parser) IsReservedKeyword(s string) bool {\n\tswitch strings.ToLower(s) {\n\tcase \"all\":\n\tcase \"analyse\":\n\tcase \"analyze\":\n\tcase \"and\":\n\tcase \"any\":\n\tcase \"array\":\n\tcase \"as\":\n\tcase \"asc\":\n\tcase \"asymmetric\":\n\tcase \"authorization\":\n\tcase \"binary\":\n\tcase \"both\":\n\tcase \"case\":\n\tcase \"cast\":\n\tcase \"check\":\n\tcase \"collate\":\n\tcase \"collation\":\n\tcase \"column\":\n\tcase \"concurrently\":\n\tcase \"constraint\":\n\tcase \"create\":\n\tcase \"cross\":\n\tcase \"current_catalog\":\n\tcase \"current_date\":\n\tcase \"current_role\":\n\tcase \"current_schema\":\n\tcase \"current_time\":\n\tcase \"current_timestamp\":\n\tcase \"current_user\":\n\tcase \"default\":\n\tcase \"deferrable\":\n\tcase \"desc\":\n\tcase \"distinct\":\n\tcase \"do\":\n\tcase \"else\":\n\tcase \"end\":\n\tcase \"except\":\n\tcase \"false\":\n\tcase \"fetch\":\n\tcase \"for\":\n\tcase \"foreign\":\n\tcase \"freeze\":\n\tcase \"from\":\n\tcase \"full\":\n\tcase \"grant\":\n\tcase \"group\":\n\tcase \"having\":\n\tcase \"ilike\":\n\tcase \"in\":\n\tcase \"initially\":\n\tcase \"inner\":\n\tcase \"intersect\":\n\tcase \"into\":\n\tcase \"is\":\n\tcase \"isnull\":\n\tcase \"join\":\n\tcase \"lateral\":\n\tcase \"leading\":\n\tcase \"left\":\n\tcase \"like\":\n\tcase \"limit\":\n\tcase \"localtime\":\n\tcase \"localtimestamp\":\n\tcase \"natural\":\n\tcase \"not\":\n\tcase \"notnull\":\n\tcase \"null\":\n\tcase \"offset\":\n\tcase \"on\":\n\tcase \"only\":\n\tcase \"or\":\n\tcase \"order\":\n\tcase \"outer\":\n\tcase \"overlaps\":\n\tcase \"placing\":\n\tcase \"primary\":\n\tcase \"references\":\n\tcase \"returning\":\n\tcase \"right\":\n\tcase \"select\":\n\tcase \"session_user\":\n\tcase \"similar\":\n\tcase \"some\":\n\tcase \"symmetric\":\n\tcase \"table\":\n\tcase \"tablesample\":\n\tcase \"then\":\n\tcase \"to\":\n\tcase \"trailing\":\n\tcase \"true\":\n\tcase \"union\":\n\tcase \"unique\":\n\tcase \"user\":\n\tcase \"using\":\n\tcase \"variadic\":\n\tcase \"verbose\":\n\tcase \"when\":\n\tcase \"where\":\n\tcase \"window\":\n\tcase \"with\":\n\tdefault:\n\t\treturn false\n\t}\n\treturn true\n}\n"
  },
  {
    "path": "internal/engine/postgresql/rewrite_test.go",
    "content": "package postgresql\n\nimport (\n\t\"strings\"\n\t\"testing\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n\n\t\"github.com/google/go-cmp/cmp\"\n)\n\nfunc TestApply(t *testing.T) {\n\tp := NewParser()\n\n\tinput, err := p.Parse(strings.NewReader(\"SELECT sqlc.arg(name)\"))\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\toutput, err := p.Parse(strings.NewReader(\"SELECT $1\"))\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\texpect := &output[0]\n\tactual := astutils.Apply(&input[0], func(cr *astutils.Cursor) bool {\n\t\tfun, ok := cr.Node().(*ast.FuncCall)\n\t\tif !ok {\n\t\t\treturn true\n\t\t}\n\t\tif astutils.Join(fun.Funcname, \".\") == \"sqlc.arg\" {\n\t\t\tcr.Replace(&ast.ParamRef{\n\t\t\t\tDollar:   true,\n\t\t\t\tNumber:   1,\n\t\t\t\tLocation: fun.Location,\n\t\t\t})\n\t\t\treturn false\n\t\t}\n\t\treturn true\n\t}, nil)\n\n\tif diff := cmp.Diff(expect, actual); diff != \"\" {\n\t\tt.Errorf(\"rewrite mismatch:\\n%s\", diff)\n\t}\n}\n"
  },
  {
    "path": "internal/engine/postgresql/utils.go",
    "content": "package postgresql\n\nimport (\n\tnodes \"github.com/pganalyze/pg_query_go/v6\"\n)\n\nfunc isArray(n *nodes.TypeName) bool {\n\tif n == nil {\n\t\treturn false\n\t}\n\treturn len(n.ArrayBounds) > 0\n}\n\nfunc isNotNull(n *nodes.ColumnDef) bool {\n\tif n.IsNotNull {\n\t\treturn true\n\t}\n\tfor _, c := range n.Constraints {\n\t\tswitch inner := c.Node.(type) {\n\t\tcase *nodes.Node_Constraint:\n\t\t\tif inner.Constraint.Contype == nodes.ConstrType_CONSTR_NOTNULL {\n\t\t\t\treturn true\n\t\t\t}\n\t\t\tif inner.Constraint.Contype == nodes.ConstrType_CONSTR_PRIMARY {\n\t\t\t\treturn true\n\t\t\t}\n\t\t}\n\t}\n\treturn false\n}\n\nfunc IsNamedParamFunc(node *nodes.Node) bool {\n\tfun, ok := node.Node.(*nodes.Node_FuncCall)\n\treturn ok && joinNodes(fun.FuncCall.Funcname, \".\") == \"sqlc.arg\"\n}\n\nfunc IsNamedParamSign(node *nodes.Node) bool {\n\texpr, ok := node.Node.(*nodes.Node_AExpr)\n\treturn ok && joinNodes(expr.AExpr.Name, \".\") == \"@\"\n}\n\nfunc makeByte(s string) byte {\n\tvar b byte\n\tif s == \"\" {\n\t\treturn b\n\t}\n\treturn []byte(s)[0]\n}\n\nfunc makeUint32Slice(in []uint64) []uint32 {\n\tout := make([]uint32, len(in))\n\tfor i, v := range in {\n\t\tout[i] = uint32(v)\n\t}\n\treturn out\n}\n\nfunc makeString(s string) *string {\n\tif s == \"\" {\n\t\treturn nil\n\t}\n\treturn &s\n}\n"
  },
  {
    "path": "internal/engine/sqlite/analyzer/analyze.go",
    "content": "package analyzer\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"strings\"\n\t\"sync\"\n\n\t\"github.com/ncruces/go-sqlite3\"\n\t_ \"github.com/ncruces/go-sqlite3/embed\"\n\n\tcore \"github.com/sqlc-dev/sqlc/internal/analysis\"\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/opts\"\n\t\"github.com/sqlc-dev/sqlc/internal/shfmt\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/named\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\ntype Analyzer struct {\n\tdb       config.Database\n\tconn     *sqlite3.Conn\n\tdbg      opts.Debug\n\treplacer *shfmt.Replacer\n\tmu       sync.Mutex\n}\n\nfunc New(db config.Database) *Analyzer {\n\treturn &Analyzer{\n\t\tdb:       db,\n\t\tdbg:      opts.DebugFromEnv(),\n\t\treplacer: shfmt.NewReplacer(nil),\n\t}\n}\n\nfunc (a *Analyzer) Analyze(ctx context.Context, n ast.Node, query string, migrations []string, ps *named.ParamSet) (*core.Analysis, error) {\n\ta.mu.Lock()\n\tdefer a.mu.Unlock()\n\n\tif a.conn == nil {\n\t\tvar uri string\n\t\tapplyMigrations := a.db.Managed\n\t\tif a.db.Managed {\n\t\t\t// For managed databases, create an in-memory database\n\t\t\turi = \":memory:\"\n\t\t} else if a.dbg.OnlyManagedDatabases {\n\t\t\treturn nil, fmt.Errorf(\"database: connections disabled via SQLCDEBUG=databases=managed\")\n\t\t} else {\n\t\t\turi = a.replacer.Replace(a.db.URI)\n\t\t\t// For in-memory databases, we need to apply migrations since the database starts empty\n\t\t\tif isInMemoryDatabase(uri) {\n\t\t\t\tapplyMigrations = true\n\t\t\t}\n\t\t}\n\n\t\tconn, err := sqlite3.Open(uri)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"failed to open sqlite database: %w\", err)\n\t\t}\n\t\ta.conn = conn\n\n\t\t// Apply migrations for managed or in-memory databases\n\t\tif applyMigrations {\n\t\t\tfor _, m := range migrations {\n\t\t\t\tif len(strings.TrimSpace(m)) == 0 {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif err := a.conn.Exec(m); err != nil {\n\t\t\t\t\ta.conn.Close()\n\t\t\t\t\ta.conn = nil\n\t\t\t\t\treturn nil, fmt.Errorf(\"migration failed: %s: %w\", m, err)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Prepare the statement to get column and parameter information\n\tstmt, _, err := a.conn.Prepare(query)\n\tif err != nil {\n\t\treturn nil, a.extractSqlErr(n, err)\n\t}\n\tdefer stmt.Close()\n\n\tvar result core.Analysis\n\n\t// Get column information\n\tcolCount := stmt.ColumnCount()\n\tfor i := 0; i < colCount; i++ {\n\t\tname := stmt.ColumnName(i)\n\t\tdeclType := stmt.ColumnDeclType(i)\n\t\ttableName := stmt.ColumnTableName(i)\n\t\toriginName := stmt.ColumnOriginName(i)\n\t\tdbName := stmt.ColumnDatabaseName(i)\n\n\t\t// Normalize the data type\n\t\tdataType := normalizeType(declType)\n\n\t\t// Determine if column is NOT NULL\n\t\t// SQLite doesn't provide this info directly from prepared statements,\n\t\t// so we default to nullable (false)\n\t\tnotNull := false\n\n\t\tcol := &core.Column{\n\t\t\tName:         name,\n\t\t\tOriginalName: originName,\n\t\t\tDataType:     dataType,\n\t\t\tNotNull:      notNull,\n\t\t}\n\n\t\tif tableName != \"\" {\n\t\t\tcol.Table = &core.Identifier{\n\t\t\t\tSchema: dbName,\n\t\t\t\tName:   tableName,\n\t\t\t}\n\t\t}\n\n\t\tresult.Columns = append(result.Columns, col)\n\t}\n\n\t// Get parameter information\n\tbindCount := stmt.BindCount()\n\tfor i := 1; i <= bindCount; i++ {\n\t\tparamName := stmt.BindName(i)\n\n\t\t// SQLite doesn't provide parameter types from prepared statements\n\t\t// We use \"any\" as the default type\n\t\tname := \"\"\n\t\tif paramName != \"\" {\n\t\t\t// Remove the prefix (?, :, @, $) from parameter names\n\t\t\tname = strings.TrimLeft(paramName, \"?:@$\")\n\t\t}\n\t\tif ps != nil {\n\t\t\tif n, ok := ps.NameFor(i); ok {\n\t\t\t\tname = n\n\t\t\t}\n\t\t}\n\n\t\tresult.Params = append(result.Params, &core.Parameter{\n\t\t\tNumber: int32(i),\n\t\t\tColumn: &core.Column{\n\t\t\t\tName:     name,\n\t\t\t\tDataType: \"any\",\n\t\t\t\tNotNull:  false,\n\t\t\t},\n\t\t})\n\t}\n\n\treturn &result, nil\n}\n\nfunc (a *Analyzer) extractSqlErr(n ast.Node, err error) error {\n\tif err == nil {\n\t\treturn nil\n\t}\n\t// Try to extract SQLite error details\n\tvar sqliteErr *sqlite3.Error\n\tif e, ok := err.(*sqlite3.Error); ok {\n\t\tsqliteErr = e\n\t}\n\tif sqliteErr != nil {\n\t\treturn &sqlerr.Error{\n\t\t\tCode:     fmt.Sprintf(\"%d\", sqliteErr.Code()),\n\t\t\tMessage:  sqliteErr.Error(),\n\t\t\tLocation: n.Pos(),\n\t\t}\n\t}\n\treturn &sqlerr.Error{\n\t\tMessage:  err.Error(),\n\t\tLocation: n.Pos(),\n\t}\n}\n\nfunc (a *Analyzer) Close(_ context.Context) error {\n\ta.mu.Lock()\n\tdefer a.mu.Unlock()\n\tif a.conn != nil {\n\t\terr := a.conn.Close()\n\t\ta.conn = nil\n\t\treturn err\n\t}\n\treturn nil\n}\n\n// EnsureConn initializes the database connection if not already done.\n// This is useful for database-only mode where we need to connect before analyzing queries.\nfunc (a *Analyzer) EnsureConn(ctx context.Context, migrations []string) error {\n\ta.mu.Lock()\n\tdefer a.mu.Unlock()\n\n\tif a.conn != nil {\n\t\treturn nil\n\t}\n\n\tvar uri string\n\tapplyMigrations := a.db.Managed\n\tif a.db.Managed {\n\t\t// For managed databases, create an in-memory database\n\t\turi = \":memory:\"\n\t} else if a.dbg.OnlyManagedDatabases {\n\t\treturn fmt.Errorf(\"database: connections disabled via SQLCDEBUG=databases=managed\")\n\t} else {\n\t\turi = a.replacer.Replace(a.db.URI)\n\t\t// For in-memory databases, we need to apply migrations since the database starts empty\n\t\tif isInMemoryDatabase(uri) {\n\t\t\tapplyMigrations = true\n\t\t}\n\t}\n\n\tconn, err := sqlite3.Open(uri)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"failed to open sqlite database: %w\", err)\n\t}\n\ta.conn = conn\n\n\t// Apply migrations for managed or in-memory databases\n\tif applyMigrations {\n\t\tfor _, m := range migrations {\n\t\t\tif len(strings.TrimSpace(m)) == 0 {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif err := a.conn.Exec(m); err != nil {\n\t\t\t\ta.conn.Close()\n\t\t\t\ta.conn = nil\n\t\t\t\treturn fmt.Errorf(\"migration failed: %s: %w\", m, err)\n\t\t\t}\n\t\t}\n\t}\n\n\treturn nil\n}\n\n// GetColumnNames implements the expander.ColumnGetter interface.\n// It prepares a query and returns the column names from the result set description.\nfunc (a *Analyzer) GetColumnNames(ctx context.Context, query string) ([]string, error) {\n\ta.mu.Lock()\n\tdefer a.mu.Unlock()\n\n\tif a.conn == nil {\n\t\treturn nil, fmt.Errorf(\"database connection not initialized\")\n\t}\n\n\tstmt, _, err := a.conn.Prepare(query)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer stmt.Close()\n\n\tcolCount := stmt.ColumnCount()\n\tcolumns := make([]string, colCount)\n\tfor i := 0; i < colCount; i++ {\n\t\tcolumns[i] = stmt.ColumnName(i)\n\t}\n\n\treturn columns, nil\n}\n\n// IntrospectSchema queries the database to build a catalog containing\n// tables and columns for the database.\nfunc (a *Analyzer) IntrospectSchema(ctx context.Context, schemas []string) (*catalog.Catalog, error) {\n\ta.mu.Lock()\n\tdefer a.mu.Unlock()\n\n\tif a.conn == nil {\n\t\treturn nil, fmt.Errorf(\"database connection not initialized\")\n\t}\n\n\t// Build catalog\n\tcat := &catalog.Catalog{\n\t\tDefaultSchema: \"main\",\n\t}\n\n\t// Create default schema\n\tmainSchema := &catalog.Schema{Name: \"main\"}\n\tcat.Schemas = append(cat.Schemas, mainSchema)\n\n\t// Query tables from sqlite_master\n\tstmt, _, err := a.conn.Prepare(\"SELECT name FROM sqlite_master WHERE type='table' AND name NOT LIKE 'sqlite_%'\")\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"introspect tables: %w\", err)\n\t}\n\n\ttableNames := []string{}\n\tfor stmt.Step() {\n\t\ttableName := stmt.ColumnText(0)\n\t\ttableNames = append(tableNames, tableName)\n\t}\n\tstmt.Close()\n\n\t// For each table, get column information using PRAGMA table_info\n\tfor _, tableName := range tableNames {\n\t\ttbl := &catalog.Table{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tName: tableName,\n\t\t\t},\n\t\t}\n\n\t\tpragmaStmt, _, err := a.conn.Prepare(fmt.Sprintf(\"PRAGMA table_info('%s')\", tableName))\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"pragma table_info for %s: %w\", tableName, err)\n\t\t}\n\n\t\tfor pragmaStmt.Step() {\n\t\t\t// PRAGMA table_info returns: cid, name, type, notnull, dflt_value, pk\n\t\t\tcolName := pragmaStmt.ColumnText(1)\n\t\t\tcolType := pragmaStmt.ColumnText(2)\n\t\t\tnotNull := pragmaStmt.ColumnInt(3) != 0\n\n\t\t\ttbl.Columns = append(tbl.Columns, &catalog.Column{\n\t\t\t\tName:      colName,\n\t\t\t\tType:      ast.TypeName{Name: normalizeType(colType)},\n\t\t\t\tIsNotNull: notNull,\n\t\t\t})\n\t\t}\n\t\tpragmaStmt.Close()\n\n\t\tmainSchema.Tables = append(mainSchema.Tables, tbl)\n\t}\n\n\treturn cat, nil\n}\n\n// isInMemoryDatabase checks if a SQLite URI refers to an in-memory database\nfunc isInMemoryDatabase(uri string) bool {\n\tif uri == \":memory:\" || uri == \"\" {\n\t\treturn true\n\t}\n\t// Check for file URI with mode=memory parameter\n\t// e.g., \"file:test?mode=memory&cache=shared\"\n\tif strings.Contains(uri, \"mode=memory\") {\n\t\treturn true\n\t}\n\treturn false\n}\n\n// normalizeType converts SQLite type declarations to standard type names\nfunc normalizeType(declType string) string {\n\tif declType == \"\" {\n\t\treturn \"any\"\n\t}\n\n\t// Convert to lowercase for comparison\n\tlower := strings.ToLower(declType)\n\n\t// SQLite type affinity rules (https://www.sqlite.org/datatype3.html)\n\tswitch {\n\tcase strings.Contains(lower, \"int\"):\n\t\treturn \"integer\"\n\tcase strings.Contains(lower, \"char\"),\n\t\tstrings.Contains(lower, \"clob\"),\n\t\tstrings.Contains(lower, \"text\"):\n\t\treturn \"text\"\n\tcase strings.Contains(lower, \"blob\"):\n\t\treturn \"blob\"\n\tcase strings.Contains(lower, \"real\"),\n\t\tstrings.Contains(lower, \"floa\"),\n\t\tstrings.Contains(lower, \"doub\"):\n\t\treturn \"real\"\n\tcase strings.Contains(lower, \"bool\"):\n\t\treturn \"boolean\"\n\tcase strings.Contains(lower, \"date\"),\n\t\tstrings.Contains(lower, \"time\"):\n\t\treturn \"datetime\"\n\tdefault:\n\t\t// Return as-is for numeric or other types\n\t\treturn lower\n\t}\n}\n"
  },
  {
    "path": "internal/engine/sqlite/analyzer/analyze_test.go",
    "content": "package analyzer\n\nimport (\n\t\"context\"\n\t\"testing\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\nfunc TestAnalyzer_Analyze(t *testing.T) {\n\tdb := config.Database{\n\t\tManaged: true,\n\t}\n\ta := New(db)\n\tdefer a.Close(context.Background())\n\n\tctx := context.Background()\n\n\tmigrations := []string{\n\t\t`CREATE TABLE users (\n\t\t\tid INTEGER PRIMARY KEY,\n\t\t\tname TEXT NOT NULL,\n\t\t\temail TEXT\n\t\t)`,\n\t}\n\n\tquery := `SELECT id, name, email FROM users WHERE id = ?`\n\tnode := &ast.TODO{}\n\n\tresult, err := a.Analyze(ctx, node, query, migrations, nil)\n\tif err != nil {\n\t\tt.Fatalf(\"Analyze failed: %v\", err)\n\t}\n\n\tif len(result.Columns) != 3 {\n\t\tt.Errorf(\"Expected 3 columns, got %d\", len(result.Columns))\n\t}\n\n\texpectedCols := []struct {\n\t\tname     string\n\t\tdataType string\n\t}{\n\t\t{\"id\", \"integer\"},\n\t\t{\"name\", \"text\"},\n\t\t{\"email\", \"text\"},\n\t}\n\n\tfor i, expected := range expectedCols {\n\t\tif i >= len(result.Columns) {\n\t\t\tbreak\n\t\t}\n\t\tcol := result.Columns[i]\n\t\tif col.Name != expected.name {\n\t\t\tt.Errorf(\"Column %d: expected name %q, got %q\", i, expected.name, col.Name)\n\t\t}\n\t\tif col.DataType != expected.dataType {\n\t\t\tt.Errorf(\"Column %d: expected dataType %q, got %q\", i, expected.dataType, col.DataType)\n\t\t}\n\t\tif col.Table == nil || col.Table.Name != \"users\" {\n\t\t\tt.Errorf(\"Column %d: expected table 'users', got %v\", i, col.Table)\n\t\t}\n\t}\n\n\tif len(result.Params) != 1 {\n\t\tt.Errorf(\"Expected 1 parameter, got %d\", len(result.Params))\n\t}\n}\n\nfunc TestAnalyzer_InvalidQuery(t *testing.T) {\n\tdb := config.Database{\n\t\tManaged: true,\n\t}\n\ta := New(db)\n\tdefer a.Close(context.Background())\n\n\tctx := context.Background()\n\n\tmigrations := []string{\n\t\t`CREATE TABLE users (id INTEGER PRIMARY KEY)`,\n\t}\n\n\tquery := `SELECT * FROM nonexistent`\n\tnode := &ast.TODO{}\n\n\t_, err := a.Analyze(ctx, node, query, migrations, nil)\n\tif err == nil {\n\t\tt.Error(\"Expected error for invalid query, got nil\")\n\t}\n}\n\nfunc TestNormalizeType(t *testing.T) {\n\ttests := []struct {\n\t\tinput    string\n\t\texpected string\n\t}{\n\t\t{\"INTEGER\", \"integer\"},\n\t\t{\"INT\", \"integer\"},\n\t\t{\"BIGINT\", \"integer\"},\n\t\t{\"TEXT\", \"text\"},\n\t\t{\"VARCHAR(255)\", \"text\"},\n\t\t{\"BLOB\", \"blob\"},\n\t\t{\"REAL\", \"real\"},\n\t\t{\"FLOAT\", \"real\"},\n\t\t{\"DOUBLE\", \"real\"},\n\t\t{\"BOOLEAN\", \"boolean\"},\n\t\t{\"DATETIME\", \"datetime\"},\n\t\t{\"\", \"any\"},\n\t}\n\n\tfor _, tt := range tests {\n\t\tt.Run(tt.input, func(t *testing.T) {\n\t\t\tresult := normalizeType(tt.input)\n\t\t\tif result != tt.expected {\n\t\t\t\tt.Errorf(\"normalizeType(%q) = %q, want %q\", tt.input, result, tt.expected)\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "internal/engine/sqlite/catalog.go",
    "content": "package sqlite\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n\nfunc NewCatalog() *catalog.Catalog {\n\tdef := \"main\"\n\treturn &catalog.Catalog{\n\t\tDefaultSchema: def,\n\t\tSchemas: []*catalog.Schema{\n\t\t\tdefaultSchema(def),\n\t\t},\n\t\tExtensions: map[string]struct{}{},\n\t}\n}\n\nfunc newTestCatalog() *catalog.Catalog {\n\treturn catalog.New(\"main\")\n}\n"
  },
  {
    "path": "internal/engine/sqlite/catalog_test.go",
    "content": "package sqlite\n\nimport (\n\t\"strconv\"\n\t\"strings\"\n\t\"testing\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n\n\t\"github.com/google/go-cmp/cmp\"\n\t\"github.com/google/go-cmp/cmp/cmpopts\"\n)\n\nfunc TestUpdate(t *testing.T) {\n\tp := NewParser()\n\n\tfor i, tc := range []struct {\n\t\tstmt string\n\t\ts    *catalog.Schema\n\t}{\n\t\t{\n\t\t\t`\n\t\t\tCREATE TABLE foo (bar text);\n\t\t\t`,\n\t\t\t&catalog.Schema{\n\t\t\t\tName: \"main\",\n\t\t\t\tTables: []*catalog.Table{\n\t\t\t\t\t{\n\t\t\t\t\t\tRel: &ast.TableName{Name: \"foo\"},\n\t\t\t\t\t\tColumns: []*catalog.Column{\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tName: \"bar\",\n\t\t\t\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tCREATE TABLE foo (bar text);\n\t\t\tALTER TABLE foo RENAME TO baz;\n\t\t\t`,\n\t\t\t&catalog.Schema{\n\t\t\t\tName: \"main\",\n\t\t\t\tTables: []*catalog.Table{\n\t\t\t\t\t{\n\t\t\t\t\t\tRel: &ast.TableName{Name: \"baz\"},\n\t\t\t\t\t\tColumns: []*catalog.Column{\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tName: \"bar\",\n\t\t\t\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tCREATE TABLE foo (bar text);\n\t\t\tALTER TABLE foo ADD COLUMN baz bool;\n\t\t\t`,\n\t\t\t&catalog.Schema{\n\t\t\t\tName: \"main\",\n\t\t\t\tTables: []*catalog.Table{\n\t\t\t\t\t{\n\t\t\t\t\t\tRel: &ast.TableName{Name: \"foo\"},\n\t\t\t\t\t\tColumns: []*catalog.Column{\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tName: \"bar\",\n\t\t\t\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tName: \"baz\",\n\t\t\t\t\t\t\t\tType: ast.TypeName{Name: \"bool\"},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tCREATE TABLE foo (bar text);\n\t\t\tALTER TABLE foo RENAME COLUMN bar TO baz;\n\t\t\t`,\n\t\t\t&catalog.Schema{\n\t\t\t\tName: \"main\",\n\t\t\t\tTables: []*catalog.Table{\n\t\t\t\t\t{\n\t\t\t\t\t\tRel: &ast.TableName{Name: \"foo\"},\n\t\t\t\t\t\tColumns: []*catalog.Column{\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tName: \"baz\",\n\t\t\t\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tCREATE TABLE foo (bar text);\n\t\t\tALTER TABLE foo RENAME bar TO baz;\n\t\t\t`,\n\t\t\t&catalog.Schema{\n\t\t\t\tName: \"main\",\n\t\t\t\tTables: []*catalog.Table{\n\t\t\t\t\t{\n\t\t\t\t\t\tRel: &ast.TableName{Name: \"foo\"},\n\t\t\t\t\t\tColumns: []*catalog.Column{\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tName: \"baz\",\n\t\t\t\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tATTACH ':memory:' as ns;\n\t\t\tCREATE TABLE ns.foo (bar text);\n\t\t\t`,\n\t\t\t&catalog.Schema{\n\t\t\t\tName: \"ns\",\n\t\t\t\tTables: []*catalog.Table{\n\t\t\t\t\t{\n\t\t\t\t\t\tRel: &ast.TableName{Schema: \"ns\", Name: \"foo\"},\n\t\t\t\t\t\tColumns: []*catalog.Column{\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tName: \"bar\",\n\t\t\t\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tATTACH ':memory:' as ns;\n\t\t\tCREATE TABLE ns.foo (bar text);\n\t\t\tALTER TABLE ns.foo RENAME TO baz;\n\t\t\t`,\n\t\t\t&catalog.Schema{\n\t\t\t\tName: \"ns\",\n\t\t\t\tTables: []*catalog.Table{\n\t\t\t\t\t{\n\t\t\t\t\t\tRel: &ast.TableName{Schema: \"ns\", Name: \"baz\"},\n\t\t\t\t\t\tColumns: []*catalog.Column{\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tName: \"bar\",\n\t\t\t\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tATTACH ':memory:' as ns;\n\t\t\tCREATE TABLE ns.foo (bar text);\n\t\t\tALTER TABLE ns.foo ADD COLUMN baz bool;\n\t\t\t`,\n\t\t\t&catalog.Schema{\n\t\t\t\tName: \"ns\",\n\t\t\t\tTables: []*catalog.Table{\n\t\t\t\t\t{\n\t\t\t\t\t\tRel: &ast.TableName{Schema: \"ns\", Name: \"foo\"},\n\t\t\t\t\t\tColumns: []*catalog.Column{\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tName: \"bar\",\n\t\t\t\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tName: \"baz\",\n\t\t\t\t\t\t\t\tType: ast.TypeName{Name: \"bool\"},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tATTACH ':memory:' as ns;\n\t\t\tCREATE TABLE ns.foo (bar text);\n\t\t\tALTER TABLE ns.foo RENAME COLUMN bar TO baz;\n\t\t\t`,\n\t\t\t&catalog.Schema{\n\t\t\t\tName: \"ns\",\n\t\t\t\tTables: []*catalog.Table{\n\t\t\t\t\t{\n\t\t\t\t\t\tRel: &ast.TableName{Schema: \"ns\", Name: \"foo\"},\n\t\t\t\t\t\tColumns: []*catalog.Column{\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tName: \"baz\",\n\t\t\t\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\t`\n\t\t\tATTACH ':memory:' as ns;\n\t\t\tCREATE TABLE ns.foo (bar text);\n\t\t\tALTER TABLE ns.foo RENAME bar TO baz;\n\t\t\t`,\n\t\t\t&catalog.Schema{\n\t\t\t\tName: \"ns\",\n\t\t\t\tTables: []*catalog.Table{\n\t\t\t\t\t{\n\t\t\t\t\t\tRel: &ast.TableName{Schema: \"ns\", Name: \"foo\"},\n\t\t\t\t\t\tColumns: []*catalog.Column{\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tName: \"baz\",\n\t\t\t\t\t\t\t\tType: ast.TypeName{Name: \"text\"},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t} {\n\t\ttest := tc\n\t\tt.Run(strconv.Itoa(i), func(t *testing.T) {\n\t\t\tstmts, err := p.Parse(strings.NewReader(test.stmt))\n\t\t\tif err != nil {\n\t\t\t\tt.Log(test.stmt)\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\tc := newTestCatalog()\n\t\t\tif err := c.Build(stmts); err != nil {\n\t\t\t\tt.Log(test.stmt)\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\n\t\t\te := newTestCatalog()\n\t\t\tif test.s != nil {\n\t\t\t\tvar replaced bool\n\t\t\t\tfor i := range e.Schemas {\n\t\t\t\t\tif e.Schemas[i].Name == test.s.Name {\n\t\t\t\t\t\te.Schemas[i] = test.s\n\t\t\t\t\t\treplaced = true\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tif !replaced {\n\t\t\t\t\te.Schemas = append(e.Schemas, test.s)\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif diff := cmp.Diff(e, c, cmpopts.EquateEmpty(), cmpopts.IgnoreUnexported(catalog.Column{})); diff != \"\" {\n\t\t\t\tt.Log(test.stmt)\n\t\t\t\tt.Errorf(\"catalog mismatch:\\n%s\", diff)\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "internal/engine/sqlite/convert.go",
    "content": "package sqlite\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\t\"strconv\"\n\t\"strings\"\n\n\t\"github.com/antlr4-go/antlr/v4\"\n\t\"github.com/sqlc-dev/sqlc/internal/debug\"\n\t\"github.com/sqlc-dev/sqlc/internal/engine/sqlite/parser\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\ntype cc struct {\n\tparamCount int\n}\n\ntype node interface {\n\tGetParser() antlr.Parser\n}\n\nfunc todo(funcname string, n node) *ast.TODO {\n\tif debug.Active {\n\t\tlog.Printf(\"sqlite.%s: Unknown node type %T\\n\", funcname, n)\n\t}\n\treturn &ast.TODO{}\n}\n\nfunc identifier(id string) string {\n\tif len(id) >= 2 && id[0] == '\"' && id[len(id)-1] == '\"' {\n\t\tunquoted, _ := strconv.Unquote(id)\n\t\treturn unquoted\n\t}\n\treturn strings.ToLower(id)\n}\n\nfunc NewIdentifier(t string) *ast.String {\n\treturn &ast.String{Str: identifier(t)}\n}\n\nfunc (c *cc) convertAlter_table_stmtContext(n *parser.Alter_table_stmtContext) ast.Node {\n\tif n.RENAME_() != nil {\n\t\tif newTable, ok := n.New_table_name().(*parser.New_table_nameContext); ok {\n\t\t\tname := identifier(newTable.Any_name().GetText())\n\t\t\treturn &ast.RenameTableStmt{\n\t\t\t\tTable:   parseTableName(n),\n\t\t\t\tNewName: &name,\n\t\t\t}\n\t\t}\n\n\t\tif newCol, ok := n.GetNew_column_name().(*parser.Column_nameContext); ok {\n\t\t\tname := identifier(newCol.Any_name().GetText())\n\t\t\treturn &ast.RenameColumnStmt{\n\t\t\t\tTable: parseTableName(n),\n\t\t\t\tCol: &ast.ColumnRef{\n\t\t\t\t\tName: identifier(n.GetOld_column_name().GetText()),\n\t\t\t\t},\n\t\t\t\tNewName: &name,\n\t\t\t}\n\t\t}\n\t}\n\n\tif n.ADD_() != nil {\n\t\tif def, ok := n.Column_def().(*parser.Column_defContext); ok {\n\t\t\tstmt := &ast.AlterTableStmt{\n\t\t\t\tTable: parseTableName(n),\n\t\t\t\tCmds:  &ast.List{},\n\t\t\t}\n\t\t\tname := def.Column_name().GetText()\n\t\t\tstmt.Cmds.Items = append(stmt.Cmds.Items, &ast.AlterTableCmd{\n\t\t\t\tName:    &name,\n\t\t\t\tSubtype: ast.AT_AddColumn,\n\t\t\t\tDef: &ast.ColumnDef{\n\t\t\t\t\tColname: name,\n\t\t\t\t\tTypeName: &ast.TypeName{\n\t\t\t\t\t\tName: def.Type_name().GetText(),\n\t\t\t\t\t},\n\t\t\t\t\tIsNotNull: hasNotNullConstraint(def.AllColumn_constraint()),\n\t\t\t\t},\n\t\t\t})\n\t\t\treturn stmt\n\t\t}\n\t}\n\n\tif n.DROP_() != nil {\n\t\tstmt := &ast.AlterTableStmt{\n\t\t\tTable: parseTableName(n),\n\t\t\tCmds:  &ast.List{},\n\t\t}\n\t\tname := n.Column_name(0).GetText()\n\t\tstmt.Cmds.Items = append(stmt.Cmds.Items, &ast.AlterTableCmd{\n\t\t\tName:    &name,\n\t\t\tSubtype: ast.AT_DropColumn,\n\t\t})\n\t\treturn stmt\n\t}\n\n\treturn todo(\"convertAlter_table_stmtContext\", n)\n}\n\nfunc (c *cc) convertAttach_stmtContext(n *parser.Attach_stmtContext) ast.Node {\n\tname := n.Schema_name().GetText()\n\treturn &ast.CreateSchemaStmt{\n\t\tName: &name,\n\t}\n}\n\nfunc (c *cc) convertCreate_table_stmtContext(n *parser.Create_table_stmtContext) ast.Node {\n\tstmt := &ast.CreateTableStmt{\n\t\tName:        parseTableName(n),\n\t\tIfNotExists: n.EXISTS_() != nil,\n\t}\n\tfor _, idef := range n.AllColumn_def() {\n\t\tif def, ok := idef.(*parser.Column_defContext); ok {\n\t\t\ttypeName := \"any\"\n\t\t\tif def.Type_name() != nil {\n\t\t\t\ttypeName = def.Type_name().GetText()\n\t\t\t}\n\t\t\tstmt.Cols = append(stmt.Cols, &ast.ColumnDef{\n\t\t\t\tColname:   identifier(def.Column_name().GetText()),\n\t\t\t\tIsNotNull: hasNotNullConstraint(def.AllColumn_constraint()),\n\t\t\t\tTypeName:  &ast.TypeName{Name: typeName},\n\t\t\t})\n\t\t}\n\t}\n\treturn stmt\n}\n\nfunc (c *cc) convertCreate_virtual_table_stmtContext(n *parser.Create_virtual_table_stmtContext) ast.Node {\n\tswitch moduleName := n.Module_name().GetText(); moduleName {\n\tcase \"fts5\":\n\t\t// https://www.sqlite.org/fts5.html\n\t\treturn c.convertCreate_virtual_table_fts5(n)\n\tdefault:\n\t\treturn todo(\n\t\t\tfmt.Sprintf(\"create_virtual_table. unsupported module name: %q\", moduleName),\n\t\t\tn,\n\t\t)\n\t}\n}\n\nfunc (c *cc) convertCreate_virtual_table_fts5(n *parser.Create_virtual_table_stmtContext) ast.Node {\n\tstmt := &ast.CreateTableStmt{\n\t\tName:        parseTableName(n),\n\t\tIfNotExists: n.EXISTS_() != nil,\n\t}\n\n\tfor _, arg := range n.AllModule_argument() {\n\t\tvar columnName string\n\n\t\t// For example: CREATE VIRTUAL TABLE tbl_ft USING fts5(b, c UNINDEXED)\n\t\t//   * the 'b' column is parsed like Expr_qualified_column_nameContext\n\t\t//   * the 'c' column is parsed like Column_defContext\n\t\tif columnExpr, ok := arg.Expr().(*parser.Expr_qualified_column_nameContext); ok {\n\t\t\tcolumnName = columnExpr.Column_name().GetText()\n\t\t} else if columnDef, ok := arg.Column_def().(*parser.Column_defContext); ok {\n\t\t\tcolumnName = columnDef.Column_name().GetText()\n\t\t}\n\n\t\tif columnName != \"\" {\n\t\t\tstmt.Cols = append(stmt.Cols, &ast.ColumnDef{\n\t\t\t\tColname: identifier(columnName),\n\t\t\t\t// you can not specify any column constraints in fts5, so we pass them manually\n\t\t\t\tIsNotNull: true,\n\t\t\t\tTypeName:  &ast.TypeName{Name: \"text\"},\n\t\t\t})\n\t\t}\n\t}\n\n\treturn stmt\n}\n\nfunc (c *cc) convertCreate_view_stmtContext(n *parser.Create_view_stmtContext) ast.Node {\n\tviewName := n.View_name().GetText()\n\trelation := &ast.RangeVar{\n\t\tRelname: &viewName,\n\t}\n\n\tif n.Schema_name() != nil {\n\t\tschemaName := n.Schema_name().GetText()\n\t\trelation.Schemaname = &schemaName\n\t}\n\n\treturn &ast.ViewStmt{\n\t\tView:            relation,\n\t\tAliases:         &ast.List{},\n\t\tQuery:           c.convert(n.Select_stmt()),\n\t\tReplace:         false,\n\t\tOptions:         &ast.List{},\n\t\tWithCheckOption: ast.ViewCheckOption(0),\n\t}\n}\n\ntype Delete_stmt interface {\n\tnode\n\n\tQualified_table_name() parser.IQualified_table_nameContext\n\tWHERE_() antlr.TerminalNode\n\tExpr() parser.IExprContext\n}\n\nfunc (c *cc) convertDelete_stmtContext(n Delete_stmt) ast.Node {\n\tif qualifiedName, ok := n.Qualified_table_name().(*parser.Qualified_table_nameContext); ok {\n\n\t\ttableName := identifier(qualifiedName.Table_name().GetText())\n\t\trelation := &ast.RangeVar{\n\t\t\tRelname: &tableName,\n\t\t}\n\n\t\tif qualifiedName.Schema_name() != nil {\n\t\t\tschemaName := qualifiedName.Schema_name().GetText()\n\t\t\trelation.Schemaname = &schemaName\n\t\t}\n\n\t\tif qualifiedName.Alias() != nil {\n\t\t\talias := qualifiedName.Alias().GetText()\n\t\t\trelation.Alias = &ast.Alias{Aliasname: &alias}\n\t\t}\n\n\t\trelations := &ast.List{}\n\n\t\trelations.Items = append(relations.Items, relation)\n\n\t\tdelete := &ast.DeleteStmt{\n\t\t\tRelations:  relations,\n\t\t\tWithClause: nil,\n\t\t}\n\n\t\tif n.WHERE_() != nil && n.Expr() != nil {\n\t\t\tdelete.WhereClause = c.convert(n.Expr())\n\t\t}\n\n\t\tif n, ok := n.(interface {\n\t\t\tReturning_clause() parser.IReturning_clauseContext\n\t\t}); ok {\n\t\t\tdelete.ReturningList = c.convertReturning_caluseContext(n.Returning_clause())\n\t\t} else {\n\t\t\tdelete.ReturningList = c.convertReturning_caluseContext(nil)\n\t\t}\n\t\tif n, ok := n.(interface {\n\t\t\tLimit_stmt() parser.ILimit_stmtContext\n\t\t}); ok {\n\t\t\tlimitCount, _ := c.convertLimit_stmtContext(n.Limit_stmt())\n\t\t\tdelete.LimitCount = limitCount\n\t\t}\n\n\t\treturn delete\n\t}\n\n\treturn todo(\"convertDelete_stmtContext\", n)\n}\n\nfunc (c *cc) convertDrop_stmtContext(n *parser.Drop_stmtContext) ast.Node {\n\tif n.TABLE_() != nil || n.VIEW_() != nil {\n\t\tname := ast.TableName{\n\t\t\tName: identifier(n.Any_name().GetText()),\n\t\t}\n\t\tif n.Schema_name() != nil {\n\t\t\tname.Schema = n.Schema_name().GetText()\n\t\t}\n\n\t\treturn &ast.DropTableStmt{\n\t\t\tIfExists: n.EXISTS_() != nil,\n\t\t\tTables:   []*ast.TableName{&name},\n\t\t}\n\t}\n\treturn todo(\"convertDrop_stmtContext\", n)\n}\n\nfunc (c *cc) convertFuncContext(n *parser.Expr_functionContext) ast.Node {\n\tif name, ok := n.Qualified_function_name().(*parser.Qualified_function_nameContext); ok {\n\t\tfuncName := strings.ToLower(name.Function_name().GetText())\n\n\t\tschema := \"\"\n\t\tif name.Schema_name() != nil {\n\t\t\tschema = name.Schema_name().GetText()\n\t\t}\n\n\t\tvar argNodes []ast.Node\n\t\tfor _, exp := range n.AllExpr() {\n\t\t\targNodes = append(argNodes, c.convert(exp))\n\t\t}\n\t\targs := &ast.List{Items: argNodes}\n\n\t\tif funcName == \"coalesce\" {\n\t\t\treturn &ast.CoalesceExpr{\n\t\t\t\tArgs:     args,\n\t\t\t\tLocation: name.GetStart().GetStart(),\n\t\t\t}\n\t\t} else {\n\t\t\treturn &ast.FuncCall{\n\t\t\t\tFunc: &ast.FuncName{\n\t\t\t\t\tSchema: schema,\n\t\t\t\t\tName:   funcName,\n\t\t\t\t},\n\t\t\t\tFuncname: &ast.List{\n\t\t\t\t\tItems: []ast.Node{\n\t\t\t\t\t\tNewIdentifier(funcName),\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t\tAggStar:     n.STAR() != nil,\n\t\t\t\tArgs:        args,\n\t\t\t\tAggOrder:    &ast.List{},\n\t\t\t\tAggDistinct: n.DISTINCT_() != nil,\n\t\t\t\tLocation:    name.GetStart().GetStart(),\n\t\t\t}\n\t\t}\n\t}\n\n\treturn todo(\"convertFuncContext\", n)\n}\n\nfunc (c *cc) convertExprContext(n *parser.ExprContext) ast.Node {\n\treturn &ast.Expr{}\n}\n\nfunc (c *cc) convertColumnNameExpr(n *parser.Expr_qualified_column_nameContext) *ast.ColumnRef {\n\tvar items []ast.Node\n\tif schema, ok := n.Schema_name().(*parser.Schema_nameContext); ok {\n\t\tschemaText := schema.GetText()\n\t\tif schemaText != \"\" {\n\t\t\titems = append(items, NewIdentifier(schemaText))\n\t\t}\n\t}\n\tif table, ok := n.Table_name().(*parser.Table_nameContext); ok {\n\t\ttableName := table.GetText()\n\t\tif tableName != \"\" {\n\t\t\titems = append(items, NewIdentifier(tableName))\n\t\t}\n\t}\n\titems = append(items, NewIdentifier(n.Column_name().GetText()))\n\treturn &ast.ColumnRef{\n\t\tFields: &ast.List{\n\t\t\tItems: items,\n\t\t},\n\t\tLocation: n.GetStart().GetStart(),\n\t}\n}\n\nfunc (c *cc) convertComparison(n *parser.Expr_comparisonContext) ast.Node {\n\tlexpr := c.convert(n.Expr(0))\n\n\tif n.IN_() != nil {\n\t\trexprs := []ast.Node{}\n\t\tfor _, expr := range n.AllExpr()[1:] {\n\t\t\te := c.convert(expr)\n\t\t\tswitch t := e.(type) {\n\t\t\tcase *ast.List:\n\t\t\t\trexprs = append(rexprs, t.Items...)\n\t\t\tdefault:\n\t\t\t\trexprs = append(rexprs, t)\n\t\t\t}\n\t\t}\n\n\t\treturn &ast.In{\n\t\t\tExpr:     lexpr,\n\t\t\tList:     rexprs,\n\t\t\tNot:      false,\n\t\t\tSel:      nil,\n\t\t\tLocation: n.GetStart().GetStart(),\n\t\t}\n\t}\n\n\treturn &ast.A_Expr{\n\t\tName: &ast.List{\n\t\t\tItems: []ast.Node{\n\t\t\t\t&ast.String{Str: \"=\"}, // TODO: add actual comparison\n\t\t\t},\n\t\t},\n\t\tLexpr: lexpr,\n\t\tRexpr: c.convert(n.Expr(1)),\n\t}\n}\n\nfunc (c *cc) convertMultiSelect_stmtContext(n *parser.Select_stmtContext) ast.Node {\n\tvar ctes ast.List\n\tif ct := n.Common_table_stmt(); ct != nil {\n\t\trecursive := ct.RECURSIVE_() != nil\n\t\tfor _, cte := range ct.AllCommon_table_expression() {\n\t\t\ttableName := identifier(cte.Table_name().GetText())\n\t\t\tvar cteCols ast.List\n\t\t\tfor _, col := range cte.AllColumn_name() {\n\t\t\t\tcteCols.Items = append(cteCols.Items, NewIdentifier(col.GetText()))\n\t\t\t}\n\t\t\tctes.Items = append(ctes.Items, &ast.CommonTableExpr{\n\t\t\t\tCtename:      &tableName,\n\t\t\t\tCtequery:     c.convert(cte.Select_stmt()),\n\t\t\t\tLocation:     cte.GetStart().GetStart(),\n\t\t\t\tCterecursive: recursive,\n\t\t\t\tCtecolnames:  &cteCols,\n\t\t\t})\n\t\t}\n\t}\n\n\tvar selectStmt *ast.SelectStmt\n\tfor s, icore := range n.AllSelect_core() {\n\t\tcore, ok := icore.(*parser.Select_coreContext)\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\t\tcols := c.getCols(core)\n\t\ttables := c.getTables(core)\n\n\t\tvar where ast.Node\n\t\ti := 0\n\t\tif core.WHERE_() != nil {\n\t\t\twhere = c.convert(core.Expr(i))\n\t\t\ti++\n\t\t}\n\n\t\tvar groups ast.List\n\t\tvar having ast.Node\n\t\tif core.GROUP_() != nil {\n\t\t\tl := len(core.AllExpr()) - i\n\t\t\tif core.HAVING_() != nil {\n\t\t\t\thaving = c.convert(core.Expr(l))\n\t\t\t\tl--\n\t\t\t}\n\n\t\t\tfor i < l {\n\t\t\t\tgroups.Items = append(groups.Items, c.convert(core.Expr(i)))\n\t\t\t\ti++\n\t\t\t}\n\t\t}\n\t\tvar window ast.List\n\t\tif core.WINDOW_() != nil {\n\t\t\tfor w, windowNameCtx := range core.AllWindow_name() {\n\t\t\t\twindowName := identifier(windowNameCtx.GetText())\n\t\t\t\twindowDef := core.Window_defn(w)\n\n\t\t\t\t_ = windowDef.Base_window_name()\n\t\t\t\tvar partitionBy ast.List\n\t\t\t\tif windowDef.PARTITION_() != nil {\n\t\t\t\t\tfor _, e := range windowDef.AllExpr() {\n\t\t\t\t\t\tpartitionBy.Items = append(partitionBy.Items, c.convert(e))\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tvar orderBy ast.List\n\t\t\t\tif windowDef.ORDER_() != nil {\n\t\t\t\t\tfor _, e := range windowDef.AllOrdering_term() {\n\t\t\t\t\t\toterm := e.(*parser.Ordering_termContext)\n\t\t\t\t\t\tsortByDir := ast.SortByDirDefault\n\t\t\t\t\t\tif ad := oterm.Asc_desc(); ad != nil {\n\t\t\t\t\t\t\tif ad.ASC_() != nil {\n\t\t\t\t\t\t\t\tsortByDir = ast.SortByDirAsc\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tsortByDir = ast.SortByDirDesc\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tsortByNulls := ast.SortByNullsDefault\n\t\t\t\t\t\tif oterm.NULLS_() != nil {\n\t\t\t\t\t\t\tif oterm.FIRST_() != nil {\n\t\t\t\t\t\t\t\tsortByNulls = ast.SortByNullsFirst\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tsortByNulls = ast.SortByNullsLast\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\torderBy.Items = append(orderBy.Items, &ast.SortBy{\n\t\t\t\t\t\t\tNode:        c.convert(oterm.Expr()),\n\t\t\t\t\t\t\tSortbyDir:   sortByDir,\n\t\t\t\t\t\t\tSortbyNulls: sortByNulls,\n\t\t\t\t\t\t\tUseOp:       &ast.List{},\n\t\t\t\t\t\t})\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\twindow.Items = append(window.Items, &ast.WindowDef{\n\t\t\t\t\tName:            &windowName,\n\t\t\t\t\tPartitionClause: &partitionBy,\n\t\t\t\t\tOrderClause:     &orderBy,\n\t\t\t\t\tFrameOptions:    0, // todo\n\t\t\t\t\tStartOffset:     &ast.TODO{},\n\t\t\t\t\tEndOffset:       &ast.TODO{},\n\t\t\t\t\tLocation:        windowNameCtx.GetStart().GetStart(),\n\t\t\t\t})\n\t\t\t}\n\t\t}\n\t\tsel := &ast.SelectStmt{\n\t\t\tFromClause:   &ast.List{Items: tables},\n\t\t\tTargetList:   &ast.List{Items: cols},\n\t\t\tWhereClause:  where,\n\t\t\tGroupClause:  &groups,\n\t\t\tHavingClause: having,\n\t\t\tWindowClause: &window,\n\t\t\tValuesLists:  &ast.List{},\n\t\t}\n\t\tif selectStmt == nil {\n\t\t\tselectStmt = sel\n\t\t} else {\n\t\t\tco := n.Compound_operator(s - 1)\n\t\t\tso := ast.None\n\t\t\tall := false\n\t\t\tswitch {\n\t\t\tcase co.UNION_() != nil:\n\t\t\t\tso = ast.Union\n\t\t\t\tall = co.ALL_() != nil\n\t\t\tcase co.INTERSECT_() != nil:\n\t\t\t\tso = ast.Intersect\n\t\t\tcase co.EXCEPT_() != nil:\n\t\t\t\tso = ast.Except\n\t\t\t}\n\t\t\tselectStmt = &ast.SelectStmt{\n\t\t\t\tTargetList: &ast.List{},\n\t\t\t\tFromClause: &ast.List{},\n\t\t\t\tOp:         so,\n\t\t\t\tAll:        all,\n\t\t\t\tLarg:       selectStmt,\n\t\t\t\tRarg:       sel,\n\t\t\t}\n\t\t}\n\t}\n\n\tlimitCount, limitOffset := c.convertLimit_stmtContext(n.Limit_stmt())\n\tselectStmt.LimitCount = limitCount\n\tselectStmt.LimitOffset = limitOffset\n\t// Only set WithClause if there are CTEs\n\tif len(ctes.Items) > 0 {\n\t\tselectStmt.WithClause = &ast.WithClause{Ctes: &ctes}\n\t}\n\treturn selectStmt\n}\n\nfunc (c *cc) convertExprListContext(n *parser.Expr_listContext) ast.Node {\n\tlist := &ast.List{Items: []ast.Node{}}\n\tfor _, e := range n.AllExpr() {\n\t\tlist.Items = append(list.Items, c.convert(e))\n\t}\n\treturn list\n}\n\nfunc (c *cc) getTables(core *parser.Select_coreContext) []ast.Node {\n\tif core.Join_clause() != nil {\n\t\tjoin := core.Join_clause().(*parser.Join_clauseContext)\n\t\ttables := c.convertTablesOrSubquery(join.AllTable_or_subquery())\n\t\ttable := tables[0]\n\t\tfor i, t := range tables[1:] {\n\t\t\tjoinExpr := &ast.JoinExpr{\n\t\t\t\tLarg: table,\n\t\t\t\tRarg: t,\n\t\t\t}\n\t\t\tjo := join.Join_operator(i)\n\t\t\tif jo.NATURAL_() != nil {\n\t\t\t\tjoinExpr.IsNatural = true\n\t\t\t}\n\t\t\tswitch {\n\t\t\tcase jo.CROSS_() != nil || jo.INNER_() != nil:\n\t\t\t\tjoinExpr.Jointype = ast.JoinTypeInner\n\t\t\tcase jo.LEFT_() != nil:\n\t\t\t\tjoinExpr.Jointype = ast.JoinTypeLeft\n\t\t\tcase jo.RIGHT_() != nil:\n\t\t\t\tjoinExpr.Jointype = ast.JoinTypeRight\n\t\t\tcase jo.FULL_() != nil:\n\t\t\t\tjoinExpr.Jointype = ast.JoinTypeFull\n\t\t\t}\n\t\t\tjc := join.Join_constraint(i)\n\t\t\tswitch {\n\t\t\tcase jc.ON_() != nil:\n\t\t\t\tjoinExpr.Quals = c.convert(jc.Expr())\n\t\t\tcase jc.USING_() != nil:\n\t\t\t\tvar using ast.List\n\t\t\t\tfor _, cn := range jc.AllColumn_name() {\n\t\t\t\t\tusing.Items = append(using.Items, NewIdentifier(cn.GetText()))\n\t\t\t\t}\n\t\t\t\tjoinExpr.UsingClause = &using\n\t\t\t}\n\t\t\ttable = joinExpr\n\t\t}\n\t\treturn []ast.Node{table}\n\t} else {\n\t\treturn c.convertTablesOrSubquery(core.AllTable_or_subquery())\n\t}\n}\n\nfunc (c *cc) getCols(core *parser.Select_coreContext) []ast.Node {\n\tvar cols []ast.Node\n\tfor _, icol := range core.AllResult_column() {\n\t\tcol, ok := icol.(*parser.Result_columnContext)\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\t\ttarget := &ast.ResTarget{\n\t\t\tLocation: col.GetStart().GetStart(),\n\t\t}\n\t\tvar val ast.Node\n\t\tiexpr := col.Expr()\n\t\tswitch {\n\t\tcase col.STAR() != nil:\n\t\t\tval = c.convertWildCardField(col)\n\t\tcase iexpr != nil:\n\t\t\tval = c.convert(iexpr)\n\t\t}\n\n\t\tif val == nil {\n\t\t\tcontinue\n\t\t}\n\n\t\tif col.Column_alias() != nil {\n\t\t\tname := identifier(col.Column_alias().GetText())\n\t\t\ttarget.Name = &name\n\t\t}\n\n\t\ttarget.Val = val\n\t\tcols = append(cols, target)\n\t}\n\treturn cols\n}\n\nfunc (c *cc) convertWildCardField(n *parser.Result_columnContext) *ast.ColumnRef {\n\titems := []ast.Node{}\n\tif n.Table_name() != nil {\n\t\titems = append(items, NewIdentifier(n.Table_name().GetText()))\n\t}\n\titems = append(items, &ast.A_Star{})\n\n\treturn &ast.ColumnRef{\n\t\tFields: &ast.List{\n\t\t\tItems: items,\n\t\t},\n\t\tLocation: n.GetStart().GetStart(),\n\t}\n}\n\nfunc (c *cc) convertOrderby_stmtContext(n parser.IOrder_by_stmtContext) ast.Node {\n\tif orderBy, ok := n.(*parser.Order_by_stmtContext); ok {\n\t\tlist := &ast.List{Items: []ast.Node{}}\n\t\tfor _, o := range orderBy.AllOrdering_term() {\n\t\t\tterm, ok := o.(*parser.Ordering_termContext)\n\t\t\tif !ok {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tlist.Items = append(list.Items, &ast.CaseExpr{\n\t\t\t\tXpr:      c.convert(term.Expr()),\n\t\t\t\tLocation: term.Expr().GetStart().GetStart(),\n\t\t\t})\n\t\t}\n\t\treturn list\n\t}\n\treturn todo(\"convertOrderby_stmtContext\", n)\n}\n\nfunc (c *cc) convertLimit_stmtContext(n parser.ILimit_stmtContext) (ast.Node, ast.Node) {\n\tif n == nil {\n\t\treturn nil, nil\n\t}\n\n\tvar limitCount, limitOffset ast.Node\n\tif limit, ok := n.(*parser.Limit_stmtContext); ok {\n\t\tlimitCount = c.convert(limit.Expr(0))\n\t\tif limit.OFFSET_() != nil {\n\t\t\tlimitOffset = c.convert(limit.Expr(1))\n\t\t}\n\t}\n\n\treturn limitCount, limitOffset\n}\n\nfunc (c *cc) convertSql_stmtContext(n *parser.Sql_stmtContext) ast.Node {\n\tif stmt := n.Alter_table_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Analyze_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Attach_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Begin_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Commit_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Create_index_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Create_table_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Create_trigger_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Create_view_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Create_virtual_table_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Delete_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Delete_stmt_limited(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Detach_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Drop_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Insert_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Pragma_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Reindex_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Release_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Rollback_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Savepoint_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Select_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Update_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Update_stmt_limited(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\tif stmt := n.Vacuum_stmt(); stmt != nil {\n\t\treturn c.convert(stmt)\n\t}\n\treturn nil\n}\n\nfunc (c *cc) convertLiteral(n *parser.Expr_literalContext) ast.Node {\n\tif literal, ok := n.Literal_value().(*parser.Literal_valueContext); ok {\n\n\t\tif literal.NUMERIC_LITERAL() != nil {\n\t\t\ti, _ := strconv.ParseInt(literal.GetText(), 10, 64)\n\t\t\treturn &ast.A_Const{\n\t\t\t\tVal:      &ast.Integer{Ival: i},\n\t\t\t\tLocation: n.GetStart().GetStart(),\n\t\t\t}\n\t\t}\n\n\t\tif literal.STRING_LITERAL() != nil {\n\t\t\t// remove surrounding single quote\n\t\t\ttext := literal.GetText()\n\t\t\treturn &ast.A_Const{\n\t\t\t\tVal:      &ast.String{Str: text[1 : len(text)-1]},\n\t\t\t\tLocation: n.GetStart().GetStart(),\n\t\t\t}\n\t\t}\n\n\t\tif literal.TRUE_() != nil || literal.FALSE_() != nil {\n\t\t\tvar i int64\n\t\t\tif literal.TRUE_() != nil {\n\t\t\t\ti = 1\n\t\t\t}\n\n\t\t\treturn &ast.A_Const{\n\t\t\t\tVal:      &ast.Integer{Ival: i},\n\t\t\t\tLocation: n.GetStart().GetStart(),\n\t\t\t}\n\t\t}\n\n\t\tif literal.NULL_() != nil {\n\t\t\treturn &ast.A_Const{\n\t\t\t\tVal:      &ast.Null{},\n\t\t\t\tLocation: n.GetStart().GetStart(),\n\t\t\t}\n\t\t}\n\t}\n\treturn todo(\"convertLiteral\", n)\n}\n\nfunc (c *cc) convertBinaryNode(n *parser.Expr_binaryContext) ast.Node {\n\treturn &ast.A_Expr{\n\t\tName: &ast.List{\n\t\t\tItems: []ast.Node{\n\t\t\t\t&ast.String{Str: n.GetChild(1).(antlr.TerminalNode).GetText()},\n\t\t\t},\n\t\t},\n\t\tLexpr: c.convert(n.Expr(0)),\n\t\tRexpr: c.convert(n.Expr(1)),\n\t}\n}\n\nfunc (c *cc) convertBoolNode(n *parser.Expr_boolContext) ast.Node {\n\tvar op ast.BoolExprType\n\tif n.AND_() != nil {\n\t\top = ast.BoolExprTypeAnd\n\t} else if n.OR_() != nil {\n\t\top = ast.BoolExprTypeOr\n\t}\n\treturn &ast.BoolExpr{\n\t\tBoolop: op,\n\t\tArgs: &ast.List{\n\t\t\tItems: []ast.Node{\n\t\t\t\tc.convert(n.Expr(0)),\n\t\t\t\tc.convert(n.Expr(1)),\n\t\t\t},\n\t\t},\n\t}\n}\n\nfunc (c *cc) convertUnaryExpr(n *parser.Expr_unaryContext) ast.Node {\n\top := n.Unary_operator()\n\tif op == nil {\n\t\treturn c.convert(n.Expr())\n\t}\n\n\t// Get the inner expression\n\texpr := c.convert(n.Expr())\n\n\t// Check the operator type\n\tif opCtx, ok := op.(*parser.Unary_operatorContext); ok {\n\t\tif opCtx.NOT_() != nil {\n\t\t\t// NOT expression\n\t\t\treturn &ast.BoolExpr{\n\t\t\t\tBoolop: ast.BoolExprTypeNot,\n\t\t\t\tArgs: &ast.List{\n\t\t\t\t\tItems: []ast.Node{expr},\n\t\t\t\t},\n\t\t\t}\n\t\t}\n\t\tif opCtx.MINUS() != nil {\n\t\t\t// Negative number: -expr\n\t\t\treturn &ast.A_Expr{\n\t\t\t\tName: &ast.List{Items: []ast.Node{&ast.String{Str: \"-\"}}},\n\t\t\t\tRexpr: expr,\n\t\t\t}\n\t\t}\n\t\tif opCtx.PLUS() != nil {\n\t\t\t// Positive number: +expr (just return expr)\n\t\t\treturn expr\n\t\t}\n\t\tif opCtx.TILDE() != nil {\n\t\t\t// Bitwise NOT: ~expr\n\t\t\treturn &ast.A_Expr{\n\t\t\t\tName: &ast.List{Items: []ast.Node{&ast.String{Str: \"~\"}}},\n\t\t\t\tRexpr: expr,\n\t\t\t}\n\t\t}\n\t}\n\n\treturn expr\n}\n\nfunc (c *cc) convertParam(n *parser.Expr_bindContext) ast.Node {\n\tif n.NUMBERED_BIND_PARAMETER() != nil {\n\t\t// Parameter numbers start at one\n\t\tc.paramCount += 1\n\n\t\ttext := n.GetText()\n\t\tnumber := c.paramCount\n\t\tif len(text) > 1 {\n\t\t\tnumber, _ = strconv.Atoi(text[1:])\n\t\t}\n\t\treturn &ast.ParamRef{\n\t\t\tNumber:   number,\n\t\t\tLocation: n.GetStart().GetStart(),\n\t\t\tDollar:   len(text) > 1,\n\t\t}\n\t}\n\n\tif n.NAMED_BIND_PARAMETER() != nil {\n\t\treturn &ast.A_Expr{\n\t\t\tName:     &ast.List{Items: []ast.Node{&ast.String{Str: \"@\"}}},\n\t\t\tRexpr:    &ast.String{Str: n.GetText()[1:]},\n\t\t\tLocation: n.GetStart().GetStart(),\n\t\t}\n\t}\n\n\treturn todo(\"convertParam\", n)\n}\n\nfunc (c *cc) convertInSelectNode(n *parser.Expr_in_selectContext) ast.Node {\n\t// Check if this is EXISTS or NOT EXISTS\n\tif n.EXISTS_() != nil {\n\t\tlinkType := ast.EXISTS_SUBLINK\n\t\tsublink := &ast.SubLink{\n\t\t\tSubLinkType: linkType,\n\t\t\tSubselect:   c.convert(n.Select_stmt()),\n\t\t}\n\t\tif n.NOT_() != nil {\n\t\t\t// NOT EXISTS is represented as a BoolExpr NOT wrapping the EXISTS\n\t\t\treturn &ast.BoolExpr{\n\t\t\t\tBoolop: ast.BoolExprTypeNot,\n\t\t\t\tArgs: &ast.List{\n\t\t\t\t\tItems: []ast.Node{sublink},\n\t\t\t\t},\n\t\t\t}\n\t\t}\n\t\treturn sublink\n\t}\n\n\t// Check if this is an IN/NOT IN expression: expr IN (SELECT ...)\n\tif n.IN_() != nil && len(n.AllExpr()) > 0 {\n\t\tlinkType := ast.ANY_SUBLINK\n\t\tsublink := &ast.SubLink{\n\t\t\tSubLinkType: linkType,\n\t\t\tTestexpr:    c.convert(n.Expr(0)),\n\t\t\tSubselect:   c.convert(n.Select_stmt()),\n\t\t}\n\t\tif n.NOT_() != nil {\n\t\t\treturn &ast.A_Expr{\n\t\t\t\tKind:  ast.A_Expr_Kind_OP,\n\t\t\t\tName:  &ast.List{Items: []ast.Node{&ast.String{Str: \"NOT IN\"}}},\n\t\t\t\tLexpr: c.convert(n.Expr(0)),\n\t\t\t\tRexpr: &ast.SubLink{\n\t\t\t\t\tSubLinkType: ast.EXPR_SUBLINK,\n\t\t\t\t\tSubselect:   c.convert(n.Select_stmt()),\n\t\t\t\t},\n\t\t\t}\n\t\t}\n\t\treturn sublink\n\t}\n\n\t// Plain subquery in parentheses (SELECT ...)\n\treturn &ast.SubLink{\n\t\tSubLinkType: ast.EXPR_SUBLINK,\n\t\tSubselect:   c.convert(n.Select_stmt()),\n\t}\n}\n\nfunc (c *cc) convertReturning_caluseContext(n parser.IReturning_clauseContext) *ast.List {\n\tlist := &ast.List{Items: []ast.Node{}}\n\tif n == nil {\n\t\treturn list\n\t}\n\n\tr, ok := n.(*parser.Returning_clauseContext)\n\tif !ok {\n\t\treturn list\n\t}\n\n\tfor _, exp := range r.AllExpr() {\n\t\tlist.Items = append(list.Items, &ast.ResTarget{\n\t\t\tIndirection: &ast.List{},\n\t\t\tVal:         c.convert(exp),\n\t\t})\n\t}\n\n\tfor _, star := range r.AllSTAR() {\n\t\tlist.Items = append(list.Items, &ast.ResTarget{\n\t\t\tIndirection: &ast.List{},\n\t\t\tVal: &ast.ColumnRef{\n\t\t\t\tFields: &ast.List{\n\t\t\t\t\tItems: []ast.Node{&ast.A_Star{}},\n\t\t\t\t},\n\t\t\t\tLocation: star.GetSymbol().GetStart(),\n\t\t\t},\n\t\t\tLocation: star.GetSymbol().GetStart(),\n\t\t})\n\t}\n\n\treturn list\n}\n\nfunc (c *cc) convertInsert_stmtContext(n *parser.Insert_stmtContext) ast.Node {\n\ttableName := identifier(n.Table_name().GetText())\n\trel := &ast.RangeVar{\n\t\tRelname: &tableName,\n\t}\n\tif n.Schema_name() != nil {\n\t\tschemaName := n.Schema_name().GetText()\n\t\trel.Schemaname = &schemaName\n\t}\n\tif n.Table_alias() != nil {\n\t\ttableAlias := identifier(n.Table_alias().GetText())\n\t\trel.Alias = &ast.Alias{\n\t\t\tAliasname: &tableAlias,\n\t\t}\n\t}\n\n\tinsert := &ast.InsertStmt{\n\t\tRelation:      rel,\n\t\tCols:          c.convertColumnNames(n.AllColumn_name()),\n\t\tReturningList: c.convertReturning_caluseContext(n.Returning_clause()),\n\t}\n\n\t// Check if this is a DEFAULT VALUES insert\n\thasDefaultValues := false\n\tfor _, child := range n.GetChildren() {\n\t\tif term, ok := child.(antlr.TerminalNode); ok {\n\t\t\tif term.GetSymbol().GetTokenType() == parser.SQLiteParserDEFAULT_ {\n\t\t\t\thasDefaultValues = true\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\n\tif hasDefaultValues {\n\t\t// For DEFAULT VALUES, set the flag instead of creating an empty values list\n\t\tinsert.DefaultValues = true\n\t} else if n.Select_stmt() != nil {\n\t\tif ss, ok := c.convert(n.Select_stmt()).(*ast.SelectStmt); ok {\n\t\t\tss.ValuesLists = &ast.List{}\n\t\t\tinsert.SelectStmt = ss\n\t\t}\n\t} else {\n\t\tvar valuesLists ast.List\n\t\tvar values *ast.List\n\t\tfor _, cn := range n.GetChildren() {\n\t\t\tswitch cn := cn.(type) {\n\t\t\tcase antlr.TerminalNode:\n\t\t\t\tswitch cn.GetSymbol().GetTokenType() {\n\t\t\t\tcase parser.SQLiteParserVALUES_:\n\t\t\t\t\tvalues = &ast.List{}\n\t\t\t\tcase parser.SQLiteParserOPEN_PAR:\n\t\t\t\t\tif values != nil {\n\t\t\t\t\t\tvalues = &ast.List{}\n\t\t\t\t\t}\n\t\t\t\tcase parser.SQLiteParserCOMMA:\n\t\t\t\tcase parser.SQLiteParserCLOSE_PAR:\n\t\t\t\t\tif values != nil {\n\t\t\t\t\t\tvaluesLists.Items = append(valuesLists.Items, values)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\tcase parser.IExprContext:\n\t\t\t\tif values != nil {\n\t\t\t\t\tvalues.Items = append(values.Items, c.convert(cn))\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tinsert.SelectStmt = &ast.SelectStmt{\n\t\t\tFromClause:  &ast.List{},\n\t\t\tTargetList:  &ast.List{},\n\t\t\tValuesLists: &valuesLists,\n\t\t}\n\t}\n\n\treturn insert\n}\n\nfunc (c *cc) convertColumnNames(cols []parser.IColumn_nameContext) *ast.List {\n\tlist := &ast.List{Items: []ast.Node{}}\n\tfor _, c := range cols {\n\t\tname := identifier(c.GetText())\n\t\tlist.Items = append(list.Items, &ast.ResTarget{\n\t\t\tName: &name,\n\t\t})\n\t}\n\treturn list\n}\n\nfunc (c *cc) convertTablesOrSubquery(n []parser.ITable_or_subqueryContext) []ast.Node {\n\tvar tables []ast.Node\n\tfor _, ifrom := range n {\n\t\tfrom, ok := ifrom.(*parser.Table_or_subqueryContext)\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\n\t\tif from.Table_name() != nil {\n\t\t\trel := identifier(from.Table_name().GetText())\n\t\t\trv := &ast.RangeVar{\n\t\t\t\tRelname:  &rel,\n\t\t\t\tLocation: from.GetStart().GetStart(),\n\t\t\t}\n\n\t\t\tif from.Schema_name() != nil {\n\t\t\t\tschema := from.Schema_name().GetText()\n\t\t\t\trv.Schemaname = &schema\n\t\t\t}\n\t\t\tif from.Table_alias() != nil {\n\t\t\t\talias := identifier(from.Table_alias().GetText())\n\t\t\t\trv.Alias = &ast.Alias{Aliasname: &alias}\n\t\t\t}\n\t\t\tif from.Table_alias_fallback() != nil {\n\t\t\t\talias := identifier(from.Table_alias_fallback().GetText())\n\t\t\t\trv.Alias = &ast.Alias{Aliasname: &alias}\n\t\t\t}\n\n\t\t\ttables = append(tables, rv)\n\t\t} else if from.Table_function_name() != nil {\n\t\t\trel := from.Table_function_name().GetText()\n\t\t\t// Convert function arguments\n\t\t\tvar args []ast.Node\n\t\t\tfor _, expr := range from.AllExpr() {\n\t\t\t\targs = append(args, c.convert(expr))\n\t\t\t}\n\t\t\trf := &ast.RangeFunction{\n\t\t\t\tFunctions: &ast.List{\n\t\t\t\t\tItems: []ast.Node{\n\t\t\t\t\t\t&ast.FuncCall{\n\t\t\t\t\t\t\tFunc: &ast.FuncName{\n\t\t\t\t\t\t\t\tName: rel,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tFuncname: &ast.List{\n\t\t\t\t\t\t\t\tItems: []ast.Node{\n\t\t\t\t\t\t\t\t\tNewIdentifier(rel),\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tArgs: &ast.List{\n\t\t\t\t\t\t\t\tItems: args,\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tLocation: from.GetStart().GetStart(),\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}\n\n\t\t\tif from.Table_alias() != nil {\n\t\t\t\talias := identifier(from.Table_alias().GetText())\n\t\t\t\trf.Alias = &ast.Alias{Aliasname: &alias}\n\t\t\t}\n\n\t\t\ttables = append(tables, rf)\n\t\t} else if from.Select_stmt() != nil {\n\t\t\trs := &ast.RangeSubselect{\n\t\t\t\tSubquery: c.convert(from.Select_stmt()),\n\t\t\t}\n\n\t\t\tif from.Table_alias() != nil {\n\t\t\t\talias := identifier(from.Table_alias().GetText())\n\t\t\t\trs.Alias = &ast.Alias{Aliasname: &alias}\n\t\t\t}\n\n\t\t\ttables = append(tables, rs)\n\t\t}\n\t}\n\n\treturn tables\n}\n\ntype Update_stmt interface {\n\tQualified_table_name() parser.IQualified_table_nameContext\n\tGetStart() antlr.Token\n\tAllColumn_name() []parser.IColumn_nameContext\n\tWHERE_() antlr.TerminalNode\n\tExpr(i int) parser.IExprContext\n\tAllExpr() []parser.IExprContext\n}\n\nfunc (c *cc) convertUpdate_stmtContext(n Update_stmt) ast.Node {\n\tif n == nil {\n\t\treturn nil\n\t}\n\n\trelations := &ast.List{}\n\ttableName := identifier(n.Qualified_table_name().GetText())\n\trel := ast.RangeVar{\n\t\tRelname:  &tableName,\n\t\tLocation: n.GetStart().GetStart(),\n\t}\n\trelations.Items = append(relations.Items, &rel)\n\n\tlist := &ast.List{}\n\tfor i, col := range n.AllColumn_name() {\n\t\tcolName := identifier(col.GetText())\n\t\ttarget := &ast.ResTarget{\n\t\t\tName: &colName,\n\t\t\tVal:  c.convert(n.Expr(i)),\n\t\t}\n\t\tlist.Items = append(list.Items, target)\n\t}\n\n\tvar where ast.Node = nil\n\tif n.WHERE_() != nil {\n\t\twhere = c.convert(n.Expr(len(n.AllExpr()) - 1))\n\t}\n\n\tstmt := &ast.UpdateStmt{\n\t\tRelations:   relations,\n\t\tTargetList:  list,\n\t\tWhereClause: where,\n\t\tFromClause:  &ast.List{},\n\t\tWithClause:  nil, // TODO: support with clause\n\t}\n\tif n, ok := n.(interface {\n\t\tReturning_clause() parser.IReturning_clauseContext\n\t}); ok {\n\t\tstmt.ReturningList = c.convertReturning_caluseContext(n.Returning_clause())\n\t} else {\n\t\tstmt.ReturningList = c.convertReturning_caluseContext(nil)\n\t}\n\tif n, ok := n.(interface {\n\t\tLimit_stmt() parser.ILimit_stmtContext\n\t}); ok {\n\t\tlimitCount, _ := c.convertLimit_stmtContext(n.Limit_stmt())\n\t\tstmt.LimitCount = limitCount\n\t}\n\treturn stmt\n}\n\nfunc (c *cc) convertBetweenExpr(n *parser.Expr_betweenContext) ast.Node {\n\treturn &ast.BetweenExpr{\n\t\tExpr:     c.convert(n.Expr(0)),\n\t\tLeft:     c.convert(n.Expr(1)),\n\t\tRight:    c.convert(n.Expr(2)),\n\t\tLocation: n.GetStart().GetStart(),\n\t\tNot:      n.NOT_() != nil,\n\t}\n}\n\nfunc (c *cc) convertCastExpr(n *parser.Expr_castContext) ast.Node {\n\tname := n.Type_name().GetText()\n\treturn &ast.TypeCast{\n\t\tArg: c.convert(n.Expr()),\n\t\tTypeName: &ast.TypeName{\n\t\t\tName: name,\n\t\t\tNames: &ast.List{Items: []ast.Node{\n\t\t\t\tNewIdentifier(name),\n\t\t\t}},\n\t\t\tArrayBounds: &ast.List{},\n\t\t},\n\t\tLocation: n.GetStart().GetStart(),\n\t}\n}\n\nfunc (c *cc) convertCollateExpr(n *parser.Expr_collateContext) ast.Node {\n\treturn &ast.CollateExpr{\n\t\tXpr:      c.convert(n.Expr()),\n\t\tArg:      NewIdentifier(n.Collation_name().GetText()),\n\t\tLocation: n.GetStart().GetStart(),\n\t}\n}\n\nfunc (c *cc) convertCase(n *parser.Expr_caseContext) ast.Node {\n\te := &ast.CaseExpr{\n\t\tArgs: &ast.List{},\n\t}\n\tes := n.AllExpr()\n\tif n.ELSE_() != nil {\n\t\te.Defresult = c.convert(es[len(es)-1])\n\t\tes = es[:len(es)-1]\n\t}\n\tif len(es)%2 == 1 {\n\t\te.Arg = c.convert(es[0])\n\t\tes = es[1:]\n\t}\n\tfor i := 0; i < len(es); i += 2 {\n\t\te.Args.Items = append(e.Args.Items, &ast.CaseWhen{\n\t\t\tExpr:   c.convert(es[i+0]),\n\t\t\tResult: c.convert(es[i+1]),\n\t\t})\n\t}\n\treturn e\n}\n\nfunc (c *cc) convert(node node) ast.Node {\n\tswitch n := node.(type) {\n\n\tcase *parser.Alter_table_stmtContext:\n\t\treturn c.convertAlter_table_stmtContext(n)\n\n\tcase *parser.Attach_stmtContext:\n\t\treturn c.convertAttach_stmtContext(n)\n\n\tcase *parser.Create_table_stmtContext:\n\t\treturn c.convertCreate_table_stmtContext(n)\n\n\tcase *parser.Create_virtual_table_stmtContext:\n\t\treturn c.convertCreate_virtual_table_stmtContext(n)\n\n\tcase *parser.Create_view_stmtContext:\n\t\treturn c.convertCreate_view_stmtContext(n)\n\n\tcase *parser.Drop_stmtContext:\n\t\treturn c.convertDrop_stmtContext(n)\n\n\tcase *parser.Delete_stmtContext:\n\t\treturn c.convertDelete_stmtContext(n)\n\n\tcase *parser.Delete_stmt_limitedContext:\n\t\treturn c.convertDelete_stmtContext(n)\n\n\tcase *parser.ExprContext:\n\t\treturn c.convertExprContext(n)\n\n\tcase *parser.Expr_functionContext:\n\t\treturn c.convertFuncContext(n)\n\n\tcase *parser.Expr_qualified_column_nameContext:\n\t\treturn c.convertColumnNameExpr(n)\n\n\tcase *parser.Expr_comparisonContext:\n\t\treturn c.convertComparison(n)\n\n\tcase *parser.Expr_bindContext:\n\t\treturn c.convertParam(n)\n\n\tcase *parser.Expr_literalContext:\n\t\treturn c.convertLiteral(n)\n\n\tcase *parser.Expr_boolContext:\n\t\treturn c.convertBoolNode(n)\n\n\tcase *parser.Expr_listContext:\n\t\treturn c.convertExprListContext(n)\n\n\tcase *parser.Expr_binaryContext:\n\t\treturn c.convertBinaryNode(n)\n\n\tcase *parser.Expr_unaryContext:\n\t\treturn c.convertUnaryExpr(n)\n\n\tcase *parser.Expr_in_selectContext:\n\t\treturn c.convertInSelectNode(n)\n\n\tcase *parser.Expr_betweenContext:\n\t\treturn c.convertBetweenExpr(n)\n\n\tcase *parser.Expr_collateContext:\n\t\treturn c.convertCollateExpr(n)\n\n\tcase *parser.Factored_select_stmtContext:\n\t\t// TODO: need to handle this\n\t\treturn todo(\"convert(case=parser.Factored_select_stmtContext)\", n)\n\n\tcase *parser.Insert_stmtContext:\n\t\treturn c.convertInsert_stmtContext(n)\n\n\tcase *parser.Order_by_stmtContext:\n\t\treturn c.convertOrderby_stmtContext(n)\n\n\tcase *parser.Select_stmtContext:\n\t\treturn c.convertMultiSelect_stmtContext(n)\n\n\tcase *parser.Sql_stmtContext:\n\t\treturn c.convertSql_stmtContext(n)\n\n\tcase *parser.Update_stmtContext:\n\t\treturn c.convertUpdate_stmtContext(n)\n\n\tcase *parser.Update_stmt_limitedContext:\n\t\treturn c.convertUpdate_stmtContext(n)\n\n\tcase *parser.Expr_castContext:\n\t\treturn c.convertCastExpr(n)\n\n\tcase *parser.Expr_caseContext:\n\t\treturn c.convertCase(n)\n\n\tdefault:\n\t\treturn todo(\"convert(case=default)\", n)\n\t}\n}\n"
  },
  {
    "path": "internal/engine/sqlite/format.go",
    "content": "package sqlite\n\n// QuoteIdent returns a quoted identifier if it needs quoting.\n// SQLite uses double quotes for quoting identifiers (SQL standard),\n// though backticks are also supported for MySQL compatibility.\nfunc (p *Parser) QuoteIdent(s string) string {\n\t// For now, don't quote - return as-is\n\treturn s\n}\n\n// TypeName returns the SQL type name for the given namespace and name.\nfunc (p *Parser) TypeName(ns, name string) string {\n\tif ns != \"\" {\n\t\treturn ns + \".\" + name\n\t}\n\treturn name\n}\n\n// Param returns the parameter placeholder for the given number.\n// SQLite uses ? for positional parameters.\nfunc (p *Parser) Param(n int) string {\n\treturn \"?\"\n}\n\n// NamedParam returns the named parameter placeholder for the given name.\n// SQLite uses :name syntax for named parameters.\nfunc (p *Parser) NamedParam(name string) string {\n\treturn \":\" + name\n}\n\n// Cast returns a type cast expression.\n// SQLite uses CAST(expr AS type) syntax.\nfunc (p *Parser) Cast(arg, typeName string) string {\n\treturn \"CAST(\" + arg + \" AS \" + typeName + \")\"\n}\n"
  },
  {
    "path": "internal/engine/sqlite/parse.go",
    "content": "package sqlite\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\n\t\"github.com/antlr4-go/antlr/v4\"\n\t\"github.com/sqlc-dev/sqlc/internal/engine/sqlite/parser\"\n\t\"github.com/sqlc-dev/sqlc/internal/source\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\ntype errorListener struct {\n\t*antlr.DefaultErrorListener\n\n\terr string\n}\n\nfunc (el *errorListener) SyntaxError(recognizer antlr.Recognizer, offendingSymbol interface{}, line, column int, msg string, e antlr.RecognitionException) {\n\tel.err = msg\n}\n\n// func (el *errorListener) ReportAmbiguity(recognizer antlr.Parser, dfa *antlr.DFA, startIndex, stopIndex int, exact bool, ambigAlts *antlr.BitSet, configs antlr.ATNConfigSet) {\n// }\n//\n// func (el *errorListener) ReportAttemptingFullContext(recognizer antlr.Parser, dfa *antlr.DFA, startIndex, stopIndex int, conflictingAlts *antlr.BitSet, configs antlr.ATNConfigSet) {\n// }\n//\n// func (el *errorListener) ReportContextSensitivity(recognizer antlr.Parser, dfa *antlr.DFA, startIndex, stopIndex, prediction int, configs antlr.ATNConfigSet) {\n// }\n\nfunc NewParser() *Parser {\n\treturn &Parser{}\n}\n\ntype Parser struct {\n}\n\nfunc (p *Parser) Parse(r io.Reader) ([]ast.Statement, error) {\n\tblob, err := io.ReadAll(r)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tinput := antlr.NewInputStream(string(blob))\n\tlexer := parser.NewSQLiteLexer(input)\n\tstream := antlr.NewCommonTokenStream(lexer, 0)\n\tpp := parser.NewSQLiteParser(stream)\n\tel := &errorListener{}\n\tpp.AddErrorListener(el)\n\t// pp.BuildParseTrees = true\n\ttree := pp.Parse()\n\tif el.err != \"\" {\n\t\treturn nil, errors.New(el.err)\n\t}\n\tpctx, ok := tree.(*parser.ParseContext)\n\tif !ok {\n\t\treturn nil, fmt.Errorf(\"expected ParserContext; got %T\\n\", tree)\n\t}\n\tvar stmts []ast.Statement\n\tfor _, istmt := range pctx.AllSql_stmt_list() {\n\t\tlist, ok := istmt.(*parser.Sql_stmt_listContext)\n\t\tif !ok {\n\t\t\treturn nil, fmt.Errorf(\"expected Sql_stmt_listContext; got %T\\n\", istmt)\n\t\t}\n\t\tloc := 0\n\n\t\tfor _, stmt := range list.AllSql_stmt() {\n\t\t\tconverter := &cc{}\n\t\t\tout := converter.convert(stmt)\n\t\t\tif _, ok := out.(*ast.TODO); ok {\n\t\t\t\tloc = stmt.GetStop().GetStop() + 2\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tlen := (stmt.GetStop().GetStop() + 1) - loc\n\t\t\tstmts = append(stmts, ast.Statement{\n\t\t\t\tRaw: &ast.RawStmt{\n\t\t\t\t\tStmt:         out,\n\t\t\t\t\tStmtLocation: loc,\n\t\t\t\t\tStmtLen:      len,\n\t\t\t\t},\n\t\t\t})\n\t\t\tloc = stmt.GetStop().GetStop() + 2\n\t\t}\n\t}\n\treturn stmts, nil\n}\n\nfunc (p *Parser) CommentSyntax() source.CommentSyntax {\n\treturn source.CommentSyntax{\n\t\tDash:      true,\n\t\tHash:      false,\n\t\tSlashStar: true,\n\t}\n}\n"
  },
  {
    "path": "internal/engine/sqlite/parser/.gitignore",
    "content": "\nantlr-4.12.0-complete.jar\n"
  },
  {
    "path": "internal/engine/sqlite/parser/Makefile",
    "content": "sqlite_parser.go: SQLiteLexer.g4 SQLiteParser.g4 antlr-4.13.1-complete.jar\n\tjava -jar antlr-4.13.1-complete.jar -Dlanguage=Go SQLiteLexer.g4 SQLiteParser.g4\n\nantlr-4.13.1-complete.jar:\n\tcurl -O https://www.antlr.org/download/antlr-4.13.1-complete.jar\n\n\n"
  },
  {
    "path": "internal/engine/sqlite/parser/SQLiteLexer.g4",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2020 by Martin Mirchev\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and\n * associated documentation files (the \"Software\"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute,\n * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or\n * substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT\n * NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n *\n * Project : sqlite-parser; an ANTLR4 grammar for SQLite https://github.com/bkiers/sqlite-parser\n * Developed by : Bart Kiers, bart@big-o.nl\n */\n\n// $antlr-format alignTrailingComments on, columnLimit 150, maxEmptyLinesToKeep 1, reflowComments off, useTab off\n// $antlr-format allowShortRulesOnASingleLine on, alignSemicolons ownLine\n\nlexer grammar SQLiteLexer;\n\nSCOL:      ';';\nDOT:       '.';\nOPEN_PAR:  '(';\nCLOSE_PAR: ')';\nCOMMA:     ',';\nASSIGN:    '=';\nSTAR:      '*';\nPLUS:      '+';\nPTR2:      '->>';\nPTR:       '->';\nMINUS:     '-';\nTILDE:     '~';\nPIPE2:     '||';\nDIV:       '/';\nMOD:       '%';\nLT2:       '<<';\nGT2:       '>>';\nAMP:       '&';\nPIPE:      '|';\nLT:        '<';\nLT_EQ:     '<=';\nGT:        '>';\nGT_EQ:     '>=';\nEQ:        '==';\nNOT_EQ1:   '!=';\nNOT_EQ2:   '<>';\n\n// http://www.sqlite.org/lang_keywords.html\nABORT_:             A B O R T;\nACTION_:            A C T I O N;\nADD_:               A D D;\nAFTER_:             A F T E R;\nALL_:               A L L;\nALTER_:             A L T E R;\nANALYZE_:           A N A L Y Z E;\nAND_:               A N D;\nAS_:                A S;\nASC_:               A S C;\nATTACH_:            A T T A C H;\nAUTOINCREMENT_:     A U T O I N C R E M E N T;\nBEFORE_:            B E F O R E;\nBEGIN_:             B E G I N;\nBETWEEN_:           B E T W E E N;\nBY_:                B Y;\nCASCADE_:           C A S C A D E;\nCASE_:              C A S E;\nCAST_:              C A S T;\nCHECK_:             C H E C K;\nCOLLATE_:           C O L L A T E;\nCOLUMN_:            C O L U M N;\nCOMMIT_:            C O M M I T;\nCONFLICT_:          C O N F L I C T;\nCONSTRAINT_:        C O N S T R A I N T;\nCREATE_:            C R E A T E;\nCROSS_:             C R O S S;\nCURRENT_DATE_:      C U R R E N T '_' D A T E;\nCURRENT_TIME_:      C U R R E N T '_' T I M E;\nCURRENT_TIMESTAMP_: C U R R E N T '_' T I M E S T A M P;\nDATABASE_:          D A T A B A S E;\nDEFAULT_:           D E F A U L T;\nDEFERRABLE_:        D E F E R R A B L E;\nDEFERRED_:          D E F E R R E D;\nDELETE_:            D E L E T E;\nDESC_:              D E S C;\nDETACH_:            D E T A C H;\nDISTINCT_:          D I S T I N C T;\nDROP_:              D R O P;\nEACH_:              E A C H;\nELSE_:              E L S E;\nEND_:               E N D;\nESCAPE_:            E S C A P E;\nEXCEPT_:            E X C E P T;\nEXCLUSIVE_:         E X C L U S I V E;\nEXISTS_:            E X I S T S;\nEXPLAIN_:           E X P L A I N;\nFAIL_:              F A I L;\nFOR_:               F O R;\nFOREIGN_:           F O R E I G N;\nFROM_:              F R O M;\nFULL_:              F U L L;\nGLOB_:              G L O B;\nGROUP_:             G R O U P;\nHAVING_:            H A V I N G;\nIF_:                I F;\nIGNORE_:            I G N O R E;\nIMMEDIATE_:         I M M E D I A T E;\nIN_:                I N;\nINDEX_:             I N D E X;\nINDEXED_:           I N D E X E D;\nINITIALLY_:         I N I T I A L L Y;\nINNER_:             I N N E R;\nINSERT_:            I N S E R T;\nINSTEAD_:           I N S T E A D;\nINTERSECT_:         I N T E R S E C T;\nINTO_:              I N T O;\nIS_:                I S;\nISNULL_:            I S N U L L;\nJOIN_:              J O I N;\nKEY_:               K E Y;\nLEFT_:              L E F T;\nLIKE_:              L I K E;\nLIMIT_:             L I M I T;\nMATCH_:             M A T C H;\nNATURAL_:           N A T U R A L;\nNO_:                N O;\nNOT_:               N O T;\nNOTNULL_:           N O T N U L L;\nNULL_:              N U L L;\nOF_:                O F;\nOFFSET_:            O F F S E T;\nON_:                O N;\nOR_:                O R;\nORDER_:             O R D E R;\nOUTER_:             O U T E R;\nPLAN_:              P L A N;\nPRAGMA_:            P R A G M A;\nPRIMARY_:           P R I M A R Y;\nQUERY_:             Q U E R Y;\nRAISE_:             R A I S E;\nRECURSIVE_:         R E C U R S I V E;\nREFERENCES_:        R E F E R E N C E S;\nREGEXP_:            R E G E X P;\nREINDEX_:           R E I N D E X;\nRELEASE_:           R E L E A S E;\nRENAME_:            R E N A M E;\nREPLACE_:           R E P L A C E;\nRESTRICT_:          R E S T R I C T;\nRETURNING_:         R E T U R N I N G;\nRIGHT_:             R I G H T;\nROLLBACK_:          R O L L B A C K;\nROW_:               R O W;\nROWS_:              R O W S;\nSAVEPOINT_:         S A V E P O I N T;\nSELECT_:            S E L E C T;\nSET_:               S E T;\nSTRICT_:            S T R I C T;\nTABLE_:             T A B L E;\nTEMP_:              T E M P;\nTEMPORARY_:         T E M P O R A R Y;\nTHEN_:              T H E N;\nTO_:                T O;\nTRANSACTION_:       T R A N S A C T I O N;\nTRIGGER_:           T R I G G E R;\nUNION_:             U N I O N;\nUNIQUE_:            U N I Q U E;\nUPDATE_:            U P D A T E;\nUSING_:             U S I N G;\nVACUUM_:            V A C U U M;\nVALUES_:            V A L U E S;\nVIEW_:              V I E W;\nVIRTUAL_:           V I R T U A L;\nWHEN_:              W H E N;\nWHERE_:             W H E R E;\nWITH_:              W I T H;\nWITHOUT_:           W I T H O U T;\nFIRST_VALUE_:       F I R S T '_' V A L U E;\nOVER_:              O V E R;\nPARTITION_:         P A R T I T I O N;\nRANGE_:             R A N G E;\nPRECEDING_:         P R E C E D I N G;\nUNBOUNDED_:         U N B O U N D E D;\nCURRENT_:           C U R R E N T;\nFOLLOWING_:         F O L L O W I N G;\nCUME_DIST_:         C U M E '_' D I S T;\nDENSE_RANK_:        D E N S E '_' R A N K;\nLAG_:               L A G;\nLAST_VALUE_:        L A S T '_' V A L U E;\nLEAD_:              L E A D;\nNTH_VALUE_:         N T H '_' V A L U E;\nNTILE_:             N T I L E;\nPERCENT_RANK_:      P E R C E N T '_' R A N K;\nRANK_:              R A N K;\nROW_NUMBER_:        R O W '_' N U M B E R;\nGENERATED_:         G E N E R A T E D;\nALWAYS_:            A L W A Y S;\nSTORED_:            S T O R E D;\nTRUE_:              T R U E;\nFALSE_:             F A L S E;\nWINDOW_:            W I N D O W;\nNULLS_:             N U L L S;\nFIRST_:             F I R S T;\nLAST_:              L A S T;\nFILTER_:            F I L T E R;\nGROUPS_:            G R O U P S;\nEXCLUDE_:           E X C L U D E;\nTIES_:              T I E S;\nOTHERS_:            O T H E R S;\nDO_:                D O;\nNOTHING_:           N O T H I N G;\n\nIDENTIFIER:\n    '\"' (~'\"' | '\"\"')* '\"'\n    | '`' (~'`' | '``')* '`'\n    | '[' ~']'* ']'\n    | [a-zA-Z_] [a-zA-Z_0-9]*\n; // TODO check: needs more chars in set\n\nNUMERIC_LITERAL: ((DIGIT+ ('.' DIGIT*)?) | ('.' DIGIT+)) (E [-+]? DIGIT+)? | '0x' HEX_DIGIT+;\n\nNUMBERED_BIND_PARAMETER: '?' DIGIT*;\n\nNAMED_BIND_PARAMETER: [:@$] IDENTIFIER;\n\nSTRING_LITERAL: '\\'' ( ~'\\'' | '\\'\\'')* '\\'';\n\nBLOB_LITERAL: X STRING_LITERAL;\n\nSINGLE_LINE_COMMENT: '--' ~[\\r\\n]* (('\\r'? '\\n') | EOF) -> channel(HIDDEN);\n\nMULTILINE_COMMENT: '/*' .*? '*/' -> channel(HIDDEN);\n\nSPACES: [ \\u000B\\t\\r\\n] -> channel(HIDDEN);\n\nUNEXPECTED_CHAR: .;\n\nfragment HEX_DIGIT: [0-9a-fA-F];\nfragment DIGIT:     [0-9];\n\nfragment A: [aA];\nfragment B: [bB];\nfragment C: [cC];\nfragment D: [dD];\nfragment E: [eE];\nfragment F: [fF];\nfragment G: [gG];\nfragment H: [hH];\nfragment I: [iI];\nfragment J: [jJ];\nfragment K: [kK];\nfragment L: [lL];\nfragment M: [mM];\nfragment N: [nN];\nfragment O: [oO];\nfragment P: [pP];\nfragment Q: [qQ];\nfragment R: [rR];\nfragment S: [sS];\nfragment T: [tT];\nfragment U: [uU];\nfragment V: [vV];\nfragment W: [wW];\nfragment X: [xX];\nfragment Y: [yY];\nfragment Z: [zZ];\n"
  },
  {
    "path": "internal/engine/sqlite/parser/SQLiteLexer.interp",
    "content": "token literal names:\nnull\n';'\n'.'\n'('\n')'\n','\n'='\n'*'\n'+'\n'->>'\n'->'\n'-'\n'~'\n'||'\n'/'\n'%'\n'<<'\n'>>'\n'&'\n'|'\n'<'\n'<='\n'>'\n'>='\n'=='\n'!='\n'<>'\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\n\ntoken symbolic names:\nnull\nSCOL\nDOT\nOPEN_PAR\nCLOSE_PAR\nCOMMA\nASSIGN\nSTAR\nPLUS\nPTR2\nPTR\nMINUS\nTILDE\nPIPE2\nDIV\nMOD\nLT2\nGT2\nAMP\nPIPE\nLT\nLT_EQ\nGT\nGT_EQ\nEQ\nNOT_EQ1\nNOT_EQ2\nABORT_\nACTION_\nADD_\nAFTER_\nALL_\nALTER_\nANALYZE_\nAND_\nAS_\nASC_\nATTACH_\nAUTOINCREMENT_\nBEFORE_\nBEGIN_\nBETWEEN_\nBY_\nCASCADE_\nCASE_\nCAST_\nCHECK_\nCOLLATE_\nCOLUMN_\nCOMMIT_\nCONFLICT_\nCONSTRAINT_\nCREATE_\nCROSS_\nCURRENT_DATE_\nCURRENT_TIME_\nCURRENT_TIMESTAMP_\nDATABASE_\nDEFAULT_\nDEFERRABLE_\nDEFERRED_\nDELETE_\nDESC_\nDETACH_\nDISTINCT_\nDROP_\nEACH_\nELSE_\nEND_\nESCAPE_\nEXCEPT_\nEXCLUSIVE_\nEXISTS_\nEXPLAIN_\nFAIL_\nFOR_\nFOREIGN_\nFROM_\nFULL_\nGLOB_\nGROUP_\nHAVING_\nIF_\nIGNORE_\nIMMEDIATE_\nIN_\nINDEX_\nINDEXED_\nINITIALLY_\nINNER_\nINSERT_\nINSTEAD_\nINTERSECT_\nINTO_\nIS_\nISNULL_\nJOIN_\nKEY_\nLEFT_\nLIKE_\nLIMIT_\nMATCH_\nNATURAL_\nNO_\nNOT_\nNOTNULL_\nNULL_\nOF_\nOFFSET_\nON_\nOR_\nORDER_\nOUTER_\nPLAN_\nPRAGMA_\nPRIMARY_\nQUERY_\nRAISE_\nRECURSIVE_\nREFERENCES_\nREGEXP_\nREINDEX_\nRELEASE_\nRENAME_\nREPLACE_\nRESTRICT_\nRETURNING_\nRIGHT_\nROLLBACK_\nROW_\nROWS_\nSAVEPOINT_\nSELECT_\nSET_\nSTRICT_\nTABLE_\nTEMP_\nTEMPORARY_\nTHEN_\nTO_\nTRANSACTION_\nTRIGGER_\nUNION_\nUNIQUE_\nUPDATE_\nUSING_\nVACUUM_\nVALUES_\nVIEW_\nVIRTUAL_\nWHEN_\nWHERE_\nWITH_\nWITHOUT_\nFIRST_VALUE_\nOVER_\nPARTITION_\nRANGE_\nPRECEDING_\nUNBOUNDED_\nCURRENT_\nFOLLOWING_\nCUME_DIST_\nDENSE_RANK_\nLAG_\nLAST_VALUE_\nLEAD_\nNTH_VALUE_\nNTILE_\nPERCENT_RANK_\nRANK_\nROW_NUMBER_\nGENERATED_\nALWAYS_\nSTORED_\nTRUE_\nFALSE_\nWINDOW_\nNULLS_\nFIRST_\nLAST_\nFILTER_\nGROUPS_\nEXCLUDE_\nTIES_\nOTHERS_\nDO_\nNOTHING_\nIDENTIFIER\nNUMERIC_LITERAL\nNUMBERED_BIND_PARAMETER\nNAMED_BIND_PARAMETER\nSTRING_LITERAL\nBLOB_LITERAL\nSINGLE_LINE_COMMENT\nMULTILINE_COMMENT\nSPACES\nUNEXPECTED_CHAR\n\nrule names:\nSCOL\nDOT\nOPEN_PAR\nCLOSE_PAR\nCOMMA\nASSIGN\nSTAR\nPLUS\nPTR2\nPTR\nMINUS\nTILDE\nPIPE2\nDIV\nMOD\nLT2\nGT2\nAMP\nPIPE\nLT\nLT_EQ\nGT\nGT_EQ\nEQ\nNOT_EQ1\nNOT_EQ2\nABORT_\nACTION_\nADD_\nAFTER_\nALL_\nALTER_\nANALYZE_\nAND_\nAS_\nASC_\nATTACH_\nAUTOINCREMENT_\nBEFORE_\nBEGIN_\nBETWEEN_\nBY_\nCASCADE_\nCASE_\nCAST_\nCHECK_\nCOLLATE_\nCOLUMN_\nCOMMIT_\nCONFLICT_\nCONSTRAINT_\nCREATE_\nCROSS_\nCURRENT_DATE_\nCURRENT_TIME_\nCURRENT_TIMESTAMP_\nDATABASE_\nDEFAULT_\nDEFERRABLE_\nDEFERRED_\nDELETE_\nDESC_\nDETACH_\nDISTINCT_\nDROP_\nEACH_\nELSE_\nEND_\nESCAPE_\nEXCEPT_\nEXCLUSIVE_\nEXISTS_\nEXPLAIN_\nFAIL_\nFOR_\nFOREIGN_\nFROM_\nFULL_\nGLOB_\nGROUP_\nHAVING_\nIF_\nIGNORE_\nIMMEDIATE_\nIN_\nINDEX_\nINDEXED_\nINITIALLY_\nINNER_\nINSERT_\nINSTEAD_\nINTERSECT_\nINTO_\nIS_\nISNULL_\nJOIN_\nKEY_\nLEFT_\nLIKE_\nLIMIT_\nMATCH_\nNATURAL_\nNO_\nNOT_\nNOTNULL_\nNULL_\nOF_\nOFFSET_\nON_\nOR_\nORDER_\nOUTER_\nPLAN_\nPRAGMA_\nPRIMARY_\nQUERY_\nRAISE_\nRECURSIVE_\nREFERENCES_\nREGEXP_\nREINDEX_\nRELEASE_\nRENAME_\nREPLACE_\nRESTRICT_\nRETURNING_\nRIGHT_\nROLLBACK_\nROW_\nROWS_\nSAVEPOINT_\nSELECT_\nSET_\nSTRICT_\nTABLE_\nTEMP_\nTEMPORARY_\nTHEN_\nTO_\nTRANSACTION_\nTRIGGER_\nUNION_\nUNIQUE_\nUPDATE_\nUSING_\nVACUUM_\nVALUES_\nVIEW_\nVIRTUAL_\nWHEN_\nWHERE_\nWITH_\nWITHOUT_\nFIRST_VALUE_\nOVER_\nPARTITION_\nRANGE_\nPRECEDING_\nUNBOUNDED_\nCURRENT_\nFOLLOWING_\nCUME_DIST_\nDENSE_RANK_\nLAG_\nLAST_VALUE_\nLEAD_\nNTH_VALUE_\nNTILE_\nPERCENT_RANK_\nRANK_\nROW_NUMBER_\nGENERATED_\nALWAYS_\nSTORED_\nTRUE_\nFALSE_\nWINDOW_\nNULLS_\nFIRST_\nLAST_\nFILTER_\nGROUPS_\nEXCLUDE_\nTIES_\nOTHERS_\nDO_\nNOTHING_\nIDENTIFIER\nNUMERIC_LITERAL\nNUMBERED_BIND_PARAMETER\nNAMED_BIND_PARAMETER\nSTRING_LITERAL\nBLOB_LITERAL\nSINGLE_LINE_COMMENT\nMULTILINE_COMMENT\nSPACES\nUNEXPECTED_CHAR\nHEX_DIGIT\nDIGIT\nA\nB\nC\nD\nE\nF\nG\nH\nI\nJ\nK\nL\nM\nN\nO\nP\nQ\nR\nS\nT\nU\nV\nW\nX\nY\nZ\n\nchannel names:\nDEFAULT_TOKEN_CHANNEL\nHIDDEN\n\nmode names:\nDEFAULT_MODE\n\natn:\n[4, 0, 197, 1829, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1, 6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 1636, 8, 187, 10, 187, 12, 187, 1639, 9, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 1646, 8, 187, 10, 187, 12, 187, 1649, 9, 187, 1, 187, 1, 187, 1, 187, 5, 187, 1654, 8, 187, 10, 187, 12, 187, 1657, 9, 187, 1, 187, 1, 187, 1, 187, 5, 187, 1662, 8, 187, 10, 187, 12, 187, 1665, 9, 187, 3, 187, 1667, 8, 187, 1, 188, 4, 188, 1670, 8, 188, 11, 188, 12, 188, 1671, 1, 188, 1, 188, 5, 188, 1676, 8, 188, 10, 188, 12, 188, 1679, 9, 188, 3, 188, 1681, 8, 188, 1, 188, 1, 188, 4, 188, 1685, 8, 188, 11, 188, 12, 188, 1686, 3, 188, 1689, 8, 188, 1, 188, 1, 188, 3, 188, 1693, 8, 188, 1, 188, 4, 188, 1696, 8, 188, 11, 188, 12, 188, 1697, 3, 188, 1700, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 4, 188, 1706, 8, 188, 11, 188, 12, 188, 1707, 3, 188, 1710, 8, 188, 1, 189, 1, 189, 5, 189, 1714, 8, 189, 10, 189, 12, 189, 1717, 9, 189, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 5, 191, 1726, 8, 191, 10, 191, 12, 191, 1729, 9, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1740, 8, 193, 10, 193, 12, 193, 1743, 9, 193, 1, 193, 3, 193, 1746, 8, 193, 1, 193, 1, 193, 3, 193, 1750, 8, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 5, 194, 1758, 8, 194, 10, 194, 12, 194, 1761, 9, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 206, 1, 206, 1, 207, 1, 207, 1, 208, 1, 208, 1, 209, 1, 209, 1, 210, 1, 210, 1, 211, 1, 211, 1, 212, 1, 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, 1, 216, 1, 217, 1, 217, 1, 218, 1, 218, 1, 219, 1, 219, 1, 220, 1, 220, 1, 221, 1, 221, 1, 222, 1, 222, 1, 223, 1, 223, 1, 224, 1, 224, 1, 1759, 0, 225, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 0, 397, 0, 399, 0, 401, 0, 403, 0, 405, 0, 407, 0, 409, 0, 411, 0, 413, 0, 415, 0, 417, 0, 419, 0, 421, 0, 423, 0, 425, 0, 427, 0, 429, 0, 431, 0, 433, 0, 435, 0, 437, 0, 439, 0, 441, 0, 443, 0, 445, 0, 447, 0, 449, 0, 1, 0, 38, 1, 0, 34, 34, 1, 0, 96, 96, 1, 0, 93, 93, 3, 0, 65, 90, 95, 95, 97, 122, 4, 0, 48, 57, 65, 90, 95, 95, 97, 122, 2, 0, 43, 43, 45, 45, 3, 0, 36, 36, 58, 58, 64, 64, 1, 0, 39, 39, 2, 0, 10, 10, 13, 13, 3, 0, 9, 11, 13, 13, 32, 32, 3, 0, 48, 57, 65, 70, 97, 102, 1, 0, 48, 57, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 67, 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 69, 69, 101, 101, 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 72, 72, 104, 104, 2, 0, 73, 73, 105, 105, 2, 0, 74, 74, 106, 106, 2, 0, 75, 75, 107, 107, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 81, 81, 113, 113, 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 84, 84, 116, 116, 2, 0, 85, 85, 117, 117, 2, 0, 86, 86, 118, 118, 2, 0, 87, 87, 119, 119, 2, 0, 88, 88, 120, 120, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 1826, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 1, 451, 1, 0, 0, 0, 3, 453, 1, 0, 0, 0, 5, 455, 1, 0, 0, 0, 7, 457, 1, 0, 0, 0, 9, 459, 1, 0, 0, 0, 11, 461, 1, 0, 0, 0, 13, 463, 1, 0, 0, 0, 15, 465, 1, 0, 0, 0, 17, 467, 1, 0, 0, 0, 19, 471, 1, 0, 0, 0, 21, 474, 1, 0, 0, 0, 23, 476, 1, 0, 0, 0, 25, 478, 1, 0, 0, 0, 27, 481, 1, 0, 0, 0, 29, 483, 1, 0, 0, 0, 31, 485, 1, 0, 0, 0, 33, 488, 1, 0, 0, 0, 35, 491, 1, 0, 0, 0, 37, 493, 1, 0, 0, 0, 39, 495, 1, 0, 0, 0, 41, 497, 1, 0, 0, 0, 43, 500, 1, 0, 0, 0, 45, 502, 1, 0, 0, 0, 47, 505, 1, 0, 0, 0, 49, 508, 1, 0, 0, 0, 51, 511, 1, 0, 0, 0, 53, 514, 1, 0, 0, 0, 55, 520, 1, 0, 0, 0, 57, 527, 1, 0, 0, 0, 59, 531, 1, 0, 0, 0, 61, 537, 1, 0, 0, 0, 63, 541, 1, 0, 0, 0, 65, 547, 1, 0, 0, 0, 67, 555, 1, 0, 0, 0, 69, 559, 1, 0, 0, 0, 71, 562, 1, 0, 0, 0, 73, 566, 1, 0, 0, 0, 75, 573, 1, 0, 0, 0, 77, 587, 1, 0, 0, 0, 79, 594, 1, 0, 0, 0, 81, 600, 1, 0, 0, 0, 83, 608, 1, 0, 0, 0, 85, 611, 1, 0, 0, 0, 87, 619, 1, 0, 0, 0, 89, 624, 1, 0, 0, 0, 91, 629, 1, 0, 0, 0, 93, 635, 1, 0, 0, 0, 95, 643, 1, 0, 0, 0, 97, 650, 1, 0, 0, 0, 99, 657, 1, 0, 0, 0, 101, 666, 1, 0, 0, 0, 103, 677, 1, 0, 0, 0, 105, 684, 1, 0, 0, 0, 107, 690, 1, 0, 0, 0, 109, 703, 1, 0, 0, 0, 111, 716, 1, 0, 0, 0, 113, 734, 1, 0, 0, 0, 115, 743, 1, 0, 0, 0, 117, 751, 1, 0, 0, 0, 119, 762, 1, 0, 0, 0, 121, 771, 1, 0, 0, 0, 123, 778, 1, 0, 0, 0, 125, 783, 1, 0, 0, 0, 127, 790, 1, 0, 0, 0, 129, 799, 1, 0, 0, 0, 131, 804, 1, 0, 0, 0, 133, 809, 1, 0, 0, 0, 135, 814, 1, 0, 0, 0, 137, 818, 1, 0, 0, 0, 139, 825, 1, 0, 0, 0, 141, 832, 1, 0, 0, 0, 143, 842, 1, 0, 0, 0, 145, 849, 1, 0, 0, 0, 147, 857, 1, 0, 0, 0, 149, 862, 1, 0, 0, 0, 151, 866, 1, 0, 0, 0, 153, 874, 1, 0, 0, 0, 155, 879, 1, 0, 0, 0, 157, 884, 1, 0, 0, 0, 159, 889, 1, 0, 0, 0, 161, 895, 1, 0, 0, 0, 163, 902, 1, 0, 0, 0, 165, 905, 1, 0, 0, 0, 167, 912, 1, 0, 0, 0, 169, 922, 1, 0, 0, 0, 171, 925, 1, 0, 0, 0, 173, 931, 1, 0, 0, 0, 175, 939, 1, 0, 0, 0, 177, 949, 1, 0, 0, 0, 179, 955, 1, 0, 0, 0, 181, 962, 1, 0, 0, 0, 183, 970, 1, 0, 0, 0, 185, 980, 1, 0, 0, 0, 187, 985, 1, 0, 0, 0, 189, 988, 1, 0, 0, 0, 191, 995, 1, 0, 0, 0, 193, 1000, 1, 0, 0, 0, 195, 1004, 1, 0, 0, 0, 197, 1009, 1, 0, 0, 0, 199, 1014, 1, 0, 0, 0, 201, 1020, 1, 0, 0, 0, 203, 1026, 1, 0, 0, 0, 205, 1034, 1, 0, 0, 0, 207, 1037, 1, 0, 0, 0, 209, 1041, 1, 0, 0, 0, 211, 1049, 1, 0, 0, 0, 213, 1054, 1, 0, 0, 0, 215, 1057, 1, 0, 0, 0, 217, 1064, 1, 0, 0, 0, 219, 1067, 1, 0, 0, 0, 221, 1070, 1, 0, 0, 0, 223, 1076, 1, 0, 0, 0, 225, 1082, 1, 0, 0, 0, 227, 1087, 1, 0, 0, 0, 229, 1094, 1, 0, 0, 0, 231, 1102, 1, 0, 0, 0, 233, 1108, 1, 0, 0, 0, 235, 1114, 1, 0, 0, 0, 237, 1124, 1, 0, 0, 0, 239, 1135, 1, 0, 0, 0, 241, 1142, 1, 0, 0, 0, 243, 1150, 1, 0, 0, 0, 245, 1158, 1, 0, 0, 0, 247, 1165, 1, 0, 0, 0, 249, 1173, 1, 0, 0, 0, 251, 1182, 1, 0, 0, 0, 253, 1192, 1, 0, 0, 0, 255, 1198, 1, 0, 0, 0, 257, 1207, 1, 0, 0, 0, 259, 1211, 1, 0, 0, 0, 261, 1216, 1, 0, 0, 0, 263, 1226, 1, 0, 0, 0, 265, 1233, 1, 0, 0, 0, 267, 1237, 1, 0, 0, 0, 269, 1244, 1, 0, 0, 0, 271, 1250, 1, 0, 0, 0, 273, 1255, 1, 0, 0, 0, 275, 1265, 1, 0, 0, 0, 277, 1270, 1, 0, 0, 0, 279, 1273, 1, 0, 0, 0, 281, 1285, 1, 0, 0, 0, 283, 1293, 1, 0, 0, 0, 285, 1299, 1, 0, 0, 0, 287, 1306, 1, 0, 0, 0, 289, 1313, 1, 0, 0, 0, 291, 1319, 1, 0, 0, 0, 293, 1326, 1, 0, 0, 0, 295, 1333, 1, 0, 0, 0, 297, 1338, 1, 0, 0, 0, 299, 1346, 1, 0, 0, 0, 301, 1351, 1, 0, 0, 0, 303, 1357, 1, 0, 0, 0, 305, 1362, 1, 0, 0, 0, 307, 1370, 1, 0, 0, 0, 309, 1382, 1, 0, 0, 0, 311, 1387, 1, 0, 0, 0, 313, 1397, 1, 0, 0, 0, 315, 1403, 1, 0, 0, 0, 317, 1413, 1, 0, 0, 0, 319, 1423, 1, 0, 0, 0, 321, 1431, 1, 0, 0, 0, 323, 1441, 1, 0, 0, 0, 325, 1451, 1, 0, 0, 0, 327, 1462, 1, 0, 0, 0, 329, 1466, 1, 0, 0, 0, 331, 1477, 1, 0, 0, 0, 333, 1482, 1, 0, 0, 0, 335, 1492, 1, 0, 0, 0, 337, 1498, 1, 0, 0, 0, 339, 1511, 1, 0, 0, 0, 341, 1516, 1, 0, 0, 0, 343, 1527, 1, 0, 0, 0, 345, 1537, 1, 0, 0, 0, 347, 1544, 1, 0, 0, 0, 349, 1551, 1, 0, 0, 0, 351, 1556, 1, 0, 0, 0, 353, 1562, 1, 0, 0, 0, 355, 1569, 1, 0, 0, 0, 357, 1575, 1, 0, 0, 0, 359, 1581, 1, 0, 0, 0, 361, 1586, 1, 0, 0, 0, 363, 1593, 1, 0, 0, 0, 365, 1600, 1, 0, 0, 0, 367, 1608, 1, 0, 0, 0, 369, 1613, 1, 0, 0, 0, 371, 1620, 1, 0, 0, 0, 373, 1623, 1, 0, 0, 0, 375, 1666, 1, 0, 0, 0, 377, 1709, 1, 0, 0, 0, 379, 1711, 1, 0, 0, 0, 381, 1718, 1, 0, 0, 0, 383, 1721, 1, 0, 0, 0, 385, 1732, 1, 0, 0, 0, 387, 1735, 1, 0, 0, 0, 389, 1753, 1, 0, 0, 0, 391, 1767, 1, 0, 0, 0, 393, 1771, 1, 0, 0, 0, 395, 1773, 1, 0, 0, 0, 397, 1775, 1, 0, 0, 0, 399, 1777, 1, 0, 0, 0, 401, 1779, 1, 0, 0, 0, 403, 1781, 1, 0, 0, 0, 405, 1783, 1, 0, 0, 0, 407, 1785, 1, 0, 0, 0, 409, 1787, 1, 0, 0, 0, 411, 1789, 1, 0, 0, 0, 413, 1791, 1, 0, 0, 0, 415, 1793, 1, 0, 0, 0, 417, 1795, 1, 0, 0, 0, 419, 1797, 1, 0, 0, 0, 421, 1799, 1, 0, 0, 0, 423, 1801, 1, 0, 0, 0, 425, 1803, 1, 0, 0, 0, 427, 1805, 1, 0, 0, 0, 429, 1807, 1, 0, 0, 0, 431, 1809, 1, 0, 0, 0, 433, 1811, 1, 0, 0, 0, 435, 1813, 1, 0, 0, 0, 437, 1815, 1, 0, 0, 0, 439, 1817, 1, 0, 0, 0, 441, 1819, 1, 0, 0, 0, 443, 1821, 1, 0, 0, 0, 445, 1823, 1, 0, 0, 0, 447, 1825, 1, 0, 0, 0, 449, 1827, 1, 0, 0, 0, 451, 452, 5, 59, 0, 0, 452, 2, 1, 0, 0, 0, 453, 454, 5, 46, 0, 0, 454, 4, 1, 0, 0, 0, 455, 456, 5, 40, 0, 0, 456, 6, 1, 0, 0, 0, 457, 458, 5, 41, 0, 0, 458, 8, 1, 0, 0, 0, 459, 460, 5, 44, 0, 0, 460, 10, 1, 0, 0, 0, 461, 462, 5, 61, 0, 0, 462, 12, 1, 0, 0, 0, 463, 464, 5, 42, 0, 0, 464, 14, 1, 0, 0, 0, 465, 466, 5, 43, 0, 0, 466, 16, 1, 0, 0, 0, 467, 468, 5, 45, 0, 0, 468, 469, 5, 62, 0, 0, 469, 470, 5, 62, 0, 0, 470, 18, 1, 0, 0, 0, 471, 472, 5, 45, 0, 0, 472, 473, 5, 62, 0, 0, 473, 20, 1, 0, 0, 0, 474, 475, 5, 45, 0, 0, 475, 22, 1, 0, 0, 0, 476, 477, 5, 126, 0, 0, 477, 24, 1, 0, 0, 0, 478, 479, 5, 124, 0, 0, 479, 480, 5, 124, 0, 0, 480, 26, 1, 0, 0, 0, 481, 482, 5, 47, 0, 0, 482, 28, 1, 0, 0, 0, 483, 484, 5, 37, 0, 0, 484, 30, 1, 0, 0, 0, 485, 486, 5, 60, 0, 0, 486, 487, 5, 60, 0, 0, 487, 32, 1, 0, 0, 0, 488, 489, 5, 62, 0, 0, 489, 490, 5, 62, 0, 0, 490, 34, 1, 0, 0, 0, 491, 492, 5, 38, 0, 0, 492, 36, 1, 0, 0, 0, 493, 494, 5, 124, 0, 0, 494, 38, 1, 0, 0, 0, 495, 496, 5, 60, 0, 0, 496, 40, 1, 0, 0, 0, 497, 498, 5, 60, 0, 0, 498, 499, 5, 61, 0, 0, 499, 42, 1, 0, 0, 0, 500, 501, 5, 62, 0, 0, 501, 44, 1, 0, 0, 0, 502, 503, 5, 62, 0, 0, 503, 504, 5, 61, 0, 0, 504, 46, 1, 0, 0, 0, 505, 506, 5, 61, 0, 0, 506, 507, 5, 61, 0, 0, 507, 48, 1, 0, 0, 0, 508, 509, 5, 33, 0, 0, 509, 510, 5, 61, 0, 0, 510, 50, 1, 0, 0, 0, 511, 512, 5, 60, 0, 0, 512, 513, 5, 62, 0, 0, 513, 52, 1, 0, 0, 0, 514, 515, 3, 399, 199, 0, 515, 516, 3, 401, 200, 0, 516, 517, 3, 427, 213, 0, 517, 518, 3, 433, 216, 0, 518, 519, 3, 437, 218, 0, 519, 54, 1, 0, 0, 0, 520, 521, 3, 399, 199, 0, 521, 522, 3, 403, 201, 0, 522, 523, 3, 437, 218, 0, 523, 524, 3, 415, 207, 0, 524, 525, 3, 427, 213, 0, 525, 526, 3, 425, 212, 0, 526, 56, 1, 0, 0, 0, 527, 528, 3, 399, 199, 0, 528, 529, 3, 405, 202, 0, 529, 530, 3, 405, 202, 0, 530, 58, 1, 0, 0, 0, 531, 532, 3, 399, 199, 0, 532, 533, 3, 409, 204, 0, 533, 534, 3, 437, 218, 0, 534, 535, 3, 407, 203, 0, 535, 536, 3, 433, 216, 0, 536, 60, 1, 0, 0, 0, 537, 538, 3, 399, 199, 0, 538, 539, 3, 421, 210, 0, 539, 540, 3, 421, 210, 0, 540, 62, 1, 0, 0, 0, 541, 542, 3, 399, 199, 0, 542, 543, 3, 421, 210, 0, 543, 544, 3, 437, 218, 0, 544, 545, 3, 407, 203, 0, 545, 546, 3, 433, 216, 0, 546, 64, 1, 0, 0, 0, 547, 548, 3, 399, 199, 0, 548, 549, 3, 425, 212, 0, 549, 550, 3, 399, 199, 0, 550, 551, 3, 421, 210, 0, 551, 552, 3, 447, 223, 0, 552, 553, 3, 449, 224, 0, 553, 554, 3, 407, 203, 0, 554, 66, 1, 0, 0, 0, 555, 556, 3, 399, 199, 0, 556, 557, 3, 425, 212, 0, 557, 558, 3, 405, 202, 0, 558, 68, 1, 0, 0, 0, 559, 560, 3, 399, 199, 0, 560, 561, 3, 435, 217, 0, 561, 70, 1, 0, 0, 0, 562, 563, 3, 399, 199, 0, 563, 564, 3, 435, 217, 0, 564, 565, 3, 403, 201, 0, 565, 72, 1, 0, 0, 0, 566, 567, 3, 399, 199, 0, 567, 568, 3, 437, 218, 0, 568, 569, 3, 437, 218, 0, 569, 570, 3, 399, 199, 0, 570, 571, 3, 403, 201, 0, 571, 572, 3, 413, 206, 0, 572, 74, 1, 0, 0, 0, 573, 574, 3, 399, 199, 0, 574, 575, 3, 439, 219, 0, 575, 576, 3, 437, 218, 0, 576, 577, 3, 427, 213, 0, 577, 578, 3, 415, 207, 0, 578, 579, 3, 425, 212, 0, 579, 580, 3, 403, 201, 0, 580, 581, 3, 433, 216, 0, 581, 582, 3, 407, 203, 0, 582, 583, 3, 423, 211, 0, 583, 584, 3, 407, 203, 0, 584, 585, 3, 425, 212, 0, 585, 586, 3, 437, 218, 0, 586, 76, 1, 0, 0, 0, 587, 588, 3, 401, 200, 0, 588, 589, 3, 407, 203, 0, 589, 590, 3, 409, 204, 0, 590, 591, 3, 427, 213, 0, 591, 592, 3, 433, 216, 0, 592, 593, 3, 407, 203, 0, 593, 78, 1, 0, 0, 0, 594, 595, 3, 401, 200, 0, 595, 596, 3, 407, 203, 0, 596, 597, 3, 411, 205, 0, 597, 598, 3, 415, 207, 0, 598, 599, 3, 425, 212, 0, 599, 80, 1, 0, 0, 0, 600, 601, 3, 401, 200, 0, 601, 602, 3, 407, 203, 0, 602, 603, 3, 437, 218, 0, 603, 604, 3, 443, 221, 0, 604, 605, 3, 407, 203, 0, 605, 606, 3, 407, 203, 0, 606, 607, 3, 425, 212, 0, 607, 82, 1, 0, 0, 0, 608, 609, 3, 401, 200, 0, 609, 610, 3, 447, 223, 0, 610, 84, 1, 0, 0, 0, 611, 612, 3, 403, 201, 0, 612, 613, 3, 399, 199, 0, 613, 614, 3, 435, 217, 0, 614, 615, 3, 403, 201, 0, 615, 616, 3, 399, 199, 0, 616, 617, 3, 405, 202, 0, 617, 618, 3, 407, 203, 0, 618, 86, 1, 0, 0, 0, 619, 620, 3, 403, 201, 0, 620, 621, 3, 399, 199, 0, 621, 622, 3, 435, 217, 0, 622, 623, 3, 407, 203, 0, 623, 88, 1, 0, 0, 0, 624, 625, 3, 403, 201, 0, 625, 626, 3, 399, 199, 0, 626, 627, 3, 435, 217, 0, 627, 628, 3, 437, 218, 0, 628, 90, 1, 0, 0, 0, 629, 630, 3, 403, 201, 0, 630, 631, 3, 413, 206, 0, 631, 632, 3, 407, 203, 0, 632, 633, 3, 403, 201, 0, 633, 634, 3, 419, 209, 0, 634, 92, 1, 0, 0, 0, 635, 636, 3, 403, 201, 0, 636, 637, 3, 427, 213, 0, 637, 638, 3, 421, 210, 0, 638, 639, 3, 421, 210, 0, 639, 640, 3, 399, 199, 0, 640, 641, 3, 437, 218, 0, 641, 642, 3, 407, 203, 0, 642, 94, 1, 0, 0, 0, 643, 644, 3, 403, 201, 0, 644, 645, 3, 427, 213, 0, 645, 646, 3, 421, 210, 0, 646, 647, 3, 439, 219, 0, 647, 648, 3, 423, 211, 0, 648, 649, 3, 425, 212, 0, 649, 96, 1, 0, 0, 0, 650, 651, 3, 403, 201, 0, 651, 652, 3, 427, 213, 0, 652, 653, 3, 423, 211, 0, 653, 654, 3, 423, 211, 0, 654, 655, 3, 415, 207, 0, 655, 656, 3, 437, 218, 0, 656, 98, 1, 0, 0, 0, 657, 658, 3, 403, 201, 0, 658, 659, 3, 427, 213, 0, 659, 660, 3, 425, 212, 0, 660, 661, 3, 409, 204, 0, 661, 662, 3, 421, 210, 0, 662, 663, 3, 415, 207, 0, 663, 664, 3, 403, 201, 0, 664, 665, 3, 437, 218, 0, 665, 100, 1, 0, 0, 0, 666, 667, 3, 403, 201, 0, 667, 668, 3, 427, 213, 0, 668, 669, 3, 425, 212, 0, 669, 670, 3, 435, 217, 0, 670, 671, 3, 437, 218, 0, 671, 672, 3, 433, 216, 0, 672, 673, 3, 399, 199, 0, 673, 674, 3, 415, 207, 0, 674, 675, 3, 425, 212, 0, 675, 676, 3, 437, 218, 0, 676, 102, 1, 0, 0, 0, 677, 678, 3, 403, 201, 0, 678, 679, 3, 433, 216, 0, 679, 680, 3, 407, 203, 0, 680, 681, 3, 399, 199, 0, 681, 682, 3, 437, 218, 0, 682, 683, 3, 407, 203, 0, 683, 104, 1, 0, 0, 0, 684, 685, 3, 403, 201, 0, 685, 686, 3, 433, 216, 0, 686, 687, 3, 427, 213, 0, 687, 688, 3, 435, 217, 0, 688, 689, 3, 435, 217, 0, 689, 106, 1, 0, 0, 0, 690, 691, 3, 403, 201, 0, 691, 692, 3, 439, 219, 0, 692, 693, 3, 433, 216, 0, 693, 694, 3, 433, 216, 0, 694, 695, 3, 407, 203, 0, 695, 696, 3, 425, 212, 0, 696, 697, 3, 437, 218, 0, 697, 698, 5, 95, 0, 0, 698, 699, 3, 405, 202, 0, 699, 700, 3, 399, 199, 0, 700, 701, 3, 437, 218, 0, 701, 702, 3, 407, 203, 0, 702, 108, 1, 0, 0, 0, 703, 704, 3, 403, 201, 0, 704, 705, 3, 439, 219, 0, 705, 706, 3, 433, 216, 0, 706, 707, 3, 433, 216, 0, 707, 708, 3, 407, 203, 0, 708, 709, 3, 425, 212, 0, 709, 710, 3, 437, 218, 0, 710, 711, 5, 95, 0, 0, 711, 712, 3, 437, 218, 0, 712, 713, 3, 415, 207, 0, 713, 714, 3, 423, 211, 0, 714, 715, 3, 407, 203, 0, 715, 110, 1, 0, 0, 0, 716, 717, 3, 403, 201, 0, 717, 718, 3, 439, 219, 0, 718, 719, 3, 433, 216, 0, 719, 720, 3, 433, 216, 0, 720, 721, 3, 407, 203, 0, 721, 722, 3, 425, 212, 0, 722, 723, 3, 437, 218, 0, 723, 724, 5, 95, 0, 0, 724, 725, 3, 437, 218, 0, 725, 726, 3, 415, 207, 0, 726, 727, 3, 423, 211, 0, 727, 728, 3, 407, 203, 0, 728, 729, 3, 435, 217, 0, 729, 730, 3, 437, 218, 0, 730, 731, 3, 399, 199, 0, 731, 732, 3, 423, 211, 0, 732, 733, 3, 429, 214, 0, 733, 112, 1, 0, 0, 0, 734, 735, 3, 405, 202, 0, 735, 736, 3, 399, 199, 0, 736, 737, 3, 437, 218, 0, 737, 738, 3, 399, 199, 0, 738, 739, 3, 401, 200, 0, 739, 740, 3, 399, 199, 0, 740, 741, 3, 435, 217, 0, 741, 742, 3, 407, 203, 0, 742, 114, 1, 0, 0, 0, 743, 744, 3, 405, 202, 0, 744, 745, 3, 407, 203, 0, 745, 746, 3, 409, 204, 0, 746, 747, 3, 399, 199, 0, 747, 748, 3, 439, 219, 0, 748, 749, 3, 421, 210, 0, 749, 750, 3, 437, 218, 0, 750, 116, 1, 0, 0, 0, 751, 752, 3, 405, 202, 0, 752, 753, 3, 407, 203, 0, 753, 754, 3, 409, 204, 0, 754, 755, 3, 407, 203, 0, 755, 756, 3, 433, 216, 0, 756, 757, 3, 433, 216, 0, 757, 758, 3, 399, 199, 0, 758, 759, 3, 401, 200, 0, 759, 760, 3, 421, 210, 0, 760, 761, 3, 407, 203, 0, 761, 118, 1, 0, 0, 0, 762, 763, 3, 405, 202, 0, 763, 764, 3, 407, 203, 0, 764, 765, 3, 409, 204, 0, 765, 766, 3, 407, 203, 0, 766, 767, 3, 433, 216, 0, 767, 768, 3, 433, 216, 0, 768, 769, 3, 407, 203, 0, 769, 770, 3, 405, 202, 0, 770, 120, 1, 0, 0, 0, 771, 772, 3, 405, 202, 0, 772, 773, 3, 407, 203, 0, 773, 774, 3, 421, 210, 0, 774, 775, 3, 407, 203, 0, 775, 776, 3, 437, 218, 0, 776, 777, 3, 407, 203, 0, 777, 122, 1, 0, 0, 0, 778, 779, 3, 405, 202, 0, 779, 780, 3, 407, 203, 0, 780, 781, 3, 435, 217, 0, 781, 782, 3, 403, 201, 0, 782, 124, 1, 0, 0, 0, 783, 784, 3, 405, 202, 0, 784, 785, 3, 407, 203, 0, 785, 786, 3, 437, 218, 0, 786, 787, 3, 399, 199, 0, 787, 788, 3, 403, 201, 0, 788, 789, 3, 413, 206, 0, 789, 126, 1, 0, 0, 0, 790, 791, 3, 405, 202, 0, 791, 792, 3, 415, 207, 0, 792, 793, 3, 435, 217, 0, 793, 794, 3, 437, 218, 0, 794, 795, 3, 415, 207, 0, 795, 796, 3, 425, 212, 0, 796, 797, 3, 403, 201, 0, 797, 798, 3, 437, 218, 0, 798, 128, 1, 0, 0, 0, 799, 800, 3, 405, 202, 0, 800, 801, 3, 433, 216, 0, 801, 802, 3, 427, 213, 0, 802, 803, 3, 429, 214, 0, 803, 130, 1, 0, 0, 0, 804, 805, 3, 407, 203, 0, 805, 806, 3, 399, 199, 0, 806, 807, 3, 403, 201, 0, 807, 808, 3, 413, 206, 0, 808, 132, 1, 0, 0, 0, 809, 810, 3, 407, 203, 0, 810, 811, 3, 421, 210, 0, 811, 812, 3, 435, 217, 0, 812, 813, 3, 407, 203, 0, 813, 134, 1, 0, 0, 0, 814, 815, 3, 407, 203, 0, 815, 816, 3, 425, 212, 0, 816, 817, 3, 405, 202, 0, 817, 136, 1, 0, 0, 0, 818, 819, 3, 407, 203, 0, 819, 820, 3, 435, 217, 0, 820, 821, 3, 403, 201, 0, 821, 822, 3, 399, 199, 0, 822, 823, 3, 429, 214, 0, 823, 824, 3, 407, 203, 0, 824, 138, 1, 0, 0, 0, 825, 826, 3, 407, 203, 0, 826, 827, 3, 445, 222, 0, 827, 828, 3, 403, 201, 0, 828, 829, 3, 407, 203, 0, 829, 830, 3, 429, 214, 0, 830, 831, 3, 437, 218, 0, 831, 140, 1, 0, 0, 0, 832, 833, 3, 407, 203, 0, 833, 834, 3, 445, 222, 0, 834, 835, 3, 403, 201, 0, 835, 836, 3, 421, 210, 0, 836, 837, 3, 439, 219, 0, 837, 838, 3, 435, 217, 0, 838, 839, 3, 415, 207, 0, 839, 840, 3, 441, 220, 0, 840, 841, 3, 407, 203, 0, 841, 142, 1, 0, 0, 0, 842, 843, 3, 407, 203, 0, 843, 844, 3, 445, 222, 0, 844, 845, 3, 415, 207, 0, 845, 846, 3, 435, 217, 0, 846, 847, 3, 437, 218, 0, 847, 848, 3, 435, 217, 0, 848, 144, 1, 0, 0, 0, 849, 850, 3, 407, 203, 0, 850, 851, 3, 445, 222, 0, 851, 852, 3, 429, 214, 0, 852, 853, 3, 421, 210, 0, 853, 854, 3, 399, 199, 0, 854, 855, 3, 415, 207, 0, 855, 856, 3, 425, 212, 0, 856, 146, 1, 0, 0, 0, 857, 858, 3, 409, 204, 0, 858, 859, 3, 399, 199, 0, 859, 860, 3, 415, 207, 0, 860, 861, 3, 421, 210, 0, 861, 148, 1, 0, 0, 0, 862, 863, 3, 409, 204, 0, 863, 864, 3, 427, 213, 0, 864, 865, 3, 433, 216, 0, 865, 150, 1, 0, 0, 0, 866, 867, 3, 409, 204, 0, 867, 868, 3, 427, 213, 0, 868, 869, 3, 433, 216, 0, 869, 870, 3, 407, 203, 0, 870, 871, 3, 415, 207, 0, 871, 872, 3, 411, 205, 0, 872, 873, 3, 425, 212, 0, 873, 152, 1, 0, 0, 0, 874, 875, 3, 409, 204, 0, 875, 876, 3, 433, 216, 0, 876, 877, 3, 427, 213, 0, 877, 878, 3, 423, 211, 0, 878, 154, 1, 0, 0, 0, 879, 880, 3, 409, 204, 0, 880, 881, 3, 439, 219, 0, 881, 882, 3, 421, 210, 0, 882, 883, 3, 421, 210, 0, 883, 156, 1, 0, 0, 0, 884, 885, 3, 411, 205, 0, 885, 886, 3, 421, 210, 0, 886, 887, 3, 427, 213, 0, 887, 888, 3, 401, 200, 0, 888, 158, 1, 0, 0, 0, 889, 890, 3, 411, 205, 0, 890, 891, 3, 433, 216, 0, 891, 892, 3, 427, 213, 0, 892, 893, 3, 439, 219, 0, 893, 894, 3, 429, 214, 0, 894, 160, 1, 0, 0, 0, 895, 896, 3, 413, 206, 0, 896, 897, 3, 399, 199, 0, 897, 898, 3, 441, 220, 0, 898, 899, 3, 415, 207, 0, 899, 900, 3, 425, 212, 0, 900, 901, 3, 411, 205, 0, 901, 162, 1, 0, 0, 0, 902, 903, 3, 415, 207, 0, 903, 904, 3, 409, 204, 0, 904, 164, 1, 0, 0, 0, 905, 906, 3, 415, 207, 0, 906, 907, 3, 411, 205, 0, 907, 908, 3, 425, 212, 0, 908, 909, 3, 427, 213, 0, 909, 910, 3, 433, 216, 0, 910, 911, 3, 407, 203, 0, 911, 166, 1, 0, 0, 0, 912, 913, 3, 415, 207, 0, 913, 914, 3, 423, 211, 0, 914, 915, 3, 423, 211, 0, 915, 916, 3, 407, 203, 0, 916, 917, 3, 405, 202, 0, 917, 918, 3, 415, 207, 0, 918, 919, 3, 399, 199, 0, 919, 920, 3, 437, 218, 0, 920, 921, 3, 407, 203, 0, 921, 168, 1, 0, 0, 0, 922, 923, 3, 415, 207, 0, 923, 924, 3, 425, 212, 0, 924, 170, 1, 0, 0, 0, 925, 926, 3, 415, 207, 0, 926, 927, 3, 425, 212, 0, 927, 928, 3, 405, 202, 0, 928, 929, 3, 407, 203, 0, 929, 930, 3, 445, 222, 0, 930, 172, 1, 0, 0, 0, 931, 932, 3, 415, 207, 0, 932, 933, 3, 425, 212, 0, 933, 934, 3, 405, 202, 0, 934, 935, 3, 407, 203, 0, 935, 936, 3, 445, 222, 0, 936, 937, 3, 407, 203, 0, 937, 938, 3, 405, 202, 0, 938, 174, 1, 0, 0, 0, 939, 940, 3, 415, 207, 0, 940, 941, 3, 425, 212, 0, 941, 942, 3, 415, 207, 0, 942, 943, 3, 437, 218, 0, 943, 944, 3, 415, 207, 0, 944, 945, 3, 399, 199, 0, 945, 946, 3, 421, 210, 0, 946, 947, 3, 421, 210, 0, 947, 948, 3, 447, 223, 0, 948, 176, 1, 0, 0, 0, 949, 950, 3, 415, 207, 0, 950, 951, 3, 425, 212, 0, 951, 952, 3, 425, 212, 0, 952, 953, 3, 407, 203, 0, 953, 954, 3, 433, 216, 0, 954, 178, 1, 0, 0, 0, 955, 956, 3, 415, 207, 0, 956, 957, 3, 425, 212, 0, 957, 958, 3, 435, 217, 0, 958, 959, 3, 407, 203, 0, 959, 960, 3, 433, 216, 0, 960, 961, 3, 437, 218, 0, 961, 180, 1, 0, 0, 0, 962, 963, 3, 415, 207, 0, 963, 964, 3, 425, 212, 0, 964, 965, 3, 435, 217, 0, 965, 966, 3, 437, 218, 0, 966, 967, 3, 407, 203, 0, 967, 968, 3, 399, 199, 0, 968, 969, 3, 405, 202, 0, 969, 182, 1, 0, 0, 0, 970, 971, 3, 415, 207, 0, 971, 972, 3, 425, 212, 0, 972, 973, 3, 437, 218, 0, 973, 974, 3, 407, 203, 0, 974, 975, 3, 433, 216, 0, 975, 976, 3, 435, 217, 0, 976, 977, 3, 407, 203, 0, 977, 978, 3, 403, 201, 0, 978, 979, 3, 437, 218, 0, 979, 184, 1, 0, 0, 0, 980, 981, 3, 415, 207, 0, 981, 982, 3, 425, 212, 0, 982, 983, 3, 437, 218, 0, 983, 984, 3, 427, 213, 0, 984, 186, 1, 0, 0, 0, 985, 986, 3, 415, 207, 0, 986, 987, 3, 435, 217, 0, 987, 188, 1, 0, 0, 0, 988, 989, 3, 415, 207, 0, 989, 990, 3, 435, 217, 0, 990, 991, 3, 425, 212, 0, 991, 992, 3, 439, 219, 0, 992, 993, 3, 421, 210, 0, 993, 994, 3, 421, 210, 0, 994, 190, 1, 0, 0, 0, 995, 996, 3, 417, 208, 0, 996, 997, 3, 427, 213, 0, 997, 998, 3, 415, 207, 0, 998, 999, 3, 425, 212, 0, 999, 192, 1, 0, 0, 0, 1000, 1001, 3, 419, 209, 0, 1001, 1002, 3, 407, 203, 0, 1002, 1003, 3, 447, 223, 0, 1003, 194, 1, 0, 0, 0, 1004, 1005, 3, 421, 210, 0, 1005, 1006, 3, 407, 203, 0, 1006, 1007, 3, 409, 204, 0, 1007, 1008, 3, 437, 218, 0, 1008, 196, 1, 0, 0, 0, 1009, 1010, 3, 421, 210, 0, 1010, 1011, 3, 415, 207, 0, 1011, 1012, 3, 419, 209, 0, 1012, 1013, 3, 407, 203, 0, 1013, 198, 1, 0, 0, 0, 1014, 1015, 3, 421, 210, 0, 1015, 1016, 3, 415, 207, 0, 1016, 1017, 3, 423, 211, 0, 1017, 1018, 3, 415, 207, 0, 1018, 1019, 3, 437, 218, 0, 1019, 200, 1, 0, 0, 0, 1020, 1021, 3, 423, 211, 0, 1021, 1022, 3, 399, 199, 0, 1022, 1023, 3, 437, 218, 0, 1023, 1024, 3, 403, 201, 0, 1024, 1025, 3, 413, 206, 0, 1025, 202, 1, 0, 0, 0, 1026, 1027, 3, 425, 212, 0, 1027, 1028, 3, 399, 199, 0, 1028, 1029, 3, 437, 218, 0, 1029, 1030, 3, 439, 219, 0, 1030, 1031, 3, 433, 216, 0, 1031, 1032, 3, 399, 199, 0, 1032, 1033, 3, 421, 210, 0, 1033, 204, 1, 0, 0, 0, 1034, 1035, 3, 425, 212, 0, 1035, 1036, 3, 427, 213, 0, 1036, 206, 1, 0, 0, 0, 1037, 1038, 3, 425, 212, 0, 1038, 1039, 3, 427, 213, 0, 1039, 1040, 3, 437, 218, 0, 1040, 208, 1, 0, 0, 0, 1041, 1042, 3, 425, 212, 0, 1042, 1043, 3, 427, 213, 0, 1043, 1044, 3, 437, 218, 0, 1044, 1045, 3, 425, 212, 0, 1045, 1046, 3, 439, 219, 0, 1046, 1047, 3, 421, 210, 0, 1047, 1048, 3, 421, 210, 0, 1048, 210, 1, 0, 0, 0, 1049, 1050, 3, 425, 212, 0, 1050, 1051, 3, 439, 219, 0, 1051, 1052, 3, 421, 210, 0, 1052, 1053, 3, 421, 210, 0, 1053, 212, 1, 0, 0, 0, 1054, 1055, 3, 427, 213, 0, 1055, 1056, 3, 409, 204, 0, 1056, 214, 1, 0, 0, 0, 1057, 1058, 3, 427, 213, 0, 1058, 1059, 3, 409, 204, 0, 1059, 1060, 3, 409, 204, 0, 1060, 1061, 3, 435, 217, 0, 1061, 1062, 3, 407, 203, 0, 1062, 1063, 3, 437, 218, 0, 1063, 216, 1, 0, 0, 0, 1064, 1065, 3, 427, 213, 0, 1065, 1066, 3, 425, 212, 0, 1066, 218, 1, 0, 0, 0, 1067, 1068, 3, 427, 213, 0, 1068, 1069, 3, 433, 216, 0, 1069, 220, 1, 0, 0, 0, 1070, 1071, 3, 427, 213, 0, 1071, 1072, 3, 433, 216, 0, 1072, 1073, 3, 405, 202, 0, 1073, 1074, 3, 407, 203, 0, 1074, 1075, 3, 433, 216, 0, 1075, 222, 1, 0, 0, 0, 1076, 1077, 3, 427, 213, 0, 1077, 1078, 3, 439, 219, 0, 1078, 1079, 3, 437, 218, 0, 1079, 1080, 3, 407, 203, 0, 1080, 1081, 3, 433, 216, 0, 1081, 224, 1, 0, 0, 0, 1082, 1083, 3, 429, 214, 0, 1083, 1084, 3, 421, 210, 0, 1084, 1085, 3, 399, 199, 0, 1085, 1086, 3, 425, 212, 0, 1086, 226, 1, 0, 0, 0, 1087, 1088, 3, 429, 214, 0, 1088, 1089, 3, 433, 216, 0, 1089, 1090, 3, 399, 199, 0, 1090, 1091, 3, 411, 205, 0, 1091, 1092, 3, 423, 211, 0, 1092, 1093, 3, 399, 199, 0, 1093, 228, 1, 0, 0, 0, 1094, 1095, 3, 429, 214, 0, 1095, 1096, 3, 433, 216, 0, 1096, 1097, 3, 415, 207, 0, 1097, 1098, 3, 423, 211, 0, 1098, 1099, 3, 399, 199, 0, 1099, 1100, 3, 433, 216, 0, 1100, 1101, 3, 447, 223, 0, 1101, 230, 1, 0, 0, 0, 1102, 1103, 3, 431, 215, 0, 1103, 1104, 3, 439, 219, 0, 1104, 1105, 3, 407, 203, 0, 1105, 1106, 3, 433, 216, 0, 1106, 1107, 3, 447, 223, 0, 1107, 232, 1, 0, 0, 0, 1108, 1109, 3, 433, 216, 0, 1109, 1110, 3, 399, 199, 0, 1110, 1111, 3, 415, 207, 0, 1111, 1112, 3, 435, 217, 0, 1112, 1113, 3, 407, 203, 0, 1113, 234, 1, 0, 0, 0, 1114, 1115, 3, 433, 216, 0, 1115, 1116, 3, 407, 203, 0, 1116, 1117, 3, 403, 201, 0, 1117, 1118, 3, 439, 219, 0, 1118, 1119, 3, 433, 216, 0, 1119, 1120, 3, 435, 217, 0, 1120, 1121, 3, 415, 207, 0, 1121, 1122, 3, 441, 220, 0, 1122, 1123, 3, 407, 203, 0, 1123, 236, 1, 0, 0, 0, 1124, 1125, 3, 433, 216, 0, 1125, 1126, 3, 407, 203, 0, 1126, 1127, 3, 409, 204, 0, 1127, 1128, 3, 407, 203, 0, 1128, 1129, 3, 433, 216, 0, 1129, 1130, 3, 407, 203, 0, 1130, 1131, 3, 425, 212, 0, 1131, 1132, 3, 403, 201, 0, 1132, 1133, 3, 407, 203, 0, 1133, 1134, 3, 435, 217, 0, 1134, 238, 1, 0, 0, 0, 1135, 1136, 3, 433, 216, 0, 1136, 1137, 3, 407, 203, 0, 1137, 1138, 3, 411, 205, 0, 1138, 1139, 3, 407, 203, 0, 1139, 1140, 3, 445, 222, 0, 1140, 1141, 3, 429, 214, 0, 1141, 240, 1, 0, 0, 0, 1142, 1143, 3, 433, 216, 0, 1143, 1144, 3, 407, 203, 0, 1144, 1145, 3, 415, 207, 0, 1145, 1146, 3, 425, 212, 0, 1146, 1147, 3, 405, 202, 0, 1147, 1148, 3, 407, 203, 0, 1148, 1149, 3, 445, 222, 0, 1149, 242, 1, 0, 0, 0, 1150, 1151, 3, 433, 216, 0, 1151, 1152, 3, 407, 203, 0, 1152, 1153, 3, 421, 210, 0, 1153, 1154, 3, 407, 203, 0, 1154, 1155, 3, 399, 199, 0, 1155, 1156, 3, 435, 217, 0, 1156, 1157, 3, 407, 203, 0, 1157, 244, 1, 0, 0, 0, 1158, 1159, 3, 433, 216, 0, 1159, 1160, 3, 407, 203, 0, 1160, 1161, 3, 425, 212, 0, 1161, 1162, 3, 399, 199, 0, 1162, 1163, 3, 423, 211, 0, 1163, 1164, 3, 407, 203, 0, 1164, 246, 1, 0, 0, 0, 1165, 1166, 3, 433, 216, 0, 1166, 1167, 3, 407, 203, 0, 1167, 1168, 3, 429, 214, 0, 1168, 1169, 3, 421, 210, 0, 1169, 1170, 3, 399, 199, 0, 1170, 1171, 3, 403, 201, 0, 1171, 1172, 3, 407, 203, 0, 1172, 248, 1, 0, 0, 0, 1173, 1174, 3, 433, 216, 0, 1174, 1175, 3, 407, 203, 0, 1175, 1176, 3, 435, 217, 0, 1176, 1177, 3, 437, 218, 0, 1177, 1178, 3, 433, 216, 0, 1178, 1179, 3, 415, 207, 0, 1179, 1180, 3, 403, 201, 0, 1180, 1181, 3, 437, 218, 0, 1181, 250, 1, 0, 0, 0, 1182, 1183, 3, 433, 216, 0, 1183, 1184, 3, 407, 203, 0, 1184, 1185, 3, 437, 218, 0, 1185, 1186, 3, 439, 219, 0, 1186, 1187, 3, 433, 216, 0, 1187, 1188, 3, 425, 212, 0, 1188, 1189, 3, 415, 207, 0, 1189, 1190, 3, 425, 212, 0, 1190, 1191, 3, 411, 205, 0, 1191, 252, 1, 0, 0, 0, 1192, 1193, 3, 433, 216, 0, 1193, 1194, 3, 415, 207, 0, 1194, 1195, 3, 411, 205, 0, 1195, 1196, 3, 413, 206, 0, 1196, 1197, 3, 437, 218, 0, 1197, 254, 1, 0, 0, 0, 1198, 1199, 3, 433, 216, 0, 1199, 1200, 3, 427, 213, 0, 1200, 1201, 3, 421, 210, 0, 1201, 1202, 3, 421, 210, 0, 1202, 1203, 3, 401, 200, 0, 1203, 1204, 3, 399, 199, 0, 1204, 1205, 3, 403, 201, 0, 1205, 1206, 3, 419, 209, 0, 1206, 256, 1, 0, 0, 0, 1207, 1208, 3, 433, 216, 0, 1208, 1209, 3, 427, 213, 0, 1209, 1210, 3, 443, 221, 0, 1210, 258, 1, 0, 0, 0, 1211, 1212, 3, 433, 216, 0, 1212, 1213, 3, 427, 213, 0, 1213, 1214, 3, 443, 221, 0, 1214, 1215, 3, 435, 217, 0, 1215, 260, 1, 0, 0, 0, 1216, 1217, 3, 435, 217, 0, 1217, 1218, 3, 399, 199, 0, 1218, 1219, 3, 441, 220, 0, 1219, 1220, 3, 407, 203, 0, 1220, 1221, 3, 429, 214, 0, 1221, 1222, 3, 427, 213, 0, 1222, 1223, 3, 415, 207, 0, 1223, 1224, 3, 425, 212, 0, 1224, 1225, 3, 437, 218, 0, 1225, 262, 1, 0, 0, 0, 1226, 1227, 3, 435, 217, 0, 1227, 1228, 3, 407, 203, 0, 1228, 1229, 3, 421, 210, 0, 1229, 1230, 3, 407, 203, 0, 1230, 1231, 3, 403, 201, 0, 1231, 1232, 3, 437, 218, 0, 1232, 264, 1, 0, 0, 0, 1233, 1234, 3, 435, 217, 0, 1234, 1235, 3, 407, 203, 0, 1235, 1236, 3, 437, 218, 0, 1236, 266, 1, 0, 0, 0, 1237, 1238, 3, 435, 217, 0, 1238, 1239, 3, 437, 218, 0, 1239, 1240, 3, 433, 216, 0, 1240, 1241, 3, 415, 207, 0, 1241, 1242, 3, 403, 201, 0, 1242, 1243, 3, 437, 218, 0, 1243, 268, 1, 0, 0, 0, 1244, 1245, 3, 437, 218, 0, 1245, 1246, 3, 399, 199, 0, 1246, 1247, 3, 401, 200, 0, 1247, 1248, 3, 421, 210, 0, 1248, 1249, 3, 407, 203, 0, 1249, 270, 1, 0, 0, 0, 1250, 1251, 3, 437, 218, 0, 1251, 1252, 3, 407, 203, 0, 1252, 1253, 3, 423, 211, 0, 1253, 1254, 3, 429, 214, 0, 1254, 272, 1, 0, 0, 0, 1255, 1256, 3, 437, 218, 0, 1256, 1257, 3, 407, 203, 0, 1257, 1258, 3, 423, 211, 0, 1258, 1259, 3, 429, 214, 0, 1259, 1260, 3, 427, 213, 0, 1260, 1261, 3, 433, 216, 0, 1261, 1262, 3, 399, 199, 0, 1262, 1263, 3, 433, 216, 0, 1263, 1264, 3, 447, 223, 0, 1264, 274, 1, 0, 0, 0, 1265, 1266, 3, 437, 218, 0, 1266, 1267, 3, 413, 206, 0, 1267, 1268, 3, 407, 203, 0, 1268, 1269, 3, 425, 212, 0, 1269, 276, 1, 0, 0, 0, 1270, 1271, 3, 437, 218, 0, 1271, 1272, 3, 427, 213, 0, 1272, 278, 1, 0, 0, 0, 1273, 1274, 3, 437, 218, 0, 1274, 1275, 3, 433, 216, 0, 1275, 1276, 3, 399, 199, 0, 1276, 1277, 3, 425, 212, 0, 1277, 1278, 3, 435, 217, 0, 1278, 1279, 3, 399, 199, 0, 1279, 1280, 3, 403, 201, 0, 1280, 1281, 3, 437, 218, 0, 1281, 1282, 3, 415, 207, 0, 1282, 1283, 3, 427, 213, 0, 1283, 1284, 3, 425, 212, 0, 1284, 280, 1, 0, 0, 0, 1285, 1286, 3, 437, 218, 0, 1286, 1287, 3, 433, 216, 0, 1287, 1288, 3, 415, 207, 0, 1288, 1289, 3, 411, 205, 0, 1289, 1290, 3, 411, 205, 0, 1290, 1291, 3, 407, 203, 0, 1291, 1292, 3, 433, 216, 0, 1292, 282, 1, 0, 0, 0, 1293, 1294, 3, 439, 219, 0, 1294, 1295, 3, 425, 212, 0, 1295, 1296, 3, 415, 207, 0, 1296, 1297, 3, 427, 213, 0, 1297, 1298, 3, 425, 212, 0, 1298, 284, 1, 0, 0, 0, 1299, 1300, 3, 439, 219, 0, 1300, 1301, 3, 425, 212, 0, 1301, 1302, 3, 415, 207, 0, 1302, 1303, 3, 431, 215, 0, 1303, 1304, 3, 439, 219, 0, 1304, 1305, 3, 407, 203, 0, 1305, 286, 1, 0, 0, 0, 1306, 1307, 3, 439, 219, 0, 1307, 1308, 3, 429, 214, 0, 1308, 1309, 3, 405, 202, 0, 1309, 1310, 3, 399, 199, 0, 1310, 1311, 3, 437, 218, 0, 1311, 1312, 3, 407, 203, 0, 1312, 288, 1, 0, 0, 0, 1313, 1314, 3, 439, 219, 0, 1314, 1315, 3, 435, 217, 0, 1315, 1316, 3, 415, 207, 0, 1316, 1317, 3, 425, 212, 0, 1317, 1318, 3, 411, 205, 0, 1318, 290, 1, 0, 0, 0, 1319, 1320, 3, 441, 220, 0, 1320, 1321, 3, 399, 199, 0, 1321, 1322, 3, 403, 201, 0, 1322, 1323, 3, 439, 219, 0, 1323, 1324, 3, 439, 219, 0, 1324, 1325, 3, 423, 211, 0, 1325, 292, 1, 0, 0, 0, 1326, 1327, 3, 441, 220, 0, 1327, 1328, 3, 399, 199, 0, 1328, 1329, 3, 421, 210, 0, 1329, 1330, 3, 439, 219, 0, 1330, 1331, 3, 407, 203, 0, 1331, 1332, 3, 435, 217, 0, 1332, 294, 1, 0, 0, 0, 1333, 1334, 3, 441, 220, 0, 1334, 1335, 3, 415, 207, 0, 1335, 1336, 3, 407, 203, 0, 1336, 1337, 3, 443, 221, 0, 1337, 296, 1, 0, 0, 0, 1338, 1339, 3, 441, 220, 0, 1339, 1340, 3, 415, 207, 0, 1340, 1341, 3, 433, 216, 0, 1341, 1342, 3, 437, 218, 0, 1342, 1343, 3, 439, 219, 0, 1343, 1344, 3, 399, 199, 0, 1344, 1345, 3, 421, 210, 0, 1345, 298, 1, 0, 0, 0, 1346, 1347, 3, 443, 221, 0, 1347, 1348, 3, 413, 206, 0, 1348, 1349, 3, 407, 203, 0, 1349, 1350, 3, 425, 212, 0, 1350, 300, 1, 0, 0, 0, 1351, 1352, 3, 443, 221, 0, 1352, 1353, 3, 413, 206, 0, 1353, 1354, 3, 407, 203, 0, 1354, 1355, 3, 433, 216, 0, 1355, 1356, 3, 407, 203, 0, 1356, 302, 1, 0, 0, 0, 1357, 1358, 3, 443, 221, 0, 1358, 1359, 3, 415, 207, 0, 1359, 1360, 3, 437, 218, 0, 1360, 1361, 3, 413, 206, 0, 1361, 304, 1, 0, 0, 0, 1362, 1363, 3, 443, 221, 0, 1363, 1364, 3, 415, 207, 0, 1364, 1365, 3, 437, 218, 0, 1365, 1366, 3, 413, 206, 0, 1366, 1367, 3, 427, 213, 0, 1367, 1368, 3, 439, 219, 0, 1368, 1369, 3, 437, 218, 0, 1369, 306, 1, 0, 0, 0, 1370, 1371, 3, 409, 204, 0, 1371, 1372, 3, 415, 207, 0, 1372, 1373, 3, 433, 216, 0, 1373, 1374, 3, 435, 217, 0, 1374, 1375, 3, 437, 218, 0, 1375, 1376, 5, 95, 0, 0, 1376, 1377, 3, 441, 220, 0, 1377, 1378, 3, 399, 199, 0, 1378, 1379, 3, 421, 210, 0, 1379, 1380, 3, 439, 219, 0, 1380, 1381, 3, 407, 203, 0, 1381, 308, 1, 0, 0, 0, 1382, 1383, 3, 427, 213, 0, 1383, 1384, 3, 441, 220, 0, 1384, 1385, 3, 407, 203, 0, 1385, 1386, 3, 433, 216, 0, 1386, 310, 1, 0, 0, 0, 1387, 1388, 3, 429, 214, 0, 1388, 1389, 3, 399, 199, 0, 1389, 1390, 3, 433, 216, 0, 1390, 1391, 3, 437, 218, 0, 1391, 1392, 3, 415, 207, 0, 1392, 1393, 3, 437, 218, 0, 1393, 1394, 3, 415, 207, 0, 1394, 1395, 3, 427, 213, 0, 1395, 1396, 3, 425, 212, 0, 1396, 312, 1, 0, 0, 0, 1397, 1398, 3, 433, 216, 0, 1398, 1399, 3, 399, 199, 0, 1399, 1400, 3, 425, 212, 0, 1400, 1401, 3, 411, 205, 0, 1401, 1402, 3, 407, 203, 0, 1402, 314, 1, 0, 0, 0, 1403, 1404, 3, 429, 214, 0, 1404, 1405, 3, 433, 216, 0, 1405, 1406, 3, 407, 203, 0, 1406, 1407, 3, 403, 201, 0, 1407, 1408, 3, 407, 203, 0, 1408, 1409, 3, 405, 202, 0, 1409, 1410, 3, 415, 207, 0, 1410, 1411, 3, 425, 212, 0, 1411, 1412, 3, 411, 205, 0, 1412, 316, 1, 0, 0, 0, 1413, 1414, 3, 439, 219, 0, 1414, 1415, 3, 425, 212, 0, 1415, 1416, 3, 401, 200, 0, 1416, 1417, 3, 427, 213, 0, 1417, 1418, 3, 439, 219, 0, 1418, 1419, 3, 425, 212, 0, 1419, 1420, 3, 405, 202, 0, 1420, 1421, 3, 407, 203, 0, 1421, 1422, 3, 405, 202, 0, 1422, 318, 1, 0, 0, 0, 1423, 1424, 3, 403, 201, 0, 1424, 1425, 3, 439, 219, 0, 1425, 1426, 3, 433, 216, 0, 1426, 1427, 3, 433, 216, 0, 1427, 1428, 3, 407, 203, 0, 1428, 1429, 3, 425, 212, 0, 1429, 1430, 3, 437, 218, 0, 1430, 320, 1, 0, 0, 0, 1431, 1432, 3, 409, 204, 0, 1432, 1433, 3, 427, 213, 0, 1433, 1434, 3, 421, 210, 0, 1434, 1435, 3, 421, 210, 0, 1435, 1436, 3, 427, 213, 0, 1436, 1437, 3, 443, 221, 0, 1437, 1438, 3, 415, 207, 0, 1438, 1439, 3, 425, 212, 0, 1439, 1440, 3, 411, 205, 0, 1440, 322, 1, 0, 0, 0, 1441, 1442, 3, 403, 201, 0, 1442, 1443, 3, 439, 219, 0, 1443, 1444, 3, 423, 211, 0, 1444, 1445, 3, 407, 203, 0, 1445, 1446, 5, 95, 0, 0, 1446, 1447, 3, 405, 202, 0, 1447, 1448, 3, 415, 207, 0, 1448, 1449, 3, 435, 217, 0, 1449, 1450, 3, 437, 218, 0, 1450, 324, 1, 0, 0, 0, 1451, 1452, 3, 405, 202, 0, 1452, 1453, 3, 407, 203, 0, 1453, 1454, 3, 425, 212, 0, 1454, 1455, 3, 435, 217, 0, 1455, 1456, 3, 407, 203, 0, 1456, 1457, 5, 95, 0, 0, 1457, 1458, 3, 433, 216, 0, 1458, 1459, 3, 399, 199, 0, 1459, 1460, 3, 425, 212, 0, 1460, 1461, 3, 419, 209, 0, 1461, 326, 1, 0, 0, 0, 1462, 1463, 3, 421, 210, 0, 1463, 1464, 3, 399, 199, 0, 1464, 1465, 3, 411, 205, 0, 1465, 328, 1, 0, 0, 0, 1466, 1467, 3, 421, 210, 0, 1467, 1468, 3, 399, 199, 0, 1468, 1469, 3, 435, 217, 0, 1469, 1470, 3, 437, 218, 0, 1470, 1471, 5, 95, 0, 0, 1471, 1472, 3, 441, 220, 0, 1472, 1473, 3, 399, 199, 0, 1473, 1474, 3, 421, 210, 0, 1474, 1475, 3, 439, 219, 0, 1475, 1476, 3, 407, 203, 0, 1476, 330, 1, 0, 0, 0, 1477, 1478, 3, 421, 210, 0, 1478, 1479, 3, 407, 203, 0, 1479, 1480, 3, 399, 199, 0, 1480, 1481, 3, 405, 202, 0, 1481, 332, 1, 0, 0, 0, 1482, 1483, 3, 425, 212, 0, 1483, 1484, 3, 437, 218, 0, 1484, 1485, 3, 413, 206, 0, 1485, 1486, 5, 95, 0, 0, 1486, 1487, 3, 441, 220, 0, 1487, 1488, 3, 399, 199, 0, 1488, 1489, 3, 421, 210, 0, 1489, 1490, 3, 439, 219, 0, 1490, 1491, 3, 407, 203, 0, 1491, 334, 1, 0, 0, 0, 1492, 1493, 3, 425, 212, 0, 1493, 1494, 3, 437, 218, 0, 1494, 1495, 3, 415, 207, 0, 1495, 1496, 3, 421, 210, 0, 1496, 1497, 3, 407, 203, 0, 1497, 336, 1, 0, 0, 0, 1498, 1499, 3, 429, 214, 0, 1499, 1500, 3, 407, 203, 0, 1500, 1501, 3, 433, 216, 0, 1501, 1502, 3, 403, 201, 0, 1502, 1503, 3, 407, 203, 0, 1503, 1504, 3, 425, 212, 0, 1504, 1505, 3, 437, 218, 0, 1505, 1506, 5, 95, 0, 0, 1506, 1507, 3, 433, 216, 0, 1507, 1508, 3, 399, 199, 0, 1508, 1509, 3, 425, 212, 0, 1509, 1510, 3, 419, 209, 0, 1510, 338, 1, 0, 0, 0, 1511, 1512, 3, 433, 216, 0, 1512, 1513, 3, 399, 199, 0, 1513, 1514, 3, 425, 212, 0, 1514, 1515, 3, 419, 209, 0, 1515, 340, 1, 0, 0, 0, 1516, 1517, 3, 433, 216, 0, 1517, 1518, 3, 427, 213, 0, 1518, 1519, 3, 443, 221, 0, 1519, 1520, 5, 95, 0, 0, 1520, 1521, 3, 425, 212, 0, 1521, 1522, 3, 439, 219, 0, 1522, 1523, 3, 423, 211, 0, 1523, 1524, 3, 401, 200, 0, 1524, 1525, 3, 407, 203, 0, 1525, 1526, 3, 433, 216, 0, 1526, 342, 1, 0, 0, 0, 1527, 1528, 3, 411, 205, 0, 1528, 1529, 3, 407, 203, 0, 1529, 1530, 3, 425, 212, 0, 1530, 1531, 3, 407, 203, 0, 1531, 1532, 3, 433, 216, 0, 1532, 1533, 3, 399, 199, 0, 1533, 1534, 3, 437, 218, 0, 1534, 1535, 3, 407, 203, 0, 1535, 1536, 3, 405, 202, 0, 1536, 344, 1, 0, 0, 0, 1537, 1538, 3, 399, 199, 0, 1538, 1539, 3, 421, 210, 0, 1539, 1540, 3, 443, 221, 0, 1540, 1541, 3, 399, 199, 0, 1541, 1542, 3, 447, 223, 0, 1542, 1543, 3, 435, 217, 0, 1543, 346, 1, 0, 0, 0, 1544, 1545, 3, 435, 217, 0, 1545, 1546, 3, 437, 218, 0, 1546, 1547, 3, 427, 213, 0, 1547, 1548, 3, 433, 216, 0, 1548, 1549, 3, 407, 203, 0, 1549, 1550, 3, 405, 202, 0, 1550, 348, 1, 0, 0, 0, 1551, 1552, 3, 437, 218, 0, 1552, 1553, 3, 433, 216, 0, 1553, 1554, 3, 439, 219, 0, 1554, 1555, 3, 407, 203, 0, 1555, 350, 1, 0, 0, 0, 1556, 1557, 3, 409, 204, 0, 1557, 1558, 3, 399, 199, 0, 1558, 1559, 3, 421, 210, 0, 1559, 1560, 3, 435, 217, 0, 1560, 1561, 3, 407, 203, 0, 1561, 352, 1, 0, 0, 0, 1562, 1563, 3, 443, 221, 0, 1563, 1564, 3, 415, 207, 0, 1564, 1565, 3, 425, 212, 0, 1565, 1566, 3, 405, 202, 0, 1566, 1567, 3, 427, 213, 0, 1567, 1568, 3, 443, 221, 0, 1568, 354, 1, 0, 0, 0, 1569, 1570, 3, 425, 212, 0, 1570, 1571, 3, 439, 219, 0, 1571, 1572, 3, 421, 210, 0, 1572, 1573, 3, 421, 210, 0, 1573, 1574, 3, 435, 217, 0, 1574, 356, 1, 0, 0, 0, 1575, 1576, 3, 409, 204, 0, 1576, 1577, 3, 415, 207, 0, 1577, 1578, 3, 433, 216, 0, 1578, 1579, 3, 435, 217, 0, 1579, 1580, 3, 437, 218, 0, 1580, 358, 1, 0, 0, 0, 1581, 1582, 3, 421, 210, 0, 1582, 1583, 3, 399, 199, 0, 1583, 1584, 3, 435, 217, 0, 1584, 1585, 3, 437, 218, 0, 1585, 360, 1, 0, 0, 0, 1586, 1587, 3, 409, 204, 0, 1587, 1588, 3, 415, 207, 0, 1588, 1589, 3, 421, 210, 0, 1589, 1590, 3, 437, 218, 0, 1590, 1591, 3, 407, 203, 0, 1591, 1592, 3, 433, 216, 0, 1592, 362, 1, 0, 0, 0, 1593, 1594, 3, 411, 205, 0, 1594, 1595, 3, 433, 216, 0, 1595, 1596, 3, 427, 213, 0, 1596, 1597, 3, 439, 219, 0, 1597, 1598, 3, 429, 214, 0, 1598, 1599, 3, 435, 217, 0, 1599, 364, 1, 0, 0, 0, 1600, 1601, 3, 407, 203, 0, 1601, 1602, 3, 445, 222, 0, 1602, 1603, 3, 403, 201, 0, 1603, 1604, 3, 421, 210, 0, 1604, 1605, 3, 439, 219, 0, 1605, 1606, 3, 405, 202, 0, 1606, 1607, 3, 407, 203, 0, 1607, 366, 1, 0, 0, 0, 1608, 1609, 3, 437, 218, 0, 1609, 1610, 3, 415, 207, 0, 1610, 1611, 3, 407, 203, 0, 1611, 1612, 3, 435, 217, 0, 1612, 368, 1, 0, 0, 0, 1613, 1614, 3, 427, 213, 0, 1614, 1615, 3, 437, 218, 0, 1615, 1616, 3, 413, 206, 0, 1616, 1617, 3, 407, 203, 0, 1617, 1618, 3, 433, 216, 0, 1618, 1619, 3, 435, 217, 0, 1619, 370, 1, 0, 0, 0, 1620, 1621, 3, 405, 202, 0, 1621, 1622, 3, 427, 213, 0, 1622, 372, 1, 0, 0, 0, 1623, 1624, 3, 425, 212, 0, 1624, 1625, 3, 427, 213, 0, 1625, 1626, 3, 437, 218, 0, 1626, 1627, 3, 413, 206, 0, 1627, 1628, 3, 415, 207, 0, 1628, 1629, 3, 425, 212, 0, 1629, 1630, 3, 411, 205, 0, 1630, 374, 1, 0, 0, 0, 1631, 1637, 5, 34, 0, 0, 1632, 1636, 8, 0, 0, 0, 1633, 1634, 5, 34, 0, 0, 1634, 1636, 5, 34, 0, 0, 1635, 1632, 1, 0, 0, 0, 1635, 1633, 1, 0, 0, 0, 1636, 1639, 1, 0, 0, 0, 1637, 1635, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1640, 1, 0, 0, 0, 1639, 1637, 1, 0, 0, 0, 1640, 1667, 5, 34, 0, 0, 1641, 1647, 5, 96, 0, 0, 1642, 1646, 8, 1, 0, 0, 1643, 1644, 5, 96, 0, 0, 1644, 1646, 5, 96, 0, 0, 1645, 1642, 1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1646, 1649, 1, 0, 0, 0, 1647, 1645, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 1650, 1, 0, 0, 0, 1649, 1647, 1, 0, 0, 0, 1650, 1667, 5, 96, 0, 0, 1651, 1655, 5, 91, 0, 0, 1652, 1654, 8, 2, 0, 0, 1653, 1652, 1, 0, 0, 0, 1654, 1657, 1, 0, 0, 0, 1655, 1653, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1658, 1, 0, 0, 0, 1657, 1655, 1, 0, 0, 0, 1658, 1667, 5, 93, 0, 0, 1659, 1663, 7, 3, 0, 0, 1660, 1662, 7, 4, 0, 0, 1661, 1660, 1, 0, 0, 0, 1662, 1665, 1, 0, 0, 0, 1663, 1661, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1667, 1, 0, 0, 0, 1665, 1663, 1, 0, 0, 0, 1666, 1631, 1, 0, 0, 0, 1666, 1641, 1, 0, 0, 0, 1666, 1651, 1, 0, 0, 0, 1666, 1659, 1, 0, 0, 0, 1667, 376, 1, 0, 0, 0, 1668, 1670, 3, 397, 198, 0, 1669, 1668, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1669, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1680, 1, 0, 0, 0, 1673, 1677, 5, 46, 0, 0, 1674, 1676, 3, 397, 198, 0, 1675, 1674, 1, 0, 0, 0, 1676, 1679, 1, 0, 0, 0, 1677, 1675, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1681, 1, 0, 0, 0, 1679, 1677, 1, 0, 0, 0, 1680, 1673, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1689, 1, 0, 0, 0, 1682, 1684, 5, 46, 0, 0, 1683, 1685, 3, 397, 198, 0, 1684, 1683, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 1684, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1689, 1, 0, 0, 0, 1688, 1669, 1, 0, 0, 0, 1688, 1682, 1, 0, 0, 0, 1689, 1699, 1, 0, 0, 0, 1690, 1692, 3, 407, 203, 0, 1691, 1693, 7, 5, 0, 0, 1692, 1691, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1695, 1, 0, 0, 0, 1694, 1696, 3, 397, 198, 0, 1695, 1694, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1697, 1698, 1, 0, 0, 0, 1698, 1700, 1, 0, 0, 0, 1699, 1690, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1710, 1, 0, 0, 0, 1701, 1702, 5, 48, 0, 0, 1702, 1703, 5, 120, 0, 0, 1703, 1705, 1, 0, 0, 0, 1704, 1706, 3, 395, 197, 0, 1705, 1704, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1705, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1710, 1, 0, 0, 0, 1709, 1688, 1, 0, 0, 0, 1709, 1701, 1, 0, 0, 0, 1710, 378, 1, 0, 0, 0, 1711, 1715, 5, 63, 0, 0, 1712, 1714, 3, 397, 198, 0, 1713, 1712, 1, 0, 0, 0, 1714, 1717, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 380, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1718, 1719, 7, 6, 0, 0, 1719, 1720, 3, 375, 187, 0, 1720, 382, 1, 0, 0, 0, 1721, 1727, 5, 39, 0, 0, 1722, 1726, 8, 7, 0, 0, 1723, 1724, 5, 39, 0, 0, 1724, 1726, 5, 39, 0, 0, 1725, 1722, 1, 0, 0, 0, 1725, 1723, 1, 0, 0, 0, 1726, 1729, 1, 0, 0, 0, 1727, 1725, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1730, 1, 0, 0, 0, 1729, 1727, 1, 0, 0, 0, 1730, 1731, 5, 39, 0, 0, 1731, 384, 1, 0, 0, 0, 1732, 1733, 3, 445, 222, 0, 1733, 1734, 3, 383, 191, 0, 1734, 386, 1, 0, 0, 0, 1735, 1736, 5, 45, 0, 0, 1736, 1737, 5, 45, 0, 0, 1737, 1741, 1, 0, 0, 0, 1738, 1740, 8, 8, 0, 0, 1739, 1738, 1, 0, 0, 0, 1740, 1743, 1, 0, 0, 0, 1741, 1739, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1749, 1, 0, 0, 0, 1743, 1741, 1, 0, 0, 0, 1744, 1746, 5, 13, 0, 0, 1745, 1744, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1750, 5, 10, 0, 0, 1748, 1750, 5, 0, 0, 1, 1749, 1745, 1, 0, 0, 0, 1749, 1748, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1752, 6, 193, 0, 0, 1752, 388, 1, 0, 0, 0, 1753, 1754, 5, 47, 0, 0, 1754, 1755, 5, 42, 0, 0, 1755, 1759, 1, 0, 0, 0, 1756, 1758, 9, 0, 0, 0, 1757, 1756, 1, 0, 0, 0, 1758, 1761, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1759, 1757, 1, 0, 0, 0, 1760, 1762, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1762, 1763, 5, 42, 0, 0, 1763, 1764, 5, 47, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 6, 194, 0, 0, 1766, 390, 1, 0, 0, 0, 1767, 1768, 7, 9, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 6, 195, 0, 0, 1770, 392, 1, 0, 0, 0, 1771, 1772, 9, 0, 0, 0, 1772, 394, 1, 0, 0, 0, 1773, 1774, 7, 10, 0, 0, 1774, 396, 1, 0, 0, 0, 1775, 1776, 7, 11, 0, 0, 1776, 398, 1, 0, 0, 0, 1777, 1778, 7, 12, 0, 0, 1778, 400, 1, 0, 0, 0, 1779, 1780, 7, 13, 0, 0, 1780, 402, 1, 0, 0, 0, 1781, 1782, 7, 14, 0, 0, 1782, 404, 1, 0, 0, 0, 1783, 1784, 7, 15, 0, 0, 1784, 406, 1, 0, 0, 0, 1785, 1786, 7, 16, 0, 0, 1786, 408, 1, 0, 0, 0, 1787, 1788, 7, 17, 0, 0, 1788, 410, 1, 0, 0, 0, 1789, 1790, 7, 18, 0, 0, 1790, 412, 1, 0, 0, 0, 1791, 1792, 7, 19, 0, 0, 1792, 414, 1, 0, 0, 0, 1793, 1794, 7, 20, 0, 0, 1794, 416, 1, 0, 0, 0, 1795, 1796, 7, 21, 0, 0, 1796, 418, 1, 0, 0, 0, 1797, 1798, 7, 22, 0, 0, 1798, 420, 1, 0, 0, 0, 1799, 1800, 7, 23, 0, 0, 1800, 422, 1, 0, 0, 0, 1801, 1802, 7, 24, 0, 0, 1802, 424, 1, 0, 0, 0, 1803, 1804, 7, 25, 0, 0, 1804, 426, 1, 0, 0, 0, 1805, 1806, 7, 26, 0, 0, 1806, 428, 1, 0, 0, 0, 1807, 1808, 7, 27, 0, 0, 1808, 430, 1, 0, 0, 0, 1809, 1810, 7, 28, 0, 0, 1810, 432, 1, 0, 0, 0, 1811, 1812, 7, 29, 0, 0, 1812, 434, 1, 0, 0, 0, 1813, 1814, 7, 30, 0, 0, 1814, 436, 1, 0, 0, 0, 1815, 1816, 7, 31, 0, 0, 1816, 438, 1, 0, 0, 0, 1817, 1818, 7, 32, 0, 0, 1818, 440, 1, 0, 0, 0, 1819, 1820, 7, 33, 0, 0, 1820, 442, 1, 0, 0, 0, 1821, 1822, 7, 34, 0, 0, 1822, 444, 1, 0, 0, 0, 1823, 1824, 7, 35, 0, 0, 1824, 446, 1, 0, 0, 0, 1825, 1826, 7, 36, 0, 0, 1826, 448, 1, 0, 0, 0, 1827, 1828, 7, 37, 0, 0, 1828, 450, 1, 0, 0, 0, 25, 0, 1635, 1637, 1645, 1647, 1655, 1663, 1666, 1671, 1677, 1680, 1686, 1688, 1692, 1697, 1699, 1707, 1709, 1715, 1725, 1727, 1741, 1745, 1749, 1759, 1, 0, 1, 0]"
  },
  {
    "path": "internal/engine/sqlite/parser/SQLiteLexer.tokens",
    "content": "SCOL=1\nDOT=2\nOPEN_PAR=3\nCLOSE_PAR=4\nCOMMA=5\nASSIGN=6\nSTAR=7\nPLUS=8\nPTR2=9\nPTR=10\nMINUS=11\nTILDE=12\nPIPE2=13\nDIV=14\nMOD=15\nLT2=16\nGT2=17\nAMP=18\nPIPE=19\nLT=20\nLT_EQ=21\nGT=22\nGT_EQ=23\nEQ=24\nNOT_EQ1=25\nNOT_EQ2=26\nABORT_=27\nACTION_=28\nADD_=29\nAFTER_=30\nALL_=31\nALTER_=32\nANALYZE_=33\nAND_=34\nAS_=35\nASC_=36\nATTACH_=37\nAUTOINCREMENT_=38\nBEFORE_=39\nBEGIN_=40\nBETWEEN_=41\nBY_=42\nCASCADE_=43\nCASE_=44\nCAST_=45\nCHECK_=46\nCOLLATE_=47\nCOLUMN_=48\nCOMMIT_=49\nCONFLICT_=50\nCONSTRAINT_=51\nCREATE_=52\nCROSS_=53\nCURRENT_DATE_=54\nCURRENT_TIME_=55\nCURRENT_TIMESTAMP_=56\nDATABASE_=57\nDEFAULT_=58\nDEFERRABLE_=59\nDEFERRED_=60\nDELETE_=61\nDESC_=62\nDETACH_=63\nDISTINCT_=64\nDROP_=65\nEACH_=66\nELSE_=67\nEND_=68\nESCAPE_=69\nEXCEPT_=70\nEXCLUSIVE_=71\nEXISTS_=72\nEXPLAIN_=73\nFAIL_=74\nFOR_=75\nFOREIGN_=76\nFROM_=77\nFULL_=78\nGLOB_=79\nGROUP_=80\nHAVING_=81\nIF_=82\nIGNORE_=83\nIMMEDIATE_=84\nIN_=85\nINDEX_=86\nINDEXED_=87\nINITIALLY_=88\nINNER_=89\nINSERT_=90\nINSTEAD_=91\nINTERSECT_=92\nINTO_=93\nIS_=94\nISNULL_=95\nJOIN_=96\nKEY_=97\nLEFT_=98\nLIKE_=99\nLIMIT_=100\nMATCH_=101\nNATURAL_=102\nNO_=103\nNOT_=104\nNOTNULL_=105\nNULL_=106\nOF_=107\nOFFSET_=108\nON_=109\nOR_=110\nORDER_=111\nOUTER_=112\nPLAN_=113\nPRAGMA_=114\nPRIMARY_=115\nQUERY_=116\nRAISE_=117\nRECURSIVE_=118\nREFERENCES_=119\nREGEXP_=120\nREINDEX_=121\nRELEASE_=122\nRENAME_=123\nREPLACE_=124\nRESTRICT_=125\nRETURNING_=126\nRIGHT_=127\nROLLBACK_=128\nROW_=129\nROWS_=130\nSAVEPOINT_=131\nSELECT_=132\nSET_=133\nSTRICT_=134\nTABLE_=135\nTEMP_=136\nTEMPORARY_=137\nTHEN_=138\nTO_=139\nTRANSACTION_=140\nTRIGGER_=141\nUNION_=142\nUNIQUE_=143\nUPDATE_=144\nUSING_=145\nVACUUM_=146\nVALUES_=147\nVIEW_=148\nVIRTUAL_=149\nWHEN_=150\nWHERE_=151\nWITH_=152\nWITHOUT_=153\nFIRST_VALUE_=154\nOVER_=155\nPARTITION_=156\nRANGE_=157\nPRECEDING_=158\nUNBOUNDED_=159\nCURRENT_=160\nFOLLOWING_=161\nCUME_DIST_=162\nDENSE_RANK_=163\nLAG_=164\nLAST_VALUE_=165\nLEAD_=166\nNTH_VALUE_=167\nNTILE_=168\nPERCENT_RANK_=169\nRANK_=170\nROW_NUMBER_=171\nGENERATED_=172\nALWAYS_=173\nSTORED_=174\nTRUE_=175\nFALSE_=176\nWINDOW_=177\nNULLS_=178\nFIRST_=179\nLAST_=180\nFILTER_=181\nGROUPS_=182\nEXCLUDE_=183\nTIES_=184\nOTHERS_=185\nDO_=186\nNOTHING_=187\nIDENTIFIER=188\nNUMERIC_LITERAL=189\nNUMBERED_BIND_PARAMETER=190\nNAMED_BIND_PARAMETER=191\nSTRING_LITERAL=192\nBLOB_LITERAL=193\nSINGLE_LINE_COMMENT=194\nMULTILINE_COMMENT=195\nSPACES=196\nUNEXPECTED_CHAR=197\n';'=1\n'.'=2\n'('=3\n')'=4\n','=5\n'='=6\n'*'=7\n'+'=8\n'->>'=9\n'->'=10\n'-'=11\n'~'=12\n'||'=13\n'/'=14\n'%'=15\n'<<'=16\n'>>'=17\n'&'=18\n'|'=19\n'<'=20\n'<='=21\n'>'=22\n'>='=23\n'=='=24\n'!='=25\n'<>'=26\n"
  },
  {
    "path": "internal/engine/sqlite/parser/SQLiteParser.g4",
    "content": "/*\n * The MIT License (MIT)\n *\n * Copyright (c) 2014 by Bart Kiers\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and\n * associated documentation files (the \"Software\"), to deal in the Software without restriction,\n * including without limitation the rights to use, copy, modify, merge, publish, distribute,\n * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all copies or\n * substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT\n * NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\n * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,\n * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n *\n * Project : sqlite-parser; an ANTLR4 grammar for SQLite https://github.com/bkiers/sqlite-parser\n * Developed by:\n *     Bart Kiers, bart@big-o.nl\n *     Martin Mirchev, marti_2203@abv.bg\n *     Mike Lische, mike@lischke-online.de\n */\n\n// $antlr-format alignTrailingComments on, columnLimit 130, minEmptyLines 1, maxEmptyLinesToKeep 1, reflowComments off\n// $antlr-format useTab off, allowShortRulesOnASingleLine off, allowShortBlocksOnASingleLine on, alignSemicolons ownLine\n\nparser grammar SQLiteParser;\n\noptions {\n    tokenVocab = SQLiteLexer;\n}\n\nparse: (sql_stmt_list)* EOF\n;\n\nsql_stmt_list:\n    SCOL* sql_stmt (SCOL+ sql_stmt)* SCOL*\n;\n\nsql_stmt: (EXPLAIN_ (QUERY_ PLAN_)?)? (\n        alter_table_stmt\n        | analyze_stmt\n        | attach_stmt\n        | begin_stmt\n        | commit_stmt\n        | create_index_stmt\n        | create_table_stmt\n        | create_trigger_stmt\n        | create_view_stmt\n        | create_virtual_table_stmt\n        | delete_stmt\n        | delete_stmt_limited\n        | detach_stmt\n        | drop_stmt\n        | insert_stmt\n        | pragma_stmt\n        | reindex_stmt\n        | release_stmt\n        | rollback_stmt\n        | savepoint_stmt\n        | select_stmt\n        | update_stmt\n        | update_stmt_limited\n        | vacuum_stmt\n    )\n;\n\nalter_table_stmt:\n    ALTER_ TABLE_ (schema_name DOT)? table_name (\n        RENAME_ (\n            TO_ new_table_name\n            | COLUMN_? old_column_name = column_name TO_ new_column_name = column_name\n        )\n        | ADD_ COLUMN_? column_def\n        | DROP_ COLUMN_? column_name\n    )\n;\n\nanalyze_stmt:\n    ANALYZE_ (schema_name | (schema_name DOT)? table_or_index_name)?\n;\n\nattach_stmt:\n    ATTACH_ DATABASE_? expr AS_ schema_name\n;\n\nbegin_stmt:\n    BEGIN_ (DEFERRED_ | IMMEDIATE_ | EXCLUSIVE_)? (\n        TRANSACTION_ transaction_name?\n    )?\n;\n\ncommit_stmt: (COMMIT_ | END_) TRANSACTION_?\n;\n\nrollback_stmt:\n    ROLLBACK_ TRANSACTION_? (TO_ SAVEPOINT_? savepoint_name)?\n;\n\nsavepoint_stmt:\n    SAVEPOINT_ savepoint_name\n;\n\nrelease_stmt:\n    RELEASE_ SAVEPOINT_? savepoint_name\n;\n\ncreate_index_stmt:\n    CREATE_ UNIQUE_? INDEX_ (IF_ NOT_ EXISTS_)? (schema_name DOT)? index_name ON_ table_name OPEN_PAR\n        indexed_column (COMMA indexed_column)* CLOSE_PAR (WHERE_ expr)?\n;\n\nindexed_column: (column_name | expr) (COLLATE_ collation_name)? asc_desc?\n;\n\ntable_option:\n    WITHOUT_ row_ROW_ID = IDENTIFIER\n    | STRICT_\n;\n\ncreate_table_stmt:\n    CREATE_ (TEMP_ | TEMPORARY_)? TABLE_ (IF_ NOT_ EXISTS_)? (\n        schema_name DOT\n    )? table_name (\n        OPEN_PAR column_def (COMMA column_def)*? (COMMA table_constraint)* CLOSE_PAR (\n            table_option (COMMA table_option)*\n        )?\n        | AS_ select_stmt\n    )\n;\n\ncolumn_def:\n    column_name type_name? column_constraint*\n;\n\ntype_name:\n    name+? (\n        OPEN_PAR signed_number CLOSE_PAR\n        | OPEN_PAR signed_number COMMA signed_number CLOSE_PAR\n    )?\n;\n\ncolumn_constraint: (CONSTRAINT_ name)? (\n        (PRIMARY_ KEY_ asc_desc? conflict_clause? AUTOINCREMENT_?)\n        | (NOT_ NULL_ | UNIQUE_) conflict_clause?\n        | CHECK_ OPEN_PAR expr CLOSE_PAR\n        | DEFAULT_ (signed_number | literal_value | OPEN_PAR expr CLOSE_PAR)\n        | COLLATE_ collation_name\n        | foreign_key_clause\n        | (GENERATED_ ALWAYS_)? AS_ OPEN_PAR expr CLOSE_PAR (\n            STORED_\n            | VIRTUAL_\n        )?\n    )\n;\n\nsigned_number: (PLUS | MINUS)? NUMERIC_LITERAL\n;\n\ntable_constraint: (CONSTRAINT_ name)? (\n        (PRIMARY_ KEY_ | UNIQUE_) OPEN_PAR indexed_column (\n            COMMA indexed_column\n        )* CLOSE_PAR conflict_clause?\n        | CHECK_ OPEN_PAR expr CLOSE_PAR\n        | FOREIGN_ KEY_ OPEN_PAR column_name (COMMA column_name)* CLOSE_PAR foreign_key_clause\n    )\n;\n\nforeign_key_clause:\n    REFERENCES_ foreign_table (\n        OPEN_PAR column_name (COMMA column_name)* CLOSE_PAR\n    )? (\n        ON_ (DELETE_ | UPDATE_) (\n            SET_ (NULL_ | DEFAULT_)\n            | CASCADE_\n            | RESTRICT_\n            | NO_ ACTION_\n        )\n        | MATCH_ name\n    )* (NOT_? DEFERRABLE_ (INITIALLY_ (DEFERRED_ | IMMEDIATE_))?)?\n;\n\nconflict_clause:\n    ON_ CONFLICT_ (\n        ROLLBACK_\n        | ABORT_\n        | FAIL_\n        | IGNORE_\n        | REPLACE_\n    )\n;\n\ncreate_trigger_stmt:\n    CREATE_ (TEMP_ | TEMPORARY_)? TRIGGER_ (IF_ NOT_ EXISTS_)? (\n        schema_name DOT\n    )? trigger_name (BEFORE_ | AFTER_ | INSTEAD_ OF_)? (\n        DELETE_\n        | INSERT_\n        | UPDATE_ (OF_ column_name ( COMMA column_name)*)?\n    ) ON_ table_name (FOR_ EACH_ ROW_)? (WHEN_ expr)? BEGIN_ (\n        (update_stmt | insert_stmt | delete_stmt | select_stmt) SCOL\n    )+ END_\n;\n\ncreate_view_stmt:\n    CREATE_ (TEMP_ | TEMPORARY_)? VIEW_ (IF_ NOT_ EXISTS_)? (\n        schema_name DOT\n    )? view_name (OPEN_PAR column_name (COMMA column_name)* CLOSE_PAR)? AS_ select_stmt\n;\n\ncreate_virtual_table_stmt:\n    CREATE_ VIRTUAL_ TABLE_ (IF_ NOT_ EXISTS_)? (schema_name DOT)? table_name USING_ module_name (\n        OPEN_PAR module_argument (COMMA module_argument)* CLOSE_PAR\n    )?\n;\n\nwith_clause:\n    WITH_ RECURSIVE_? cte_table_name AS_ OPEN_PAR select_stmt CLOSE_PAR (\n        COMMA cte_table_name AS_ OPEN_PAR select_stmt CLOSE_PAR\n    )*\n;\n\ncte_table_name:\n    table_name (OPEN_PAR column_name ( COMMA column_name)* CLOSE_PAR)?\n;\n\nrecursive_cte:\n    cte_table_name AS_ OPEN_PAR initial_select UNION_ ALL_? recursive__select CLOSE_PAR\n;\n\ncommon_table_expression:\n    table_name (OPEN_PAR column_name ( COMMA column_name)* CLOSE_PAR)? AS_ OPEN_PAR select_stmt CLOSE_PAR\n;\n\nreturning_clause:\n    RETURNING_ (\n        (STAR | expr ( AS_? column_alias)?) (\n            COMMA (STAR | expr ( AS_? column_alias)?)\n        )*\n    )\n;\n\ndelete_stmt:\n    with_clause? DELETE_ FROM_ qualified_table_name (WHERE_ expr)? returning_clause?\n;\n\ndelete_stmt_limited:\n    with_clause? DELETE_ FROM_ qualified_table_name (WHERE_ expr)? (\n        order_by_stmt? limit_stmt\n    )? returning_clause?\n;\n\ndetach_stmt:\n    DETACH_ DATABASE_? schema_name\n;\n\ndrop_stmt:\n    DROP_ object = (INDEX_ | TABLE_ | TRIGGER_ | VIEW_) (\n        IF_ EXISTS_\n    )? (schema_name DOT)? any_name\n;\n\n/*\n SQLite understands the following binary operators, in order from highest to lowest precedence:\n    ||\n    * / %\n    + -\n    << >> & |\n    < <= > >=\n    = == != <> IS IS NOT IN LIKE GLOB MATCH REGEXP\n    AND\n    OR\n */\nexpr:\n    literal_value #expr_literal\n    | NUMBERED_BIND_PARAMETER #expr_bind\n    | NAMED_BIND_PARAMETER #expr_bind\n    | ((schema_name DOT)? table_name DOT)? column_name #expr_qualified_column_name\n    | unary_operator expr #expr_unary\n    | expr PIPE2 expr #expr_binary\n    | expr ( PTR | PTR2 ) expr #expr_binary\n    | expr ( STAR | DIV | MOD) expr #expr_binary\n    | expr ( PLUS | MINUS) expr #expr_binary\n    | expr ( LT2 | GT2 | AMP | PIPE) expr #expr_comparison\n    | expr ( LT | LT_EQ | GT | GT_EQ) expr #expr_comparison\n    | expr (\n        ASSIGN\n        | EQ\n        | NOT_EQ1\n        | NOT_EQ2\n        | IS_\n        | IS_ NOT_\n        | NOT_? IN_\n        | LIKE_\n        | GLOB_\n        | MATCH_\n        | REGEXP_\n    ) expr #expr_comparison\n    | expr NOT_? IN_ (\n        OPEN_PAR (select_stmt | expr ( COMMA expr)*)? CLOSE_PAR\n        | ( schema_name DOT)? table_name\n        | (schema_name DOT)? table_function_name OPEN_PAR (expr (COMMA expr)*)? CLOSE_PAR\n    ) #expr_in_select\n    | expr AND_ expr #expr_bool\n    | expr OR_ expr #expr_bool\n    | qualified_function_name OPEN_PAR ((DISTINCT_? expr ( COMMA expr)*) | STAR)? CLOSE_PAR filter_clause? over_clause? #expr_function\n    | OPEN_PAR expr (COMMA expr)* CLOSE_PAR #expr_list\n    | CAST_ OPEN_PAR expr AS_ type_name CLOSE_PAR #expr_cast\n    | expr COLLATE_ collation_name #expr_collate\n    | expr NOT_? (LIKE_ | GLOB_ | REGEXP_ | MATCH_) expr (\n        ESCAPE_ expr\n    )? #expr_comparison\n    | expr ( ISNULL_ | NOTNULL_ | NOT_ NULL_) #expr_null_comp\n    | expr NOT_? BETWEEN_ expr AND_ expr #expr_between\n    | ((NOT_)? EXISTS_)? OPEN_PAR select_stmt CLOSE_PAR #expr_in_select\n    | CASE_ expr? (WHEN_ expr THEN_ expr)+ (ELSE_ expr)? END_ #expr_case\n    | raise_function #expr_raise\n;\n\nraise_function:\n    RAISE_ OPEN_PAR (\n        IGNORE_\n        | (ROLLBACK_ | ABORT_ | FAIL_) COMMA error_message\n    ) CLOSE_PAR\n;\n\nliteral_value:\n    NUMERIC_LITERAL\n    | STRING_LITERAL\n    | BLOB_LITERAL\n    | NULL_\n    | TRUE_\n    | FALSE_\n    | CURRENT_TIME_\n    | CURRENT_DATE_\n    | CURRENT_TIMESTAMP_\n;\n\ninsert_stmt:\n    with_clause? (\n        INSERT_\n        | REPLACE_\n        | INSERT_ OR_ (\n            REPLACE_\n            | ROLLBACK_\n            | ABORT_\n            | FAIL_\n            | IGNORE_\n        )\n    ) INTO_ (schema_name DOT)? table_name (AS_ table_alias)? (\n        OPEN_PAR column_name ( COMMA column_name)* CLOSE_PAR\n    )? (\n        (\n            VALUES_ OPEN_PAR expr (COMMA expr)* CLOSE_PAR (\n                COMMA OPEN_PAR expr ( COMMA expr)* CLOSE_PAR\n            )*\n            | select_stmt\n            | DEFAULT_ VALUES_\n        ) upsert_clause? returning_clause?\n    )\n;\n\nupsert_clause:\n    ON_ CONFLICT_ (\n        OPEN_PAR indexed_column (COMMA indexed_column)* CLOSE_PAR (WHERE_ expr)?\n    )? DO_ (\n        NOTHING_\n        | UPDATE_ SET_ (\n            (column_name | column_name_list) ASSIGN expr (\n                COMMA (column_name | column_name_list) ASSIGN expr\n            )* (WHERE_ expr)?\n        )\n    )\n;\n\npragma_stmt:\n    PRAGMA_ (schema_name DOT)? pragma_name (\n        ASSIGN pragma_value\n        | OPEN_PAR pragma_value CLOSE_PAR\n    )?\n;\n\npragma_value:\n    signed_number\n    | name\n    | STRING_LITERAL\n;\n\nreindex_stmt:\n    REINDEX_ (collation_name | (schema_name DOT)? (table_name | index_name))?\n;\n\nselect_stmt:\n    common_table_stmt? select_core (compound_operator select_core)* order_by_stmt? limit_stmt?\n;\n\njoin_clause:\n    table_or_subquery (join_operator table_or_subquery join_constraint)*\n;\n\nselect_core:\n    (\n        SELECT_ (DISTINCT_ | ALL_)? result_column (COMMA result_column)* (\n            FROM_ (table_or_subquery (COMMA table_or_subquery)* | join_clause)\n        )? (WHERE_ expr)? (GROUP_ BY_ expr (COMMA expr)* (HAVING_ expr)?)? (\n            WINDOW_ window_name AS_ window_defn (\n                COMMA window_name AS_ window_defn\n            )*\n        )?\n    )\n    | VALUES_ OPEN_PAR expr (COMMA expr)* CLOSE_PAR (\n        COMMA OPEN_PAR expr ( COMMA expr)* CLOSE_PAR\n    )*\n;\n\nfactored_select_stmt:\n    select_stmt\n;\n\nsimple_select_stmt:\n    common_table_stmt? select_core order_by_stmt? limit_stmt?\n;\n\ncompound_select_stmt:\n    common_table_stmt? select_core (\n        (UNION_ ALL_? | INTERSECT_ | EXCEPT_) select_core\n    )+ order_by_stmt? limit_stmt?\n;\n\ntable_or_subquery:\n    (schema_name DOT)? table_name (AS_? table_alias)? (INDEXED_ BY_ index_name | NOT_ INDEXED_)?\n    | (schema_name DOT)? table_function_name OPEN_PAR expr (COMMA expr)* CLOSE_PAR (AS_? table_alias)?\n    | OPEN_PAR (table_or_subquery (COMMA table_or_subquery)* | join_clause) CLOSE_PAR\n    | OPEN_PAR select_stmt CLOSE_PAR (AS_? table_alias)?\n    | (schema_name DOT)? table_name (AS_? table_alias_fallback)? (INDEXED_ BY_ index_name | NOT_ INDEXED_)?\n    | (schema_name DOT)? table_function_name OPEN_PAR expr (COMMA expr)* CLOSE_PAR (AS_? table_alias_fallback)?\n    | OPEN_PAR (table_or_subquery (COMMA table_or_subquery)* | join_clause) CLOSE_PAR\n    | OPEN_PAR select_stmt CLOSE_PAR (AS_? table_alias_fallback)?\n;\n\nresult_column:\n    STAR\n    | table_name DOT STAR\n    | expr ( AS_? column_alias)?\n;\n\njoin_operator:\n    COMMA\n    | NATURAL_? (((LEFT_ | RIGHT_ | FULL_) OUTER_?) | INNER_)? JOIN_\n    | CROSS_ JOIN_\n;\n\njoin_constraint:\n    (ON_ expr\n    | USING_ OPEN_PAR column_name ( COMMA column_name)* CLOSE_PAR)?\n;\n\ncompound_operator:\n    UNION_ ALL_?\n    | INTERSECT_\n    | EXCEPT_\n;\n\nupdate_stmt:\n    with_clause? UPDATE_ (\n        OR_ (ROLLBACK_ | ABORT_ | REPLACE_ | FAIL_ | IGNORE_)\n    )? qualified_table_name SET_ (column_name | column_name_list) ASSIGN expr (\n        COMMA (column_name | column_name_list) ASSIGN expr\n    )* (WHERE_ expr)? returning_clause?\n;\n\ncolumn_name_list:\n    OPEN_PAR column_name (COMMA column_name)* CLOSE_PAR\n;\n\nupdate_stmt_limited:\n    with_clause? UPDATE_ (\n        OR_ (ROLLBACK_ | ABORT_ | REPLACE_ | FAIL_ | IGNORE_)\n    )? qualified_table_name SET_ (column_name | column_name_list) ASSIGN expr (\n        COMMA (column_name | column_name_list) ASSIGN expr\n    )* (WHERE_ expr)? (order_by_stmt? limit_stmt)?\n;\n\nqualified_table_name: (schema_name DOT)? table_name (AS_ alias)? (\n        INDEXED_ BY_ index_name\n        | NOT_ INDEXED_\n    )?\n;\n\nvacuum_stmt:\n    VACUUM_ schema_name? (INTO_ filename)?\n;\n\nfilter_clause:\n    FILTER_ OPEN_PAR WHERE_ expr CLOSE_PAR\n;\n\nwindow_defn:\n    OPEN_PAR base_window_name? (PARTITION_ BY_ expr (COMMA expr)*)? (\n        ORDER_ BY_ ordering_term (COMMA ordering_term)*\n    ) frame_spec? CLOSE_PAR\n;\n\nover_clause:\n    OVER_ (\n        window_name\n        | OPEN_PAR base_window_name? (PARTITION_ BY_ expr (COMMA expr)*)? (\n            ORDER_ BY_ ordering_term (COMMA ordering_term)*\n        )? frame_spec? CLOSE_PAR\n    )\n;\n\nframe_spec:\n    frame_clause (\n        EXCLUDE_ (NO_ OTHERS_)\n        | CURRENT_ ROW_\n        | GROUP_\n        | TIES_\n    )?\n;\n\nframe_clause: (RANGE_ | ROWS_ | GROUPS_) (\n        frame_single\n        | BETWEEN_ frame_left AND_ frame_right\n    )\n;\n\nsimple_function_invocation:\n    simple_func OPEN_PAR (expr (COMMA expr)* | STAR) CLOSE_PAR\n;\n\naggregate_function_invocation:\n    aggregate_func OPEN_PAR (DISTINCT_? expr (COMMA expr)* | STAR)? CLOSE_PAR filter_clause?\n;\n\nwindow_function_invocation:\n    window_function OPEN_PAR (expr (COMMA expr)* | STAR)? CLOSE_PAR filter_clause? OVER_ (\n        window_defn\n        | window_name\n    )\n;\n\ncommon_table_stmt: //additional structures\n    WITH_ RECURSIVE_? common_table_expression (COMMA common_table_expression)*\n;\n\norder_by_stmt:\n    ORDER_ BY_ ordering_term (COMMA ordering_term)*\n;\n\nlimit_stmt:\n    LIMIT_ expr ((OFFSET_ | COMMA) expr)?\n;\n\nordering_term:\n    expr (COLLATE_ collation_name)? asc_desc? (NULLS_ (FIRST_ | LAST_))?\n;\n\nasc_desc:\n    ASC_\n    | DESC_\n;\n\nframe_left:\n    expr PRECEDING_\n    | expr FOLLOWING_\n    | CURRENT_ ROW_\n    | UNBOUNDED_ PRECEDING_\n;\n\nframe_right:\n    expr PRECEDING_\n    | expr FOLLOWING_\n    | CURRENT_ ROW_\n    | UNBOUNDED_ FOLLOWING_\n;\n\nframe_single:\n    expr PRECEDING_\n    | UNBOUNDED_ PRECEDING_\n    | CURRENT_ ROW_\n;\n\n// unknown\n\nwindow_function:\n    (FIRST_VALUE_ | LAST_VALUE_) OPEN_PAR expr CLOSE_PAR OVER_ OPEN_PAR partition_by? order_by_expr_asc_desc frame_clause\n        ? CLOSE_PAR\n    | (CUME_DIST_ | PERCENT_RANK_) OPEN_PAR CLOSE_PAR OVER_ OPEN_PAR partition_by? order_by_expr? CLOSE_PAR\n    | (DENSE_RANK_ | RANK_ | ROW_NUMBER_) OPEN_PAR CLOSE_PAR OVER_ OPEN_PAR partition_by? order_by_expr_asc_desc\n        CLOSE_PAR\n    | (LAG_ | LEAD_) OPEN_PAR expr of_OF_fset? default_DEFAULT__value? CLOSE_PAR OVER_ OPEN_PAR partition_by?\n        order_by_expr_asc_desc CLOSE_PAR\n    | NTH_VALUE_ OPEN_PAR expr COMMA signed_number CLOSE_PAR OVER_ OPEN_PAR partition_by? order_by_expr_asc_desc\n        frame_clause? CLOSE_PAR\n    | NTILE_ OPEN_PAR expr CLOSE_PAR OVER_ OPEN_PAR partition_by? order_by_expr_asc_desc CLOSE_PAR\n;\n\nof_OF_fset:\n    COMMA signed_number\n;\n\ndefault_DEFAULT__value:\n    COMMA signed_number\n;\n\npartition_by:\n    PARTITION_ BY_ expr+\n;\n\norder_by_expr:\n    ORDER_ BY_ expr+\n;\n\norder_by_expr_asc_desc:\n    ORDER_ BY_ order_by_expr_asc_desc\n;\n\nexpr_asc_desc:\n    expr asc_desc? (COMMA expr asc_desc?)*\n;\n\n//TODO BOTH OF THESE HAVE TO BE REWORKED TO FOLLOW THE SPEC\ninitial_select:\n    select_stmt\n;\n\nrecursive__select:\n    select_stmt\n;\n\nunary_operator:\n    MINUS\n    | PLUS\n    | TILDE\n    | NOT_\n;\n\nerror_message:\n    STRING_LITERAL\n;\n\nmodule_argument: // TODO check what exactly is permitted here\n    expr\n    | column_def\n;\n\ncolumn_alias:\n    IDENTIFIER\n    | STRING_LITERAL\n;\n\nkeyword:\n    ABORT_\n    | ACTION_\n    | ADD_\n    | AFTER_\n    | ALL_\n    | ALTER_\n    | ANALYZE_\n    | AND_\n    | AS_\n    | ASC_\n    | ATTACH_\n    | AUTOINCREMENT_\n    | BEFORE_\n    | BEGIN_\n    | BETWEEN_\n    | BY_\n    | CASCADE_\n    | CASE_\n    | CAST_\n    | CHECK_\n    | COLLATE_\n    | COLUMN_\n    | COMMIT_\n    | CONFLICT_\n    | CONSTRAINT_\n    | CREATE_\n    | CROSS_\n    | CURRENT_DATE_\n    | CURRENT_TIME_\n    | CURRENT_TIMESTAMP_\n    | DATABASE_\n    | DEFAULT_\n    | DEFERRABLE_\n    | DEFERRED_\n    | DELETE_\n    | DESC_\n    | DETACH_\n    | DISTINCT_\n    | DROP_\n    | EACH_\n    | ELSE_\n    | END_\n    | ESCAPE_\n    | EXCEPT_\n    | EXCLUSIVE_\n    | EXISTS_\n    | EXPLAIN_\n    | FAIL_\n    | FOR_\n    | FOREIGN_\n    | FROM_\n    | FULL_\n    | GLOB_\n    | GROUP_\n    | HAVING_\n    | IF_\n    | IGNORE_\n    | IMMEDIATE_\n    | IN_\n    | INDEX_\n    | INDEXED_\n    | INITIALLY_\n    | INNER_\n    | INSERT_\n    | INSTEAD_\n    | INTERSECT_\n    | INTO_\n    | IS_\n    | ISNULL_\n    | JOIN_\n    | KEY_\n    | LEFT_\n    | LIKE_\n    | LIMIT_\n    | MATCH_\n    | NATURAL_\n    | NO_\n    | NOT_\n    | NOTNULL_\n    | NULL_\n    | OF_\n    | OFFSET_\n    | ON_\n    | OR_\n    | ORDER_\n    | OUTER_\n    | PLAN_\n    | PRAGMA_\n    | PRIMARY_\n    | QUERY_\n    | RAISE_\n    | RECURSIVE_\n    | REFERENCES_\n    | REGEXP_\n    | REINDEX_\n    | RELEASE_\n    | RENAME_\n    | REPLACE_\n    | RESTRICT_\n    | RETURNING_\n    | RIGHT_\n    | ROLLBACK_\n    | ROW_\n    | ROWS_\n    | SAVEPOINT_\n    | SELECT_\n    | SET_\n    | STRICT_\n    | TABLE_\n    | TEMP_\n    | TEMPORARY_\n    | THEN_\n    | TO_\n    | TRANSACTION_\n    | TRIGGER_\n    | UNION_\n    | UNIQUE_\n    | UPDATE_\n    | USING_\n    | VACUUM_\n    | VALUES_\n    | VIEW_\n    | VIRTUAL_\n    | WHEN_\n    | WHERE_\n    | WITH_\n    | WITHOUT_\n    | FIRST_VALUE_\n    | OVER_\n    | PARTITION_\n    | RANGE_\n    | PRECEDING_\n    | UNBOUNDED_\n    | CURRENT_\n    | FOLLOWING_\n    | CUME_DIST_\n    | DENSE_RANK_\n    | LAG_\n    | LAST_VALUE_\n    | LEAD_\n    | NTH_VALUE_\n    | NTILE_\n    | PERCENT_RANK_\n    | RANK_\n    | ROW_NUMBER_\n    | GENERATED_\n    | ALWAYS_\n    | STORED_\n    | TRUE_\n    | FALSE_\n    | WINDOW_\n    | NULLS_\n    | FIRST_\n    | LAST_\n    | FILTER_\n    | GROUPS_\n    | EXCLUDE_\n;\n\n// TODO: check all names below\n\nname:\n    any_name\n;\n\nfunction_name:\n    any_name\n;\n\nqualified_function_name:\n    (schema_name DOT)? function_name\n;\n\nschema_name:\n    any_name\n;\n\ntable_name:\n    any_name\n;\n\ntable_or_index_name:\n    any_name\n;\n\nnew_table_name:\n    any_name\n;\n\ncolumn_name:\n    any_name\n;\n\ncollation_name:\n    any_name\n;\n\nforeign_table:\n    any_name\n;\n\nindex_name:\n    any_name\n;\n\ntrigger_name:\n    any_name\n;\n\nview_name:\n    any_name\n;\n\nmodule_name:\n    any_name\n;\n\npragma_name:\n    any_name\n;\n\nsavepoint_name:\n    any_name\n;\n\ntable_alias: IDENTIFIER | STRING_LITERAL;\n\ntable_alias_fallback: any_name;\n\ntransaction_name:\n    any_name\n;\n\nwindow_name:\n    any_name\n;\n\nalias:\n    any_name\n;\n\nfilename:\n    any_name\n;\n\nbase_window_name:\n    any_name\n;\n\nsimple_func:\n    any_name\n;\n\naggregate_func:\n    any_name\n;\n\ntable_function_name:\n    any_name\n;\n\nany_name:\n    IDENTIFIER\n    | keyword\n    | STRING_LITERAL\n    | OPEN_PAR any_name CLOSE_PAR\n;\n"
  },
  {
    "path": "internal/engine/sqlite/parser/SQLiteParser.interp",
    "content": "token literal names:\nnull\n';'\n'.'\n'('\n')'\n','\n'='\n'*'\n'+'\n'->>'\n'->'\n'-'\n'~'\n'||'\n'/'\n'%'\n'<<'\n'>>'\n'&'\n'|'\n'<'\n'<='\n'>'\n'>='\n'=='\n'!='\n'<>'\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\nnull\n\ntoken symbolic names:\nnull\nSCOL\nDOT\nOPEN_PAR\nCLOSE_PAR\nCOMMA\nASSIGN\nSTAR\nPLUS\nPTR2\nPTR\nMINUS\nTILDE\nPIPE2\nDIV\nMOD\nLT2\nGT2\nAMP\nPIPE\nLT\nLT_EQ\nGT\nGT_EQ\nEQ\nNOT_EQ1\nNOT_EQ2\nABORT_\nACTION_\nADD_\nAFTER_\nALL_\nALTER_\nANALYZE_\nAND_\nAS_\nASC_\nATTACH_\nAUTOINCREMENT_\nBEFORE_\nBEGIN_\nBETWEEN_\nBY_\nCASCADE_\nCASE_\nCAST_\nCHECK_\nCOLLATE_\nCOLUMN_\nCOMMIT_\nCONFLICT_\nCONSTRAINT_\nCREATE_\nCROSS_\nCURRENT_DATE_\nCURRENT_TIME_\nCURRENT_TIMESTAMP_\nDATABASE_\nDEFAULT_\nDEFERRABLE_\nDEFERRED_\nDELETE_\nDESC_\nDETACH_\nDISTINCT_\nDROP_\nEACH_\nELSE_\nEND_\nESCAPE_\nEXCEPT_\nEXCLUSIVE_\nEXISTS_\nEXPLAIN_\nFAIL_\nFOR_\nFOREIGN_\nFROM_\nFULL_\nGLOB_\nGROUP_\nHAVING_\nIF_\nIGNORE_\nIMMEDIATE_\nIN_\nINDEX_\nINDEXED_\nINITIALLY_\nINNER_\nINSERT_\nINSTEAD_\nINTERSECT_\nINTO_\nIS_\nISNULL_\nJOIN_\nKEY_\nLEFT_\nLIKE_\nLIMIT_\nMATCH_\nNATURAL_\nNO_\nNOT_\nNOTNULL_\nNULL_\nOF_\nOFFSET_\nON_\nOR_\nORDER_\nOUTER_\nPLAN_\nPRAGMA_\nPRIMARY_\nQUERY_\nRAISE_\nRECURSIVE_\nREFERENCES_\nREGEXP_\nREINDEX_\nRELEASE_\nRENAME_\nREPLACE_\nRESTRICT_\nRETURNING_\nRIGHT_\nROLLBACK_\nROW_\nROWS_\nSAVEPOINT_\nSELECT_\nSET_\nSTRICT_\nTABLE_\nTEMP_\nTEMPORARY_\nTHEN_\nTO_\nTRANSACTION_\nTRIGGER_\nUNION_\nUNIQUE_\nUPDATE_\nUSING_\nVACUUM_\nVALUES_\nVIEW_\nVIRTUAL_\nWHEN_\nWHERE_\nWITH_\nWITHOUT_\nFIRST_VALUE_\nOVER_\nPARTITION_\nRANGE_\nPRECEDING_\nUNBOUNDED_\nCURRENT_\nFOLLOWING_\nCUME_DIST_\nDENSE_RANK_\nLAG_\nLAST_VALUE_\nLEAD_\nNTH_VALUE_\nNTILE_\nPERCENT_RANK_\nRANK_\nROW_NUMBER_\nGENERATED_\nALWAYS_\nSTORED_\nTRUE_\nFALSE_\nWINDOW_\nNULLS_\nFIRST_\nLAST_\nFILTER_\nGROUPS_\nEXCLUDE_\nTIES_\nOTHERS_\nDO_\nNOTHING_\nIDENTIFIER\nNUMERIC_LITERAL\nNUMBERED_BIND_PARAMETER\nNAMED_BIND_PARAMETER\nSTRING_LITERAL\nBLOB_LITERAL\nSINGLE_LINE_COMMENT\nMULTILINE_COMMENT\nSPACES\nUNEXPECTED_CHAR\n\nrule names:\nparse\nsql_stmt_list\nsql_stmt\nalter_table_stmt\nanalyze_stmt\nattach_stmt\nbegin_stmt\ncommit_stmt\nrollback_stmt\nsavepoint_stmt\nrelease_stmt\ncreate_index_stmt\nindexed_column\ntable_option\ncreate_table_stmt\ncolumn_def\ntype_name\ncolumn_constraint\nsigned_number\ntable_constraint\nforeign_key_clause\nconflict_clause\ncreate_trigger_stmt\ncreate_view_stmt\ncreate_virtual_table_stmt\nwith_clause\ncte_table_name\nrecursive_cte\ncommon_table_expression\nreturning_clause\ndelete_stmt\ndelete_stmt_limited\ndetach_stmt\ndrop_stmt\nexpr\nraise_function\nliteral_value\ninsert_stmt\nupsert_clause\npragma_stmt\npragma_value\nreindex_stmt\nselect_stmt\njoin_clause\nselect_core\nfactored_select_stmt\nsimple_select_stmt\ncompound_select_stmt\ntable_or_subquery\nresult_column\njoin_operator\njoin_constraint\ncompound_operator\nupdate_stmt\ncolumn_name_list\nupdate_stmt_limited\nqualified_table_name\nvacuum_stmt\nfilter_clause\nwindow_defn\nover_clause\nframe_spec\nframe_clause\nsimple_function_invocation\naggregate_function_invocation\nwindow_function_invocation\ncommon_table_stmt\norder_by_stmt\nlimit_stmt\nordering_term\nasc_desc\nframe_left\nframe_right\nframe_single\nwindow_function\nof_OF_fset\ndefault_DEFAULT__value\npartition_by\norder_by_expr\norder_by_expr_asc_desc\nexpr_asc_desc\ninitial_select\nrecursive__select\nunary_operator\nerror_message\nmodule_argument\ncolumn_alias\nkeyword\nname\nfunction_name\nqualified_function_name\nschema_name\ntable_name\ntable_or_index_name\nnew_table_name\ncolumn_name\ncollation_name\nforeign_table\nindex_name\ntrigger_name\nview_name\nmodule_name\npragma_name\nsavepoint_name\ntable_alias\ntable_alias_fallback\ntransaction_name\nwindow_name\nalias\nfilename\nbase_window_name\nsimple_func\naggregate_func\ntable_function_name\nany_name\n\n\natn:\n[4, 1, 197, 2176, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 1, 0, 5, 0, 232, 8, 0, 10, 0, 12, 0, 235, 9, 0, 1, 0, 1, 0, 1, 1, 5, 1, 240, 8, 1, 10, 1, 12, 1, 243, 9, 1, 1, 1, 1, 1, 4, 1, 247, 8, 1, 11, 1, 12, 1, 248, 1, 1, 5, 1, 252, 8, 1, 10, 1, 12, 1, 255, 9, 1, 1, 1, 5, 1, 258, 8, 1, 10, 1, 12, 1, 261, 9, 1, 1, 2, 1, 2, 1, 2, 3, 2, 266, 8, 2, 3, 2, 268, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 294, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 301, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 308, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 314, 8, 3, 1, 3, 1, 3, 3, 3, 318, 8, 3, 1, 3, 1, 3, 1, 3, 3, 3, 323, 8, 3, 1, 3, 3, 3, 326, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 333, 8, 4, 1, 4, 3, 4, 336, 8, 4, 1, 5, 1, 5, 3, 5, 340, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 3, 6, 348, 8, 6, 1, 6, 1, 6, 3, 6, 352, 8, 6, 3, 6, 354, 8, 6, 1, 7, 1, 7, 3, 7, 358, 8, 7, 1, 8, 1, 8, 3, 8, 362, 8, 8, 1, 8, 1, 8, 3, 8, 366, 8, 8, 1, 8, 3, 8, 369, 8, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 376, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 382, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 388, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 393, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 402, 8, 11, 10, 11, 12, 11, 405, 9, 11, 1, 11, 1, 11, 1, 11, 3, 11, 410, 8, 11, 1, 12, 1, 12, 3, 12, 414, 8, 12, 1, 12, 1, 12, 3, 12, 418, 8, 12, 1, 12, 3, 12, 421, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 426, 8, 13, 1, 14, 1, 14, 3, 14, 430, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 436, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 441, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 448, 8, 14, 10, 14, 12, 14, 451, 9, 14, 1, 14, 1, 14, 5, 14, 455, 8, 14, 10, 14, 12, 14, 458, 9, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 464, 8, 14, 10, 14, 12, 14, 467, 9, 14, 3, 14, 469, 8, 14, 1, 14, 1, 14, 3, 14, 473, 8, 14, 1, 15, 1, 15, 3, 15, 477, 8, 15, 1, 15, 5, 15, 480, 8, 15, 10, 15, 12, 15, 483, 9, 15, 1, 16, 4, 16, 486, 8, 16, 11, 16, 12, 16, 487, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 500, 8, 16, 1, 17, 1, 17, 3, 17, 504, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 509, 8, 17, 1, 17, 3, 17, 512, 8, 17, 1, 17, 3, 17, 515, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 520, 8, 17, 1, 17, 3, 17, 523, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 537, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 544, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 551, 8, 17, 3, 17, 553, 8, 17, 1, 18, 3, 18, 556, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 562, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 567, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 573, 8, 19, 10, 19, 12, 19, 576, 9, 19, 1, 19, 1, 19, 3, 19, 580, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 593, 8, 19, 10, 19, 12, 19, 596, 9, 19, 1, 19, 1, 19, 1, 19, 3, 19, 601, 8, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 609, 8, 20, 10, 20, 12, 20, 612, 9, 20, 1, 20, 1, 20, 3, 20, 616, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 626, 8, 20, 1, 20, 1, 20, 5, 20, 630, 8, 20, 10, 20, 12, 20, 633, 9, 20, 1, 20, 3, 20, 636, 8, 20, 1, 20, 1, 20, 1, 20, 3, 20, 641, 8, 20, 3, 20, 643, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 651, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 657, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 662, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 669, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 5, 22, 678, 8, 22, 10, 22, 12, 22, 681, 9, 22, 3, 22, 683, 8, 22, 3, 22, 685, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 692, 8, 22, 1, 22, 1, 22, 3, 22, 696, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 703, 8, 22, 1, 22, 1, 22, 4, 22, 707, 8, 22, 11, 22, 12, 22, 708, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 715, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 721, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 726, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 5, 23, 733, 8, 23, 10, 23, 12, 23, 736, 9, 23, 1, 23, 1, 23, 3, 23, 740, 8, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 751, 8, 24, 1, 24, 1, 24, 1, 24, 3, 24, 756, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5, 24, 765, 8, 24, 10, 24, 12, 24, 768, 9, 24, 1, 24, 1, 24, 3, 24, 772, 8, 24, 1, 25, 1, 25, 3, 25, 776, 8, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 790, 8, 25, 10, 25, 12, 25, 793, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 800, 8, 26, 10, 26, 12, 26, 803, 9, 26, 1, 26, 1, 26, 3, 26, 807, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 815, 8, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 825, 8, 28, 10, 28, 12, 28, 828, 9, 28, 1, 28, 1, 28, 3, 28, 832, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 843, 8, 29, 1, 29, 3, 29, 846, 8, 29, 3, 29, 848, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 854, 8, 29, 1, 29, 3, 29, 857, 8, 29, 3, 29, 859, 8, 29, 5, 29, 861, 8, 29, 10, 29, 12, 29, 864, 9, 29, 1, 30, 3, 30, 867, 8, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 874, 8, 30, 1, 30, 3, 30, 877, 8, 30, 1, 31, 3, 31, 880, 8, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 887, 8, 31, 1, 31, 3, 31, 890, 8, 31, 1, 31, 3, 31, 893, 8, 31, 1, 31, 3, 31, 896, 8, 31, 1, 32, 1, 32, 3, 32, 900, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 908, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 913, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 924, 8, 34, 1, 34, 1, 34, 1, 34, 3, 34, 929, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 938, 8, 34, 1, 34, 1, 34, 1, 34, 5, 34, 943, 8, 34, 10, 34, 12, 34, 946, 9, 34, 1, 34, 3, 34, 949, 8, 34, 1, 34, 1, 34, 3, 34, 953, 8, 34, 1, 34, 3, 34, 956, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 962, 8, 34, 10, 34, 12, 34, 965, 9, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 977, 8, 34, 1, 34, 3, 34, 980, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 988, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 4, 34, 995, 8, 34, 11, 34, 12, 34, 996, 1, 34, 1, 34, 3, 34, 1001, 8, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1006, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1035, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1042, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1053, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1062, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1070, 8, 34, 10, 34, 12, 34, 1073, 9, 34, 3, 34, 1075, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1081, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1087, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1094, 8, 34, 10, 34, 12, 34, 1097, 9, 34, 3, 34, 1099, 8, 34, 1, 34, 1, 34, 3, 34, 1103, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1110, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1116, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1123, 8, 34, 5, 34, 1125, 8, 34, 10, 34, 12, 34, 1128, 9, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1136, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 3, 37, 1143, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1150, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1156, 8, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1161, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1167, 8, 37, 10, 37, 12, 37, 1170, 9, 37, 1, 37, 1, 37, 3, 37, 1174, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1181, 8, 37, 10, 37, 12, 37, 1184, 9, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1192, 8, 37, 10, 37, 12, 37, 1195, 9, 37, 1, 37, 1, 37, 5, 37, 1199, 8, 37, 10, 37, 12, 37, 1202, 9, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1207, 8, 37, 1, 37, 3, 37, 1210, 8, 37, 1, 37, 3, 37, 1213, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 5, 38, 1221, 8, 38, 10, 38, 12, 38, 1224, 9, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1229, 8, 38, 3, 38, 1231, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1239, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1246, 8, 38, 1, 38, 1, 38, 1, 38, 5, 38, 1251, 8, 38, 10, 38, 12, 38, 1254, 9, 38, 1, 38, 1, 38, 3, 38, 1258, 8, 38, 3, 38, 1260, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1266, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 1275, 8, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1280, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1287, 8, 41, 1, 41, 1, 41, 3, 41, 1291, 8, 41, 3, 41, 1293, 8, 41, 1, 42, 3, 42, 1296, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1302, 8, 42, 10, 42, 12, 42, 1305, 9, 42, 1, 42, 3, 42, 1308, 8, 42, 1, 42, 3, 42, 1311, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1318, 8, 43, 10, 43, 12, 43, 1321, 9, 43, 1, 44, 1, 44, 3, 44, 1325, 8, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1330, 8, 44, 10, 44, 12, 44, 1333, 9, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1339, 8, 44, 10, 44, 12, 44, 1342, 9, 44, 1, 44, 3, 44, 1345, 8, 44, 3, 44, 1347, 8, 44, 1, 44, 1, 44, 3, 44, 1351, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1358, 8, 44, 10, 44, 12, 44, 1361, 9, 44, 1, 44, 1, 44, 3, 44, 1365, 8, 44, 3, 44, 1367, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1378, 8, 44, 10, 44, 12, 44, 1381, 9, 44, 3, 44, 1383, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1390, 8, 44, 10, 44, 12, 44, 1393, 9, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1401, 8, 44, 10, 44, 12, 44, 1404, 9, 44, 1, 44, 1, 44, 5, 44, 1408, 8, 44, 10, 44, 12, 44, 1411, 9, 44, 3, 44, 1413, 8, 44, 1, 45, 1, 45, 1, 46, 3, 46, 1418, 8, 46, 1, 46, 1, 46, 3, 46, 1422, 8, 46, 1, 46, 3, 46, 1425, 8, 46, 1, 47, 3, 47, 1428, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1433, 8, 47, 1, 47, 1, 47, 3, 47, 1437, 8, 47, 1, 47, 4, 47, 1440, 8, 47, 11, 47, 12, 47, 1441, 1, 47, 3, 47, 1445, 8, 47, 1, 47, 3, 47, 1448, 8, 47, 1, 48, 1, 48, 1, 48, 3, 48, 1453, 8, 48, 1, 48, 1, 48, 3, 48, 1457, 8, 48, 1, 48, 3, 48, 1460, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1467, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1472, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1479, 8, 48, 10, 48, 12, 48, 1482, 9, 48, 1, 48, 1, 48, 3, 48, 1486, 8, 48, 1, 48, 3, 48, 1489, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1495, 8, 48, 10, 48, 12, 48, 1498, 9, 48, 1, 48, 3, 48, 1501, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1509, 8, 48, 1, 48, 3, 48, 1512, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1517, 8, 48, 1, 48, 1, 48, 3, 48, 1521, 8, 48, 1, 48, 3, 48, 1524, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1531, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1536, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1543, 8, 48, 10, 48, 12, 48, 1546, 9, 48, 1, 48, 1, 48, 3, 48, 1550, 8, 48, 1, 48, 3, 48, 1553, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1559, 8, 48, 10, 48, 12, 48, 1562, 9, 48, 1, 48, 3, 48, 1565, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1573, 8, 48, 1, 48, 3, 48, 1576, 8, 48, 3, 48, 1578, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1587, 8, 49, 1, 49, 3, 49, 1590, 8, 49, 3, 49, 1592, 8, 49, 1, 50, 1, 50, 3, 50, 1596, 8, 50, 1, 50, 1, 50, 3, 50, 1600, 8, 50, 1, 50, 3, 50, 1603, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1608, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 1617, 8, 51, 10, 51, 12, 51, 1620, 9, 51, 1, 51, 1, 51, 3, 51, 1624, 8, 51, 1, 52, 1, 52, 3, 52, 1628, 8, 52, 1, 52, 1, 52, 3, 52, 1632, 8, 52, 1, 53, 3, 53, 1635, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1640, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1646, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1653, 8, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1658, 8, 53, 10, 53, 12, 53, 1661, 9, 53, 1, 53, 1, 53, 3, 53, 1665, 8, 53, 1, 53, 3, 53, 1668, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1674, 8, 54, 10, 54, 12, 54, 1677, 9, 54, 1, 54, 1, 54, 1, 55, 3, 55, 1682, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1687, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1693, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1700, 8, 55, 1, 55, 1, 55, 1, 55, 5, 55, 1705, 8, 55, 10, 55, 12, 55, 1708, 9, 55, 1, 55, 1, 55, 3, 55, 1712, 8, 55, 1, 55, 3, 55, 1715, 8, 55, 1, 55, 3, 55, 1718, 8, 55, 1, 56, 1, 56, 1, 56, 3, 56, 1723, 8, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1728, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1735, 8, 56, 1, 57, 1, 57, 3, 57, 1739, 8, 57, 1, 57, 1, 57, 3, 57, 1743, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 3, 59, 1753, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1760, 8, 59, 10, 59, 12, 59, 1763, 9, 59, 3, 59, 1765, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1772, 8, 59, 10, 59, 12, 59, 1775, 9, 59, 1, 59, 3, 59, 1778, 8, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1786, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1793, 8, 60, 10, 60, 12, 60, 1796, 9, 60, 3, 60, 1798, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1805, 8, 60, 10, 60, 12, 60, 1808, 9, 60, 3, 60, 1810, 8, 60, 1, 60, 3, 60, 1813, 8, 60, 1, 60, 3, 60, 1816, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 1826, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 1835, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5, 63, 1842, 8, 63, 10, 63, 12, 63, 1845, 9, 63, 1, 63, 3, 63, 1848, 8, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 3, 64, 1855, 8, 64, 1, 64, 1, 64, 1, 64, 5, 64, 1860, 8, 64, 10, 64, 12, 64, 1863, 9, 64, 1, 64, 3, 64, 1866, 8, 64, 1, 64, 1, 64, 3, 64, 1870, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 1877, 8, 65, 10, 65, 12, 65, 1880, 9, 65, 1, 65, 3, 65, 1883, 8, 65, 1, 65, 1, 65, 3, 65, 1887, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1892, 8, 65, 1, 66, 1, 66, 3, 66, 1896, 8, 66, 1, 66, 1, 66, 1, 66, 5, 66, 1901, 8, 66, 10, 66, 12, 66, 1904, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 1911, 8, 67, 10, 67, 12, 67, 1914, 9, 67, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1920, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1925, 8, 69, 1, 69, 3, 69, 1928, 8, 69, 1, 69, 1, 69, 3, 69, 1932, 8, 69, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1946, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 1958, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1967, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1976, 8, 74, 1, 74, 1, 74, 3, 74, 1980, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1990, 8, 74, 1, 74, 3, 74, 1993, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2002, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2011, 8, 74, 1, 74, 3, 74, 2014, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2020, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2034, 8, 74, 1, 74, 1, 74, 3, 74, 2038, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2049, 8, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2054, 8, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 4, 77, 2065, 8, 77, 11, 77, 12, 77, 2066, 1, 78, 1, 78, 1, 78, 4, 78, 2072, 8, 78, 11, 78, 12, 78, 2073, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 2082, 8, 80, 1, 80, 1, 80, 1, 80, 3, 80, 2087, 8, 80, 5, 80, 2089, 8, 80, 10, 80, 12, 80, 2092, 9, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1, 85, 3, 85, 2104, 8, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 3, 90, 2117, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 101, 1, 101, 1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 112, 1, 112, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2174, 8, 114, 1, 114, 2, 449, 487, 1, 68, 115, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 0, 30, 3, 0, 60, 60, 71, 71, 84, 84, 2, 0, 49, 49, 68, 68, 1, 0, 136, 137, 2, 0, 149, 149, 174, 174, 2, 0, 8, 8, 11, 11, 2, 0, 61, 61, 144, 144, 2, 0, 58, 58, 106, 106, 2, 0, 60, 60, 84, 84, 5, 0, 27, 27, 74, 74, 83, 83, 124, 124, 128, 128, 4, 0, 86, 86, 135, 135, 141, 141, 148, 148, 1, 0, 9, 10, 2, 0, 7, 7, 14, 15, 1, 0, 16, 19, 1, 0, 20, 23, 4, 0, 79, 79, 99, 99, 101, 101, 120, 120, 3, 0, 27, 27, 74, 74, 128, 128, 5, 0, 54, 56, 106, 106, 175, 176, 189, 189, 192, 193, 2, 0, 31, 31, 64, 64, 3, 0, 78, 78, 98, 98, 127, 127, 3, 0, 130, 130, 157, 157, 182, 182, 2, 0, 5, 5, 108, 108, 1, 0, 179, 180, 2, 0, 36, 36, 62, 62, 2, 0, 154, 154, 165, 165, 2, 0, 162, 162, 169, 169, 2, 0, 163, 163, 170, 171, 2, 0, 164, 164, 166, 166, 3, 0, 8, 8, 11, 12, 104, 104, 2, 0, 188, 188, 192, 192, 1, 0, 27, 183, 2482, 0, 233, 1, 0, 0, 0, 2, 241, 1, 0, 0, 0, 4, 267, 1, 0, 0, 0, 6, 295, 1, 0, 0, 0, 8, 327, 1, 0, 0, 0, 10, 337, 1, 0, 0, 0, 12, 345, 1, 0, 0, 0, 14, 355, 1, 0, 0, 0, 16, 359, 1, 0, 0, 0, 18, 370, 1, 0, 0, 0, 20, 373, 1, 0, 0, 0, 22, 379, 1, 0, 0, 0, 24, 413, 1, 0, 0, 0, 26, 425, 1, 0, 0, 0, 28, 427, 1, 0, 0, 0, 30, 474, 1, 0, 0, 0, 32, 485, 1, 0, 0, 0, 34, 503, 1, 0, 0, 0, 36, 555, 1, 0, 0, 0, 38, 561, 1, 0, 0, 0, 40, 602, 1, 0, 0, 0, 42, 644, 1, 0, 0, 0, 44, 648, 1, 0, 0, 0, 46, 712, 1, 0, 0, 0, 48, 744, 1, 0, 0, 0, 50, 773, 1, 0, 0, 0, 52, 794, 1, 0, 0, 0, 54, 808, 1, 0, 0, 0, 56, 819, 1, 0, 0, 0, 58, 838, 1, 0, 0, 0, 60, 866, 1, 0, 0, 0, 62, 879, 1, 0, 0, 0, 64, 897, 1, 0, 0, 0, 66, 903, 1, 0, 0, 0, 68, 1005, 1, 0, 0, 0, 70, 1129, 1, 0, 0, 0, 72, 1139, 1, 0, 0, 0, 74, 1142, 1, 0, 0, 0, 76, 1214, 1, 0, 0, 0, 78, 1261, 1, 0, 0, 0, 80, 1279, 1, 0, 0, 0, 82, 1281, 1, 0, 0, 0, 84, 1295, 1, 0, 0, 0, 86, 1312, 1, 0, 0, 0, 88, 1412, 1, 0, 0, 0, 90, 1414, 1, 0, 0, 0, 92, 1417, 1, 0, 0, 0, 94, 1427, 1, 0, 0, 0, 96, 1577, 1, 0, 0, 0, 98, 1591, 1, 0, 0, 0, 100, 1607, 1, 0, 0, 0, 102, 1623, 1, 0, 0, 0, 104, 1631, 1, 0, 0, 0, 106, 1634, 1, 0, 0, 0, 108, 1669, 1, 0, 0, 0, 110, 1681, 1, 0, 0, 0, 112, 1722, 1, 0, 0, 0, 114, 1736, 1, 0, 0, 0, 116, 1744, 1, 0, 0, 0, 118, 1750, 1, 0, 0, 0, 120, 1781, 1, 0, 0, 0, 122, 1817, 1, 0, 0, 0, 124, 1827, 1, 0, 0, 0, 126, 1836, 1, 0, 0, 0, 128, 1851, 1, 0, 0, 0, 130, 1871, 1, 0, 0, 0, 132, 1893, 1, 0, 0, 0, 134, 1905, 1, 0, 0, 0, 136, 1915, 1, 0, 0, 0, 138, 1921, 1, 0, 0, 0, 140, 1933, 1, 0, 0, 0, 142, 1945, 1, 0, 0, 0, 144, 1957, 1, 0, 0, 0, 146, 1966, 1, 0, 0, 0, 148, 2053, 1, 0, 0, 0, 150, 2055, 1, 0, 0, 0, 152, 2058, 1, 0, 0, 0, 154, 2061, 1, 0, 0, 0, 156, 2068, 1, 0, 0, 0, 158, 2075, 1, 0, 0, 0, 160, 2079, 1, 0, 0, 0, 162, 2093, 1, 0, 0, 0, 164, 2095, 1, 0, 0, 0, 166, 2097, 1, 0, 0, 0, 168, 2099, 1, 0, 0, 0, 170, 2103, 1, 0, 0, 0, 172, 2105, 1, 0, 0, 0, 174, 2107, 1, 0, 0, 0, 176, 2109, 1, 0, 0, 0, 178, 2111, 1, 0, 0, 0, 180, 2116, 1, 0, 0, 0, 182, 2120, 1, 0, 0, 0, 184, 2122, 1, 0, 0, 0, 186, 2124, 1, 0, 0, 0, 188, 2126, 1, 0, 0, 0, 190, 2128, 1, 0, 0, 0, 192, 2130, 1, 0, 0, 0, 194, 2132, 1, 0, 0, 0, 196, 2134, 1, 0, 0, 0, 198, 2136, 1, 0, 0, 0, 200, 2138, 1, 0, 0, 0, 202, 2140, 1, 0, 0, 0, 204, 2142, 1, 0, 0, 0, 206, 2144, 1, 0, 0, 0, 208, 2146, 1, 0, 0, 0, 210, 2148, 1, 0, 0, 0, 212, 2150, 1, 0, 0, 0, 214, 2152, 1, 0, 0, 0, 216, 2154, 1, 0, 0, 0, 218, 2156, 1, 0, 0, 0, 220, 2158, 1, 0, 0, 0, 222, 2160, 1, 0, 0, 0, 224, 2162, 1, 0, 0, 0, 226, 2164, 1, 0, 0, 0, 228, 2173, 1, 0, 0, 0, 230, 232, 3, 2, 1, 0, 231, 230, 1, 0, 0, 0, 232, 235, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, 233, 234, 1, 0, 0, 0, 234, 236, 1, 0, 0, 0, 235, 233, 1, 0, 0, 0, 236, 237, 5, 0, 0, 1, 237, 1, 1, 0, 0, 0, 238, 240, 5, 1, 0, 0, 239, 238, 1, 0, 0, 0, 240, 243, 1, 0, 0, 0, 241, 239, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 244, 1, 0, 0, 0, 243, 241, 1, 0, 0, 0, 244, 253, 3, 4, 2, 0, 245, 247, 5, 1, 0, 0, 246, 245, 1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 249, 1, 0, 0, 0, 249, 250, 1, 0, 0, 0, 250, 252, 3, 4, 2, 0, 251, 246, 1, 0, 0, 0, 252, 255, 1, 0, 0, 0, 253, 251, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254, 259, 1, 0, 0, 0, 255, 253, 1, 0, 0, 0, 256, 258, 5, 1, 0, 0, 257, 256, 1, 0, 0, 0, 258, 261, 1, 0, 0, 0, 259, 257, 1, 0, 0, 0, 259, 260, 1, 0, 0, 0, 260, 3, 1, 0, 0, 0, 261, 259, 1, 0, 0, 0, 262, 265, 5, 73, 0, 0, 263, 264, 5, 116, 0, 0, 264, 266, 5, 113, 0, 0, 265, 263, 1, 0, 0, 0, 265, 266, 1, 0, 0, 0, 266, 268, 1, 0, 0, 0, 267, 262, 1, 0, 0, 0, 267, 268, 1, 0, 0, 0, 268, 293, 1, 0, 0, 0, 269, 294, 3, 6, 3, 0, 270, 294, 3, 8, 4, 0, 271, 294, 3, 10, 5, 0, 272, 294, 3, 12, 6, 0, 273, 294, 3, 14, 7, 0, 274, 294, 3, 22, 11, 0, 275, 294, 3, 28, 14, 0, 276, 294, 3, 44, 22, 0, 277, 294, 3, 46, 23, 0, 278, 294, 3, 48, 24, 0, 279, 294, 3, 60, 30, 0, 280, 294, 3, 62, 31, 0, 281, 294, 3, 64, 32, 0, 282, 294, 3, 66, 33, 0, 283, 294, 3, 74, 37, 0, 284, 294, 3, 78, 39, 0, 285, 294, 3, 82, 41, 0, 286, 294, 3, 20, 10, 0, 287, 294, 3, 16, 8, 0, 288, 294, 3, 18, 9, 0, 289, 294, 3, 84, 42, 0, 290, 294, 3, 106, 53, 0, 291, 294, 3, 110, 55, 0, 292, 294, 3, 114, 57, 0, 293, 269, 1, 0, 0, 0, 293, 270, 1, 0, 0, 0, 293, 271, 1, 0, 0, 0, 293, 272, 1, 0, 0, 0, 293, 273, 1, 0, 0, 0, 293, 274, 1, 0, 0, 0, 293, 275, 1, 0, 0, 0, 293, 276, 1, 0, 0, 0, 293, 277, 1, 0, 0, 0, 293, 278, 1, 0, 0, 0, 293, 279, 1, 0, 0, 0, 293, 280, 1, 0, 0, 0, 293, 281, 1, 0, 0, 0, 293, 282, 1, 0, 0, 0, 293, 283, 1, 0, 0, 0, 293, 284, 1, 0, 0, 0, 293, 285, 1, 0, 0, 0, 293, 286, 1, 0, 0, 0, 293, 287, 1, 0, 0, 0, 293, 288, 1, 0, 0, 0, 293, 289, 1, 0, 0, 0, 293, 290, 1, 0, 0, 0, 293, 291, 1, 0, 0, 0, 293, 292, 1, 0, 0, 0, 294, 5, 1, 0, 0, 0, 295, 296, 5, 32, 0, 0, 296, 300, 5, 135, 0, 0, 297, 298, 3, 182, 91, 0, 298, 299, 5, 2, 0, 0, 299, 301, 1, 0, 0, 0, 300, 297, 1, 0, 0, 0, 300, 301, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 325, 3, 184, 92, 0, 303, 313, 5, 123, 0, 0, 304, 305, 5, 139, 0, 0, 305, 314, 3, 188, 94, 0, 306, 308, 5, 48, 0, 0, 307, 306, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 309, 1, 0, 0, 0, 309, 310, 3, 190, 95, 0, 310, 311, 5, 139, 0, 0, 311, 312, 3, 190, 95, 0, 312, 314, 1, 0, 0, 0, 313, 304, 1, 0, 0, 0, 313, 307, 1, 0, 0, 0, 314, 326, 1, 0, 0, 0, 315, 317, 5, 29, 0, 0, 316, 318, 5, 48, 0, 0, 317, 316, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 326, 3, 30, 15, 0, 320, 322, 5, 65, 0, 0, 321, 323, 5, 48, 0, 0, 322, 321, 1, 0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 324, 1, 0, 0, 0, 324, 326, 3, 190, 95, 0, 325, 303, 1, 0, 0, 0, 325, 315, 1, 0, 0, 0, 325, 320, 1, 0, 0, 0, 326, 7, 1, 0, 0, 0, 327, 335, 5, 33, 0, 0, 328, 336, 3, 182, 91, 0, 329, 330, 3, 182, 91, 0, 330, 331, 5, 2, 0, 0, 331, 333, 1, 0, 0, 0, 332, 329, 1, 0, 0, 0, 332, 333, 1, 0, 0, 0, 333, 334, 1, 0, 0, 0, 334, 336, 3, 186, 93, 0, 335, 328, 1, 0, 0, 0, 335, 332, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0, 336, 9, 1, 0, 0, 0, 337, 339, 5, 37, 0, 0, 338, 340, 5, 57, 0, 0, 339, 338, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 342, 3, 68, 34, 0, 342, 343, 5, 35, 0, 0, 343, 344, 3, 182, 91, 0, 344, 11, 1, 0, 0, 0, 345, 347, 5, 40, 0, 0, 346, 348, 7, 0, 0, 0, 347, 346, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 353, 1, 0, 0, 0, 349, 351, 5, 140, 0, 0, 350, 352, 3, 212, 106, 0, 351, 350, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0, 352, 354, 1, 0, 0, 0, 353, 349, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 13, 1, 0, 0, 0, 355, 357, 7, 1, 0, 0, 356, 358, 5, 140, 0, 0, 357, 356, 1, 0, 0, 0, 357, 358, 1, 0, 0, 0, 358, 15, 1, 0, 0, 0, 359, 361, 5, 128, 0, 0, 360, 362, 5, 140, 0, 0, 361, 360, 1, 0, 0, 0, 361, 362, 1, 0, 0, 0, 362, 368, 1, 0, 0, 0, 363, 365, 5, 139, 0, 0, 364, 366, 5, 131, 0, 0, 365, 364, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367, 369, 3, 206, 103, 0, 368, 363, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 17, 1, 0, 0, 0, 370, 371, 5, 131, 0, 0, 371, 372, 3, 206, 103, 0, 372, 19, 1, 0, 0, 0, 373, 375, 5, 122, 0, 0, 374, 376, 5, 131, 0, 0, 375, 374, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 378, 3, 206, 103, 0, 378, 21, 1, 0, 0, 0, 379, 381, 5, 52, 0, 0, 380, 382, 5, 143, 0, 0, 381, 380, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 387, 5, 86, 0, 0, 384, 385, 5, 82, 0, 0, 385, 386, 5, 104, 0, 0, 386, 388, 5, 72, 0, 0, 387, 384, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 392, 1, 0, 0, 0, 389, 390, 3, 182, 91, 0, 390, 391, 5, 2, 0, 0, 391, 393, 1, 0, 0, 0, 392, 389, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 394, 1, 0, 0, 0, 394, 395, 3, 196, 98, 0, 395, 396, 5, 109, 0, 0, 396, 397, 3, 184, 92, 0, 397, 398, 5, 3, 0, 0, 398, 403, 3, 24, 12, 0, 399, 400, 5, 5, 0, 0, 400, 402, 3, 24, 12, 0, 401, 399, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 406, 1, 0, 0, 0, 405, 403, 1, 0, 0, 0, 406, 409, 5, 4, 0, 0, 407, 408, 5, 151, 0, 0, 408, 410, 3, 68, 34, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 23, 1, 0, 0, 0, 411, 414, 3, 190, 95, 0, 412, 414, 3, 68, 34, 0, 413, 411, 1, 0, 0, 0, 413, 412, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 416, 5, 47, 0, 0, 416, 418, 3, 192, 96, 0, 417, 415, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 420, 1, 0, 0, 0, 419, 421, 3, 140, 70, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 25, 1, 0, 0, 0, 422, 423, 5, 153, 0, 0, 423, 426, 5, 188, 0, 0, 424, 426, 5, 134, 0, 0, 425, 422, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 27, 1, 0, 0, 0, 427, 429, 5, 52, 0, 0, 428, 430, 7, 2, 0, 0, 429, 428, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 435, 5, 135, 0, 0, 432, 433, 5, 82, 0, 0, 433, 434, 5, 104, 0, 0, 434, 436, 5, 72, 0, 0, 435, 432, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 440, 1, 0, 0, 0, 437, 438, 3, 182, 91, 0, 438, 439, 5, 2, 0, 0, 439, 441, 1, 0, 0, 0, 440, 437, 1, 0, 0, 0, 440, 441, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 472, 3, 184, 92, 0, 443, 444, 5, 3, 0, 0, 444, 449, 3, 30, 15, 0, 445, 446, 5, 5, 0, 0, 446, 448, 3, 30, 15, 0, 447, 445, 1, 0, 0, 0, 448, 451, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 449, 447, 1, 0, 0, 0, 450, 456, 1, 0, 0, 0, 451, 449, 1, 0, 0, 0, 452, 453, 5, 5, 0, 0, 453, 455, 3, 38, 19, 0, 454, 452, 1, 0, 0, 0, 455, 458, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 459, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 459, 468, 5, 4, 0, 0, 460, 465, 3, 26, 13, 0, 461, 462, 5, 5, 0, 0, 462, 464, 3, 26, 13, 0, 463, 461, 1, 0, 0, 0, 464, 467, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 465, 466, 1, 0, 0, 0, 466, 469, 1, 0, 0, 0, 467, 465, 1, 0, 0, 0, 468, 460, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 473, 1, 0, 0, 0, 470, 471, 5, 35, 0, 0, 471, 473, 3, 84, 42, 0, 472, 443, 1, 0, 0, 0, 472, 470, 1, 0, 0, 0, 473, 29, 1, 0, 0, 0, 474, 476, 3, 190, 95, 0, 475, 477, 3, 32, 16, 0, 476, 475, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 481, 1, 0, 0, 0, 478, 480, 3, 34, 17, 0, 479, 478, 1, 0, 0, 0, 480, 483, 1, 0, 0, 0, 481, 479, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 31, 1, 0, 0, 0, 483, 481, 1, 0, 0, 0, 484, 486, 3, 176, 88, 0, 485, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 1, 0, 0, 0, 487, 485, 1, 0, 0, 0, 488, 499, 1, 0, 0, 0, 489, 490, 5, 3, 0, 0, 490, 491, 3, 36, 18, 0, 491, 492, 5, 4, 0, 0, 492, 500, 1, 0, 0, 0, 493, 494, 5, 3, 0, 0, 494, 495, 3, 36, 18, 0, 495, 496, 5, 5, 0, 0, 496, 497, 3, 36, 18, 0, 497, 498, 5, 4, 0, 0, 498, 500, 1, 0, 0, 0, 499, 489, 1, 0, 0, 0, 499, 493, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 33, 1, 0, 0, 0, 501, 502, 5, 51, 0, 0, 502, 504, 3, 176, 88, 0, 503, 501, 1, 0, 0, 0, 503, 504, 1, 0, 0, 0, 504, 552, 1, 0, 0, 0, 505, 506, 5, 115, 0, 0, 506, 508, 5, 97, 0, 0, 507, 509, 3, 140, 70, 0, 508, 507, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 511, 1, 0, 0, 0, 510, 512, 3, 42, 21, 0, 511, 510, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 514, 1, 0, 0, 0, 513, 515, 5, 38, 0, 0, 514, 513, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 553, 1, 0, 0, 0, 516, 517, 5, 104, 0, 0, 517, 520, 5, 106, 0, 0, 518, 520, 5, 143, 0, 0, 519, 516, 1, 0, 0, 0, 519, 518, 1, 0, 0, 0, 520, 522, 1, 0, 0, 0, 521, 523, 3, 42, 21, 0, 522, 521, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 553, 1, 0, 0, 0, 524, 525, 5, 46, 0, 0, 525, 526, 5, 3, 0, 0, 526, 527, 3, 68, 34, 0, 527, 528, 5, 4, 0, 0, 528, 553, 1, 0, 0, 0, 529, 536, 5, 58, 0, 0, 530, 537, 3, 36, 18, 0, 531, 537, 3, 72, 36, 0, 532, 533, 5, 3, 0, 0, 533, 534, 3, 68, 34, 0, 534, 535, 5, 4, 0, 0, 535, 537, 1, 0, 0, 0, 536, 530, 1, 0, 0, 0, 536, 531, 1, 0, 0, 0, 536, 532, 1, 0, 0, 0, 537, 553, 1, 0, 0, 0, 538, 539, 5, 47, 0, 0, 539, 553, 3, 192, 96, 0, 540, 553, 3, 40, 20, 0, 541, 542, 5, 172, 0, 0, 542, 544, 5, 173, 0, 0, 543, 541, 1, 0, 0, 0, 543, 544, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 546, 5, 35, 0, 0, 546, 547, 5, 3, 0, 0, 547, 548, 3, 68, 34, 0, 548, 550, 5, 4, 0, 0, 549, 551, 7, 3, 0, 0, 550, 549, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 553, 1, 0, 0, 0, 552, 505, 1, 0, 0, 0, 552, 519, 1, 0, 0, 0, 552, 524, 1, 0, 0, 0, 552, 529, 1, 0, 0, 0, 552, 538, 1, 0, 0, 0, 552, 540, 1, 0, 0, 0, 552, 543, 1, 0, 0, 0, 553, 35, 1, 0, 0, 0, 554, 556, 7, 4, 0, 0, 555, 554, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 558, 5, 189, 0, 0, 558, 37, 1, 0, 0, 0, 559, 560, 5, 51, 0, 0, 560, 562, 3, 176, 88, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 600, 1, 0, 0, 0, 563, 564, 5, 115, 0, 0, 564, 567, 5, 97, 0, 0, 565, 567, 5, 143, 0, 0, 566, 563, 1, 0, 0, 0, 566, 565, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0, 568, 569, 5, 3, 0, 0, 569, 574, 3, 24, 12, 0, 570, 571, 5, 5, 0, 0, 571, 573, 3, 24, 12, 0, 572, 570, 1, 0, 0, 0, 573, 576, 1, 0, 0, 0, 574, 572, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 577, 1, 0, 0, 0, 576, 574, 1, 0, 0, 0, 577, 579, 5, 4, 0, 0, 578, 580, 3, 42, 21, 0, 579, 578, 1, 0, 0, 0, 579, 580, 1, 0, 0, 0, 580, 601, 1, 0, 0, 0, 581, 582, 5, 46, 0, 0, 582, 583, 5, 3, 0, 0, 583, 584, 3, 68, 34, 0, 584, 585, 5, 4, 0, 0, 585, 601, 1, 0, 0, 0, 586, 587, 5, 76, 0, 0, 587, 588, 5, 97, 0, 0, 588, 589, 5, 3, 0, 0, 589, 594, 3, 190, 95, 0, 590, 591, 5, 5, 0, 0, 591, 593, 3, 190, 95, 0, 592, 590, 1, 0, 0, 0, 593, 596, 1, 0, 0, 0, 594, 592, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 597, 1, 0, 0, 0, 596, 594, 1, 0, 0, 0, 597, 598, 5, 4, 0, 0, 598, 599, 3, 40, 20, 0, 599, 601, 1, 0, 0, 0, 600, 566, 1, 0, 0, 0, 600, 581, 1, 0, 0, 0, 600, 586, 1, 0, 0, 0, 601, 39, 1, 0, 0, 0, 602, 603, 5, 119, 0, 0, 603, 615, 3, 194, 97, 0, 604, 605, 5, 3, 0, 0, 605, 610, 3, 190, 95, 0, 606, 607, 5, 5, 0, 0, 607, 609, 3, 190, 95, 0, 608, 606, 1, 0, 0, 0, 609, 612, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0, 610, 611, 1, 0, 0, 0, 611, 613, 1, 0, 0, 0, 612, 610, 1, 0, 0, 0, 613, 614, 5, 4, 0, 0, 614, 616, 1, 0, 0, 0, 615, 604, 1, 0, 0, 0, 615, 616, 1, 0, 0, 0, 616, 631, 1, 0, 0, 0, 617, 618, 5, 109, 0, 0, 618, 625, 7, 5, 0, 0, 619, 620, 5, 133, 0, 0, 620, 626, 7, 6, 0, 0, 621, 626, 5, 43, 0, 0, 622, 626, 5, 125, 0, 0, 623, 624, 5, 103, 0, 0, 624, 626, 5, 28, 0, 0, 625, 619, 1, 0, 0, 0, 625, 621, 1, 0, 0, 0, 625, 622, 1, 0, 0, 0, 625, 623, 1, 0, 0, 0, 626, 630, 1, 0, 0, 0, 627, 628, 5, 101, 0, 0, 628, 630, 3, 176, 88, 0, 629, 617, 1, 0, 0, 0, 629, 627, 1, 0, 0, 0, 630, 633, 1, 0, 0, 0, 631, 629, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 642, 1, 0, 0, 0, 633, 631, 1, 0, 0, 0, 634, 636, 5, 104, 0, 0, 635, 634, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 640, 5, 59, 0, 0, 638, 639, 5, 88, 0, 0, 639, 641, 7, 7, 0, 0, 640, 638, 1, 0, 0, 0, 640, 641, 1, 0, 0, 0, 641, 643, 1, 0, 0, 0, 642, 635, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 41, 1, 0, 0, 0, 644, 645, 5, 109, 0, 0, 645, 646, 5, 50, 0, 0, 646, 647, 7, 8, 0, 0, 647, 43, 1, 0, 0, 0, 648, 650, 5, 52, 0, 0, 649, 651, 7, 2, 0, 0, 650, 649, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 656, 5, 141, 0, 0, 653, 654, 5, 82, 0, 0, 654, 655, 5, 104, 0, 0, 655, 657, 5, 72, 0, 0, 656, 653, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 661, 1, 0, 0, 0, 658, 659, 3, 182, 91, 0, 659, 660, 5, 2, 0, 0, 660, 662, 1, 0, 0, 0, 661, 658, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662, 663, 1, 0, 0, 0, 663, 668, 3, 198, 99, 0, 664, 669, 5, 39, 0, 0, 665, 669, 5, 30, 0, 0, 666, 667, 5, 91, 0, 0, 667, 669, 5, 107, 0, 0, 668, 664, 1, 0, 0, 0, 668, 665, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 668, 669, 1, 0, 0, 0, 669, 684, 1, 0, 0, 0, 670, 685, 5, 61, 0, 0, 671, 685, 5, 90, 0, 0, 672, 682, 5, 144, 0, 0, 673, 674, 5, 107, 0, 0, 674, 679, 3, 190, 95, 0, 675, 676, 5, 5, 0, 0, 676, 678, 3, 190, 95, 0, 677, 675, 1, 0, 0, 0, 678, 681, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 683, 1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 682, 673, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 685, 1, 0, 0, 0, 684, 670, 1, 0, 0, 0, 684, 671, 1, 0, 0, 0, 684, 672, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 5, 109, 0, 0, 687, 691, 3, 184, 92, 0, 688, 689, 5, 75, 0, 0, 689, 690, 5, 66, 0, 0, 690, 692, 5, 129, 0, 0, 691, 688, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 695, 1, 0, 0, 0, 693, 694, 5, 150, 0, 0, 694, 696, 3, 68, 34, 0, 695, 693, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 706, 5, 40, 0, 0, 698, 703, 3, 106, 53, 0, 699, 703, 3, 74, 37, 0, 700, 703, 3, 60, 30, 0, 701, 703, 3, 84, 42, 0, 702, 698, 1, 0, 0, 0, 702, 699, 1, 0, 0, 0, 702, 700, 1, 0, 0, 0, 702, 701, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 5, 1, 0, 0, 705, 707, 1, 0, 0, 0, 706, 702, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 5, 68, 0, 0, 711, 45, 1, 0, 0, 0, 712, 714, 5, 52, 0, 0, 713, 715, 7, 2, 0, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 720, 5, 148, 0, 0, 717, 718, 5, 82, 0, 0, 718, 719, 5, 104, 0, 0, 719, 721, 5, 72, 0, 0, 720, 717, 1, 0, 0, 0, 720, 721, 1, 0, 0, 0, 721, 725, 1, 0, 0, 0, 722, 723, 3, 182, 91, 0, 723, 724, 5, 2, 0, 0, 724, 726, 1, 0, 0, 0, 725, 722, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 727, 1, 0, 0, 0, 727, 739, 3, 200, 100, 0, 728, 729, 5, 3, 0, 0, 729, 734, 3, 190, 95, 0, 730, 731, 5, 5, 0, 0, 731, 733, 3, 190, 95, 0, 732, 730, 1, 0, 0, 0, 733, 736, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 737, 1, 0, 0, 0, 736, 734, 1, 0, 0, 0, 737, 738, 5, 4, 0, 0, 738, 740, 1, 0, 0, 0, 739, 728, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 5, 35, 0, 0, 742, 743, 3, 84, 42, 0, 743, 47, 1, 0, 0, 0, 744, 745, 5, 52, 0, 0, 745, 746, 5, 149, 0, 0, 746, 750, 5, 135, 0, 0, 747, 748, 5, 82, 0, 0, 748, 749, 5, 104, 0, 0, 749, 751, 5, 72, 0, 0, 750, 747, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 755, 1, 0, 0, 0, 752, 753, 3, 182, 91, 0, 753, 754, 5, 2, 0, 0, 754, 756, 1, 0, 0, 0, 755, 752, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 758, 3, 184, 92, 0, 758, 759, 5, 145, 0, 0, 759, 771, 3, 202, 101, 0, 760, 761, 5, 3, 0, 0, 761, 766, 3, 170, 85, 0, 762, 763, 5, 5, 0, 0, 763, 765, 3, 170, 85, 0, 764, 762, 1, 0, 0, 0, 765, 768, 1, 0, 0, 0, 766, 764, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 769, 1, 0, 0, 0, 768, 766, 1, 0, 0, 0, 769, 770, 5, 4, 0, 0, 770, 772, 1, 0, 0, 0, 771, 760, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 49, 1, 0, 0, 0, 773, 775, 5, 152, 0, 0, 774, 776, 5, 118, 0, 0, 775, 774, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 778, 3, 52, 26, 0, 778, 779, 5, 35, 0, 0, 779, 780, 5, 3, 0, 0, 780, 781, 3, 84, 42, 0, 781, 791, 5, 4, 0, 0, 782, 783, 5, 5, 0, 0, 783, 784, 3, 52, 26, 0, 784, 785, 5, 35, 0, 0, 785, 786, 5, 3, 0, 0, 786, 787, 3, 84, 42, 0, 787, 788, 5, 4, 0, 0, 788, 790, 1, 0, 0, 0, 789, 782, 1, 0, 0, 0, 790, 793, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 51, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 794, 806, 3, 184, 92, 0, 795, 796, 5, 3, 0, 0, 796, 801, 3, 190, 95, 0, 797, 798, 5, 5, 0, 0, 798, 800, 3, 190, 95, 0, 799, 797, 1, 0, 0, 0, 800, 803, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 804, 1, 0, 0, 0, 803, 801, 1, 0, 0, 0, 804, 805, 5, 4, 0, 0, 805, 807, 1, 0, 0, 0, 806, 795, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 53, 1, 0, 0, 0, 808, 809, 3, 52, 26, 0, 809, 810, 5, 35, 0, 0, 810, 811, 5, 3, 0, 0, 811, 812, 3, 162, 81, 0, 812, 814, 5, 142, 0, 0, 813, 815, 5, 31, 0, 0, 814, 813, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 3, 164, 82, 0, 817, 818, 5, 4, 0, 0, 818, 55, 1, 0, 0, 0, 819, 831, 3, 184, 92, 0, 820, 821, 5, 3, 0, 0, 821, 826, 3, 190, 95, 0, 822, 823, 5, 5, 0, 0, 823, 825, 3, 190, 95, 0, 824, 822, 1, 0, 0, 0, 825, 828, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 829, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 829, 830, 5, 4, 0, 0, 830, 832, 1, 0, 0, 0, 831, 820, 1, 0, 0, 0, 831, 832, 1, 0, 0, 0, 832, 833, 1, 0, 0, 0, 833, 834, 5, 35, 0, 0, 834, 835, 5, 3, 0, 0, 835, 836, 3, 84, 42, 0, 836, 837, 5, 4, 0, 0, 837, 57, 1, 0, 0, 0, 838, 847, 5, 126, 0, 0, 839, 848, 5, 7, 0, 0, 840, 845, 3, 68, 34, 0, 841, 843, 5, 35, 0, 0, 842, 841, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 846, 3, 172, 86, 0, 845, 842, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 848, 1, 0, 0, 0, 847, 839, 1, 0, 0, 0, 847, 840, 1, 0, 0, 0, 848, 862, 1, 0, 0, 0, 849, 858, 5, 5, 0, 0, 850, 859, 5, 7, 0, 0, 851, 856, 3, 68, 34, 0, 852, 854, 5, 35, 0, 0, 853, 852, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 857, 3, 172, 86, 0, 856, 853, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 859, 1, 0, 0, 0, 858, 850, 1, 0, 0, 0, 858, 851, 1, 0, 0, 0, 859, 861, 1, 0, 0, 0, 860, 849, 1, 0, 0, 0, 861, 864, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863, 59, 1, 0, 0, 0, 864, 862, 1, 0, 0, 0, 865, 867, 3, 50, 25, 0, 866, 865, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 869, 5, 61, 0, 0, 869, 870, 5, 77, 0, 0, 870, 873, 3, 112, 56, 0, 871, 872, 5, 151, 0, 0, 872, 874, 3, 68, 34, 0, 873, 871, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 876, 1, 0, 0, 0, 875, 877, 3, 58, 29, 0, 876, 875, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 61, 1, 0, 0, 0, 878, 880, 3, 50, 25, 0, 879, 878, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 881, 1, 0, 0, 0, 881, 882, 5, 61, 0, 0, 882, 883, 5, 77, 0, 0, 883, 886, 3, 112, 56, 0, 884, 885, 5, 151, 0, 0, 885, 887, 3, 68, 34, 0, 886, 884, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 892, 1, 0, 0, 0, 888, 890, 3, 134, 67, 0, 889, 888, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 893, 3, 136, 68, 0, 892, 889, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 895, 1, 0, 0, 0, 894, 896, 3, 58, 29, 0, 895, 894, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 63, 1, 0, 0, 0, 897, 899, 5, 63, 0, 0, 898, 900, 5, 57, 0, 0, 899, 898, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 902, 3, 182, 91, 0, 902, 65, 1, 0, 0, 0, 903, 904, 5, 65, 0, 0, 904, 907, 7, 9, 0, 0, 905, 906, 5, 82, 0, 0, 906, 908, 5, 72, 0, 0, 907, 905, 1, 0, 0, 0, 907, 908, 1, 0, 0, 0, 908, 912, 1, 0, 0, 0, 909, 910, 3, 182, 91, 0, 910, 911, 5, 2, 0, 0, 911, 913, 1, 0, 0, 0, 912, 909, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 915, 3, 228, 114, 0, 915, 67, 1, 0, 0, 0, 916, 917, 6, 34, -1, 0, 917, 1006, 3, 72, 36, 0, 918, 1006, 5, 190, 0, 0, 919, 1006, 5, 191, 0, 0, 920, 921, 3, 182, 91, 0, 921, 922, 5, 2, 0, 0, 922, 924, 1, 0, 0, 0, 923, 920, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0, 924, 925, 1, 0, 0, 0, 925, 926, 3, 184, 92, 0, 926, 927, 5, 2, 0, 0, 927, 929, 1, 0, 0, 0, 928, 923, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 930, 1, 0, 0, 0, 930, 1006, 3, 190, 95, 0, 931, 932, 3, 166, 83, 0, 932, 933, 3, 68, 34, 21, 933, 1006, 1, 0, 0, 0, 934, 935, 3, 180, 90, 0, 935, 948, 5, 3, 0, 0, 936, 938, 5, 64, 0, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 939, 1, 0, 0, 0, 939, 944, 3, 68, 34, 0, 940, 941, 5, 5, 0, 0, 941, 943, 3, 68, 34, 0, 942, 940, 1, 0, 0, 0, 943, 946, 1, 0, 0, 0, 944, 942, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 949, 1, 0, 0, 0, 946, 944, 1, 0, 0, 0, 947, 949, 5, 7, 0, 0, 948, 937, 1, 0, 0, 0, 948, 947, 1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 952, 5, 4, 0, 0, 951, 953, 3, 116, 58, 0, 952, 951, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 955, 1, 0, 0, 0, 954, 956, 3, 120, 60, 0, 955, 954, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 1006, 1, 0, 0, 0, 957, 958, 5, 3, 0, 0, 958, 963, 3, 68, 34, 0, 959, 960, 5, 5, 0, 0, 960, 962, 3, 68, 34, 0, 961, 959, 1, 0, 0, 0, 962, 965, 1, 0, 0, 0, 963, 961, 1, 0, 0, 0, 963, 964, 1, 0, 0, 0, 964, 966, 1, 0, 0, 0, 965, 963, 1, 0, 0, 0, 966, 967, 5, 4, 0, 0, 967, 1006, 1, 0, 0, 0, 968, 969, 5, 45, 0, 0, 969, 970, 5, 3, 0, 0, 970, 971, 3, 68, 34, 0, 971, 972, 5, 35, 0, 0, 972, 973, 3, 32, 16, 0, 973, 974, 5, 4, 0, 0, 974, 1006, 1, 0, 0, 0, 975, 977, 5, 104, 0, 0, 976, 975, 1, 0, 0, 0, 976, 977, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 980, 5, 72, 0, 0, 979, 976, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 5, 3, 0, 0, 982, 983, 3, 84, 42, 0, 983, 984, 5, 4, 0, 0, 984, 1006, 1, 0, 0, 0, 985, 987, 5, 44, 0, 0, 986, 988, 3, 68, 34, 0, 987, 986, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 994, 1, 0, 0, 0, 989, 990, 5, 150, 0, 0, 990, 991, 3, 68, 34, 0, 991, 992, 5, 138, 0, 0, 992, 993, 3, 68, 34, 0, 993, 995, 1, 0, 0, 0, 994, 989, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 994, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 1000, 1, 0, 0, 0, 998, 999, 5, 67, 0, 0, 999, 1001, 3, 68, 34, 0, 1000, 998, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1003, 5, 68, 0, 0, 1003, 1006, 1, 0, 0, 0, 1004, 1006, 3, 70, 35, 0, 1005, 916, 1, 0, 0, 0, 1005, 918, 1, 0, 0, 0, 1005, 919, 1, 0, 0, 0, 1005, 928, 1, 0, 0, 0, 1005, 931, 1, 0, 0, 0, 1005, 934, 1, 0, 0, 0, 1005, 957, 1, 0, 0, 0, 1005, 968, 1, 0, 0, 0, 1005, 979, 1, 0, 0, 0, 1005, 985, 1, 0, 0, 0, 1005, 1004, 1, 0, 0, 0, 1006, 1126, 1, 0, 0, 0, 1007, 1008, 10, 20, 0, 0, 1008, 1009, 5, 13, 0, 0, 1009, 1125, 3, 68, 34, 21, 1010, 1011, 10, 19, 0, 0, 1011, 1012, 7, 10, 0, 0, 1012, 1125, 3, 68, 34, 20, 1013, 1014, 10, 18, 0, 0, 1014, 1015, 7, 11, 0, 0, 1015, 1125, 3, 68, 34, 19, 1016, 1017, 10, 17, 0, 0, 1017, 1018, 7, 4, 0, 0, 1018, 1125, 3, 68, 34, 18, 1019, 1020, 10, 16, 0, 0, 1020, 1021, 7, 12, 0, 0, 1021, 1125, 3, 68, 34, 17, 1022, 1023, 10, 15, 0, 0, 1023, 1024, 7, 13, 0, 0, 1024, 1125, 3, 68, 34, 16, 1025, 1041, 10, 14, 0, 0, 1026, 1042, 5, 6, 0, 0, 1027, 1042, 5, 24, 0, 0, 1028, 1042, 5, 25, 0, 0, 1029, 1042, 5, 26, 0, 0, 1030, 1042, 5, 94, 0, 0, 1031, 1032, 5, 94, 0, 0, 1032, 1042, 5, 104, 0, 0, 1033, 1035, 5, 104, 0, 0, 1034, 1033, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1042, 5, 85, 0, 0, 1037, 1042, 5, 99, 0, 0, 1038, 1042, 5, 79, 0, 0, 1039, 1042, 5, 101, 0, 0, 1040, 1042, 5, 120, 0, 0, 1041, 1026, 1, 0, 0, 0, 1041, 1027, 1, 0, 0, 0, 1041, 1028, 1, 0, 0, 0, 1041, 1029, 1, 0, 0, 0, 1041, 1030, 1, 0, 0, 0, 1041, 1031, 1, 0, 0, 0, 1041, 1034, 1, 0, 0, 0, 1041, 1037, 1, 0, 0, 0, 1041, 1038, 1, 0, 0, 0, 1041, 1039, 1, 0, 0, 0, 1041, 1040, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1125, 3, 68, 34, 15, 1044, 1045, 10, 12, 0, 0, 1045, 1046, 5, 34, 0, 0, 1046, 1125, 3, 68, 34, 13, 1047, 1048, 10, 11, 0, 0, 1048, 1049, 5, 110, 0, 0, 1049, 1125, 3, 68, 34, 12, 1050, 1052, 10, 4, 0, 0, 1051, 1053, 5, 104, 0, 0, 1052, 1051, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055, 5, 41, 0, 0, 1055, 1056, 3, 68, 34, 0, 1056, 1057, 5, 34, 0, 0, 1057, 1058, 3, 68, 34, 5, 1058, 1125, 1, 0, 0, 0, 1059, 1061, 10, 13, 0, 0, 1060, 1062, 5, 104, 0, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1102, 5, 85, 0, 0, 1064, 1074, 5, 3, 0, 0, 1065, 1075, 3, 84, 42, 0, 1066, 1071, 3, 68, 34, 0, 1067, 1068, 5, 5, 0, 0, 1068, 1070, 3, 68, 34, 0, 1069, 1067, 1, 0, 0, 0, 1070, 1073, 1, 0, 0, 0, 1071, 1069, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1075, 1, 0, 0, 0, 1073, 1071, 1, 0, 0, 0, 1074, 1065, 1, 0, 0, 0, 1074, 1066, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1103, 5, 4, 0, 0, 1077, 1078, 3, 182, 91, 0, 1078, 1079, 5, 2, 0, 0, 1079, 1081, 1, 0, 0, 0, 1080, 1077, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1103, 3, 184, 92, 0, 1083, 1084, 3, 182, 91, 0, 1084, 1085, 5, 2, 0, 0, 1085, 1087, 1, 0, 0, 0, 1086, 1083, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1089, 3, 226, 113, 0, 1089, 1098, 5, 3, 0, 0, 1090, 1095, 3, 68, 34, 0, 1091, 1092, 5, 5, 0, 0, 1092, 1094, 3, 68, 34, 0, 1093, 1091, 1, 0, 0, 0, 1094, 1097, 1, 0, 0, 0, 1095, 1093, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1099, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1098, 1090, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1101, 5, 4, 0, 0, 1101, 1103, 1, 0, 0, 0, 1102, 1064, 1, 0, 0, 0, 1102, 1080, 1, 0, 0, 0, 1102, 1086, 1, 0, 0, 0, 1103, 1125, 1, 0, 0, 0, 1104, 1105, 10, 7, 0, 0, 1105, 1106, 5, 47, 0, 0, 1106, 1125, 3, 192, 96, 0, 1107, 1109, 10, 6, 0, 0, 1108, 1110, 5, 104, 0, 0, 1109, 1108, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 7, 14, 0, 0, 1112, 1115, 3, 68, 34, 0, 1113, 1114, 5, 69, 0, 0, 1114, 1116, 3, 68, 34, 0, 1115, 1113, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1125, 1, 0, 0, 0, 1117, 1122, 10, 5, 0, 0, 1118, 1123, 5, 95, 0, 0, 1119, 1123, 5, 105, 0, 0, 1120, 1121, 5, 104, 0, 0, 1121, 1123, 5, 106, 0, 0, 1122, 1118, 1, 0, 0, 0, 1122, 1119, 1, 0, 0, 0, 1122, 1120, 1, 0, 0, 0, 1123, 1125, 1, 0, 0, 0, 1124, 1007, 1, 0, 0, 0, 1124, 1010, 1, 0, 0, 0, 1124, 1013, 1, 0, 0, 0, 1124, 1016, 1, 0, 0, 0, 1124, 1019, 1, 0, 0, 0, 1124, 1022, 1, 0, 0, 0, 1124, 1025, 1, 0, 0, 0, 1124, 1044, 1, 0, 0, 0, 1124, 1047, 1, 0, 0, 0, 1124, 1050, 1, 0, 0, 0, 1124, 1059, 1, 0, 0, 0, 1124, 1104, 1, 0, 0, 0, 1124, 1107, 1, 0, 0, 0, 1124, 1117, 1, 0, 0, 0, 1125, 1128, 1, 0, 0, 0, 1126, 1124, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 69, 1, 0, 0, 0, 1128, 1126, 1, 0, 0, 0, 1129, 1130, 5, 117, 0, 0, 1130, 1135, 5, 3, 0, 0, 1131, 1136, 5, 83, 0, 0, 1132, 1133, 7, 15, 0, 0, 1133, 1134, 5, 5, 0, 0, 1134, 1136, 3, 168, 84, 0, 1135, 1131, 1, 0, 0, 0, 1135, 1132, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1138, 5, 4, 0, 0, 1138, 71, 1, 0, 0, 0, 1139, 1140, 7, 16, 0, 0, 1140, 73, 1, 0, 0, 0, 1141, 1143, 3, 50, 25, 0, 1142, 1141, 1, 0, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1149, 1, 0, 0, 0, 1144, 1150, 5, 90, 0, 0, 1145, 1150, 5, 124, 0, 0, 1146, 1147, 5, 90, 0, 0, 1147, 1148, 5, 110, 0, 0, 1148, 1150, 7, 8, 0, 0, 1149, 1144, 1, 0, 0, 0, 1149, 1145, 1, 0, 0, 0, 1149, 1146, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1155, 5, 93, 0, 0, 1152, 1153, 3, 182, 91, 0, 1153, 1154, 5, 2, 0, 0, 1154, 1156, 1, 0, 0, 0, 1155, 1152, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1160, 3, 184, 92, 0, 1158, 1159, 5, 35, 0, 0, 1159, 1161, 3, 208, 104, 0, 1160, 1158, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 1173, 1, 0, 0, 0, 1162, 1163, 5, 3, 0, 0, 1163, 1168, 3, 190, 95, 0, 1164, 1165, 5, 5, 0, 0, 1165, 1167, 3, 190, 95, 0, 1166, 1164, 1, 0, 0, 0, 1167, 1170, 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1171, 1, 0, 0, 0, 1170, 1168, 1, 0, 0, 0, 1171, 1172, 5, 4, 0, 0, 1172, 1174, 1, 0, 0, 0, 1173, 1162, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1206, 1, 0, 0, 0, 1175, 1176, 5, 147, 0, 0, 1176, 1177, 5, 3, 0, 0, 1177, 1182, 3, 68, 34, 0, 1178, 1179, 5, 5, 0, 0, 1179, 1181, 3, 68, 34, 0, 1180, 1178, 1, 0, 0, 0, 1181, 1184, 1, 0, 0, 0, 1182, 1180, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1185, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1185, 1200, 5, 4, 0, 0, 1186, 1187, 5, 5, 0, 0, 1187, 1188, 5, 3, 0, 0, 1188, 1193, 3, 68, 34, 0, 1189, 1190, 5, 5, 0, 0, 1190, 1192, 3, 68, 34, 0, 1191, 1189, 1, 0, 0, 0, 1192, 1195, 1, 0, 0, 0, 1193, 1191, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1196, 1, 0, 0, 0, 1195, 1193, 1, 0, 0, 0, 1196, 1197, 5, 4, 0, 0, 1197, 1199, 1, 0, 0, 0, 1198, 1186, 1, 0, 0, 0, 1199, 1202, 1, 0, 0, 0, 1200, 1198, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1207, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1203, 1207, 3, 84, 42, 0, 1204, 1205, 5, 58, 0, 0, 1205, 1207, 5, 147, 0, 0, 1206, 1175, 1, 0, 0, 0, 1206, 1203, 1, 0, 0, 0, 1206, 1204, 1, 0, 0, 0, 1207, 1209, 1, 0, 0, 0, 1208, 1210, 3, 76, 38, 0, 1209, 1208, 1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1212, 1, 0, 0, 0, 1211, 1213, 3, 58, 29, 0, 1212, 1211, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 75, 1, 0, 0, 0, 1214, 1215, 5, 109, 0, 0, 1215, 1230, 5, 50, 0, 0, 1216, 1217, 5, 3, 0, 0, 1217, 1222, 3, 24, 12, 0, 1218, 1219, 5, 5, 0, 0, 1219, 1221, 3, 24, 12, 0, 1220, 1218, 1, 0, 0, 0, 1221, 1224, 1, 0, 0, 0, 1222, 1220, 1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1225, 1, 0, 0, 0, 1224, 1222, 1, 0, 0, 0, 1225, 1228, 5, 4, 0, 0, 1226, 1227, 5, 151, 0, 0, 1227, 1229, 3, 68, 34, 0, 1228, 1226, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1231, 1, 0, 0, 0, 1230, 1216, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1259, 5, 186, 0, 0, 1233, 1260, 5, 187, 0, 0, 1234, 1235, 5, 144, 0, 0, 1235, 1238, 5, 133, 0, 0, 1236, 1239, 3, 190, 95, 0, 1237, 1239, 3, 108, 54, 0, 1238, 1236, 1, 0, 0, 0, 1238, 1237, 1, 0, 0, 0, 1239, 1240, 1, 0, 0, 0, 1240, 1241, 5, 6, 0, 0, 1241, 1252, 3, 68, 34, 0, 1242, 1245, 5, 5, 0, 0, 1243, 1246, 3, 190, 95, 0, 1244, 1246, 3, 108, 54, 0, 1245, 1243, 1, 0, 0, 0, 1245, 1244, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0, 1247, 1248, 5, 6, 0, 0, 1248, 1249, 3, 68, 34, 0, 1249, 1251, 1, 0, 0, 0, 1250, 1242, 1, 0, 0, 0, 1251, 1254, 1, 0, 0, 0, 1252, 1250, 1, 0, 0, 0, 1252, 1253, 1, 0, 0, 0, 1253, 1257, 1, 0, 0, 0, 1254, 1252, 1, 0, 0, 0, 1255, 1256, 5, 151, 0, 0, 1256, 1258, 3, 68, 34, 0, 1257, 1255, 1, 0, 0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1260, 1, 0, 0, 0, 1259, 1233, 1, 0, 0, 0, 1259, 1234, 1, 0, 0, 0, 1260, 77, 1, 0, 0, 0, 1261, 1265, 5, 114, 0, 0, 1262, 1263, 3, 182, 91, 0, 1263, 1264, 5, 2, 0, 0, 1264, 1266, 1, 0, 0, 0, 1265, 1262, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1274, 3, 204, 102, 0, 1268, 1269, 5, 6, 0, 0, 1269, 1275, 3, 80, 40, 0, 1270, 1271, 5, 3, 0, 0, 1271, 1272, 3, 80, 40, 0, 1272, 1273, 5, 4, 0, 0, 1273, 1275, 1, 0, 0, 0, 1274, 1268, 1, 0, 0, 0, 1274, 1270, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 79, 1, 0, 0, 0, 1276, 1280, 3, 36, 18, 0, 1277, 1280, 3, 176, 88, 0, 1278, 1280, 5, 192, 0, 0, 1279, 1276, 1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1279, 1278, 1, 0, 0, 0, 1280, 81, 1, 0, 0, 0, 1281, 1292, 5, 121, 0, 0, 1282, 1293, 3, 192, 96, 0, 1283, 1284, 3, 182, 91, 0, 1284, 1285, 5, 2, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1283, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1290, 1, 0, 0, 0, 1288, 1291, 3, 184, 92, 0, 1289, 1291, 3, 196, 98, 0, 1290, 1288, 1, 0, 0, 0, 1290, 1289, 1, 0, 0, 0, 1291, 1293, 1, 0, 0, 0, 1292, 1282, 1, 0, 0, 0, 1292, 1286, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 83, 1, 0, 0, 0, 1294, 1296, 3, 132, 66, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1303, 3, 88, 44, 0, 1298, 1299, 3, 104, 52, 0, 1299, 1300, 3, 88, 44, 0, 1300, 1302, 1, 0, 0, 0, 1301, 1298, 1, 0, 0, 0, 1302, 1305, 1, 0, 0, 0, 1303, 1301, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1307, 1, 0, 0, 0, 1305, 1303, 1, 0, 0, 0, 1306, 1308, 3, 134, 67, 0, 1307, 1306, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1310, 1, 0, 0, 0, 1309, 1311, 3, 136, 68, 0, 1310, 1309, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311, 85, 1, 0, 0, 0, 1312, 1319, 3, 96, 48, 0, 1313, 1314, 3, 100, 50, 0, 1314, 1315, 3, 96, 48, 0, 1315, 1316, 3, 102, 51, 0, 1316, 1318, 1, 0, 0, 0, 1317, 1313, 1, 0, 0, 0, 1318, 1321, 1, 0, 0, 0, 1319, 1317, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 87, 1, 0, 0, 0, 1321, 1319, 1, 0, 0, 0, 1322, 1324, 5, 132, 0, 0, 1323, 1325, 7, 17, 0, 0, 1324, 1323, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1331, 3, 98, 49, 0, 1327, 1328, 5, 5, 0, 0, 1328, 1330, 3, 98, 49, 0, 1329, 1327, 1, 0, 0, 0, 1330, 1333, 1, 0, 0, 0, 1331, 1329, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1346, 1, 0, 0, 0, 1333, 1331, 1, 0, 0, 0, 1334, 1344, 5, 77, 0, 0, 1335, 1340, 3, 96, 48, 0, 1336, 1337, 5, 5, 0, 0, 1337, 1339, 3, 96, 48, 0, 1338, 1336, 1, 0, 0, 0, 1339, 1342, 1, 0, 0, 0, 1340, 1338, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1345, 1, 0, 0, 0, 1342, 1340, 1, 0, 0, 0, 1343, 1345, 3, 86, 43, 0, 1344, 1335, 1, 0, 0, 0, 1344, 1343, 1, 0, 0, 0, 1345, 1347, 1, 0, 0, 0, 1346, 1334, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1350, 1, 0, 0, 0, 1348, 1349, 5, 151, 0, 0, 1349, 1351, 3, 68, 34, 0, 1350, 1348, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1366, 1, 0, 0, 0, 1352, 1353, 5, 80, 0, 0, 1353, 1354, 5, 42, 0, 0, 1354, 1359, 3, 68, 34, 0, 1355, 1356, 5, 5, 0, 0, 1356, 1358, 3, 68, 34, 0, 1357, 1355, 1, 0, 0, 0, 1358, 1361, 1, 0, 0, 0, 1359, 1357, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1364, 1, 0, 0, 0, 1361, 1359, 1, 0, 0, 0, 1362, 1363, 5, 81, 0, 0, 1363, 1365, 3, 68, 34, 0, 1364, 1362, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365, 1367, 1, 0, 0, 0, 1366, 1352, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 1382, 1, 0, 0, 0, 1368, 1369, 5, 177, 0, 0, 1369, 1370, 3, 214, 107, 0, 1370, 1371, 5, 35, 0, 0, 1371, 1379, 3, 118, 59, 0, 1372, 1373, 5, 5, 0, 0, 1373, 1374, 3, 214, 107, 0, 1374, 1375, 5, 35, 0, 0, 1375, 1376, 3, 118, 59, 0, 1376, 1378, 1, 0, 0, 0, 1377, 1372, 1, 0, 0, 0, 1378, 1381, 1, 0, 0, 0, 1379, 1377, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1383, 1, 0, 0, 0, 1381, 1379, 1, 0, 0, 0, 1382, 1368, 1, 0, 0, 0, 1382, 1383, 1, 0, 0, 0, 1383, 1413, 1, 0, 0, 0, 1384, 1385, 5, 147, 0, 0, 1385, 1386, 5, 3, 0, 0, 1386, 1391, 3, 68, 34, 0, 1387, 1388, 5, 5, 0, 0, 1388, 1390, 3, 68, 34, 0, 1389, 1387, 1, 0, 0, 0, 1390, 1393, 1, 0, 0, 0, 1391, 1389, 1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1394, 1, 0, 0, 0, 1393, 1391, 1, 0, 0, 0, 1394, 1409, 5, 4, 0, 0, 1395, 1396, 5, 5, 0, 0, 1396, 1397, 5, 3, 0, 0, 1397, 1402, 3, 68, 34, 0, 1398, 1399, 5, 5, 0, 0, 1399, 1401, 3, 68, 34, 0, 1400, 1398, 1, 0, 0, 0, 1401, 1404, 1, 0, 0, 0, 1402, 1400, 1, 0, 0, 0, 1402, 1403, 1, 0, 0, 0, 1403, 1405, 1, 0, 0, 0, 1404, 1402, 1, 0, 0, 0, 1405, 1406, 5, 4, 0, 0, 1406, 1408, 1, 0, 0, 0, 1407, 1395, 1, 0, 0, 0, 1408, 1411, 1, 0, 0, 0, 1409, 1407, 1, 0, 0, 0, 1409, 1410, 1, 0, 0, 0, 1410, 1413, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1322, 1, 0, 0, 0, 1412, 1384, 1, 0, 0, 0, 1413, 89, 1, 0, 0, 0, 1414, 1415, 3, 84, 42, 0, 1415, 91, 1, 0, 0, 0, 1416, 1418, 3, 132, 66, 0, 1417, 1416, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1421, 3, 88, 44, 0, 1420, 1422, 3, 134, 67, 0, 1421, 1420, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1424, 1, 0, 0, 0, 1423, 1425, 3, 136, 68, 0, 1424, 1423, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 93, 1, 0, 0, 0, 1426, 1428, 3, 132, 66, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429, 1, 0, 0, 0, 1429, 1439, 3, 88, 44, 0, 1430, 1432, 5, 142, 0, 0, 1431, 1433, 5, 31, 0, 0, 1432, 1431, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1437, 1, 0, 0, 0, 1434, 1437, 5, 92, 0, 0, 1435, 1437, 5, 70, 0, 0, 1436, 1430, 1, 0, 0, 0, 1436, 1434, 1, 0, 0, 0, 1436, 1435, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1440, 3, 88, 44, 0, 1439, 1436, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1439, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1444, 1, 0, 0, 0, 1443, 1445, 3, 134, 67, 0, 1444, 1443, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1447, 1, 0, 0, 0, 1446, 1448, 3, 136, 68, 0, 1447, 1446, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1448, 95, 1, 0, 0, 0, 1449, 1450, 3, 182, 91, 0, 1450, 1451, 5, 2, 0, 0, 1451, 1453, 1, 0, 0, 0, 1452, 1449, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1459, 3, 184, 92, 0, 1455, 1457, 5, 35, 0, 0, 1456, 1455, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1460, 3, 208, 104, 0, 1459, 1456, 1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1466, 1, 0, 0, 0, 1461, 1462, 5, 87, 0, 0, 1462, 1463, 5, 42, 0, 0, 1463, 1467, 3, 196, 98, 0, 1464, 1465, 5, 104, 0, 0, 1465, 1467, 5, 87, 0, 0, 1466, 1461, 1, 0, 0, 0, 1466, 1464, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1578, 1, 0, 0, 0, 1468, 1469, 3, 182, 91, 0, 1469, 1470, 5, 2, 0, 0, 1470, 1472, 1, 0, 0, 0, 1471, 1468, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 3, 226, 113, 0, 1474, 1475, 5, 3, 0, 0, 1475, 1480, 3, 68, 34, 0, 1476, 1477, 5, 5, 0, 0, 1477, 1479, 3, 68, 34, 0, 1478, 1476, 1, 0, 0, 0, 1479, 1482, 1, 0, 0, 0, 1480, 1478, 1, 0, 0, 0, 1480, 1481, 1, 0, 0, 0, 1481, 1483, 1, 0, 0, 0, 1482, 1480, 1, 0, 0, 0, 1483, 1488, 5, 4, 0, 0, 1484, 1486, 5, 35, 0, 0, 1485, 1484, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1489, 3, 208, 104, 0, 1488, 1485, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1578, 1, 0, 0, 0, 1490, 1500, 5, 3, 0, 0, 1491, 1496, 3, 96, 48, 0, 1492, 1493, 5, 5, 0, 0, 1493, 1495, 3, 96, 48, 0, 1494, 1492, 1, 0, 0, 0, 1495, 1498, 1, 0, 0, 0, 1496, 1494, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1501, 1, 0, 0, 0, 1498, 1496, 1, 0, 0, 0, 1499, 1501, 3, 86, 43, 0, 1500, 1491, 1, 0, 0, 0, 1500, 1499, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1503, 5, 4, 0, 0, 1503, 1578, 1, 0, 0, 0, 1504, 1505, 5, 3, 0, 0, 1505, 1506, 3, 84, 42, 0, 1506, 1511, 5, 4, 0, 0, 1507, 1509, 5, 35, 0, 0, 1508, 1507, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1512, 3, 208, 104, 0, 1511, 1508, 1, 0, 0, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1578, 1, 0, 0, 0, 1513, 1514, 3, 182, 91, 0, 1514, 1515, 5, 2, 0, 0, 1515, 1517, 1, 0, 0, 0, 1516, 1513, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1523, 3, 184, 92, 0, 1519, 1521, 5, 35, 0, 0, 1520, 1519, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1522, 1, 0, 0, 0, 1522, 1524, 3, 210, 105, 0, 1523, 1520, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1530, 1, 0, 0, 0, 1525, 1526, 5, 87, 0, 0, 1526, 1527, 5, 42, 0, 0, 1527, 1531, 3, 196, 98, 0, 1528, 1529, 5, 104, 0, 0, 1529, 1531, 5, 87, 0, 0, 1530, 1525, 1, 0, 0, 0, 1530, 1528, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1578, 1, 0, 0, 0, 1532, 1533, 3, 182, 91, 0, 1533, 1534, 5, 2, 0, 0, 1534, 1536, 1, 0, 0, 0, 1535, 1532, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1538, 3, 226, 113, 0, 1538, 1539, 5, 3, 0, 0, 1539, 1544, 3, 68, 34, 0, 1540, 1541, 5, 5, 0, 0, 1541, 1543, 3, 68, 34, 0, 1542, 1540, 1, 0, 0, 0, 1543, 1546, 1, 0, 0, 0, 1544, 1542, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1547, 1, 0, 0, 0, 1546, 1544, 1, 0, 0, 0, 1547, 1552, 5, 4, 0, 0, 1548, 1550, 5, 35, 0, 0, 1549, 1548, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1553, 3, 210, 105, 0, 1552, 1549, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1578, 1, 0, 0, 0, 1554, 1564, 5, 3, 0, 0, 1555, 1560, 3, 96, 48, 0, 1556, 1557, 5, 5, 0, 0, 1557, 1559, 3, 96, 48, 0, 1558, 1556, 1, 0, 0, 0, 1559, 1562, 1, 0, 0, 0, 1560, 1558, 1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1565, 1, 0, 0, 0, 1562, 1560, 1, 0, 0, 0, 1563, 1565, 3, 86, 43, 0, 1564, 1555, 1, 0, 0, 0, 1564, 1563, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1567, 5, 4, 0, 0, 1567, 1578, 1, 0, 0, 0, 1568, 1569, 5, 3, 0, 0, 1569, 1570, 3, 84, 42, 0, 1570, 1575, 5, 4, 0, 0, 1571, 1573, 5, 35, 0, 0, 1572, 1571, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1576, 3, 210, 105, 0, 1575, 1572, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1578, 1, 0, 0, 0, 1577, 1452, 1, 0, 0, 0, 1577, 1471, 1, 0, 0, 0, 1577, 1490, 1, 0, 0, 0, 1577, 1504, 1, 0, 0, 0, 1577, 1516, 1, 0, 0, 0, 1577, 1535, 1, 0, 0, 0, 1577, 1554, 1, 0, 0, 0, 1577, 1568, 1, 0, 0, 0, 1578, 97, 1, 0, 0, 0, 1579, 1592, 5, 7, 0, 0, 1580, 1581, 3, 184, 92, 0, 1581, 1582, 5, 2, 0, 0, 1582, 1583, 5, 7, 0, 0, 1583, 1592, 1, 0, 0, 0, 1584, 1589, 3, 68, 34, 0, 1585, 1587, 5, 35, 0, 0, 1586, 1585, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1590, 3, 172, 86, 0, 1589, 1586, 1, 0, 0, 0, 1589, 1590, 1, 0, 0, 0, 1590, 1592, 1, 0, 0, 0, 1591, 1579, 1, 0, 0, 0, 1591, 1580, 1, 0, 0, 0, 1591, 1584, 1, 0, 0, 0, 1592, 99, 1, 0, 0, 0, 1593, 1608, 5, 5, 0, 0, 1594, 1596, 5, 102, 0, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1602, 1, 0, 0, 0, 1597, 1599, 7, 18, 0, 0, 1598, 1600, 5, 112, 0, 0, 1599, 1598, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1603, 1, 0, 0, 0, 1601, 1603, 5, 89, 0, 0, 1602, 1597, 1, 0, 0, 0, 1602, 1601, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1608, 5, 96, 0, 0, 1605, 1606, 5, 53, 0, 0, 1606, 1608, 5, 96, 0, 0, 1607, 1593, 1, 0, 0, 0, 1607, 1595, 1, 0, 0, 0, 1607, 1605, 1, 0, 0, 0, 1608, 101, 1, 0, 0, 0, 1609, 1610, 5, 109, 0, 0, 1610, 1624, 3, 68, 34, 0, 1611, 1612, 5, 145, 0, 0, 1612, 1613, 5, 3, 0, 0, 1613, 1618, 3, 190, 95, 0, 1614, 1615, 5, 5, 0, 0, 1615, 1617, 3, 190, 95, 0, 1616, 1614, 1, 0, 0, 0, 1617, 1620, 1, 0, 0, 0, 1618, 1616, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1621, 1, 0, 0, 0, 1620, 1618, 1, 0, 0, 0, 1621, 1622, 5, 4, 0, 0, 1622, 1624, 1, 0, 0, 0, 1623, 1609, 1, 0, 0, 0, 1623, 1611, 1, 0, 0, 0, 1623, 1624, 1, 0, 0, 0, 1624, 103, 1, 0, 0, 0, 1625, 1627, 5, 142, 0, 0, 1626, 1628, 5, 31, 0, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1632, 1, 0, 0, 0, 1629, 1632, 5, 92, 0, 0, 1630, 1632, 5, 70, 0, 0, 1631, 1625, 1, 0, 0, 0, 1631, 1629, 1, 0, 0, 0, 1631, 1630, 1, 0, 0, 0, 1632, 105, 1, 0, 0, 0, 1633, 1635, 3, 50, 25, 0, 1634, 1633, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1639, 5, 144, 0, 0, 1637, 1638, 5, 110, 0, 0, 1638, 1640, 7, 8, 0, 0, 1639, 1637, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 3, 112, 56, 0, 1642, 1645, 5, 133, 0, 0, 1643, 1646, 3, 190, 95, 0, 1644, 1646, 3, 108, 54, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1648, 5, 6, 0, 0, 1648, 1659, 3, 68, 34, 0, 1649, 1652, 5, 5, 0, 0, 1650, 1653, 3, 190, 95, 0, 1651, 1653, 3, 108, 54, 0, 1652, 1650, 1, 0, 0, 0, 1652, 1651, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1655, 5, 6, 0, 0, 1655, 1656, 3, 68, 34, 0, 1656, 1658, 1, 0, 0, 0, 1657, 1649, 1, 0, 0, 0, 1658, 1661, 1, 0, 0, 0, 1659, 1657, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1664, 1, 0, 0, 0, 1661, 1659, 1, 0, 0, 0, 1662, 1663, 5, 151, 0, 0, 1663, 1665, 3, 68, 34, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1667, 1, 0, 0, 0, 1666, 1668, 3, 58, 29, 0, 1667, 1666, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 107, 1, 0, 0, 0, 1669, 1670, 5, 3, 0, 0, 1670, 1675, 3, 190, 95, 0, 1671, 1672, 5, 5, 0, 0, 1672, 1674, 3, 190, 95, 0, 1673, 1671, 1, 0, 0, 0, 1674, 1677, 1, 0, 0, 0, 1675, 1673, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 1, 0, 0, 0, 1677, 1675, 1, 0, 0, 0, 1678, 1679, 5, 4, 0, 0, 1679, 109, 1, 0, 0, 0, 1680, 1682, 3, 50, 25, 0, 1681, 1680, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1686, 5, 144, 0, 0, 1684, 1685, 5, 110, 0, 0, 1685, 1687, 7, 8, 0, 0, 1686, 1684, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1689, 3, 112, 56, 0, 1689, 1692, 5, 133, 0, 0, 1690, 1693, 3, 190, 95, 0, 1691, 1693, 3, 108, 54, 0, 1692, 1690, 1, 0, 0, 0, 1692, 1691, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1695, 5, 6, 0, 0, 1695, 1706, 3, 68, 34, 0, 1696, 1699, 5, 5, 0, 0, 1697, 1700, 3, 190, 95, 0, 1698, 1700, 3, 108, 54, 0, 1699, 1697, 1, 0, 0, 0, 1699, 1698, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1702, 5, 6, 0, 0, 1702, 1703, 3, 68, 34, 0, 1703, 1705, 1, 0, 0, 0, 1704, 1696, 1, 0, 0, 0, 1705, 1708, 1, 0, 0, 0, 1706, 1704, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1711, 1, 0, 0, 0, 1708, 1706, 1, 0, 0, 0, 1709, 1710, 5, 151, 0, 0, 1710, 1712, 3, 68, 34, 0, 1711, 1709, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1717, 1, 0, 0, 0, 1713, 1715, 3, 134, 67, 0, 1714, 1713, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1718, 3, 136, 68, 0, 1717, 1714, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 111, 1, 0, 0, 0, 1719, 1720, 3, 182, 91, 0, 1720, 1721, 5, 2, 0, 0, 1721, 1723, 1, 0, 0, 0, 1722, 1719, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1727, 3, 184, 92, 0, 1725, 1726, 5, 35, 0, 0, 1726, 1728, 3, 216, 108, 0, 1727, 1725, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1734, 1, 0, 0, 0, 1729, 1730, 5, 87, 0, 0, 1730, 1731, 5, 42, 0, 0, 1731, 1735, 3, 196, 98, 0, 1732, 1733, 5, 104, 0, 0, 1733, 1735, 5, 87, 0, 0, 1734, 1729, 1, 0, 0, 0, 1734, 1732, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 113, 1, 0, 0, 0, 1736, 1738, 5, 146, 0, 0, 1737, 1739, 3, 182, 91, 0, 1738, 1737, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1742, 1, 0, 0, 0, 1740, 1741, 5, 93, 0, 0, 1741, 1743, 3, 218, 109, 0, 1742, 1740, 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 115, 1, 0, 0, 0, 1744, 1745, 5, 181, 0, 0, 1745, 1746, 5, 3, 0, 0, 1746, 1747, 5, 151, 0, 0, 1747, 1748, 3, 68, 34, 0, 1748, 1749, 5, 4, 0, 0, 1749, 117, 1, 0, 0, 0, 1750, 1752, 5, 3, 0, 0, 1751, 1753, 3, 220, 110, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1764, 1, 0, 0, 0, 1754, 1755, 5, 156, 0, 0, 1755, 1756, 5, 42, 0, 0, 1756, 1761, 3, 68, 34, 0, 1757, 1758, 5, 5, 0, 0, 1758, 1760, 3, 68, 34, 0, 1759, 1757, 1, 0, 0, 0, 1760, 1763, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 1765, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1764, 1754, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1767, 5, 111, 0, 0, 1767, 1768, 5, 42, 0, 0, 1768, 1773, 3, 138, 69, 0, 1769, 1770, 5, 5, 0, 0, 1770, 1772, 3, 138, 69, 0, 1771, 1769, 1, 0, 0, 0, 1772, 1775, 1, 0, 0, 0, 1773, 1771, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1777, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1776, 1778, 3, 122, 61, 0, 1777, 1776, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1780, 5, 4, 0, 0, 1780, 119, 1, 0, 0, 0, 1781, 1815, 5, 155, 0, 0, 1782, 1816, 3, 214, 107, 0, 1783, 1785, 5, 3, 0, 0, 1784, 1786, 3, 220, 110, 0, 1785, 1784, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1797, 1, 0, 0, 0, 1787, 1788, 5, 156, 0, 0, 1788, 1789, 5, 42, 0, 0, 1789, 1794, 3, 68, 34, 0, 1790, 1791, 5, 5, 0, 0, 1791, 1793, 3, 68, 34, 0, 1792, 1790, 1, 0, 0, 0, 1793, 1796, 1, 0, 0, 0, 1794, 1792, 1, 0, 0, 0, 1794, 1795, 1, 0, 0, 0, 1795, 1798, 1, 0, 0, 0, 1796, 1794, 1, 0, 0, 0, 1797, 1787, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1809, 1, 0, 0, 0, 1799, 1800, 5, 111, 0, 0, 1800, 1801, 5, 42, 0, 0, 1801, 1806, 3, 138, 69, 0, 1802, 1803, 5, 5, 0, 0, 1803, 1805, 3, 138, 69, 0, 1804, 1802, 1, 0, 0, 0, 1805, 1808, 1, 0, 0, 0, 1806, 1804, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1810, 1, 0, 0, 0, 1808, 1806, 1, 0, 0, 0, 1809, 1799, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1812, 1, 0, 0, 0, 1811, 1813, 3, 122, 61, 0, 1812, 1811, 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1816, 5, 4, 0, 0, 1815, 1782, 1, 0, 0, 0, 1815, 1783, 1, 0, 0, 0, 1816, 121, 1, 0, 0, 0, 1817, 1825, 3, 124, 62, 0, 1818, 1819, 5, 183, 0, 0, 1819, 1820, 5, 103, 0, 0, 1820, 1826, 5, 185, 0, 0, 1821, 1822, 5, 160, 0, 0, 1822, 1826, 5, 129, 0, 0, 1823, 1826, 5, 80, 0, 0, 1824, 1826, 5, 184, 0, 0, 1825, 1818, 1, 0, 0, 0, 1825, 1821, 1, 0, 0, 0, 1825, 1823, 1, 0, 0, 0, 1825, 1824, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 123, 1, 0, 0, 0, 1827, 1834, 7, 19, 0, 0, 1828, 1835, 3, 146, 73, 0, 1829, 1830, 5, 41, 0, 0, 1830, 1831, 3, 142, 71, 0, 1831, 1832, 5, 34, 0, 0, 1832, 1833, 3, 144, 72, 0, 1833, 1835, 1, 0, 0, 0, 1834, 1828, 1, 0, 0, 0, 1834, 1829, 1, 0, 0, 0, 1835, 125, 1, 0, 0, 0, 1836, 1837, 3, 222, 111, 0, 1837, 1847, 5, 3, 0, 0, 1838, 1843, 3, 68, 34, 0, 1839, 1840, 5, 5, 0, 0, 1840, 1842, 3, 68, 34, 0, 1841, 1839, 1, 0, 0, 0, 1842, 1845, 1, 0, 0, 0, 1843, 1841, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1848, 1, 0, 0, 0, 1845, 1843, 1, 0, 0, 0, 1846, 1848, 5, 7, 0, 0, 1847, 1838, 1, 0, 0, 0, 1847, 1846, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1850, 5, 4, 0, 0, 1850, 127, 1, 0, 0, 0, 1851, 1852, 3, 224, 112, 0, 1852, 1865, 5, 3, 0, 0, 1853, 1855, 5, 64, 0, 0, 1854, 1853, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 1861, 3, 68, 34, 0, 1857, 1858, 5, 5, 0, 0, 1858, 1860, 3, 68, 34, 0, 1859, 1857, 1, 0, 0, 0, 1860, 1863, 1, 0, 0, 0, 1861, 1859, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1866, 1, 0, 0, 0, 1863, 1861, 1, 0, 0, 0, 1864, 1866, 5, 7, 0, 0, 1865, 1854, 1, 0, 0, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1869, 5, 4, 0, 0, 1868, 1870, 3, 116, 58, 0, 1869, 1868, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 129, 1, 0, 0, 0, 1871, 1872, 3, 148, 74, 0, 1872, 1882, 5, 3, 0, 0, 1873, 1878, 3, 68, 34, 0, 1874, 1875, 5, 5, 0, 0, 1875, 1877, 3, 68, 34, 0, 1876, 1874, 1, 0, 0, 0, 1877, 1880, 1, 0, 0, 0, 1878, 1876, 1, 0, 0, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1883, 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1881, 1883, 5, 7, 0, 0, 1882, 1873, 1, 0, 0, 0, 1882, 1881, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 1886, 5, 4, 0, 0, 1885, 1887, 3, 116, 58, 0, 1886, 1885, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1891, 5, 155, 0, 0, 1889, 1892, 3, 118, 59, 0, 1890, 1892, 3, 214, 107, 0, 1891, 1889, 1, 0, 0, 0, 1891, 1890, 1, 0, 0, 0, 1892, 131, 1, 0, 0, 0, 1893, 1895, 5, 152, 0, 0, 1894, 1896, 5, 118, 0, 0, 1895, 1894, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1897, 1, 0, 0, 0, 1897, 1902, 3, 56, 28, 0, 1898, 1899, 5, 5, 0, 0, 1899, 1901, 3, 56, 28, 0, 1900, 1898, 1, 0, 0, 0, 1901, 1904, 1, 0, 0, 0, 1902, 1900, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 133, 1, 0, 0, 0, 1904, 1902, 1, 0, 0, 0, 1905, 1906, 5, 111, 0, 0, 1906, 1907, 5, 42, 0, 0, 1907, 1912, 3, 138, 69, 0, 1908, 1909, 5, 5, 0, 0, 1909, 1911, 3, 138, 69, 0, 1910, 1908, 1, 0, 0, 0, 1911, 1914, 1, 0, 0, 0, 1912, 1910, 1, 0, 0, 0, 1912, 1913, 1, 0, 0, 0, 1913, 135, 1, 0, 0, 0, 1914, 1912, 1, 0, 0, 0, 1915, 1916, 5, 100, 0, 0, 1916, 1919, 3, 68, 34, 0, 1917, 1918, 7, 20, 0, 0, 1918, 1920, 3, 68, 34, 0, 1919, 1917, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 137, 1, 0, 0, 0, 1921, 1924, 3, 68, 34, 0, 1922, 1923, 5, 47, 0, 0, 1923, 1925, 3, 192, 96, 0, 1924, 1922, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 1927, 1, 0, 0, 0, 1926, 1928, 3, 140, 70, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1931, 1, 0, 0, 0, 1929, 1930, 5, 178, 0, 0, 1930, 1932, 7, 21, 0, 0, 1931, 1929, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 139, 1, 0, 0, 0, 1933, 1934, 7, 22, 0, 0, 1934, 141, 1, 0, 0, 0, 1935, 1936, 3, 68, 34, 0, 1936, 1937, 5, 158, 0, 0, 1937, 1946, 1, 0, 0, 0, 1938, 1939, 3, 68, 34, 0, 1939, 1940, 5, 161, 0, 0, 1940, 1946, 1, 0, 0, 0, 1941, 1942, 5, 160, 0, 0, 1942, 1946, 5, 129, 0, 0, 1943, 1944, 5, 159, 0, 0, 1944, 1946, 5, 158, 0, 0, 1945, 1935, 1, 0, 0, 0, 1945, 1938, 1, 0, 0, 0, 1945, 1941, 1, 0, 0, 0, 1945, 1943, 1, 0, 0, 0, 1946, 143, 1, 0, 0, 0, 1947, 1948, 3, 68, 34, 0, 1948, 1949, 5, 158, 0, 0, 1949, 1958, 1, 0, 0, 0, 1950, 1951, 3, 68, 34, 0, 1951, 1952, 5, 161, 0, 0, 1952, 1958, 1, 0, 0, 0, 1953, 1954, 5, 160, 0, 0, 1954, 1958, 5, 129, 0, 0, 1955, 1956, 5, 159, 0, 0, 1956, 1958, 5, 161, 0, 0, 1957, 1947, 1, 0, 0, 0, 1957, 1950, 1, 0, 0, 0, 1957, 1953, 1, 0, 0, 0, 1957, 1955, 1, 0, 0, 0, 1958, 145, 1, 0, 0, 0, 1959, 1960, 3, 68, 34, 0, 1960, 1961, 5, 158, 0, 0, 1961, 1967, 1, 0, 0, 0, 1962, 1963, 5, 159, 0, 0, 1963, 1967, 5, 158, 0, 0, 1964, 1965, 5, 160, 0, 0, 1965, 1967, 5, 129, 0, 0, 1966, 1959, 1, 0, 0, 0, 1966, 1962, 1, 0, 0, 0, 1966, 1964, 1, 0, 0, 0, 1967, 147, 1, 0, 0, 0, 1968, 1969, 7, 23, 0, 0, 1969, 1970, 5, 3, 0, 0, 1970, 1971, 3, 68, 34, 0, 1971, 1972, 5, 4, 0, 0, 1972, 1973, 5, 155, 0, 0, 1973, 1975, 5, 3, 0, 0, 1974, 1976, 3, 154, 77, 0, 1975, 1974, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1979, 3, 158, 79, 0, 1978, 1980, 3, 124, 62, 0, 1979, 1978, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1982, 5, 4, 0, 0, 1982, 2054, 1, 0, 0, 0, 1983, 1984, 7, 24, 0, 0, 1984, 1985, 5, 3, 0, 0, 1985, 1986, 5, 4, 0, 0, 1986, 1987, 5, 155, 0, 0, 1987, 1989, 5, 3, 0, 0, 1988, 1990, 3, 154, 77, 0, 1989, 1988, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1992, 1, 0, 0, 0, 1991, 1993, 3, 156, 78, 0, 1992, 1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 2054, 5, 4, 0, 0, 1995, 1996, 7, 25, 0, 0, 1996, 1997, 5, 3, 0, 0, 1997, 1998, 5, 4, 0, 0, 1998, 1999, 5, 155, 0, 0, 1999, 2001, 5, 3, 0, 0, 2000, 2002, 3, 154, 77, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2004, 3, 158, 79, 0, 2004, 2005, 5, 4, 0, 0, 2005, 2054, 1, 0, 0, 0, 2006, 2007, 7, 26, 0, 0, 2007, 2008, 5, 3, 0, 0, 2008, 2010, 3, 68, 34, 0, 2009, 2011, 3, 150, 75, 0, 2010, 2009, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 2013, 1, 0, 0, 0, 2012, 2014, 3, 152, 76, 0, 2013, 2012, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2016, 5, 4, 0, 0, 2016, 2017, 5, 155, 0, 0, 2017, 2019, 5, 3, 0, 0, 2018, 2020, 3, 154, 77, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2022, 3, 158, 79, 0, 2022, 2023, 5, 4, 0, 0, 2023, 2054, 1, 0, 0, 0, 2024, 2025, 5, 167, 0, 0, 2025, 2026, 5, 3, 0, 0, 2026, 2027, 3, 68, 34, 0, 2027, 2028, 5, 5, 0, 0, 2028, 2029, 3, 36, 18, 0, 2029, 2030, 5, 4, 0, 0, 2030, 2031, 5, 155, 0, 0, 2031, 2033, 5, 3, 0, 0, 2032, 2034, 3, 154, 77, 0, 2033, 2032, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2037, 3, 158, 79, 0, 2036, 2038, 3, 124, 62, 0, 2037, 2036, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2040, 5, 4, 0, 0, 2040, 2054, 1, 0, 0, 0, 2041, 2042, 5, 168, 0, 0, 2042, 2043, 5, 3, 0, 0, 2043, 2044, 3, 68, 34, 0, 2044, 2045, 5, 4, 0, 0, 2045, 2046, 5, 155, 0, 0, 2046, 2048, 5, 3, 0, 0, 2047, 2049, 3, 154, 77, 0, 2048, 2047, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2051, 3, 158, 79, 0, 2051, 2052, 5, 4, 0, 0, 2052, 2054, 1, 0, 0, 0, 2053, 1968, 1, 0, 0, 0, 2053, 1983, 1, 0, 0, 0, 2053, 1995, 1, 0, 0, 0, 2053, 2006, 1, 0, 0, 0, 2053, 2024, 1, 0, 0, 0, 2053, 2041, 1, 0, 0, 0, 2054, 149, 1, 0, 0, 0, 2055, 2056, 5, 5, 0, 0, 2056, 2057, 3, 36, 18, 0, 2057, 151, 1, 0, 0, 0, 2058, 2059, 5, 5, 0, 0, 2059, 2060, 3, 36, 18, 0, 2060, 153, 1, 0, 0, 0, 2061, 2062, 5, 156, 0, 0, 2062, 2064, 5, 42, 0, 0, 2063, 2065, 3, 68, 34, 0, 2064, 2063, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2064, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 155, 1, 0, 0, 0, 2068, 2069, 5, 111, 0, 0, 2069, 2071, 5, 42, 0, 0, 2070, 2072, 3, 68, 34, 0, 2071, 2070, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2071, 1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 157, 1, 0, 0, 0, 2075, 2076, 5, 111, 0, 0, 2076, 2077, 5, 42, 0, 0, 2077, 2078, 3, 158, 79, 0, 2078, 159, 1, 0, 0, 0, 2079, 2081, 3, 68, 34, 0, 2080, 2082, 3, 140, 70, 0, 2081, 2080, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2090, 1, 0, 0, 0, 2083, 2084, 5, 5, 0, 0, 2084, 2086, 3, 68, 34, 0, 2085, 2087, 3, 140, 70, 0, 2086, 2085, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2089, 1, 0, 0, 0, 2088, 2083, 1, 0, 0, 0, 2089, 2092, 1, 0, 0, 0, 2090, 2088, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 161, 1, 0, 0, 0, 2092, 2090, 1, 0, 0, 0, 2093, 2094, 3, 84, 42, 0, 2094, 163, 1, 0, 0, 0, 2095, 2096, 3, 84, 42, 0, 2096, 165, 1, 0, 0, 0, 2097, 2098, 7, 27, 0, 0, 2098, 167, 1, 0, 0, 0, 2099, 2100, 5, 192, 0, 0, 2100, 169, 1, 0, 0, 0, 2101, 2104, 3, 68, 34, 0, 2102, 2104, 3, 30, 15, 0, 2103, 2101, 1, 0, 0, 0, 2103, 2102, 1, 0, 0, 0, 2104, 171, 1, 0, 0, 0, 2105, 2106, 7, 28, 0, 0, 2106, 173, 1, 0, 0, 0, 2107, 2108, 7, 29, 0, 0, 2108, 175, 1, 0, 0, 0, 2109, 2110, 3, 228, 114, 0, 2110, 177, 1, 0, 0, 0, 2111, 2112, 3, 228, 114, 0, 2112, 179, 1, 0, 0, 0, 2113, 2114, 3, 182, 91, 0, 2114, 2115, 5, 2, 0, 0, 2115, 2117, 1, 0, 0, 0, 2116, 2113, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2119, 3, 178, 89, 0, 2119, 181, 1, 0, 0, 0, 2120, 2121, 3, 228, 114, 0, 2121, 183, 1, 0, 0, 0, 2122, 2123, 3, 228, 114, 0, 2123, 185, 1, 0, 0, 0, 2124, 2125, 3, 228, 114, 0, 2125, 187, 1, 0, 0, 0, 2126, 2127, 3, 228, 114, 0, 2127, 189, 1, 0, 0, 0, 2128, 2129, 3, 228, 114, 0, 2129, 191, 1, 0, 0, 0, 2130, 2131, 3, 228, 114, 0, 2131, 193, 1, 0, 0, 0, 2132, 2133, 3, 228, 114, 0, 2133, 195, 1, 0, 0, 0, 2134, 2135, 3, 228, 114, 0, 2135, 197, 1, 0, 0, 0, 2136, 2137, 3, 228, 114, 0, 2137, 199, 1, 0, 0, 0, 2138, 2139, 3, 228, 114, 0, 2139, 201, 1, 0, 0, 0, 2140, 2141, 3, 228, 114, 0, 2141, 203, 1, 0, 0, 0, 2142, 2143, 3, 228, 114, 0, 2143, 205, 1, 0, 0, 0, 2144, 2145, 3, 228, 114, 0, 2145, 207, 1, 0, 0, 0, 2146, 2147, 7, 28, 0, 0, 2147, 209, 1, 0, 0, 0, 2148, 2149, 3, 228, 114, 0, 2149, 211, 1, 0, 0, 0, 2150, 2151, 3, 228, 114, 0, 2151, 213, 1, 0, 0, 0, 2152, 2153, 3, 228, 114, 0, 2153, 215, 1, 0, 0, 0, 2154, 2155, 3, 228, 114, 0, 2155, 217, 1, 0, 0, 0, 2156, 2157, 3, 228, 114, 0, 2157, 219, 1, 0, 0, 0, 2158, 2159, 3, 228, 114, 0, 2159, 221, 1, 0, 0, 0, 2160, 2161, 3, 228, 114, 0, 2161, 223, 1, 0, 0, 0, 2162, 2163, 3, 228, 114, 0, 2163, 225, 1, 0, 0, 0, 2164, 2165, 3, 228, 114, 0, 2165, 227, 1, 0, 0, 0, 2166, 2174, 5, 188, 0, 0, 2167, 2174, 3, 174, 87, 0, 2168, 2174, 5, 192, 0, 0, 2169, 2170, 5, 3, 0, 0, 2170, 2171, 3, 228, 114, 0, 2171, 2172, 5, 4, 0, 0, 2172, 2174, 1, 0, 0, 0, 2173, 2166, 1, 0, 0, 0, 2173, 2167, 1, 0, 0, 0, 2173, 2168, 1, 0, 0, 0, 2173, 2169, 1, 0, 0, 0, 2174, 229, 1, 0, 0, 0, 313, 233, 241, 248, 253, 259, 265, 267, 293, 300, 307, 313, 317, 322, 325, 332, 335, 339, 347, 351, 353, 357, 361, 365, 368, 375, 381, 387, 392, 403, 409, 413, 417, 420, 425, 429, 435, 440, 449, 456, 465, 468, 472, 476, 481, 487, 499, 503, 508, 511, 514, 519, 522, 536, 543, 550, 552, 555, 561, 566, 574, 579, 594, 600, 610, 615, 625, 629, 631, 635, 640, 642, 650, 656, 661, 668, 679, 682, 684, 691, 695, 702, 708, 714, 720, 725, 734, 739, 750, 755, 766, 771, 775, 791, 801, 806, 814, 826, 831, 842, 845, 847, 853, 856, 858, 862, 866, 873, 876, 879, 886, 889, 892, 895, 899, 907, 912, 923, 928, 937, 944, 948, 952, 955, 963, 976, 979, 987, 996, 1000, 1005, 1034, 1041, 1052, 1061, 1071, 1074, 1080, 1086, 1095, 1098, 1102, 1109, 1115, 1122, 1124, 1126, 1135, 1142, 1149, 1155, 1160, 1168, 1173, 1182, 1193, 1200, 1206, 1209, 1212, 1222, 1228, 1230, 1238, 1245, 1252, 1257, 1259, 1265, 1274, 1279, 1286, 1290, 1292, 1295, 1303, 1307, 1310, 1319, 1324, 1331, 1340, 1344, 1346, 1350, 1359, 1364, 1366, 1379, 1382, 1391, 1402, 1409, 1412, 1417, 1421, 1424, 1427, 1432, 1436, 1441, 1444, 1447, 1452, 1456, 1459, 1466, 1471, 1480, 1485, 1488, 1496, 1500, 1508, 1511, 1516, 1520, 1523, 1530, 1535, 1544, 1549, 1552, 1560, 1564, 1572, 1575, 1577, 1586, 1589, 1591, 1595, 1599, 1602, 1607, 1618, 1623, 1627, 1631, 1634, 1639, 1645, 1652, 1659, 1664, 1667, 1675, 1681, 1686, 1692, 1699, 1706, 1711, 1714, 1717, 1722, 1727, 1734, 1738, 1742, 1752, 1761, 1764, 1773, 1777, 1785, 1794, 1797, 1806, 1809, 1812, 1815, 1825, 1834, 1843, 1847, 1854, 1861, 1865, 1869, 1878, 1882, 1886, 1891, 1895, 1902, 1912, 1919, 1924, 1927, 1931, 1945, 1957, 1966, 1975, 1979, 1989, 1992, 2001, 2010, 2013, 2019, 2033, 2037, 2048, 2053, 2066, 2073, 2081, 2086, 2090, 2103, 2116, 2173]"
  },
  {
    "path": "internal/engine/sqlite/parser/SQLiteParser.tokens",
    "content": "SCOL=1\nDOT=2\nOPEN_PAR=3\nCLOSE_PAR=4\nCOMMA=5\nASSIGN=6\nSTAR=7\nPLUS=8\nPTR2=9\nPTR=10\nMINUS=11\nTILDE=12\nPIPE2=13\nDIV=14\nMOD=15\nLT2=16\nGT2=17\nAMP=18\nPIPE=19\nLT=20\nLT_EQ=21\nGT=22\nGT_EQ=23\nEQ=24\nNOT_EQ1=25\nNOT_EQ2=26\nABORT_=27\nACTION_=28\nADD_=29\nAFTER_=30\nALL_=31\nALTER_=32\nANALYZE_=33\nAND_=34\nAS_=35\nASC_=36\nATTACH_=37\nAUTOINCREMENT_=38\nBEFORE_=39\nBEGIN_=40\nBETWEEN_=41\nBY_=42\nCASCADE_=43\nCASE_=44\nCAST_=45\nCHECK_=46\nCOLLATE_=47\nCOLUMN_=48\nCOMMIT_=49\nCONFLICT_=50\nCONSTRAINT_=51\nCREATE_=52\nCROSS_=53\nCURRENT_DATE_=54\nCURRENT_TIME_=55\nCURRENT_TIMESTAMP_=56\nDATABASE_=57\nDEFAULT_=58\nDEFERRABLE_=59\nDEFERRED_=60\nDELETE_=61\nDESC_=62\nDETACH_=63\nDISTINCT_=64\nDROP_=65\nEACH_=66\nELSE_=67\nEND_=68\nESCAPE_=69\nEXCEPT_=70\nEXCLUSIVE_=71\nEXISTS_=72\nEXPLAIN_=73\nFAIL_=74\nFOR_=75\nFOREIGN_=76\nFROM_=77\nFULL_=78\nGLOB_=79\nGROUP_=80\nHAVING_=81\nIF_=82\nIGNORE_=83\nIMMEDIATE_=84\nIN_=85\nINDEX_=86\nINDEXED_=87\nINITIALLY_=88\nINNER_=89\nINSERT_=90\nINSTEAD_=91\nINTERSECT_=92\nINTO_=93\nIS_=94\nISNULL_=95\nJOIN_=96\nKEY_=97\nLEFT_=98\nLIKE_=99\nLIMIT_=100\nMATCH_=101\nNATURAL_=102\nNO_=103\nNOT_=104\nNOTNULL_=105\nNULL_=106\nOF_=107\nOFFSET_=108\nON_=109\nOR_=110\nORDER_=111\nOUTER_=112\nPLAN_=113\nPRAGMA_=114\nPRIMARY_=115\nQUERY_=116\nRAISE_=117\nRECURSIVE_=118\nREFERENCES_=119\nREGEXP_=120\nREINDEX_=121\nRELEASE_=122\nRENAME_=123\nREPLACE_=124\nRESTRICT_=125\nRETURNING_=126\nRIGHT_=127\nROLLBACK_=128\nROW_=129\nROWS_=130\nSAVEPOINT_=131\nSELECT_=132\nSET_=133\nSTRICT_=134\nTABLE_=135\nTEMP_=136\nTEMPORARY_=137\nTHEN_=138\nTO_=139\nTRANSACTION_=140\nTRIGGER_=141\nUNION_=142\nUNIQUE_=143\nUPDATE_=144\nUSING_=145\nVACUUM_=146\nVALUES_=147\nVIEW_=148\nVIRTUAL_=149\nWHEN_=150\nWHERE_=151\nWITH_=152\nWITHOUT_=153\nFIRST_VALUE_=154\nOVER_=155\nPARTITION_=156\nRANGE_=157\nPRECEDING_=158\nUNBOUNDED_=159\nCURRENT_=160\nFOLLOWING_=161\nCUME_DIST_=162\nDENSE_RANK_=163\nLAG_=164\nLAST_VALUE_=165\nLEAD_=166\nNTH_VALUE_=167\nNTILE_=168\nPERCENT_RANK_=169\nRANK_=170\nROW_NUMBER_=171\nGENERATED_=172\nALWAYS_=173\nSTORED_=174\nTRUE_=175\nFALSE_=176\nWINDOW_=177\nNULLS_=178\nFIRST_=179\nLAST_=180\nFILTER_=181\nGROUPS_=182\nEXCLUDE_=183\nTIES_=184\nOTHERS_=185\nDO_=186\nNOTHING_=187\nIDENTIFIER=188\nNUMERIC_LITERAL=189\nNUMBERED_BIND_PARAMETER=190\nNAMED_BIND_PARAMETER=191\nSTRING_LITERAL=192\nBLOB_LITERAL=193\nSINGLE_LINE_COMMENT=194\nMULTILINE_COMMENT=195\nSPACES=196\nUNEXPECTED_CHAR=197\n';'=1\n'.'=2\n'('=3\n')'=4\n','=5\n'='=6\n'*'=7\n'+'=8\n'->>'=9\n'->'=10\n'-'=11\n'~'=12\n'||'=13\n'/'=14\n'%'=15\n'<<'=16\n'>>'=17\n'&'=18\n'|'=19\n'<'=20\n'<='=21\n'>'=22\n'>='=23\n'=='=24\n'!='=25\n'<>'=26\n"
  },
  {
    "path": "internal/engine/sqlite/parser/sqlite_lexer.go",
    "content": "// Code generated from SQLiteLexer.g4 by ANTLR 4.13.1. DO NOT EDIT.\n\npackage parser\n\nimport (\n\t\"fmt\"\n\t\"github.com/antlr4-go/antlr/v4\"\n\t\"sync\"\n\t\"unicode\"\n)\n\n// Suppress unused import error\nvar _ = fmt.Printf\nvar _ = sync.Once{}\nvar _ = unicode.IsLetter\n\ntype SQLiteLexer struct {\n\t*antlr.BaseLexer\n\tchannelNames []string\n\tmodeNames    []string\n\t// TODO: EOF string\n}\n\nvar SQLiteLexerLexerStaticData struct {\n\tonce                   sync.Once\n\tserializedATN          []int32\n\tChannelNames           []string\n\tModeNames              []string\n\tLiteralNames           []string\n\tSymbolicNames          []string\n\tRuleNames              []string\n\tPredictionContextCache *antlr.PredictionContextCache\n\tatn                    *antlr.ATN\n\tdecisionToDFA          []*antlr.DFA\n}\n\nfunc sqlitelexerLexerInit() {\n\tstaticData := &SQLiteLexerLexerStaticData\n\tstaticData.ChannelNames = []string{\n\t\t\"DEFAULT_TOKEN_CHANNEL\", \"HIDDEN\",\n\t}\n\tstaticData.ModeNames = []string{\n\t\t\"DEFAULT_MODE\",\n\t}\n\tstaticData.LiteralNames = []string{\n\t\t\"\", \"';'\", \"'.'\", \"'('\", \"')'\", \"','\", \"'='\", \"'*'\", \"'+'\", \"'->>'\",\n\t\t\"'->'\", \"'-'\", \"'~'\", \"'||'\", \"'/'\", \"'%'\", \"'<<'\", \"'>>'\", \"'&'\", \"'|'\",\n\t\t\"'<'\", \"'<='\", \"'>'\", \"'>='\", \"'=='\", \"'!='\", \"'<>'\",\n\t}\n\tstaticData.SymbolicNames = []string{\n\t\t\"\", \"SCOL\", \"DOT\", \"OPEN_PAR\", \"CLOSE_PAR\", \"COMMA\", \"ASSIGN\", \"STAR\",\n\t\t\"PLUS\", \"PTR2\", \"PTR\", \"MINUS\", \"TILDE\", \"PIPE2\", \"DIV\", \"MOD\", \"LT2\",\n\t\t\"GT2\", \"AMP\", \"PIPE\", \"LT\", \"LT_EQ\", \"GT\", \"GT_EQ\", \"EQ\", \"NOT_EQ1\",\n\t\t\"NOT_EQ2\", \"ABORT_\", \"ACTION_\", \"ADD_\", \"AFTER_\", \"ALL_\", \"ALTER_\",\n\t\t\"ANALYZE_\", \"AND_\", \"AS_\", \"ASC_\", \"ATTACH_\", \"AUTOINCREMENT_\", \"BEFORE_\",\n\t\t\"BEGIN_\", \"BETWEEN_\", \"BY_\", \"CASCADE_\", \"CASE_\", \"CAST_\", \"CHECK_\",\n\t\t\"COLLATE_\", \"COLUMN_\", \"COMMIT_\", \"CONFLICT_\", \"CONSTRAINT_\", \"CREATE_\",\n\t\t\"CROSS_\", \"CURRENT_DATE_\", \"CURRENT_TIME_\", \"CURRENT_TIMESTAMP_\", \"DATABASE_\",\n\t\t\"DEFAULT_\", \"DEFERRABLE_\", \"DEFERRED_\", \"DELETE_\", \"DESC_\", \"DETACH_\",\n\t\t\"DISTINCT_\", \"DROP_\", \"EACH_\", \"ELSE_\", \"END_\", \"ESCAPE_\", \"EXCEPT_\",\n\t\t\"EXCLUSIVE_\", \"EXISTS_\", \"EXPLAIN_\", \"FAIL_\", \"FOR_\", \"FOREIGN_\", \"FROM_\",\n\t\t\"FULL_\", \"GLOB_\", \"GROUP_\", \"HAVING_\", \"IF_\", \"IGNORE_\", \"IMMEDIATE_\",\n\t\t\"IN_\", \"INDEX_\", \"INDEXED_\", \"INITIALLY_\", \"INNER_\", \"INSERT_\", \"INSTEAD_\",\n\t\t\"INTERSECT_\", \"INTO_\", \"IS_\", \"ISNULL_\", \"JOIN_\", \"KEY_\", \"LEFT_\", \"LIKE_\",\n\t\t\"LIMIT_\", \"MATCH_\", \"NATURAL_\", \"NO_\", \"NOT_\", \"NOTNULL_\", \"NULL_\",\n\t\t\"OF_\", \"OFFSET_\", \"ON_\", \"OR_\", \"ORDER_\", \"OUTER_\", \"PLAN_\", \"PRAGMA_\",\n\t\t\"PRIMARY_\", \"QUERY_\", \"RAISE_\", \"RECURSIVE_\", \"REFERENCES_\", \"REGEXP_\",\n\t\t\"REINDEX_\", \"RELEASE_\", \"RENAME_\", \"REPLACE_\", \"RESTRICT_\", \"RETURNING_\",\n\t\t\"RIGHT_\", \"ROLLBACK_\", \"ROW_\", \"ROWS_\", \"SAVEPOINT_\", \"SELECT_\", \"SET_\",\n\t\t\"STRICT_\", \"TABLE_\", \"TEMP_\", \"TEMPORARY_\", \"THEN_\", \"TO_\", \"TRANSACTION_\",\n\t\t\"TRIGGER_\", \"UNION_\", \"UNIQUE_\", \"UPDATE_\", \"USING_\", \"VACUUM_\", \"VALUES_\",\n\t\t\"VIEW_\", \"VIRTUAL_\", \"WHEN_\", \"WHERE_\", \"WITH_\", \"WITHOUT_\", \"FIRST_VALUE_\",\n\t\t\"OVER_\", \"PARTITION_\", \"RANGE_\", \"PRECEDING_\", \"UNBOUNDED_\", \"CURRENT_\",\n\t\t\"FOLLOWING_\", \"CUME_DIST_\", \"DENSE_RANK_\", \"LAG_\", \"LAST_VALUE_\", \"LEAD_\",\n\t\t\"NTH_VALUE_\", \"NTILE_\", \"PERCENT_RANK_\", \"RANK_\", \"ROW_NUMBER_\", \"GENERATED_\",\n\t\t\"ALWAYS_\", \"STORED_\", \"TRUE_\", \"FALSE_\", \"WINDOW_\", \"NULLS_\", \"FIRST_\",\n\t\t\"LAST_\", \"FILTER_\", \"GROUPS_\", \"EXCLUDE_\", \"TIES_\", \"OTHERS_\", \"DO_\",\n\t\t\"NOTHING_\", \"IDENTIFIER\", \"NUMERIC_LITERAL\", \"NUMBERED_BIND_PARAMETER\",\n\t\t\"NAMED_BIND_PARAMETER\", \"STRING_LITERAL\", \"BLOB_LITERAL\", \"SINGLE_LINE_COMMENT\",\n\t\t\"MULTILINE_COMMENT\", \"SPACES\", \"UNEXPECTED_CHAR\",\n\t}\n\tstaticData.RuleNames = []string{\n\t\t\"SCOL\", \"DOT\", \"OPEN_PAR\", \"CLOSE_PAR\", \"COMMA\", \"ASSIGN\", \"STAR\", \"PLUS\",\n\t\t\"PTR2\", \"PTR\", \"MINUS\", \"TILDE\", \"PIPE2\", \"DIV\", \"MOD\", \"LT2\", \"GT2\",\n\t\t\"AMP\", \"PIPE\", \"LT\", \"LT_EQ\", \"GT\", \"GT_EQ\", \"EQ\", \"NOT_EQ1\", \"NOT_EQ2\",\n\t\t\"ABORT_\", \"ACTION_\", \"ADD_\", \"AFTER_\", \"ALL_\", \"ALTER_\", \"ANALYZE_\",\n\t\t\"AND_\", \"AS_\", \"ASC_\", \"ATTACH_\", \"AUTOINCREMENT_\", \"BEFORE_\", \"BEGIN_\",\n\t\t\"BETWEEN_\", \"BY_\", \"CASCADE_\", \"CASE_\", \"CAST_\", \"CHECK_\", \"COLLATE_\",\n\t\t\"COLUMN_\", \"COMMIT_\", \"CONFLICT_\", \"CONSTRAINT_\", \"CREATE_\", \"CROSS_\",\n\t\t\"CURRENT_DATE_\", \"CURRENT_TIME_\", \"CURRENT_TIMESTAMP_\", \"DATABASE_\",\n\t\t\"DEFAULT_\", \"DEFERRABLE_\", \"DEFERRED_\", \"DELETE_\", \"DESC_\", \"DETACH_\",\n\t\t\"DISTINCT_\", \"DROP_\", \"EACH_\", \"ELSE_\", \"END_\", \"ESCAPE_\", \"EXCEPT_\",\n\t\t\"EXCLUSIVE_\", \"EXISTS_\", \"EXPLAIN_\", \"FAIL_\", \"FOR_\", \"FOREIGN_\", \"FROM_\",\n\t\t\"FULL_\", \"GLOB_\", \"GROUP_\", \"HAVING_\", \"IF_\", \"IGNORE_\", \"IMMEDIATE_\",\n\t\t\"IN_\", \"INDEX_\", \"INDEXED_\", \"INITIALLY_\", \"INNER_\", \"INSERT_\", \"INSTEAD_\",\n\t\t\"INTERSECT_\", \"INTO_\", \"IS_\", \"ISNULL_\", \"JOIN_\", \"KEY_\", \"LEFT_\", \"LIKE_\",\n\t\t\"LIMIT_\", \"MATCH_\", \"NATURAL_\", \"NO_\", \"NOT_\", \"NOTNULL_\", \"NULL_\",\n\t\t\"OF_\", \"OFFSET_\", \"ON_\", \"OR_\", \"ORDER_\", \"OUTER_\", \"PLAN_\", \"PRAGMA_\",\n\t\t\"PRIMARY_\", \"QUERY_\", \"RAISE_\", \"RECURSIVE_\", \"REFERENCES_\", \"REGEXP_\",\n\t\t\"REINDEX_\", \"RELEASE_\", \"RENAME_\", \"REPLACE_\", \"RESTRICT_\", \"RETURNING_\",\n\t\t\"RIGHT_\", \"ROLLBACK_\", \"ROW_\", \"ROWS_\", \"SAVEPOINT_\", \"SELECT_\", \"SET_\",\n\t\t\"STRICT_\", \"TABLE_\", \"TEMP_\", \"TEMPORARY_\", \"THEN_\", \"TO_\", \"TRANSACTION_\",\n\t\t\"TRIGGER_\", \"UNION_\", \"UNIQUE_\", \"UPDATE_\", \"USING_\", \"VACUUM_\", \"VALUES_\",\n\t\t\"VIEW_\", \"VIRTUAL_\", \"WHEN_\", \"WHERE_\", \"WITH_\", \"WITHOUT_\", \"FIRST_VALUE_\",\n\t\t\"OVER_\", \"PARTITION_\", \"RANGE_\", \"PRECEDING_\", \"UNBOUNDED_\", \"CURRENT_\",\n\t\t\"FOLLOWING_\", \"CUME_DIST_\", \"DENSE_RANK_\", \"LAG_\", \"LAST_VALUE_\", \"LEAD_\",\n\t\t\"NTH_VALUE_\", \"NTILE_\", \"PERCENT_RANK_\", \"RANK_\", \"ROW_NUMBER_\", \"GENERATED_\",\n\t\t\"ALWAYS_\", \"STORED_\", \"TRUE_\", \"FALSE_\", \"WINDOW_\", \"NULLS_\", \"FIRST_\",\n\t\t\"LAST_\", \"FILTER_\", \"GROUPS_\", \"EXCLUDE_\", \"TIES_\", \"OTHERS_\", \"DO_\",\n\t\t\"NOTHING_\", \"IDENTIFIER\", \"NUMERIC_LITERAL\", \"NUMBERED_BIND_PARAMETER\",\n\t\t\"NAMED_BIND_PARAMETER\", \"STRING_LITERAL\", \"BLOB_LITERAL\", \"SINGLE_LINE_COMMENT\",\n\t\t\"MULTILINE_COMMENT\", \"SPACES\", \"UNEXPECTED_CHAR\", \"HEX_DIGIT\", \"DIGIT\",\n\t\t\"A\", \"B\", \"C\", \"D\", \"E\", \"F\", \"G\", \"H\", \"I\", \"J\", \"K\", \"L\", \"M\", \"N\",\n\t\t\"O\", \"P\", \"Q\", \"R\", \"S\", \"T\", \"U\", \"V\", \"W\", \"X\", \"Y\", \"Z\",\n\t}\n\tstaticData.PredictionContextCache = antlr.NewPredictionContextCache()\n\tstaticData.serializedATN = []int32{\n\t\t4, 0, 197, 1829, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3,\n\t\t2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9,\n\t\t2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2,\n\t\t15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20,\n\t\t7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7,\n\t\t25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30,\n\t\t2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2,\n\t\t36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41,\n\t\t7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7,\n\t\t46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51,\n\t\t2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2,\n\t\t57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62,\n\t\t7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7,\n\t\t67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72,\n\t\t2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2,\n\t\t78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83,\n\t\t7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7,\n\t\t88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93,\n\t\t2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2,\n\t\t99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103,\n\t\t2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108,\n\t\t7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112,\n\t\t2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117,\n\t\t7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121,\n\t\t2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126,\n\t\t7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130,\n\t\t2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135,\n\t\t7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139,\n\t\t2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144,\n\t\t7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148,\n\t\t2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153,\n\t\t7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157,\n\t\t2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162,\n\t\t7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166,\n\t\t2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171,\n\t\t7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175,\n\t\t2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180,\n\t\t7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184,\n\t\t2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189,\n\t\t7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193,\n\t\t2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198,\n\t\t7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202,\n\t\t2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207,\n\t\t7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211,\n\t\t2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216,\n\t\t7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220,\n\t\t2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 1, 0, 1,\n\t\t0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 6, 1,\n\t\t6, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10,\n\t\t1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 15, 1,\n\t\t15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 19, 1, 19,\n\t\t1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1,\n\t\t23, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26,\n\t\t1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1,\n\t\t28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30,\n\t\t1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1,\n\t\t32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34,\n\t\t1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1,\n\t\t36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37,\n\t\t1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1,\n\t\t38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40,\n\t\t1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 42, 1,\n\t\t42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43,\n\t\t1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1,\n\t\t45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47,\n\t\t1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1,\n\t\t48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49,\n\t\t1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1,\n\t\t50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52,\n\t\t1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1,\n\t\t53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54,\n\t\t1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1,\n\t\t55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55,\n\t\t1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1,\n\t\t56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57,\n\t\t1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1,\n\t\t58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59,\n\t\t1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1,\n\t\t61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63,\n\t\t1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1,\n\t\t64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66,\n\t\t1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1,\n\t\t68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70,\n\t\t1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1,\n\t\t71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72,\n\t\t1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1,\n\t\t74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76,\n\t\t1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1,\n\t\t78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80,\n\t\t1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 82, 1,\n\t\t82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83,\n\t\t1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1,\n\t\t85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86,\n\t\t1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1,\n\t\t87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89,\n\t\t1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1,\n\t\t90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91,\n\t\t1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1,\n\t\t94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96,\n\t\t1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1,\n\t\t98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1,\n\t\t100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1,\n\t\t101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1,\n\t\t103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1,\n\t\t104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1,\n\t\t107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1,\n\t\t108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1,\n\t\t110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1,\n\t\t112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1,\n\t\t113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1,\n\t\t115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1,\n\t\t116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1,\n\t\t117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1,\n\t\t118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1,\n\t\t119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1,\n\t\t120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1,\n\t\t121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1,\n\t\t123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1,\n\t\t124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1,\n\t\t125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1,\n\t\t126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1,\n\t\t127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1,\n\t\t128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1,\n\t\t130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1,\n\t\t131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1,\n\t\t133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1,\n\t\t134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1,\n\t\t136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1,\n\t\t136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1,\n\t\t139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1,\n\t\t139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1,\n\t\t140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1,\n\t\t142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1,\n\t\t143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1,\n\t\t144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1,\n\t\t146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1,\n\t\t147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1,\n\t\t148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1,\n\t\t150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1,\n\t\t152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1,\n\t\t153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1,\n\t\t153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1,\n\t\t155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1,\n\t\t156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1,\n\t\t157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1,\n\t\t158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1,\n\t\t159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1,\n\t\t160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1,\n\t\t161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1,\n\t\t162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1,\n\t\t163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1,\n\t\t164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1,\n\t\t165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1,\n\t\t166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1,\n\t\t168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1,\n\t\t168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1,\n\t\t170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1,\n\t\t170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1,\n\t\t171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1,\n\t\t172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1,\n\t\t174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1,\n\t\t175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1,\n\t\t177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1,\n\t\t178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1,\n\t\t180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1,\n\t\t181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1,\n\t\t182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1,\n\t\t184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 186, 1,\n\t\t186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1,\n\t\t187, 1, 187, 5, 187, 1636, 8, 187, 10, 187, 12, 187, 1639, 9, 187, 1, 187,\n\t\t1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 1646, 8, 187, 10, 187, 12, 187,\n\t\t1649, 9, 187, 1, 187, 1, 187, 1, 187, 5, 187, 1654, 8, 187, 10, 187, 12,\n\t\t187, 1657, 9, 187, 1, 187, 1, 187, 1, 187, 5, 187, 1662, 8, 187, 10, 187,\n\t\t12, 187, 1665, 9, 187, 3, 187, 1667, 8, 187, 1, 188, 4, 188, 1670, 8, 188,\n\t\t11, 188, 12, 188, 1671, 1, 188, 1, 188, 5, 188, 1676, 8, 188, 10, 188,\n\t\t12, 188, 1679, 9, 188, 3, 188, 1681, 8, 188, 1, 188, 1, 188, 4, 188, 1685,\n\t\t8, 188, 11, 188, 12, 188, 1686, 3, 188, 1689, 8, 188, 1, 188, 1, 188, 3,\n\t\t188, 1693, 8, 188, 1, 188, 4, 188, 1696, 8, 188, 11, 188, 12, 188, 1697,\n\t\t3, 188, 1700, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 4, 188, 1706, 8,\n\t\t188, 11, 188, 12, 188, 1707, 3, 188, 1710, 8, 188, 1, 189, 1, 189, 5, 189,\n\t\t1714, 8, 189, 10, 189, 12, 189, 1717, 9, 189, 1, 190, 1, 190, 1, 190, 1,\n\t\t191, 1, 191, 1, 191, 1, 191, 5, 191, 1726, 8, 191, 10, 191, 12, 191, 1729,\n\t\t9, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193,\n\t\t1, 193, 5, 193, 1740, 8, 193, 10, 193, 12, 193, 1743, 9, 193, 1, 193, 3,\n\t\t193, 1746, 8, 193, 1, 193, 1, 193, 3, 193, 1750, 8, 193, 1, 193, 1, 193,\n\t\t1, 194, 1, 194, 1, 194, 1, 194, 5, 194, 1758, 8, 194, 10, 194, 12, 194,\n\t\t1761, 9, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1,\n\t\t195, 1, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1,\n\t\t199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 202, 1, 202, 1, 203, 1, 203, 1,\n\t\t204, 1, 204, 1, 205, 1, 205, 1, 206, 1, 206, 1, 207, 1, 207, 1, 208, 1,\n\t\t208, 1, 209, 1, 209, 1, 210, 1, 210, 1, 211, 1, 211, 1, 212, 1, 212, 1,\n\t\t213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, 1, 216, 1, 217, 1,\n\t\t217, 1, 218, 1, 218, 1, 219, 1, 219, 1, 220, 1, 220, 1, 221, 1, 221, 1,\n\t\t222, 1, 222, 1, 223, 1, 223, 1, 224, 1, 224, 1, 1759, 0, 225, 1, 1, 3,\n\t\t2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12,\n\t\t25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21,\n\t\t43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30,\n\t\t61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39,\n\t\t79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48,\n\t\t97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113,\n\t\t57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129,\n\t\t65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145,\n\t\t73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161,\n\t\t81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177,\n\t\t89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193,\n\t\t97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104,\n\t\t209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223,\n\t\t112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119,\n\t\t239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253,\n\t\t127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134,\n\t\t269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283,\n\t\t142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149,\n\t\t299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313,\n\t\t157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164,\n\t\t329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343,\n\t\t172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179,\n\t\t359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373,\n\t\t187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194,\n\t\t389, 195, 391, 196, 393, 197, 395, 0, 397, 0, 399, 0, 401, 0, 403, 0, 405,\n\t\t0, 407, 0, 409, 0, 411, 0, 413, 0, 415, 0, 417, 0, 419, 0, 421, 0, 423,\n\t\t0, 425, 0, 427, 0, 429, 0, 431, 0, 433, 0, 435, 0, 437, 0, 439, 0, 441,\n\t\t0, 443, 0, 445, 0, 447, 0, 449, 0, 1, 0, 38, 1, 0, 34, 34, 1, 0, 96, 96,\n\t\t1, 0, 93, 93, 3, 0, 65, 90, 95, 95, 97, 122, 4, 0, 48, 57, 65, 90, 95,\n\t\t95, 97, 122, 2, 0, 43, 43, 45, 45, 3, 0, 36, 36, 58, 58, 64, 64, 1, 0,\n\t\t39, 39, 2, 0, 10, 10, 13, 13, 3, 0, 9, 11, 13, 13, 32, 32, 3, 0, 48, 57,\n\t\t65, 70, 97, 102, 1, 0, 48, 57, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98,\n\t\t98, 2, 0, 67, 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 69, 69, 101, 101,\n\t\t2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 72, 72, 104, 104,\n\t\t2, 0, 73, 73, 105, 105, 2, 0, 74, 74, 106, 106, 2, 0, 75, 75, 107, 107,\n\t\t2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110,\n\t\t2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 81, 81, 113, 113,\n\t\t2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 84, 84, 116, 116,\n\t\t2, 0, 85, 85, 117, 117, 2, 0, 86, 86, 118, 118, 2, 0, 87, 87, 119, 119,\n\t\t2, 0, 88, 88, 120, 120, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122,\n\t\t1826, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0,\n\t\t0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1,\n\t\t0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23,\n\t\t1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0,\n\t\t31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0,\n\t\t0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0,\n\t\t0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0,\n\t\t0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1,\n\t\t0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69,\n\t\t1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0,\n\t\t77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0,\n\t\t0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0,\n\t\t0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0,\n\t\t0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107,\n\t\t1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0,\n\t\t0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1,\n\t\t0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0,\n\t\t129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0,\n\t\t0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143,\n\t\t1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0,\n\t\t0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1,\n\t\t0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0,\n\t\t165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0,\n\t\t0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179,\n\t\t1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0,\n\t\t0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1,\n\t\t0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0,\n\t\t201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0,\n\t\t0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215,\n\t\t1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0,\n\t\t0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1,\n\t\t0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0,\n\t\t237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0,\n\t\t0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251,\n\t\t1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0,\n\t\t0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1,\n\t\t0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0,\n\t\t273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0,\n\t\t0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287,\n\t\t1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0,\n\t\t0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1,\n\t\t0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0,\n\t\t309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0,\n\t\t0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323,\n\t\t1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0,\n\t\t0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1,\n\t\t0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0,\n\t\t345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0,\n\t\t0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359,\n\t\t1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0,\n\t\t0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1,\n\t\t0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0,\n\t\t381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0,\n\t\t0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 1, 451,\n\t\t1, 0, 0, 0, 3, 453, 1, 0, 0, 0, 5, 455, 1, 0, 0, 0, 7, 457, 1, 0, 0, 0,\n\t\t9, 459, 1, 0, 0, 0, 11, 461, 1, 0, 0, 0, 13, 463, 1, 0, 0, 0, 15, 465,\n\t\t1, 0, 0, 0, 17, 467, 1, 0, 0, 0, 19, 471, 1, 0, 0, 0, 21, 474, 1, 0, 0,\n\t\t0, 23, 476, 1, 0, 0, 0, 25, 478, 1, 0, 0, 0, 27, 481, 1, 0, 0, 0, 29, 483,\n\t\t1, 0, 0, 0, 31, 485, 1, 0, 0, 0, 33, 488, 1, 0, 0, 0, 35, 491, 1, 0, 0,\n\t\t0, 37, 493, 1, 0, 0, 0, 39, 495, 1, 0, 0, 0, 41, 497, 1, 0, 0, 0, 43, 500,\n\t\t1, 0, 0, 0, 45, 502, 1, 0, 0, 0, 47, 505, 1, 0, 0, 0, 49, 508, 1, 0, 0,\n\t\t0, 51, 511, 1, 0, 0, 0, 53, 514, 1, 0, 0, 0, 55, 520, 1, 0, 0, 0, 57, 527,\n\t\t1, 0, 0, 0, 59, 531, 1, 0, 0, 0, 61, 537, 1, 0, 0, 0, 63, 541, 1, 0, 0,\n\t\t0, 65, 547, 1, 0, 0, 0, 67, 555, 1, 0, 0, 0, 69, 559, 1, 0, 0, 0, 71, 562,\n\t\t1, 0, 0, 0, 73, 566, 1, 0, 0, 0, 75, 573, 1, 0, 0, 0, 77, 587, 1, 0, 0,\n\t\t0, 79, 594, 1, 0, 0, 0, 81, 600, 1, 0, 0, 0, 83, 608, 1, 0, 0, 0, 85, 611,\n\t\t1, 0, 0, 0, 87, 619, 1, 0, 0, 0, 89, 624, 1, 0, 0, 0, 91, 629, 1, 0, 0,\n\t\t0, 93, 635, 1, 0, 0, 0, 95, 643, 1, 0, 0, 0, 97, 650, 1, 0, 0, 0, 99, 657,\n\t\t1, 0, 0, 0, 101, 666, 1, 0, 0, 0, 103, 677, 1, 0, 0, 0, 105, 684, 1, 0,\n\t\t0, 0, 107, 690, 1, 0, 0, 0, 109, 703, 1, 0, 0, 0, 111, 716, 1, 0, 0, 0,\n\t\t113, 734, 1, 0, 0, 0, 115, 743, 1, 0, 0, 0, 117, 751, 1, 0, 0, 0, 119,\n\t\t762, 1, 0, 0, 0, 121, 771, 1, 0, 0, 0, 123, 778, 1, 0, 0, 0, 125, 783,\n\t\t1, 0, 0, 0, 127, 790, 1, 0, 0, 0, 129, 799, 1, 0, 0, 0, 131, 804, 1, 0,\n\t\t0, 0, 133, 809, 1, 0, 0, 0, 135, 814, 1, 0, 0, 0, 137, 818, 1, 0, 0, 0,\n\t\t139, 825, 1, 0, 0, 0, 141, 832, 1, 0, 0, 0, 143, 842, 1, 0, 0, 0, 145,\n\t\t849, 1, 0, 0, 0, 147, 857, 1, 0, 0, 0, 149, 862, 1, 0, 0, 0, 151, 866,\n\t\t1, 0, 0, 0, 153, 874, 1, 0, 0, 0, 155, 879, 1, 0, 0, 0, 157, 884, 1, 0,\n\t\t0, 0, 159, 889, 1, 0, 0, 0, 161, 895, 1, 0, 0, 0, 163, 902, 1, 0, 0, 0,\n\t\t165, 905, 1, 0, 0, 0, 167, 912, 1, 0, 0, 0, 169, 922, 1, 0, 0, 0, 171,\n\t\t925, 1, 0, 0, 0, 173, 931, 1, 0, 0, 0, 175, 939, 1, 0, 0, 0, 177, 949,\n\t\t1, 0, 0, 0, 179, 955, 1, 0, 0, 0, 181, 962, 1, 0, 0, 0, 183, 970, 1, 0,\n\t\t0, 0, 185, 980, 1, 0, 0, 0, 187, 985, 1, 0, 0, 0, 189, 988, 1, 0, 0, 0,\n\t\t191, 995, 1, 0, 0, 0, 193, 1000, 1, 0, 0, 0, 195, 1004, 1, 0, 0, 0, 197,\n\t\t1009, 1, 0, 0, 0, 199, 1014, 1, 0, 0, 0, 201, 1020, 1, 0, 0, 0, 203, 1026,\n\t\t1, 0, 0, 0, 205, 1034, 1, 0, 0, 0, 207, 1037, 1, 0, 0, 0, 209, 1041, 1,\n\t\t0, 0, 0, 211, 1049, 1, 0, 0, 0, 213, 1054, 1, 0, 0, 0, 215, 1057, 1, 0,\n\t\t0, 0, 217, 1064, 1, 0, 0, 0, 219, 1067, 1, 0, 0, 0, 221, 1070, 1, 0, 0,\n\t\t0, 223, 1076, 1, 0, 0, 0, 225, 1082, 1, 0, 0, 0, 227, 1087, 1, 0, 0, 0,\n\t\t229, 1094, 1, 0, 0, 0, 231, 1102, 1, 0, 0, 0, 233, 1108, 1, 0, 0, 0, 235,\n\t\t1114, 1, 0, 0, 0, 237, 1124, 1, 0, 0, 0, 239, 1135, 1, 0, 0, 0, 241, 1142,\n\t\t1, 0, 0, 0, 243, 1150, 1, 0, 0, 0, 245, 1158, 1, 0, 0, 0, 247, 1165, 1,\n\t\t0, 0, 0, 249, 1173, 1, 0, 0, 0, 251, 1182, 1, 0, 0, 0, 253, 1192, 1, 0,\n\t\t0, 0, 255, 1198, 1, 0, 0, 0, 257, 1207, 1, 0, 0, 0, 259, 1211, 1, 0, 0,\n\t\t0, 261, 1216, 1, 0, 0, 0, 263, 1226, 1, 0, 0, 0, 265, 1233, 1, 0, 0, 0,\n\t\t267, 1237, 1, 0, 0, 0, 269, 1244, 1, 0, 0, 0, 271, 1250, 1, 0, 0, 0, 273,\n\t\t1255, 1, 0, 0, 0, 275, 1265, 1, 0, 0, 0, 277, 1270, 1, 0, 0, 0, 279, 1273,\n\t\t1, 0, 0, 0, 281, 1285, 1, 0, 0, 0, 283, 1293, 1, 0, 0, 0, 285, 1299, 1,\n\t\t0, 0, 0, 287, 1306, 1, 0, 0, 0, 289, 1313, 1, 0, 0, 0, 291, 1319, 1, 0,\n\t\t0, 0, 293, 1326, 1, 0, 0, 0, 295, 1333, 1, 0, 0, 0, 297, 1338, 1, 0, 0,\n\t\t0, 299, 1346, 1, 0, 0, 0, 301, 1351, 1, 0, 0, 0, 303, 1357, 1, 0, 0, 0,\n\t\t305, 1362, 1, 0, 0, 0, 307, 1370, 1, 0, 0, 0, 309, 1382, 1, 0, 0, 0, 311,\n\t\t1387, 1, 0, 0, 0, 313, 1397, 1, 0, 0, 0, 315, 1403, 1, 0, 0, 0, 317, 1413,\n\t\t1, 0, 0, 0, 319, 1423, 1, 0, 0, 0, 321, 1431, 1, 0, 0, 0, 323, 1441, 1,\n\t\t0, 0, 0, 325, 1451, 1, 0, 0, 0, 327, 1462, 1, 0, 0, 0, 329, 1466, 1, 0,\n\t\t0, 0, 331, 1477, 1, 0, 0, 0, 333, 1482, 1, 0, 0, 0, 335, 1492, 1, 0, 0,\n\t\t0, 337, 1498, 1, 0, 0, 0, 339, 1511, 1, 0, 0, 0, 341, 1516, 1, 0, 0, 0,\n\t\t343, 1527, 1, 0, 0, 0, 345, 1537, 1, 0, 0, 0, 347, 1544, 1, 0, 0, 0, 349,\n\t\t1551, 1, 0, 0, 0, 351, 1556, 1, 0, 0, 0, 353, 1562, 1, 0, 0, 0, 355, 1569,\n\t\t1, 0, 0, 0, 357, 1575, 1, 0, 0, 0, 359, 1581, 1, 0, 0, 0, 361, 1586, 1,\n\t\t0, 0, 0, 363, 1593, 1, 0, 0, 0, 365, 1600, 1, 0, 0, 0, 367, 1608, 1, 0,\n\t\t0, 0, 369, 1613, 1, 0, 0, 0, 371, 1620, 1, 0, 0, 0, 373, 1623, 1, 0, 0,\n\t\t0, 375, 1666, 1, 0, 0, 0, 377, 1709, 1, 0, 0, 0, 379, 1711, 1, 0, 0, 0,\n\t\t381, 1718, 1, 0, 0, 0, 383, 1721, 1, 0, 0, 0, 385, 1732, 1, 0, 0, 0, 387,\n\t\t1735, 1, 0, 0, 0, 389, 1753, 1, 0, 0, 0, 391, 1767, 1, 0, 0, 0, 393, 1771,\n\t\t1, 0, 0, 0, 395, 1773, 1, 0, 0, 0, 397, 1775, 1, 0, 0, 0, 399, 1777, 1,\n\t\t0, 0, 0, 401, 1779, 1, 0, 0, 0, 403, 1781, 1, 0, 0, 0, 405, 1783, 1, 0,\n\t\t0, 0, 407, 1785, 1, 0, 0, 0, 409, 1787, 1, 0, 0, 0, 411, 1789, 1, 0, 0,\n\t\t0, 413, 1791, 1, 0, 0, 0, 415, 1793, 1, 0, 0, 0, 417, 1795, 1, 0, 0, 0,\n\t\t419, 1797, 1, 0, 0, 0, 421, 1799, 1, 0, 0, 0, 423, 1801, 1, 0, 0, 0, 425,\n\t\t1803, 1, 0, 0, 0, 427, 1805, 1, 0, 0, 0, 429, 1807, 1, 0, 0, 0, 431, 1809,\n\t\t1, 0, 0, 0, 433, 1811, 1, 0, 0, 0, 435, 1813, 1, 0, 0, 0, 437, 1815, 1,\n\t\t0, 0, 0, 439, 1817, 1, 0, 0, 0, 441, 1819, 1, 0, 0, 0, 443, 1821, 1, 0,\n\t\t0, 0, 445, 1823, 1, 0, 0, 0, 447, 1825, 1, 0, 0, 0, 449, 1827, 1, 0, 0,\n\t\t0, 451, 452, 5, 59, 0, 0, 452, 2, 1, 0, 0, 0, 453, 454, 5, 46, 0, 0, 454,\n\t\t4, 1, 0, 0, 0, 455, 456, 5, 40, 0, 0, 456, 6, 1, 0, 0, 0, 457, 458, 5,\n\t\t41, 0, 0, 458, 8, 1, 0, 0, 0, 459, 460, 5, 44, 0, 0, 460, 10, 1, 0, 0,\n\t\t0, 461, 462, 5, 61, 0, 0, 462, 12, 1, 0, 0, 0, 463, 464, 5, 42, 0, 0, 464,\n\t\t14, 1, 0, 0, 0, 465, 466, 5, 43, 0, 0, 466, 16, 1, 0, 0, 0, 467, 468, 5,\n\t\t45, 0, 0, 468, 469, 5, 62, 0, 0, 469, 470, 5, 62, 0, 0, 470, 18, 1, 0,\n\t\t0, 0, 471, 472, 5, 45, 0, 0, 472, 473, 5, 62, 0, 0, 473, 20, 1, 0, 0, 0,\n\t\t474, 475, 5, 45, 0, 0, 475, 22, 1, 0, 0, 0, 476, 477, 5, 126, 0, 0, 477,\n\t\t24, 1, 0, 0, 0, 478, 479, 5, 124, 0, 0, 479, 480, 5, 124, 0, 0, 480, 26,\n\t\t1, 0, 0, 0, 481, 482, 5, 47, 0, 0, 482, 28, 1, 0, 0, 0, 483, 484, 5, 37,\n\t\t0, 0, 484, 30, 1, 0, 0, 0, 485, 486, 5, 60, 0, 0, 486, 487, 5, 60, 0, 0,\n\t\t487, 32, 1, 0, 0, 0, 488, 489, 5, 62, 0, 0, 489, 490, 5, 62, 0, 0, 490,\n\t\t34, 1, 0, 0, 0, 491, 492, 5, 38, 0, 0, 492, 36, 1, 0, 0, 0, 493, 494, 5,\n\t\t124, 0, 0, 494, 38, 1, 0, 0, 0, 495, 496, 5, 60, 0, 0, 496, 40, 1, 0, 0,\n\t\t0, 497, 498, 5, 60, 0, 0, 498, 499, 5, 61, 0, 0, 499, 42, 1, 0, 0, 0, 500,\n\t\t501, 5, 62, 0, 0, 501, 44, 1, 0, 0, 0, 502, 503, 5, 62, 0, 0, 503, 504,\n\t\t5, 61, 0, 0, 504, 46, 1, 0, 0, 0, 505, 506, 5, 61, 0, 0, 506, 507, 5, 61,\n\t\t0, 0, 507, 48, 1, 0, 0, 0, 508, 509, 5, 33, 0, 0, 509, 510, 5, 61, 0, 0,\n\t\t510, 50, 1, 0, 0, 0, 511, 512, 5, 60, 0, 0, 512, 513, 5, 62, 0, 0, 513,\n\t\t52, 1, 0, 0, 0, 514, 515, 3, 399, 199, 0, 515, 516, 3, 401, 200, 0, 516,\n\t\t517, 3, 427, 213, 0, 517, 518, 3, 433, 216, 0, 518, 519, 3, 437, 218, 0,\n\t\t519, 54, 1, 0, 0, 0, 520, 521, 3, 399, 199, 0, 521, 522, 3, 403, 201, 0,\n\t\t522, 523, 3, 437, 218, 0, 523, 524, 3, 415, 207, 0, 524, 525, 3, 427, 213,\n\t\t0, 525, 526, 3, 425, 212, 0, 526, 56, 1, 0, 0, 0, 527, 528, 3, 399, 199,\n\t\t0, 528, 529, 3, 405, 202, 0, 529, 530, 3, 405, 202, 0, 530, 58, 1, 0, 0,\n\t\t0, 531, 532, 3, 399, 199, 0, 532, 533, 3, 409, 204, 0, 533, 534, 3, 437,\n\t\t218, 0, 534, 535, 3, 407, 203, 0, 535, 536, 3, 433, 216, 0, 536, 60, 1,\n\t\t0, 0, 0, 537, 538, 3, 399, 199, 0, 538, 539, 3, 421, 210, 0, 539, 540,\n\t\t3, 421, 210, 0, 540, 62, 1, 0, 0, 0, 541, 542, 3, 399, 199, 0, 542, 543,\n\t\t3, 421, 210, 0, 543, 544, 3, 437, 218, 0, 544, 545, 3, 407, 203, 0, 545,\n\t\t546, 3, 433, 216, 0, 546, 64, 1, 0, 0, 0, 547, 548, 3, 399, 199, 0, 548,\n\t\t549, 3, 425, 212, 0, 549, 550, 3, 399, 199, 0, 550, 551, 3, 421, 210, 0,\n\t\t551, 552, 3, 447, 223, 0, 552, 553, 3, 449, 224, 0, 553, 554, 3, 407, 203,\n\t\t0, 554, 66, 1, 0, 0, 0, 555, 556, 3, 399, 199, 0, 556, 557, 3, 425, 212,\n\t\t0, 557, 558, 3, 405, 202, 0, 558, 68, 1, 0, 0, 0, 559, 560, 3, 399, 199,\n\t\t0, 560, 561, 3, 435, 217, 0, 561, 70, 1, 0, 0, 0, 562, 563, 3, 399, 199,\n\t\t0, 563, 564, 3, 435, 217, 0, 564, 565, 3, 403, 201, 0, 565, 72, 1, 0, 0,\n\t\t0, 566, 567, 3, 399, 199, 0, 567, 568, 3, 437, 218, 0, 568, 569, 3, 437,\n\t\t218, 0, 569, 570, 3, 399, 199, 0, 570, 571, 3, 403, 201, 0, 571, 572, 3,\n\t\t413, 206, 0, 572, 74, 1, 0, 0, 0, 573, 574, 3, 399, 199, 0, 574, 575, 3,\n\t\t439, 219, 0, 575, 576, 3, 437, 218, 0, 576, 577, 3, 427, 213, 0, 577, 578,\n\t\t3, 415, 207, 0, 578, 579, 3, 425, 212, 0, 579, 580, 3, 403, 201, 0, 580,\n\t\t581, 3, 433, 216, 0, 581, 582, 3, 407, 203, 0, 582, 583, 3, 423, 211, 0,\n\t\t583, 584, 3, 407, 203, 0, 584, 585, 3, 425, 212, 0, 585, 586, 3, 437, 218,\n\t\t0, 586, 76, 1, 0, 0, 0, 587, 588, 3, 401, 200, 0, 588, 589, 3, 407, 203,\n\t\t0, 589, 590, 3, 409, 204, 0, 590, 591, 3, 427, 213, 0, 591, 592, 3, 433,\n\t\t216, 0, 592, 593, 3, 407, 203, 0, 593, 78, 1, 0, 0, 0, 594, 595, 3, 401,\n\t\t200, 0, 595, 596, 3, 407, 203, 0, 596, 597, 3, 411, 205, 0, 597, 598, 3,\n\t\t415, 207, 0, 598, 599, 3, 425, 212, 0, 599, 80, 1, 0, 0, 0, 600, 601, 3,\n\t\t401, 200, 0, 601, 602, 3, 407, 203, 0, 602, 603, 3, 437, 218, 0, 603, 604,\n\t\t3, 443, 221, 0, 604, 605, 3, 407, 203, 0, 605, 606, 3, 407, 203, 0, 606,\n\t\t607, 3, 425, 212, 0, 607, 82, 1, 0, 0, 0, 608, 609, 3, 401, 200, 0, 609,\n\t\t610, 3, 447, 223, 0, 610, 84, 1, 0, 0, 0, 611, 612, 3, 403, 201, 0, 612,\n\t\t613, 3, 399, 199, 0, 613, 614, 3, 435, 217, 0, 614, 615, 3, 403, 201, 0,\n\t\t615, 616, 3, 399, 199, 0, 616, 617, 3, 405, 202, 0, 617, 618, 3, 407, 203,\n\t\t0, 618, 86, 1, 0, 0, 0, 619, 620, 3, 403, 201, 0, 620, 621, 3, 399, 199,\n\t\t0, 621, 622, 3, 435, 217, 0, 622, 623, 3, 407, 203, 0, 623, 88, 1, 0, 0,\n\t\t0, 624, 625, 3, 403, 201, 0, 625, 626, 3, 399, 199, 0, 626, 627, 3, 435,\n\t\t217, 0, 627, 628, 3, 437, 218, 0, 628, 90, 1, 0, 0, 0, 629, 630, 3, 403,\n\t\t201, 0, 630, 631, 3, 413, 206, 0, 631, 632, 3, 407, 203, 0, 632, 633, 3,\n\t\t403, 201, 0, 633, 634, 3, 419, 209, 0, 634, 92, 1, 0, 0, 0, 635, 636, 3,\n\t\t403, 201, 0, 636, 637, 3, 427, 213, 0, 637, 638, 3, 421, 210, 0, 638, 639,\n\t\t3, 421, 210, 0, 639, 640, 3, 399, 199, 0, 640, 641, 3, 437, 218, 0, 641,\n\t\t642, 3, 407, 203, 0, 642, 94, 1, 0, 0, 0, 643, 644, 3, 403, 201, 0, 644,\n\t\t645, 3, 427, 213, 0, 645, 646, 3, 421, 210, 0, 646, 647, 3, 439, 219, 0,\n\t\t647, 648, 3, 423, 211, 0, 648, 649, 3, 425, 212, 0, 649, 96, 1, 0, 0, 0,\n\t\t650, 651, 3, 403, 201, 0, 651, 652, 3, 427, 213, 0, 652, 653, 3, 423, 211,\n\t\t0, 653, 654, 3, 423, 211, 0, 654, 655, 3, 415, 207, 0, 655, 656, 3, 437,\n\t\t218, 0, 656, 98, 1, 0, 0, 0, 657, 658, 3, 403, 201, 0, 658, 659, 3, 427,\n\t\t213, 0, 659, 660, 3, 425, 212, 0, 660, 661, 3, 409, 204, 0, 661, 662, 3,\n\t\t421, 210, 0, 662, 663, 3, 415, 207, 0, 663, 664, 3, 403, 201, 0, 664, 665,\n\t\t3, 437, 218, 0, 665, 100, 1, 0, 0, 0, 666, 667, 3, 403, 201, 0, 667, 668,\n\t\t3, 427, 213, 0, 668, 669, 3, 425, 212, 0, 669, 670, 3, 435, 217, 0, 670,\n\t\t671, 3, 437, 218, 0, 671, 672, 3, 433, 216, 0, 672, 673, 3, 399, 199, 0,\n\t\t673, 674, 3, 415, 207, 0, 674, 675, 3, 425, 212, 0, 675, 676, 3, 437, 218,\n\t\t0, 676, 102, 1, 0, 0, 0, 677, 678, 3, 403, 201, 0, 678, 679, 3, 433, 216,\n\t\t0, 679, 680, 3, 407, 203, 0, 680, 681, 3, 399, 199, 0, 681, 682, 3, 437,\n\t\t218, 0, 682, 683, 3, 407, 203, 0, 683, 104, 1, 0, 0, 0, 684, 685, 3, 403,\n\t\t201, 0, 685, 686, 3, 433, 216, 0, 686, 687, 3, 427, 213, 0, 687, 688, 3,\n\t\t435, 217, 0, 688, 689, 3, 435, 217, 0, 689, 106, 1, 0, 0, 0, 690, 691,\n\t\t3, 403, 201, 0, 691, 692, 3, 439, 219, 0, 692, 693, 3, 433, 216, 0, 693,\n\t\t694, 3, 433, 216, 0, 694, 695, 3, 407, 203, 0, 695, 696, 3, 425, 212, 0,\n\t\t696, 697, 3, 437, 218, 0, 697, 698, 5, 95, 0, 0, 698, 699, 3, 405, 202,\n\t\t0, 699, 700, 3, 399, 199, 0, 700, 701, 3, 437, 218, 0, 701, 702, 3, 407,\n\t\t203, 0, 702, 108, 1, 0, 0, 0, 703, 704, 3, 403, 201, 0, 704, 705, 3, 439,\n\t\t219, 0, 705, 706, 3, 433, 216, 0, 706, 707, 3, 433, 216, 0, 707, 708, 3,\n\t\t407, 203, 0, 708, 709, 3, 425, 212, 0, 709, 710, 3, 437, 218, 0, 710, 711,\n\t\t5, 95, 0, 0, 711, 712, 3, 437, 218, 0, 712, 713, 3, 415, 207, 0, 713, 714,\n\t\t3, 423, 211, 0, 714, 715, 3, 407, 203, 0, 715, 110, 1, 0, 0, 0, 716, 717,\n\t\t3, 403, 201, 0, 717, 718, 3, 439, 219, 0, 718, 719, 3, 433, 216, 0, 719,\n\t\t720, 3, 433, 216, 0, 720, 721, 3, 407, 203, 0, 721, 722, 3, 425, 212, 0,\n\t\t722, 723, 3, 437, 218, 0, 723, 724, 5, 95, 0, 0, 724, 725, 3, 437, 218,\n\t\t0, 725, 726, 3, 415, 207, 0, 726, 727, 3, 423, 211, 0, 727, 728, 3, 407,\n\t\t203, 0, 728, 729, 3, 435, 217, 0, 729, 730, 3, 437, 218, 0, 730, 731, 3,\n\t\t399, 199, 0, 731, 732, 3, 423, 211, 0, 732, 733, 3, 429, 214, 0, 733, 112,\n\t\t1, 0, 0, 0, 734, 735, 3, 405, 202, 0, 735, 736, 3, 399, 199, 0, 736, 737,\n\t\t3, 437, 218, 0, 737, 738, 3, 399, 199, 0, 738, 739, 3, 401, 200, 0, 739,\n\t\t740, 3, 399, 199, 0, 740, 741, 3, 435, 217, 0, 741, 742, 3, 407, 203, 0,\n\t\t742, 114, 1, 0, 0, 0, 743, 744, 3, 405, 202, 0, 744, 745, 3, 407, 203,\n\t\t0, 745, 746, 3, 409, 204, 0, 746, 747, 3, 399, 199, 0, 747, 748, 3, 439,\n\t\t219, 0, 748, 749, 3, 421, 210, 0, 749, 750, 3, 437, 218, 0, 750, 116, 1,\n\t\t0, 0, 0, 751, 752, 3, 405, 202, 0, 752, 753, 3, 407, 203, 0, 753, 754,\n\t\t3, 409, 204, 0, 754, 755, 3, 407, 203, 0, 755, 756, 3, 433, 216, 0, 756,\n\t\t757, 3, 433, 216, 0, 757, 758, 3, 399, 199, 0, 758, 759, 3, 401, 200, 0,\n\t\t759, 760, 3, 421, 210, 0, 760, 761, 3, 407, 203, 0, 761, 118, 1, 0, 0,\n\t\t0, 762, 763, 3, 405, 202, 0, 763, 764, 3, 407, 203, 0, 764, 765, 3, 409,\n\t\t204, 0, 765, 766, 3, 407, 203, 0, 766, 767, 3, 433, 216, 0, 767, 768, 3,\n\t\t433, 216, 0, 768, 769, 3, 407, 203, 0, 769, 770, 3, 405, 202, 0, 770, 120,\n\t\t1, 0, 0, 0, 771, 772, 3, 405, 202, 0, 772, 773, 3, 407, 203, 0, 773, 774,\n\t\t3, 421, 210, 0, 774, 775, 3, 407, 203, 0, 775, 776, 3, 437, 218, 0, 776,\n\t\t777, 3, 407, 203, 0, 777, 122, 1, 0, 0, 0, 778, 779, 3, 405, 202, 0, 779,\n\t\t780, 3, 407, 203, 0, 780, 781, 3, 435, 217, 0, 781, 782, 3, 403, 201, 0,\n\t\t782, 124, 1, 0, 0, 0, 783, 784, 3, 405, 202, 0, 784, 785, 3, 407, 203,\n\t\t0, 785, 786, 3, 437, 218, 0, 786, 787, 3, 399, 199, 0, 787, 788, 3, 403,\n\t\t201, 0, 788, 789, 3, 413, 206, 0, 789, 126, 1, 0, 0, 0, 790, 791, 3, 405,\n\t\t202, 0, 791, 792, 3, 415, 207, 0, 792, 793, 3, 435, 217, 0, 793, 794, 3,\n\t\t437, 218, 0, 794, 795, 3, 415, 207, 0, 795, 796, 3, 425, 212, 0, 796, 797,\n\t\t3, 403, 201, 0, 797, 798, 3, 437, 218, 0, 798, 128, 1, 0, 0, 0, 799, 800,\n\t\t3, 405, 202, 0, 800, 801, 3, 433, 216, 0, 801, 802, 3, 427, 213, 0, 802,\n\t\t803, 3, 429, 214, 0, 803, 130, 1, 0, 0, 0, 804, 805, 3, 407, 203, 0, 805,\n\t\t806, 3, 399, 199, 0, 806, 807, 3, 403, 201, 0, 807, 808, 3, 413, 206, 0,\n\t\t808, 132, 1, 0, 0, 0, 809, 810, 3, 407, 203, 0, 810, 811, 3, 421, 210,\n\t\t0, 811, 812, 3, 435, 217, 0, 812, 813, 3, 407, 203, 0, 813, 134, 1, 0,\n\t\t0, 0, 814, 815, 3, 407, 203, 0, 815, 816, 3, 425, 212, 0, 816, 817, 3,\n\t\t405, 202, 0, 817, 136, 1, 0, 0, 0, 818, 819, 3, 407, 203, 0, 819, 820,\n\t\t3, 435, 217, 0, 820, 821, 3, 403, 201, 0, 821, 822, 3, 399, 199, 0, 822,\n\t\t823, 3, 429, 214, 0, 823, 824, 3, 407, 203, 0, 824, 138, 1, 0, 0, 0, 825,\n\t\t826, 3, 407, 203, 0, 826, 827, 3, 445, 222, 0, 827, 828, 3, 403, 201, 0,\n\t\t828, 829, 3, 407, 203, 0, 829, 830, 3, 429, 214, 0, 830, 831, 3, 437, 218,\n\t\t0, 831, 140, 1, 0, 0, 0, 832, 833, 3, 407, 203, 0, 833, 834, 3, 445, 222,\n\t\t0, 834, 835, 3, 403, 201, 0, 835, 836, 3, 421, 210, 0, 836, 837, 3, 439,\n\t\t219, 0, 837, 838, 3, 435, 217, 0, 838, 839, 3, 415, 207, 0, 839, 840, 3,\n\t\t441, 220, 0, 840, 841, 3, 407, 203, 0, 841, 142, 1, 0, 0, 0, 842, 843,\n\t\t3, 407, 203, 0, 843, 844, 3, 445, 222, 0, 844, 845, 3, 415, 207, 0, 845,\n\t\t846, 3, 435, 217, 0, 846, 847, 3, 437, 218, 0, 847, 848, 3, 435, 217, 0,\n\t\t848, 144, 1, 0, 0, 0, 849, 850, 3, 407, 203, 0, 850, 851, 3, 445, 222,\n\t\t0, 851, 852, 3, 429, 214, 0, 852, 853, 3, 421, 210, 0, 853, 854, 3, 399,\n\t\t199, 0, 854, 855, 3, 415, 207, 0, 855, 856, 3, 425, 212, 0, 856, 146, 1,\n\t\t0, 0, 0, 857, 858, 3, 409, 204, 0, 858, 859, 3, 399, 199, 0, 859, 860,\n\t\t3, 415, 207, 0, 860, 861, 3, 421, 210, 0, 861, 148, 1, 0, 0, 0, 862, 863,\n\t\t3, 409, 204, 0, 863, 864, 3, 427, 213, 0, 864, 865, 3, 433, 216, 0, 865,\n\t\t150, 1, 0, 0, 0, 866, 867, 3, 409, 204, 0, 867, 868, 3, 427, 213, 0, 868,\n\t\t869, 3, 433, 216, 0, 869, 870, 3, 407, 203, 0, 870, 871, 3, 415, 207, 0,\n\t\t871, 872, 3, 411, 205, 0, 872, 873, 3, 425, 212, 0, 873, 152, 1, 0, 0,\n\t\t0, 874, 875, 3, 409, 204, 0, 875, 876, 3, 433, 216, 0, 876, 877, 3, 427,\n\t\t213, 0, 877, 878, 3, 423, 211, 0, 878, 154, 1, 0, 0, 0, 879, 880, 3, 409,\n\t\t204, 0, 880, 881, 3, 439, 219, 0, 881, 882, 3, 421, 210, 0, 882, 883, 3,\n\t\t421, 210, 0, 883, 156, 1, 0, 0, 0, 884, 885, 3, 411, 205, 0, 885, 886,\n\t\t3, 421, 210, 0, 886, 887, 3, 427, 213, 0, 887, 888, 3, 401, 200, 0, 888,\n\t\t158, 1, 0, 0, 0, 889, 890, 3, 411, 205, 0, 890, 891, 3, 433, 216, 0, 891,\n\t\t892, 3, 427, 213, 0, 892, 893, 3, 439, 219, 0, 893, 894, 3, 429, 214, 0,\n\t\t894, 160, 1, 0, 0, 0, 895, 896, 3, 413, 206, 0, 896, 897, 3, 399, 199,\n\t\t0, 897, 898, 3, 441, 220, 0, 898, 899, 3, 415, 207, 0, 899, 900, 3, 425,\n\t\t212, 0, 900, 901, 3, 411, 205, 0, 901, 162, 1, 0, 0, 0, 902, 903, 3, 415,\n\t\t207, 0, 903, 904, 3, 409, 204, 0, 904, 164, 1, 0, 0, 0, 905, 906, 3, 415,\n\t\t207, 0, 906, 907, 3, 411, 205, 0, 907, 908, 3, 425, 212, 0, 908, 909, 3,\n\t\t427, 213, 0, 909, 910, 3, 433, 216, 0, 910, 911, 3, 407, 203, 0, 911, 166,\n\t\t1, 0, 0, 0, 912, 913, 3, 415, 207, 0, 913, 914, 3, 423, 211, 0, 914, 915,\n\t\t3, 423, 211, 0, 915, 916, 3, 407, 203, 0, 916, 917, 3, 405, 202, 0, 917,\n\t\t918, 3, 415, 207, 0, 918, 919, 3, 399, 199, 0, 919, 920, 3, 437, 218, 0,\n\t\t920, 921, 3, 407, 203, 0, 921, 168, 1, 0, 0, 0, 922, 923, 3, 415, 207,\n\t\t0, 923, 924, 3, 425, 212, 0, 924, 170, 1, 0, 0, 0, 925, 926, 3, 415, 207,\n\t\t0, 926, 927, 3, 425, 212, 0, 927, 928, 3, 405, 202, 0, 928, 929, 3, 407,\n\t\t203, 0, 929, 930, 3, 445, 222, 0, 930, 172, 1, 0, 0, 0, 931, 932, 3, 415,\n\t\t207, 0, 932, 933, 3, 425, 212, 0, 933, 934, 3, 405, 202, 0, 934, 935, 3,\n\t\t407, 203, 0, 935, 936, 3, 445, 222, 0, 936, 937, 3, 407, 203, 0, 937, 938,\n\t\t3, 405, 202, 0, 938, 174, 1, 0, 0, 0, 939, 940, 3, 415, 207, 0, 940, 941,\n\t\t3, 425, 212, 0, 941, 942, 3, 415, 207, 0, 942, 943, 3, 437, 218, 0, 943,\n\t\t944, 3, 415, 207, 0, 944, 945, 3, 399, 199, 0, 945, 946, 3, 421, 210, 0,\n\t\t946, 947, 3, 421, 210, 0, 947, 948, 3, 447, 223, 0, 948, 176, 1, 0, 0,\n\t\t0, 949, 950, 3, 415, 207, 0, 950, 951, 3, 425, 212, 0, 951, 952, 3, 425,\n\t\t212, 0, 952, 953, 3, 407, 203, 0, 953, 954, 3, 433, 216, 0, 954, 178, 1,\n\t\t0, 0, 0, 955, 956, 3, 415, 207, 0, 956, 957, 3, 425, 212, 0, 957, 958,\n\t\t3, 435, 217, 0, 958, 959, 3, 407, 203, 0, 959, 960, 3, 433, 216, 0, 960,\n\t\t961, 3, 437, 218, 0, 961, 180, 1, 0, 0, 0, 962, 963, 3, 415, 207, 0, 963,\n\t\t964, 3, 425, 212, 0, 964, 965, 3, 435, 217, 0, 965, 966, 3, 437, 218, 0,\n\t\t966, 967, 3, 407, 203, 0, 967, 968, 3, 399, 199, 0, 968, 969, 3, 405, 202,\n\t\t0, 969, 182, 1, 0, 0, 0, 970, 971, 3, 415, 207, 0, 971, 972, 3, 425, 212,\n\t\t0, 972, 973, 3, 437, 218, 0, 973, 974, 3, 407, 203, 0, 974, 975, 3, 433,\n\t\t216, 0, 975, 976, 3, 435, 217, 0, 976, 977, 3, 407, 203, 0, 977, 978, 3,\n\t\t403, 201, 0, 978, 979, 3, 437, 218, 0, 979, 184, 1, 0, 0, 0, 980, 981,\n\t\t3, 415, 207, 0, 981, 982, 3, 425, 212, 0, 982, 983, 3, 437, 218, 0, 983,\n\t\t984, 3, 427, 213, 0, 984, 186, 1, 0, 0, 0, 985, 986, 3, 415, 207, 0, 986,\n\t\t987, 3, 435, 217, 0, 987, 188, 1, 0, 0, 0, 988, 989, 3, 415, 207, 0, 989,\n\t\t990, 3, 435, 217, 0, 990, 991, 3, 425, 212, 0, 991, 992, 3, 439, 219, 0,\n\t\t992, 993, 3, 421, 210, 0, 993, 994, 3, 421, 210, 0, 994, 190, 1, 0, 0,\n\t\t0, 995, 996, 3, 417, 208, 0, 996, 997, 3, 427, 213, 0, 997, 998, 3, 415,\n\t\t207, 0, 998, 999, 3, 425, 212, 0, 999, 192, 1, 0, 0, 0, 1000, 1001, 3,\n\t\t419, 209, 0, 1001, 1002, 3, 407, 203, 0, 1002, 1003, 3, 447, 223, 0, 1003,\n\t\t194, 1, 0, 0, 0, 1004, 1005, 3, 421, 210, 0, 1005, 1006, 3, 407, 203, 0,\n\t\t1006, 1007, 3, 409, 204, 0, 1007, 1008, 3, 437, 218, 0, 1008, 196, 1, 0,\n\t\t0, 0, 1009, 1010, 3, 421, 210, 0, 1010, 1011, 3, 415, 207, 0, 1011, 1012,\n\t\t3, 419, 209, 0, 1012, 1013, 3, 407, 203, 0, 1013, 198, 1, 0, 0, 0, 1014,\n\t\t1015, 3, 421, 210, 0, 1015, 1016, 3, 415, 207, 0, 1016, 1017, 3, 423, 211,\n\t\t0, 1017, 1018, 3, 415, 207, 0, 1018, 1019, 3, 437, 218, 0, 1019, 200, 1,\n\t\t0, 0, 0, 1020, 1021, 3, 423, 211, 0, 1021, 1022, 3, 399, 199, 0, 1022,\n\t\t1023, 3, 437, 218, 0, 1023, 1024, 3, 403, 201, 0, 1024, 1025, 3, 413, 206,\n\t\t0, 1025, 202, 1, 0, 0, 0, 1026, 1027, 3, 425, 212, 0, 1027, 1028, 3, 399,\n\t\t199, 0, 1028, 1029, 3, 437, 218, 0, 1029, 1030, 3, 439, 219, 0, 1030, 1031,\n\t\t3, 433, 216, 0, 1031, 1032, 3, 399, 199, 0, 1032, 1033, 3, 421, 210, 0,\n\t\t1033, 204, 1, 0, 0, 0, 1034, 1035, 3, 425, 212, 0, 1035, 1036, 3, 427,\n\t\t213, 0, 1036, 206, 1, 0, 0, 0, 1037, 1038, 3, 425, 212, 0, 1038, 1039,\n\t\t3, 427, 213, 0, 1039, 1040, 3, 437, 218, 0, 1040, 208, 1, 0, 0, 0, 1041,\n\t\t1042, 3, 425, 212, 0, 1042, 1043, 3, 427, 213, 0, 1043, 1044, 3, 437, 218,\n\t\t0, 1044, 1045, 3, 425, 212, 0, 1045, 1046, 3, 439, 219, 0, 1046, 1047,\n\t\t3, 421, 210, 0, 1047, 1048, 3, 421, 210, 0, 1048, 210, 1, 0, 0, 0, 1049,\n\t\t1050, 3, 425, 212, 0, 1050, 1051, 3, 439, 219, 0, 1051, 1052, 3, 421, 210,\n\t\t0, 1052, 1053, 3, 421, 210, 0, 1053, 212, 1, 0, 0, 0, 1054, 1055, 3, 427,\n\t\t213, 0, 1055, 1056, 3, 409, 204, 0, 1056, 214, 1, 0, 0, 0, 1057, 1058,\n\t\t3, 427, 213, 0, 1058, 1059, 3, 409, 204, 0, 1059, 1060, 3, 409, 204, 0,\n\t\t1060, 1061, 3, 435, 217, 0, 1061, 1062, 3, 407, 203, 0, 1062, 1063, 3,\n\t\t437, 218, 0, 1063, 216, 1, 0, 0, 0, 1064, 1065, 3, 427, 213, 0, 1065, 1066,\n\t\t3, 425, 212, 0, 1066, 218, 1, 0, 0, 0, 1067, 1068, 3, 427, 213, 0, 1068,\n\t\t1069, 3, 433, 216, 0, 1069, 220, 1, 0, 0, 0, 1070, 1071, 3, 427, 213, 0,\n\t\t1071, 1072, 3, 433, 216, 0, 1072, 1073, 3, 405, 202, 0, 1073, 1074, 3,\n\t\t407, 203, 0, 1074, 1075, 3, 433, 216, 0, 1075, 222, 1, 0, 0, 0, 1076, 1077,\n\t\t3, 427, 213, 0, 1077, 1078, 3, 439, 219, 0, 1078, 1079, 3, 437, 218, 0,\n\t\t1079, 1080, 3, 407, 203, 0, 1080, 1081, 3, 433, 216, 0, 1081, 224, 1, 0,\n\t\t0, 0, 1082, 1083, 3, 429, 214, 0, 1083, 1084, 3, 421, 210, 0, 1084, 1085,\n\t\t3, 399, 199, 0, 1085, 1086, 3, 425, 212, 0, 1086, 226, 1, 0, 0, 0, 1087,\n\t\t1088, 3, 429, 214, 0, 1088, 1089, 3, 433, 216, 0, 1089, 1090, 3, 399, 199,\n\t\t0, 1090, 1091, 3, 411, 205, 0, 1091, 1092, 3, 423, 211, 0, 1092, 1093,\n\t\t3, 399, 199, 0, 1093, 228, 1, 0, 0, 0, 1094, 1095, 3, 429, 214, 0, 1095,\n\t\t1096, 3, 433, 216, 0, 1096, 1097, 3, 415, 207, 0, 1097, 1098, 3, 423, 211,\n\t\t0, 1098, 1099, 3, 399, 199, 0, 1099, 1100, 3, 433, 216, 0, 1100, 1101,\n\t\t3, 447, 223, 0, 1101, 230, 1, 0, 0, 0, 1102, 1103, 3, 431, 215, 0, 1103,\n\t\t1104, 3, 439, 219, 0, 1104, 1105, 3, 407, 203, 0, 1105, 1106, 3, 433, 216,\n\t\t0, 1106, 1107, 3, 447, 223, 0, 1107, 232, 1, 0, 0, 0, 1108, 1109, 3, 433,\n\t\t216, 0, 1109, 1110, 3, 399, 199, 0, 1110, 1111, 3, 415, 207, 0, 1111, 1112,\n\t\t3, 435, 217, 0, 1112, 1113, 3, 407, 203, 0, 1113, 234, 1, 0, 0, 0, 1114,\n\t\t1115, 3, 433, 216, 0, 1115, 1116, 3, 407, 203, 0, 1116, 1117, 3, 403, 201,\n\t\t0, 1117, 1118, 3, 439, 219, 0, 1118, 1119, 3, 433, 216, 0, 1119, 1120,\n\t\t3, 435, 217, 0, 1120, 1121, 3, 415, 207, 0, 1121, 1122, 3, 441, 220, 0,\n\t\t1122, 1123, 3, 407, 203, 0, 1123, 236, 1, 0, 0, 0, 1124, 1125, 3, 433,\n\t\t216, 0, 1125, 1126, 3, 407, 203, 0, 1126, 1127, 3, 409, 204, 0, 1127, 1128,\n\t\t3, 407, 203, 0, 1128, 1129, 3, 433, 216, 0, 1129, 1130, 3, 407, 203, 0,\n\t\t1130, 1131, 3, 425, 212, 0, 1131, 1132, 3, 403, 201, 0, 1132, 1133, 3,\n\t\t407, 203, 0, 1133, 1134, 3, 435, 217, 0, 1134, 238, 1, 0, 0, 0, 1135, 1136,\n\t\t3, 433, 216, 0, 1136, 1137, 3, 407, 203, 0, 1137, 1138, 3, 411, 205, 0,\n\t\t1138, 1139, 3, 407, 203, 0, 1139, 1140, 3, 445, 222, 0, 1140, 1141, 3,\n\t\t429, 214, 0, 1141, 240, 1, 0, 0, 0, 1142, 1143, 3, 433, 216, 0, 1143, 1144,\n\t\t3, 407, 203, 0, 1144, 1145, 3, 415, 207, 0, 1145, 1146, 3, 425, 212, 0,\n\t\t1146, 1147, 3, 405, 202, 0, 1147, 1148, 3, 407, 203, 0, 1148, 1149, 3,\n\t\t445, 222, 0, 1149, 242, 1, 0, 0, 0, 1150, 1151, 3, 433, 216, 0, 1151, 1152,\n\t\t3, 407, 203, 0, 1152, 1153, 3, 421, 210, 0, 1153, 1154, 3, 407, 203, 0,\n\t\t1154, 1155, 3, 399, 199, 0, 1155, 1156, 3, 435, 217, 0, 1156, 1157, 3,\n\t\t407, 203, 0, 1157, 244, 1, 0, 0, 0, 1158, 1159, 3, 433, 216, 0, 1159, 1160,\n\t\t3, 407, 203, 0, 1160, 1161, 3, 425, 212, 0, 1161, 1162, 3, 399, 199, 0,\n\t\t1162, 1163, 3, 423, 211, 0, 1163, 1164, 3, 407, 203, 0, 1164, 246, 1, 0,\n\t\t0, 0, 1165, 1166, 3, 433, 216, 0, 1166, 1167, 3, 407, 203, 0, 1167, 1168,\n\t\t3, 429, 214, 0, 1168, 1169, 3, 421, 210, 0, 1169, 1170, 3, 399, 199, 0,\n\t\t1170, 1171, 3, 403, 201, 0, 1171, 1172, 3, 407, 203, 0, 1172, 248, 1, 0,\n\t\t0, 0, 1173, 1174, 3, 433, 216, 0, 1174, 1175, 3, 407, 203, 0, 1175, 1176,\n\t\t3, 435, 217, 0, 1176, 1177, 3, 437, 218, 0, 1177, 1178, 3, 433, 216, 0,\n\t\t1178, 1179, 3, 415, 207, 0, 1179, 1180, 3, 403, 201, 0, 1180, 1181, 3,\n\t\t437, 218, 0, 1181, 250, 1, 0, 0, 0, 1182, 1183, 3, 433, 216, 0, 1183, 1184,\n\t\t3, 407, 203, 0, 1184, 1185, 3, 437, 218, 0, 1185, 1186, 3, 439, 219, 0,\n\t\t1186, 1187, 3, 433, 216, 0, 1187, 1188, 3, 425, 212, 0, 1188, 1189, 3,\n\t\t415, 207, 0, 1189, 1190, 3, 425, 212, 0, 1190, 1191, 3, 411, 205, 0, 1191,\n\t\t252, 1, 0, 0, 0, 1192, 1193, 3, 433, 216, 0, 1193, 1194, 3, 415, 207, 0,\n\t\t1194, 1195, 3, 411, 205, 0, 1195, 1196, 3, 413, 206, 0, 1196, 1197, 3,\n\t\t437, 218, 0, 1197, 254, 1, 0, 0, 0, 1198, 1199, 3, 433, 216, 0, 1199, 1200,\n\t\t3, 427, 213, 0, 1200, 1201, 3, 421, 210, 0, 1201, 1202, 3, 421, 210, 0,\n\t\t1202, 1203, 3, 401, 200, 0, 1203, 1204, 3, 399, 199, 0, 1204, 1205, 3,\n\t\t403, 201, 0, 1205, 1206, 3, 419, 209, 0, 1206, 256, 1, 0, 0, 0, 1207, 1208,\n\t\t3, 433, 216, 0, 1208, 1209, 3, 427, 213, 0, 1209, 1210, 3, 443, 221, 0,\n\t\t1210, 258, 1, 0, 0, 0, 1211, 1212, 3, 433, 216, 0, 1212, 1213, 3, 427,\n\t\t213, 0, 1213, 1214, 3, 443, 221, 0, 1214, 1215, 3, 435, 217, 0, 1215, 260,\n\t\t1, 0, 0, 0, 1216, 1217, 3, 435, 217, 0, 1217, 1218, 3, 399, 199, 0, 1218,\n\t\t1219, 3, 441, 220, 0, 1219, 1220, 3, 407, 203, 0, 1220, 1221, 3, 429, 214,\n\t\t0, 1221, 1222, 3, 427, 213, 0, 1222, 1223, 3, 415, 207, 0, 1223, 1224,\n\t\t3, 425, 212, 0, 1224, 1225, 3, 437, 218, 0, 1225, 262, 1, 0, 0, 0, 1226,\n\t\t1227, 3, 435, 217, 0, 1227, 1228, 3, 407, 203, 0, 1228, 1229, 3, 421, 210,\n\t\t0, 1229, 1230, 3, 407, 203, 0, 1230, 1231, 3, 403, 201, 0, 1231, 1232,\n\t\t3, 437, 218, 0, 1232, 264, 1, 0, 0, 0, 1233, 1234, 3, 435, 217, 0, 1234,\n\t\t1235, 3, 407, 203, 0, 1235, 1236, 3, 437, 218, 0, 1236, 266, 1, 0, 0, 0,\n\t\t1237, 1238, 3, 435, 217, 0, 1238, 1239, 3, 437, 218, 0, 1239, 1240, 3,\n\t\t433, 216, 0, 1240, 1241, 3, 415, 207, 0, 1241, 1242, 3, 403, 201, 0, 1242,\n\t\t1243, 3, 437, 218, 0, 1243, 268, 1, 0, 0, 0, 1244, 1245, 3, 437, 218, 0,\n\t\t1245, 1246, 3, 399, 199, 0, 1246, 1247, 3, 401, 200, 0, 1247, 1248, 3,\n\t\t421, 210, 0, 1248, 1249, 3, 407, 203, 0, 1249, 270, 1, 0, 0, 0, 1250, 1251,\n\t\t3, 437, 218, 0, 1251, 1252, 3, 407, 203, 0, 1252, 1253, 3, 423, 211, 0,\n\t\t1253, 1254, 3, 429, 214, 0, 1254, 272, 1, 0, 0, 0, 1255, 1256, 3, 437,\n\t\t218, 0, 1256, 1257, 3, 407, 203, 0, 1257, 1258, 3, 423, 211, 0, 1258, 1259,\n\t\t3, 429, 214, 0, 1259, 1260, 3, 427, 213, 0, 1260, 1261, 3, 433, 216, 0,\n\t\t1261, 1262, 3, 399, 199, 0, 1262, 1263, 3, 433, 216, 0, 1263, 1264, 3,\n\t\t447, 223, 0, 1264, 274, 1, 0, 0, 0, 1265, 1266, 3, 437, 218, 0, 1266, 1267,\n\t\t3, 413, 206, 0, 1267, 1268, 3, 407, 203, 0, 1268, 1269, 3, 425, 212, 0,\n\t\t1269, 276, 1, 0, 0, 0, 1270, 1271, 3, 437, 218, 0, 1271, 1272, 3, 427,\n\t\t213, 0, 1272, 278, 1, 0, 0, 0, 1273, 1274, 3, 437, 218, 0, 1274, 1275,\n\t\t3, 433, 216, 0, 1275, 1276, 3, 399, 199, 0, 1276, 1277, 3, 425, 212, 0,\n\t\t1277, 1278, 3, 435, 217, 0, 1278, 1279, 3, 399, 199, 0, 1279, 1280, 3,\n\t\t403, 201, 0, 1280, 1281, 3, 437, 218, 0, 1281, 1282, 3, 415, 207, 0, 1282,\n\t\t1283, 3, 427, 213, 0, 1283, 1284, 3, 425, 212, 0, 1284, 280, 1, 0, 0, 0,\n\t\t1285, 1286, 3, 437, 218, 0, 1286, 1287, 3, 433, 216, 0, 1287, 1288, 3,\n\t\t415, 207, 0, 1288, 1289, 3, 411, 205, 0, 1289, 1290, 3, 411, 205, 0, 1290,\n\t\t1291, 3, 407, 203, 0, 1291, 1292, 3, 433, 216, 0, 1292, 282, 1, 0, 0, 0,\n\t\t1293, 1294, 3, 439, 219, 0, 1294, 1295, 3, 425, 212, 0, 1295, 1296, 3,\n\t\t415, 207, 0, 1296, 1297, 3, 427, 213, 0, 1297, 1298, 3, 425, 212, 0, 1298,\n\t\t284, 1, 0, 0, 0, 1299, 1300, 3, 439, 219, 0, 1300, 1301, 3, 425, 212, 0,\n\t\t1301, 1302, 3, 415, 207, 0, 1302, 1303, 3, 431, 215, 0, 1303, 1304, 3,\n\t\t439, 219, 0, 1304, 1305, 3, 407, 203, 0, 1305, 286, 1, 0, 0, 0, 1306, 1307,\n\t\t3, 439, 219, 0, 1307, 1308, 3, 429, 214, 0, 1308, 1309, 3, 405, 202, 0,\n\t\t1309, 1310, 3, 399, 199, 0, 1310, 1311, 3, 437, 218, 0, 1311, 1312, 3,\n\t\t407, 203, 0, 1312, 288, 1, 0, 0, 0, 1313, 1314, 3, 439, 219, 0, 1314, 1315,\n\t\t3, 435, 217, 0, 1315, 1316, 3, 415, 207, 0, 1316, 1317, 3, 425, 212, 0,\n\t\t1317, 1318, 3, 411, 205, 0, 1318, 290, 1, 0, 0, 0, 1319, 1320, 3, 441,\n\t\t220, 0, 1320, 1321, 3, 399, 199, 0, 1321, 1322, 3, 403, 201, 0, 1322, 1323,\n\t\t3, 439, 219, 0, 1323, 1324, 3, 439, 219, 0, 1324, 1325, 3, 423, 211, 0,\n\t\t1325, 292, 1, 0, 0, 0, 1326, 1327, 3, 441, 220, 0, 1327, 1328, 3, 399,\n\t\t199, 0, 1328, 1329, 3, 421, 210, 0, 1329, 1330, 3, 439, 219, 0, 1330, 1331,\n\t\t3, 407, 203, 0, 1331, 1332, 3, 435, 217, 0, 1332, 294, 1, 0, 0, 0, 1333,\n\t\t1334, 3, 441, 220, 0, 1334, 1335, 3, 415, 207, 0, 1335, 1336, 3, 407, 203,\n\t\t0, 1336, 1337, 3, 443, 221, 0, 1337, 296, 1, 0, 0, 0, 1338, 1339, 3, 441,\n\t\t220, 0, 1339, 1340, 3, 415, 207, 0, 1340, 1341, 3, 433, 216, 0, 1341, 1342,\n\t\t3, 437, 218, 0, 1342, 1343, 3, 439, 219, 0, 1343, 1344, 3, 399, 199, 0,\n\t\t1344, 1345, 3, 421, 210, 0, 1345, 298, 1, 0, 0, 0, 1346, 1347, 3, 443,\n\t\t221, 0, 1347, 1348, 3, 413, 206, 0, 1348, 1349, 3, 407, 203, 0, 1349, 1350,\n\t\t3, 425, 212, 0, 1350, 300, 1, 0, 0, 0, 1351, 1352, 3, 443, 221, 0, 1352,\n\t\t1353, 3, 413, 206, 0, 1353, 1354, 3, 407, 203, 0, 1354, 1355, 3, 433, 216,\n\t\t0, 1355, 1356, 3, 407, 203, 0, 1356, 302, 1, 0, 0, 0, 1357, 1358, 3, 443,\n\t\t221, 0, 1358, 1359, 3, 415, 207, 0, 1359, 1360, 3, 437, 218, 0, 1360, 1361,\n\t\t3, 413, 206, 0, 1361, 304, 1, 0, 0, 0, 1362, 1363, 3, 443, 221, 0, 1363,\n\t\t1364, 3, 415, 207, 0, 1364, 1365, 3, 437, 218, 0, 1365, 1366, 3, 413, 206,\n\t\t0, 1366, 1367, 3, 427, 213, 0, 1367, 1368, 3, 439, 219, 0, 1368, 1369,\n\t\t3, 437, 218, 0, 1369, 306, 1, 0, 0, 0, 1370, 1371, 3, 409, 204, 0, 1371,\n\t\t1372, 3, 415, 207, 0, 1372, 1373, 3, 433, 216, 0, 1373, 1374, 3, 435, 217,\n\t\t0, 1374, 1375, 3, 437, 218, 0, 1375, 1376, 5, 95, 0, 0, 1376, 1377, 3,\n\t\t441, 220, 0, 1377, 1378, 3, 399, 199, 0, 1378, 1379, 3, 421, 210, 0, 1379,\n\t\t1380, 3, 439, 219, 0, 1380, 1381, 3, 407, 203, 0, 1381, 308, 1, 0, 0, 0,\n\t\t1382, 1383, 3, 427, 213, 0, 1383, 1384, 3, 441, 220, 0, 1384, 1385, 3,\n\t\t407, 203, 0, 1385, 1386, 3, 433, 216, 0, 1386, 310, 1, 0, 0, 0, 1387, 1388,\n\t\t3, 429, 214, 0, 1388, 1389, 3, 399, 199, 0, 1389, 1390, 3, 433, 216, 0,\n\t\t1390, 1391, 3, 437, 218, 0, 1391, 1392, 3, 415, 207, 0, 1392, 1393, 3,\n\t\t437, 218, 0, 1393, 1394, 3, 415, 207, 0, 1394, 1395, 3, 427, 213, 0, 1395,\n\t\t1396, 3, 425, 212, 0, 1396, 312, 1, 0, 0, 0, 1397, 1398, 3, 433, 216, 0,\n\t\t1398, 1399, 3, 399, 199, 0, 1399, 1400, 3, 425, 212, 0, 1400, 1401, 3,\n\t\t411, 205, 0, 1401, 1402, 3, 407, 203, 0, 1402, 314, 1, 0, 0, 0, 1403, 1404,\n\t\t3, 429, 214, 0, 1404, 1405, 3, 433, 216, 0, 1405, 1406, 3, 407, 203, 0,\n\t\t1406, 1407, 3, 403, 201, 0, 1407, 1408, 3, 407, 203, 0, 1408, 1409, 3,\n\t\t405, 202, 0, 1409, 1410, 3, 415, 207, 0, 1410, 1411, 3, 425, 212, 0, 1411,\n\t\t1412, 3, 411, 205, 0, 1412, 316, 1, 0, 0, 0, 1413, 1414, 3, 439, 219, 0,\n\t\t1414, 1415, 3, 425, 212, 0, 1415, 1416, 3, 401, 200, 0, 1416, 1417, 3,\n\t\t427, 213, 0, 1417, 1418, 3, 439, 219, 0, 1418, 1419, 3, 425, 212, 0, 1419,\n\t\t1420, 3, 405, 202, 0, 1420, 1421, 3, 407, 203, 0, 1421, 1422, 3, 405, 202,\n\t\t0, 1422, 318, 1, 0, 0, 0, 1423, 1424, 3, 403, 201, 0, 1424, 1425, 3, 439,\n\t\t219, 0, 1425, 1426, 3, 433, 216, 0, 1426, 1427, 3, 433, 216, 0, 1427, 1428,\n\t\t3, 407, 203, 0, 1428, 1429, 3, 425, 212, 0, 1429, 1430, 3, 437, 218, 0,\n\t\t1430, 320, 1, 0, 0, 0, 1431, 1432, 3, 409, 204, 0, 1432, 1433, 3, 427,\n\t\t213, 0, 1433, 1434, 3, 421, 210, 0, 1434, 1435, 3, 421, 210, 0, 1435, 1436,\n\t\t3, 427, 213, 0, 1436, 1437, 3, 443, 221, 0, 1437, 1438, 3, 415, 207, 0,\n\t\t1438, 1439, 3, 425, 212, 0, 1439, 1440, 3, 411, 205, 0, 1440, 322, 1, 0,\n\t\t0, 0, 1441, 1442, 3, 403, 201, 0, 1442, 1443, 3, 439, 219, 0, 1443, 1444,\n\t\t3, 423, 211, 0, 1444, 1445, 3, 407, 203, 0, 1445, 1446, 5, 95, 0, 0, 1446,\n\t\t1447, 3, 405, 202, 0, 1447, 1448, 3, 415, 207, 0, 1448, 1449, 3, 435, 217,\n\t\t0, 1449, 1450, 3, 437, 218, 0, 1450, 324, 1, 0, 0, 0, 1451, 1452, 3, 405,\n\t\t202, 0, 1452, 1453, 3, 407, 203, 0, 1453, 1454, 3, 425, 212, 0, 1454, 1455,\n\t\t3, 435, 217, 0, 1455, 1456, 3, 407, 203, 0, 1456, 1457, 5, 95, 0, 0, 1457,\n\t\t1458, 3, 433, 216, 0, 1458, 1459, 3, 399, 199, 0, 1459, 1460, 3, 425, 212,\n\t\t0, 1460, 1461, 3, 419, 209, 0, 1461, 326, 1, 0, 0, 0, 1462, 1463, 3, 421,\n\t\t210, 0, 1463, 1464, 3, 399, 199, 0, 1464, 1465, 3, 411, 205, 0, 1465, 328,\n\t\t1, 0, 0, 0, 1466, 1467, 3, 421, 210, 0, 1467, 1468, 3, 399, 199, 0, 1468,\n\t\t1469, 3, 435, 217, 0, 1469, 1470, 3, 437, 218, 0, 1470, 1471, 5, 95, 0,\n\t\t0, 1471, 1472, 3, 441, 220, 0, 1472, 1473, 3, 399, 199, 0, 1473, 1474,\n\t\t3, 421, 210, 0, 1474, 1475, 3, 439, 219, 0, 1475, 1476, 3, 407, 203, 0,\n\t\t1476, 330, 1, 0, 0, 0, 1477, 1478, 3, 421, 210, 0, 1478, 1479, 3, 407,\n\t\t203, 0, 1479, 1480, 3, 399, 199, 0, 1480, 1481, 3, 405, 202, 0, 1481, 332,\n\t\t1, 0, 0, 0, 1482, 1483, 3, 425, 212, 0, 1483, 1484, 3, 437, 218, 0, 1484,\n\t\t1485, 3, 413, 206, 0, 1485, 1486, 5, 95, 0, 0, 1486, 1487, 3, 441, 220,\n\t\t0, 1487, 1488, 3, 399, 199, 0, 1488, 1489, 3, 421, 210, 0, 1489, 1490,\n\t\t3, 439, 219, 0, 1490, 1491, 3, 407, 203, 0, 1491, 334, 1, 0, 0, 0, 1492,\n\t\t1493, 3, 425, 212, 0, 1493, 1494, 3, 437, 218, 0, 1494, 1495, 3, 415, 207,\n\t\t0, 1495, 1496, 3, 421, 210, 0, 1496, 1497, 3, 407, 203, 0, 1497, 336, 1,\n\t\t0, 0, 0, 1498, 1499, 3, 429, 214, 0, 1499, 1500, 3, 407, 203, 0, 1500,\n\t\t1501, 3, 433, 216, 0, 1501, 1502, 3, 403, 201, 0, 1502, 1503, 3, 407, 203,\n\t\t0, 1503, 1504, 3, 425, 212, 0, 1504, 1505, 3, 437, 218, 0, 1505, 1506,\n\t\t5, 95, 0, 0, 1506, 1507, 3, 433, 216, 0, 1507, 1508, 3, 399, 199, 0, 1508,\n\t\t1509, 3, 425, 212, 0, 1509, 1510, 3, 419, 209, 0, 1510, 338, 1, 0, 0, 0,\n\t\t1511, 1512, 3, 433, 216, 0, 1512, 1513, 3, 399, 199, 0, 1513, 1514, 3,\n\t\t425, 212, 0, 1514, 1515, 3, 419, 209, 0, 1515, 340, 1, 0, 0, 0, 1516, 1517,\n\t\t3, 433, 216, 0, 1517, 1518, 3, 427, 213, 0, 1518, 1519, 3, 443, 221, 0,\n\t\t1519, 1520, 5, 95, 0, 0, 1520, 1521, 3, 425, 212, 0, 1521, 1522, 3, 439,\n\t\t219, 0, 1522, 1523, 3, 423, 211, 0, 1523, 1524, 3, 401, 200, 0, 1524, 1525,\n\t\t3, 407, 203, 0, 1525, 1526, 3, 433, 216, 0, 1526, 342, 1, 0, 0, 0, 1527,\n\t\t1528, 3, 411, 205, 0, 1528, 1529, 3, 407, 203, 0, 1529, 1530, 3, 425, 212,\n\t\t0, 1530, 1531, 3, 407, 203, 0, 1531, 1532, 3, 433, 216, 0, 1532, 1533,\n\t\t3, 399, 199, 0, 1533, 1534, 3, 437, 218, 0, 1534, 1535, 3, 407, 203, 0,\n\t\t1535, 1536, 3, 405, 202, 0, 1536, 344, 1, 0, 0, 0, 1537, 1538, 3, 399,\n\t\t199, 0, 1538, 1539, 3, 421, 210, 0, 1539, 1540, 3, 443, 221, 0, 1540, 1541,\n\t\t3, 399, 199, 0, 1541, 1542, 3, 447, 223, 0, 1542, 1543, 3, 435, 217, 0,\n\t\t1543, 346, 1, 0, 0, 0, 1544, 1545, 3, 435, 217, 0, 1545, 1546, 3, 437,\n\t\t218, 0, 1546, 1547, 3, 427, 213, 0, 1547, 1548, 3, 433, 216, 0, 1548, 1549,\n\t\t3, 407, 203, 0, 1549, 1550, 3, 405, 202, 0, 1550, 348, 1, 0, 0, 0, 1551,\n\t\t1552, 3, 437, 218, 0, 1552, 1553, 3, 433, 216, 0, 1553, 1554, 3, 439, 219,\n\t\t0, 1554, 1555, 3, 407, 203, 0, 1555, 350, 1, 0, 0, 0, 1556, 1557, 3, 409,\n\t\t204, 0, 1557, 1558, 3, 399, 199, 0, 1558, 1559, 3, 421, 210, 0, 1559, 1560,\n\t\t3, 435, 217, 0, 1560, 1561, 3, 407, 203, 0, 1561, 352, 1, 0, 0, 0, 1562,\n\t\t1563, 3, 443, 221, 0, 1563, 1564, 3, 415, 207, 0, 1564, 1565, 3, 425, 212,\n\t\t0, 1565, 1566, 3, 405, 202, 0, 1566, 1567, 3, 427, 213, 0, 1567, 1568,\n\t\t3, 443, 221, 0, 1568, 354, 1, 0, 0, 0, 1569, 1570, 3, 425, 212, 0, 1570,\n\t\t1571, 3, 439, 219, 0, 1571, 1572, 3, 421, 210, 0, 1572, 1573, 3, 421, 210,\n\t\t0, 1573, 1574, 3, 435, 217, 0, 1574, 356, 1, 0, 0, 0, 1575, 1576, 3, 409,\n\t\t204, 0, 1576, 1577, 3, 415, 207, 0, 1577, 1578, 3, 433, 216, 0, 1578, 1579,\n\t\t3, 435, 217, 0, 1579, 1580, 3, 437, 218, 0, 1580, 358, 1, 0, 0, 0, 1581,\n\t\t1582, 3, 421, 210, 0, 1582, 1583, 3, 399, 199, 0, 1583, 1584, 3, 435, 217,\n\t\t0, 1584, 1585, 3, 437, 218, 0, 1585, 360, 1, 0, 0, 0, 1586, 1587, 3, 409,\n\t\t204, 0, 1587, 1588, 3, 415, 207, 0, 1588, 1589, 3, 421, 210, 0, 1589, 1590,\n\t\t3, 437, 218, 0, 1590, 1591, 3, 407, 203, 0, 1591, 1592, 3, 433, 216, 0,\n\t\t1592, 362, 1, 0, 0, 0, 1593, 1594, 3, 411, 205, 0, 1594, 1595, 3, 433,\n\t\t216, 0, 1595, 1596, 3, 427, 213, 0, 1596, 1597, 3, 439, 219, 0, 1597, 1598,\n\t\t3, 429, 214, 0, 1598, 1599, 3, 435, 217, 0, 1599, 364, 1, 0, 0, 0, 1600,\n\t\t1601, 3, 407, 203, 0, 1601, 1602, 3, 445, 222, 0, 1602, 1603, 3, 403, 201,\n\t\t0, 1603, 1604, 3, 421, 210, 0, 1604, 1605, 3, 439, 219, 0, 1605, 1606,\n\t\t3, 405, 202, 0, 1606, 1607, 3, 407, 203, 0, 1607, 366, 1, 0, 0, 0, 1608,\n\t\t1609, 3, 437, 218, 0, 1609, 1610, 3, 415, 207, 0, 1610, 1611, 3, 407, 203,\n\t\t0, 1611, 1612, 3, 435, 217, 0, 1612, 368, 1, 0, 0, 0, 1613, 1614, 3, 427,\n\t\t213, 0, 1614, 1615, 3, 437, 218, 0, 1615, 1616, 3, 413, 206, 0, 1616, 1617,\n\t\t3, 407, 203, 0, 1617, 1618, 3, 433, 216, 0, 1618, 1619, 3, 435, 217, 0,\n\t\t1619, 370, 1, 0, 0, 0, 1620, 1621, 3, 405, 202, 0, 1621, 1622, 3, 427,\n\t\t213, 0, 1622, 372, 1, 0, 0, 0, 1623, 1624, 3, 425, 212, 0, 1624, 1625,\n\t\t3, 427, 213, 0, 1625, 1626, 3, 437, 218, 0, 1626, 1627, 3, 413, 206, 0,\n\t\t1627, 1628, 3, 415, 207, 0, 1628, 1629, 3, 425, 212, 0, 1629, 1630, 3,\n\t\t411, 205, 0, 1630, 374, 1, 0, 0, 0, 1631, 1637, 5, 34, 0, 0, 1632, 1636,\n\t\t8, 0, 0, 0, 1633, 1634, 5, 34, 0, 0, 1634, 1636, 5, 34, 0, 0, 1635, 1632,\n\t\t1, 0, 0, 0, 1635, 1633, 1, 0, 0, 0, 1636, 1639, 1, 0, 0, 0, 1637, 1635,\n\t\t1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1640, 1, 0, 0, 0, 1639, 1637,\n\t\t1, 0, 0, 0, 1640, 1667, 5, 34, 0, 0, 1641, 1647, 5, 96, 0, 0, 1642, 1646,\n\t\t8, 1, 0, 0, 1643, 1644, 5, 96, 0, 0, 1644, 1646, 5, 96, 0, 0, 1645, 1642,\n\t\t1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1646, 1649, 1, 0, 0, 0, 1647, 1645,\n\t\t1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 1650, 1, 0, 0, 0, 1649, 1647,\n\t\t1, 0, 0, 0, 1650, 1667, 5, 96, 0, 0, 1651, 1655, 5, 91, 0, 0, 1652, 1654,\n\t\t8, 2, 0, 0, 1653, 1652, 1, 0, 0, 0, 1654, 1657, 1, 0, 0, 0, 1655, 1653,\n\t\t1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1658, 1, 0, 0, 0, 1657, 1655,\n\t\t1, 0, 0, 0, 1658, 1667, 5, 93, 0, 0, 1659, 1663, 7, 3, 0, 0, 1660, 1662,\n\t\t7, 4, 0, 0, 1661, 1660, 1, 0, 0, 0, 1662, 1665, 1, 0, 0, 0, 1663, 1661,\n\t\t1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1667, 1, 0, 0, 0, 1665, 1663,\n\t\t1, 0, 0, 0, 1666, 1631, 1, 0, 0, 0, 1666, 1641, 1, 0, 0, 0, 1666, 1651,\n\t\t1, 0, 0, 0, 1666, 1659, 1, 0, 0, 0, 1667, 376, 1, 0, 0, 0, 1668, 1670,\n\t\t3, 397, 198, 0, 1669, 1668, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1669,\n\t\t1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1680, 1, 0, 0, 0, 1673, 1677,\n\t\t5, 46, 0, 0, 1674, 1676, 3, 397, 198, 0, 1675, 1674, 1, 0, 0, 0, 1676,\n\t\t1679, 1, 0, 0, 0, 1677, 1675, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678,\n\t\t1681, 1, 0, 0, 0, 1679, 1677, 1, 0, 0, 0, 1680, 1673, 1, 0, 0, 0, 1680,\n\t\t1681, 1, 0, 0, 0, 1681, 1689, 1, 0, 0, 0, 1682, 1684, 5, 46, 0, 0, 1683,\n\t\t1685, 3, 397, 198, 0, 1684, 1683, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686,\n\t\t1684, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1689, 1, 0, 0, 0, 1688,\n\t\t1669, 1, 0, 0, 0, 1688, 1682, 1, 0, 0, 0, 1689, 1699, 1, 0, 0, 0, 1690,\n\t\t1692, 3, 407, 203, 0, 1691, 1693, 7, 5, 0, 0, 1692, 1691, 1, 0, 0, 0, 1692,\n\t\t1693, 1, 0, 0, 0, 1693, 1695, 1, 0, 0, 0, 1694, 1696, 3, 397, 198, 0, 1695,\n\t\t1694, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1695, 1, 0, 0, 0, 1697,\n\t\t1698, 1, 0, 0, 0, 1698, 1700, 1, 0, 0, 0, 1699, 1690, 1, 0, 0, 0, 1699,\n\t\t1700, 1, 0, 0, 0, 1700, 1710, 1, 0, 0, 0, 1701, 1702, 5, 48, 0, 0, 1702,\n\t\t1703, 5, 120, 0, 0, 1703, 1705, 1, 0, 0, 0, 1704, 1706, 3, 395, 197, 0,\n\t\t1705, 1704, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1705, 1, 0, 0, 0,\n\t\t1707, 1708, 1, 0, 0, 0, 1708, 1710, 1, 0, 0, 0, 1709, 1688, 1, 0, 0, 0,\n\t\t1709, 1701, 1, 0, 0, 0, 1710, 378, 1, 0, 0, 0, 1711, 1715, 5, 63, 0, 0,\n\t\t1712, 1714, 3, 397, 198, 0, 1713, 1712, 1, 0, 0, 0, 1714, 1717, 1, 0, 0,\n\t\t0, 1715, 1713, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 380, 1, 0, 0,\n\t\t0, 1717, 1715, 1, 0, 0, 0, 1718, 1719, 7, 6, 0, 0, 1719, 1720, 3, 375,\n\t\t187, 0, 1720, 382, 1, 0, 0, 0, 1721, 1727, 5, 39, 0, 0, 1722, 1726, 8,\n\t\t7, 0, 0, 1723, 1724, 5, 39, 0, 0, 1724, 1726, 5, 39, 0, 0, 1725, 1722,\n\t\t1, 0, 0, 0, 1725, 1723, 1, 0, 0, 0, 1726, 1729, 1, 0, 0, 0, 1727, 1725,\n\t\t1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1730, 1, 0, 0, 0, 1729, 1727,\n\t\t1, 0, 0, 0, 1730, 1731, 5, 39, 0, 0, 1731, 384, 1, 0, 0, 0, 1732, 1733,\n\t\t3, 445, 222, 0, 1733, 1734, 3, 383, 191, 0, 1734, 386, 1, 0, 0, 0, 1735,\n\t\t1736, 5, 45, 0, 0, 1736, 1737, 5, 45, 0, 0, 1737, 1741, 1, 0, 0, 0, 1738,\n\t\t1740, 8, 8, 0, 0, 1739, 1738, 1, 0, 0, 0, 1740, 1743, 1, 0, 0, 0, 1741,\n\t\t1739, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1749, 1, 0, 0, 0, 1743,\n\t\t1741, 1, 0, 0, 0, 1744, 1746, 5, 13, 0, 0, 1745, 1744, 1, 0, 0, 0, 1745,\n\t\t1746, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1750, 5, 10, 0, 0, 1748,\n\t\t1750, 5, 0, 0, 1, 1749, 1745, 1, 0, 0, 0, 1749, 1748, 1, 0, 0, 0, 1750,\n\t\t1751, 1, 0, 0, 0, 1751, 1752, 6, 193, 0, 0, 1752, 388, 1, 0, 0, 0, 1753,\n\t\t1754, 5, 47, 0, 0, 1754, 1755, 5, 42, 0, 0, 1755, 1759, 1, 0, 0, 0, 1756,\n\t\t1758, 9, 0, 0, 0, 1757, 1756, 1, 0, 0, 0, 1758, 1761, 1, 0, 0, 0, 1759,\n\t\t1760, 1, 0, 0, 0, 1759, 1757, 1, 0, 0, 0, 1760, 1762, 1, 0, 0, 0, 1761,\n\t\t1759, 1, 0, 0, 0, 1762, 1763, 5, 42, 0, 0, 1763, 1764, 5, 47, 0, 0, 1764,\n\t\t1765, 1, 0, 0, 0, 1765, 1766, 6, 194, 0, 0, 1766, 390, 1, 0, 0, 0, 1767,\n\t\t1768, 7, 9, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 6, 195, 0, 0, 1770,\n\t\t392, 1, 0, 0, 0, 1771, 1772, 9, 0, 0, 0, 1772, 394, 1, 0, 0, 0, 1773, 1774,\n\t\t7, 10, 0, 0, 1774, 396, 1, 0, 0, 0, 1775, 1776, 7, 11, 0, 0, 1776, 398,\n\t\t1, 0, 0, 0, 1777, 1778, 7, 12, 0, 0, 1778, 400, 1, 0, 0, 0, 1779, 1780,\n\t\t7, 13, 0, 0, 1780, 402, 1, 0, 0, 0, 1781, 1782, 7, 14, 0, 0, 1782, 404,\n\t\t1, 0, 0, 0, 1783, 1784, 7, 15, 0, 0, 1784, 406, 1, 0, 0, 0, 1785, 1786,\n\t\t7, 16, 0, 0, 1786, 408, 1, 0, 0, 0, 1787, 1788, 7, 17, 0, 0, 1788, 410,\n\t\t1, 0, 0, 0, 1789, 1790, 7, 18, 0, 0, 1790, 412, 1, 0, 0, 0, 1791, 1792,\n\t\t7, 19, 0, 0, 1792, 414, 1, 0, 0, 0, 1793, 1794, 7, 20, 0, 0, 1794, 416,\n\t\t1, 0, 0, 0, 1795, 1796, 7, 21, 0, 0, 1796, 418, 1, 0, 0, 0, 1797, 1798,\n\t\t7, 22, 0, 0, 1798, 420, 1, 0, 0, 0, 1799, 1800, 7, 23, 0, 0, 1800, 422,\n\t\t1, 0, 0, 0, 1801, 1802, 7, 24, 0, 0, 1802, 424, 1, 0, 0, 0, 1803, 1804,\n\t\t7, 25, 0, 0, 1804, 426, 1, 0, 0, 0, 1805, 1806, 7, 26, 0, 0, 1806, 428,\n\t\t1, 0, 0, 0, 1807, 1808, 7, 27, 0, 0, 1808, 430, 1, 0, 0, 0, 1809, 1810,\n\t\t7, 28, 0, 0, 1810, 432, 1, 0, 0, 0, 1811, 1812, 7, 29, 0, 0, 1812, 434,\n\t\t1, 0, 0, 0, 1813, 1814, 7, 30, 0, 0, 1814, 436, 1, 0, 0, 0, 1815, 1816,\n\t\t7, 31, 0, 0, 1816, 438, 1, 0, 0, 0, 1817, 1818, 7, 32, 0, 0, 1818, 440,\n\t\t1, 0, 0, 0, 1819, 1820, 7, 33, 0, 0, 1820, 442, 1, 0, 0, 0, 1821, 1822,\n\t\t7, 34, 0, 0, 1822, 444, 1, 0, 0, 0, 1823, 1824, 7, 35, 0, 0, 1824, 446,\n\t\t1, 0, 0, 0, 1825, 1826, 7, 36, 0, 0, 1826, 448, 1, 0, 0, 0, 1827, 1828,\n\t\t7, 37, 0, 0, 1828, 450, 1, 0, 0, 0, 25, 0, 1635, 1637, 1645, 1647, 1655,\n\t\t1663, 1666, 1671, 1677, 1680, 1686, 1688, 1692, 1697, 1699, 1707, 1709,\n\t\t1715, 1725, 1727, 1741, 1745, 1749, 1759, 1, 0, 1, 0,\n\t}\n\tdeserializer := antlr.NewATNDeserializer(nil)\n\tstaticData.atn = deserializer.Deserialize(staticData.serializedATN)\n\tatn := staticData.atn\n\tstaticData.decisionToDFA = make([]*antlr.DFA, len(atn.DecisionToState))\n\tdecisionToDFA := staticData.decisionToDFA\n\tfor index, state := range atn.DecisionToState {\n\t\tdecisionToDFA[index] = antlr.NewDFA(state, index)\n\t}\n}\n\n// SQLiteLexerInit initializes any static state used to implement SQLiteLexer. By default the\n// static state used to implement the lexer is lazily initialized during the first call to\n// NewSQLiteLexer(). You can call this function if you wish to initialize the static state ahead\n// of time.\nfunc SQLiteLexerInit() {\n\tstaticData := &SQLiteLexerLexerStaticData\n\tstaticData.once.Do(sqlitelexerLexerInit)\n}\n\n// NewSQLiteLexer produces a new lexer instance for the optional input antlr.CharStream.\nfunc NewSQLiteLexer(input antlr.CharStream) *SQLiteLexer {\n\tSQLiteLexerInit()\n\tl := new(SQLiteLexer)\n\tl.BaseLexer = antlr.NewBaseLexer(input)\n\tstaticData := &SQLiteLexerLexerStaticData\n\tl.Interpreter = antlr.NewLexerATNSimulator(l, staticData.atn, staticData.decisionToDFA, staticData.PredictionContextCache)\n\tl.channelNames = staticData.ChannelNames\n\tl.modeNames = staticData.ModeNames\n\tl.RuleNames = staticData.RuleNames\n\tl.LiteralNames = staticData.LiteralNames\n\tl.SymbolicNames = staticData.SymbolicNames\n\tl.GrammarFileName = \"SQLiteLexer.g4\"\n\t// TODO: l.EOF = antlr.TokenEOF\n\n\treturn l\n}\n\n// SQLiteLexer tokens.\nconst (\n\tSQLiteLexerSCOL                    = 1\n\tSQLiteLexerDOT                     = 2\n\tSQLiteLexerOPEN_PAR                = 3\n\tSQLiteLexerCLOSE_PAR               = 4\n\tSQLiteLexerCOMMA                   = 5\n\tSQLiteLexerASSIGN                  = 6\n\tSQLiteLexerSTAR                    = 7\n\tSQLiteLexerPLUS                    = 8\n\tSQLiteLexerPTR2                    = 9\n\tSQLiteLexerPTR                     = 10\n\tSQLiteLexerMINUS                   = 11\n\tSQLiteLexerTILDE                   = 12\n\tSQLiteLexerPIPE2                   = 13\n\tSQLiteLexerDIV                     = 14\n\tSQLiteLexerMOD                     = 15\n\tSQLiteLexerLT2                     = 16\n\tSQLiteLexerGT2                     = 17\n\tSQLiteLexerAMP                     = 18\n\tSQLiteLexerPIPE                    = 19\n\tSQLiteLexerLT                      = 20\n\tSQLiteLexerLT_EQ                   = 21\n\tSQLiteLexerGT                      = 22\n\tSQLiteLexerGT_EQ                   = 23\n\tSQLiteLexerEQ                      = 24\n\tSQLiteLexerNOT_EQ1                 = 25\n\tSQLiteLexerNOT_EQ2                 = 26\n\tSQLiteLexerABORT_                  = 27\n\tSQLiteLexerACTION_                 = 28\n\tSQLiteLexerADD_                    = 29\n\tSQLiteLexerAFTER_                  = 30\n\tSQLiteLexerALL_                    = 31\n\tSQLiteLexerALTER_                  = 32\n\tSQLiteLexerANALYZE_                = 33\n\tSQLiteLexerAND_                    = 34\n\tSQLiteLexerAS_                     = 35\n\tSQLiteLexerASC_                    = 36\n\tSQLiteLexerATTACH_                 = 37\n\tSQLiteLexerAUTOINCREMENT_          = 38\n\tSQLiteLexerBEFORE_                 = 39\n\tSQLiteLexerBEGIN_                  = 40\n\tSQLiteLexerBETWEEN_                = 41\n\tSQLiteLexerBY_                     = 42\n\tSQLiteLexerCASCADE_                = 43\n\tSQLiteLexerCASE_                   = 44\n\tSQLiteLexerCAST_                   = 45\n\tSQLiteLexerCHECK_                  = 46\n\tSQLiteLexerCOLLATE_                = 47\n\tSQLiteLexerCOLUMN_                 = 48\n\tSQLiteLexerCOMMIT_                 = 49\n\tSQLiteLexerCONFLICT_               = 50\n\tSQLiteLexerCONSTRAINT_             = 51\n\tSQLiteLexerCREATE_                 = 52\n\tSQLiteLexerCROSS_                  = 53\n\tSQLiteLexerCURRENT_DATE_           = 54\n\tSQLiteLexerCURRENT_TIME_           = 55\n\tSQLiteLexerCURRENT_TIMESTAMP_      = 56\n\tSQLiteLexerDATABASE_               = 57\n\tSQLiteLexerDEFAULT_                = 58\n\tSQLiteLexerDEFERRABLE_             = 59\n\tSQLiteLexerDEFERRED_               = 60\n\tSQLiteLexerDELETE_                 = 61\n\tSQLiteLexerDESC_                   = 62\n\tSQLiteLexerDETACH_                 = 63\n\tSQLiteLexerDISTINCT_               = 64\n\tSQLiteLexerDROP_                   = 65\n\tSQLiteLexerEACH_                   = 66\n\tSQLiteLexerELSE_                   = 67\n\tSQLiteLexerEND_                    = 68\n\tSQLiteLexerESCAPE_                 = 69\n\tSQLiteLexerEXCEPT_                 = 70\n\tSQLiteLexerEXCLUSIVE_              = 71\n\tSQLiteLexerEXISTS_                 = 72\n\tSQLiteLexerEXPLAIN_                = 73\n\tSQLiteLexerFAIL_                   = 74\n\tSQLiteLexerFOR_                    = 75\n\tSQLiteLexerFOREIGN_                = 76\n\tSQLiteLexerFROM_                   = 77\n\tSQLiteLexerFULL_                   = 78\n\tSQLiteLexerGLOB_                   = 79\n\tSQLiteLexerGROUP_                  = 80\n\tSQLiteLexerHAVING_                 = 81\n\tSQLiteLexerIF_                     = 82\n\tSQLiteLexerIGNORE_                 = 83\n\tSQLiteLexerIMMEDIATE_              = 84\n\tSQLiteLexerIN_                     = 85\n\tSQLiteLexerINDEX_                  = 86\n\tSQLiteLexerINDEXED_                = 87\n\tSQLiteLexerINITIALLY_              = 88\n\tSQLiteLexerINNER_                  = 89\n\tSQLiteLexerINSERT_                 = 90\n\tSQLiteLexerINSTEAD_                = 91\n\tSQLiteLexerINTERSECT_              = 92\n\tSQLiteLexerINTO_                   = 93\n\tSQLiteLexerIS_                     = 94\n\tSQLiteLexerISNULL_                 = 95\n\tSQLiteLexerJOIN_                   = 96\n\tSQLiteLexerKEY_                    = 97\n\tSQLiteLexerLEFT_                   = 98\n\tSQLiteLexerLIKE_                   = 99\n\tSQLiteLexerLIMIT_                  = 100\n\tSQLiteLexerMATCH_                  = 101\n\tSQLiteLexerNATURAL_                = 102\n\tSQLiteLexerNO_                     = 103\n\tSQLiteLexerNOT_                    = 104\n\tSQLiteLexerNOTNULL_                = 105\n\tSQLiteLexerNULL_                   = 106\n\tSQLiteLexerOF_                     = 107\n\tSQLiteLexerOFFSET_                 = 108\n\tSQLiteLexerON_                     = 109\n\tSQLiteLexerOR_                     = 110\n\tSQLiteLexerORDER_                  = 111\n\tSQLiteLexerOUTER_                  = 112\n\tSQLiteLexerPLAN_                   = 113\n\tSQLiteLexerPRAGMA_                 = 114\n\tSQLiteLexerPRIMARY_                = 115\n\tSQLiteLexerQUERY_                  = 116\n\tSQLiteLexerRAISE_                  = 117\n\tSQLiteLexerRECURSIVE_              = 118\n\tSQLiteLexerREFERENCES_             = 119\n\tSQLiteLexerREGEXP_                 = 120\n\tSQLiteLexerREINDEX_                = 121\n\tSQLiteLexerRELEASE_                = 122\n\tSQLiteLexerRENAME_                 = 123\n\tSQLiteLexerREPLACE_                = 124\n\tSQLiteLexerRESTRICT_               = 125\n\tSQLiteLexerRETURNING_              = 126\n\tSQLiteLexerRIGHT_                  = 127\n\tSQLiteLexerROLLBACK_               = 128\n\tSQLiteLexerROW_                    = 129\n\tSQLiteLexerROWS_                   = 130\n\tSQLiteLexerSAVEPOINT_              = 131\n\tSQLiteLexerSELECT_                 = 132\n\tSQLiteLexerSET_                    = 133\n\tSQLiteLexerSTRICT_                 = 134\n\tSQLiteLexerTABLE_                  = 135\n\tSQLiteLexerTEMP_                   = 136\n\tSQLiteLexerTEMPORARY_              = 137\n\tSQLiteLexerTHEN_                   = 138\n\tSQLiteLexerTO_                     = 139\n\tSQLiteLexerTRANSACTION_            = 140\n\tSQLiteLexerTRIGGER_                = 141\n\tSQLiteLexerUNION_                  = 142\n\tSQLiteLexerUNIQUE_                 = 143\n\tSQLiteLexerUPDATE_                 = 144\n\tSQLiteLexerUSING_                  = 145\n\tSQLiteLexerVACUUM_                 = 146\n\tSQLiteLexerVALUES_                 = 147\n\tSQLiteLexerVIEW_                   = 148\n\tSQLiteLexerVIRTUAL_                = 149\n\tSQLiteLexerWHEN_                   = 150\n\tSQLiteLexerWHERE_                  = 151\n\tSQLiteLexerWITH_                   = 152\n\tSQLiteLexerWITHOUT_                = 153\n\tSQLiteLexerFIRST_VALUE_            = 154\n\tSQLiteLexerOVER_                   = 155\n\tSQLiteLexerPARTITION_              = 156\n\tSQLiteLexerRANGE_                  = 157\n\tSQLiteLexerPRECEDING_              = 158\n\tSQLiteLexerUNBOUNDED_              = 159\n\tSQLiteLexerCURRENT_                = 160\n\tSQLiteLexerFOLLOWING_              = 161\n\tSQLiteLexerCUME_DIST_              = 162\n\tSQLiteLexerDENSE_RANK_             = 163\n\tSQLiteLexerLAG_                    = 164\n\tSQLiteLexerLAST_VALUE_             = 165\n\tSQLiteLexerLEAD_                   = 166\n\tSQLiteLexerNTH_VALUE_              = 167\n\tSQLiteLexerNTILE_                  = 168\n\tSQLiteLexerPERCENT_RANK_           = 169\n\tSQLiteLexerRANK_                   = 170\n\tSQLiteLexerROW_NUMBER_             = 171\n\tSQLiteLexerGENERATED_              = 172\n\tSQLiteLexerALWAYS_                 = 173\n\tSQLiteLexerSTORED_                 = 174\n\tSQLiteLexerTRUE_                   = 175\n\tSQLiteLexerFALSE_                  = 176\n\tSQLiteLexerWINDOW_                 = 177\n\tSQLiteLexerNULLS_                  = 178\n\tSQLiteLexerFIRST_                  = 179\n\tSQLiteLexerLAST_                   = 180\n\tSQLiteLexerFILTER_                 = 181\n\tSQLiteLexerGROUPS_                 = 182\n\tSQLiteLexerEXCLUDE_                = 183\n\tSQLiteLexerTIES_                   = 184\n\tSQLiteLexerOTHERS_                 = 185\n\tSQLiteLexerDO_                     = 186\n\tSQLiteLexerNOTHING_                = 187\n\tSQLiteLexerIDENTIFIER              = 188\n\tSQLiteLexerNUMERIC_LITERAL         = 189\n\tSQLiteLexerNUMBERED_BIND_PARAMETER = 190\n\tSQLiteLexerNAMED_BIND_PARAMETER    = 191\n\tSQLiteLexerSTRING_LITERAL          = 192\n\tSQLiteLexerBLOB_LITERAL            = 193\n\tSQLiteLexerSINGLE_LINE_COMMENT     = 194\n\tSQLiteLexerMULTILINE_COMMENT       = 195\n\tSQLiteLexerSPACES                  = 196\n\tSQLiteLexerUNEXPECTED_CHAR         = 197\n)\n"
  },
  {
    "path": "internal/engine/sqlite/parser/sqlite_parser.go",
    "content": "// Code generated from SQLiteParser.g4 by ANTLR 4.13.1. DO NOT EDIT.\n\npackage parser // SQLiteParser\n\nimport (\n\t\"fmt\"\n\t\"strconv\"\n\t\"sync\"\n\n\t\"github.com/antlr4-go/antlr/v4\"\n)\n\n// Suppress unused import errors\nvar _ = fmt.Printf\nvar _ = strconv.Itoa\nvar _ = sync.Once{}\n\ntype SQLiteParser struct {\n\t*antlr.BaseParser\n}\n\nvar SQLiteParserParserStaticData struct {\n\tonce                   sync.Once\n\tserializedATN          []int32\n\tLiteralNames           []string\n\tSymbolicNames          []string\n\tRuleNames              []string\n\tPredictionContextCache *antlr.PredictionContextCache\n\tatn                    *antlr.ATN\n\tdecisionToDFA          []*antlr.DFA\n}\n\nfunc sqliteparserParserInit() {\n\tstaticData := &SQLiteParserParserStaticData\n\tstaticData.LiteralNames = []string{\n\t\t\"\", \"';'\", \"'.'\", \"'('\", \"')'\", \"','\", \"'='\", \"'*'\", \"'+'\", \"'->>'\",\n\t\t\"'->'\", \"'-'\", \"'~'\", \"'||'\", \"'/'\", \"'%'\", \"'<<'\", \"'>>'\", \"'&'\", \"'|'\",\n\t\t\"'<'\", \"'<='\", \"'>'\", \"'>='\", \"'=='\", \"'!='\", \"'<>'\",\n\t}\n\tstaticData.SymbolicNames = []string{\n\t\t\"\", \"SCOL\", \"DOT\", \"OPEN_PAR\", \"CLOSE_PAR\", \"COMMA\", \"ASSIGN\", \"STAR\",\n\t\t\"PLUS\", \"PTR2\", \"PTR\", \"MINUS\", \"TILDE\", \"PIPE2\", \"DIV\", \"MOD\", \"LT2\",\n\t\t\"GT2\", \"AMP\", \"PIPE\", \"LT\", \"LT_EQ\", \"GT\", \"GT_EQ\", \"EQ\", \"NOT_EQ1\",\n\t\t\"NOT_EQ2\", \"ABORT_\", \"ACTION_\", \"ADD_\", \"AFTER_\", \"ALL_\", \"ALTER_\",\n\t\t\"ANALYZE_\", \"AND_\", \"AS_\", \"ASC_\", \"ATTACH_\", \"AUTOINCREMENT_\", \"BEFORE_\",\n\t\t\"BEGIN_\", \"BETWEEN_\", \"BY_\", \"CASCADE_\", \"CASE_\", \"CAST_\", \"CHECK_\",\n\t\t\"COLLATE_\", \"COLUMN_\", \"COMMIT_\", \"CONFLICT_\", \"CONSTRAINT_\", \"CREATE_\",\n\t\t\"CROSS_\", \"CURRENT_DATE_\", \"CURRENT_TIME_\", \"CURRENT_TIMESTAMP_\", \"DATABASE_\",\n\t\t\"DEFAULT_\", \"DEFERRABLE_\", \"DEFERRED_\", \"DELETE_\", \"DESC_\", \"DETACH_\",\n\t\t\"DISTINCT_\", \"DROP_\", \"EACH_\", \"ELSE_\", \"END_\", \"ESCAPE_\", \"EXCEPT_\",\n\t\t\"EXCLUSIVE_\", \"EXISTS_\", \"EXPLAIN_\", \"FAIL_\", \"FOR_\", \"FOREIGN_\", \"FROM_\",\n\t\t\"FULL_\", \"GLOB_\", \"GROUP_\", \"HAVING_\", \"IF_\", \"IGNORE_\", \"IMMEDIATE_\",\n\t\t\"IN_\", \"INDEX_\", \"INDEXED_\", \"INITIALLY_\", \"INNER_\", \"INSERT_\", \"INSTEAD_\",\n\t\t\"INTERSECT_\", \"INTO_\", \"IS_\", \"ISNULL_\", \"JOIN_\", \"KEY_\", \"LEFT_\", \"LIKE_\",\n\t\t\"LIMIT_\", \"MATCH_\", \"NATURAL_\", \"NO_\", \"NOT_\", \"NOTNULL_\", \"NULL_\",\n\t\t\"OF_\", \"OFFSET_\", \"ON_\", \"OR_\", \"ORDER_\", \"OUTER_\", \"PLAN_\", \"PRAGMA_\",\n\t\t\"PRIMARY_\", \"QUERY_\", \"RAISE_\", \"RECURSIVE_\", \"REFERENCES_\", \"REGEXP_\",\n\t\t\"REINDEX_\", \"RELEASE_\", \"RENAME_\", \"REPLACE_\", \"RESTRICT_\", \"RETURNING_\",\n\t\t\"RIGHT_\", \"ROLLBACK_\", \"ROW_\", \"ROWS_\", \"SAVEPOINT_\", \"SELECT_\", \"SET_\",\n\t\t\"STRICT_\", \"TABLE_\", \"TEMP_\", \"TEMPORARY_\", \"THEN_\", \"TO_\", \"TRANSACTION_\",\n\t\t\"TRIGGER_\", \"UNION_\", \"UNIQUE_\", \"UPDATE_\", \"USING_\", \"VACUUM_\", \"VALUES_\",\n\t\t\"VIEW_\", \"VIRTUAL_\", \"WHEN_\", \"WHERE_\", \"WITH_\", \"WITHOUT_\", \"FIRST_VALUE_\",\n\t\t\"OVER_\", \"PARTITION_\", \"RANGE_\", \"PRECEDING_\", \"UNBOUNDED_\", \"CURRENT_\",\n\t\t\"FOLLOWING_\", \"CUME_DIST_\", \"DENSE_RANK_\", \"LAG_\", \"LAST_VALUE_\", \"LEAD_\",\n\t\t\"NTH_VALUE_\", \"NTILE_\", \"PERCENT_RANK_\", \"RANK_\", \"ROW_NUMBER_\", \"GENERATED_\",\n\t\t\"ALWAYS_\", \"STORED_\", \"TRUE_\", \"FALSE_\", \"WINDOW_\", \"NULLS_\", \"FIRST_\",\n\t\t\"LAST_\", \"FILTER_\", \"GROUPS_\", \"EXCLUDE_\", \"TIES_\", \"OTHERS_\", \"DO_\",\n\t\t\"NOTHING_\", \"IDENTIFIER\", \"NUMERIC_LITERAL\", \"NUMBERED_BIND_PARAMETER\",\n\t\t\"NAMED_BIND_PARAMETER\", \"STRING_LITERAL\", \"BLOB_LITERAL\", \"SINGLE_LINE_COMMENT\",\n\t\t\"MULTILINE_COMMENT\", \"SPACES\", \"UNEXPECTED_CHAR\",\n\t}\n\tstaticData.RuleNames = []string{\n\t\t\"parse\", \"sql_stmt_list\", \"sql_stmt\", \"alter_table_stmt\", \"analyze_stmt\",\n\t\t\"attach_stmt\", \"begin_stmt\", \"commit_stmt\", \"rollback_stmt\", \"savepoint_stmt\",\n\t\t\"release_stmt\", \"create_index_stmt\", \"indexed_column\", \"table_option\",\n\t\t\"create_table_stmt\", \"column_def\", \"type_name\", \"column_constraint\",\n\t\t\"signed_number\", \"table_constraint\", \"foreign_key_clause\", \"conflict_clause\",\n\t\t\"create_trigger_stmt\", \"create_view_stmt\", \"create_virtual_table_stmt\",\n\t\t\"with_clause\", \"cte_table_name\", \"recursive_cte\", \"common_table_expression\",\n\t\t\"returning_clause\", \"delete_stmt\", \"delete_stmt_limited\", \"detach_stmt\",\n\t\t\"drop_stmt\", \"expr\", \"raise_function\", \"literal_value\", \"insert_stmt\",\n\t\t\"upsert_clause\", \"pragma_stmt\", \"pragma_value\", \"reindex_stmt\", \"select_stmt\",\n\t\t\"join_clause\", \"select_core\", \"factored_select_stmt\", \"simple_select_stmt\",\n\t\t\"compound_select_stmt\", \"table_or_subquery\", \"result_column\", \"join_operator\",\n\t\t\"join_constraint\", \"compound_operator\", \"update_stmt\", \"column_name_list\",\n\t\t\"update_stmt_limited\", \"qualified_table_name\", \"vacuum_stmt\", \"filter_clause\",\n\t\t\"window_defn\", \"over_clause\", \"frame_spec\", \"frame_clause\", \"simple_function_invocation\",\n\t\t\"aggregate_function_invocation\", \"window_function_invocation\", \"common_table_stmt\",\n\t\t\"order_by_stmt\", \"limit_stmt\", \"ordering_term\", \"asc_desc\", \"frame_left\",\n\t\t\"frame_right\", \"frame_single\", \"window_function\", \"of_OF_fset\", \"default_DEFAULT__value\",\n\t\t\"partition_by\", \"order_by_expr\", \"order_by_expr_asc_desc\", \"expr_asc_desc\",\n\t\t\"initial_select\", \"recursive__select\", \"unary_operator\", \"error_message\",\n\t\t\"module_argument\", \"column_alias\", \"keyword\", \"name\", \"function_name\",\n\t\t\"qualified_function_name\", \"schema_name\", \"table_name\", \"table_or_index_name\",\n\t\t\"new_table_name\", \"column_name\", \"collation_name\", \"foreign_table\",\n\t\t\"index_name\", \"trigger_name\", \"view_name\", \"module_name\", \"pragma_name\",\n\t\t\"savepoint_name\", \"table_alias\", \"table_alias_fallback\", \"transaction_name\",\n\t\t\"window_name\", \"alias\", \"filename\", \"base_window_name\", \"simple_func\",\n\t\t\"aggregate_func\", \"table_function_name\", \"any_name\",\n\t}\n\tstaticData.PredictionContextCache = antlr.NewPredictionContextCache()\n\tstaticData.serializedATN = []int32{\n\t\t4, 1, 197, 2176, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4,\n\t\t7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10,\n\t\t7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7,\n\t\t15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20,\n\t\t2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2,\n\t\t26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31,\n\t\t7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7,\n\t\t36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41,\n\t\t2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2,\n\t\t47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52,\n\t\t7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7,\n\t\t57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62,\n\t\t2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2,\n\t\t68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73,\n\t\t7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7,\n\t\t78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83,\n\t\t2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2,\n\t\t89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94,\n\t\t7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7,\n\t\t99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2,\n\t\t104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7,\n\t\t108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2,\n\t\t113, 7, 113, 2, 114, 7, 114, 1, 0, 5, 0, 232, 8, 0, 10, 0, 12, 0, 235,\n\t\t9, 0, 1, 0, 1, 0, 1, 1, 5, 1, 240, 8, 1, 10, 1, 12, 1, 243, 9, 1, 1, 1,\n\t\t1, 1, 4, 1, 247, 8, 1, 11, 1, 12, 1, 248, 1, 1, 5, 1, 252, 8, 1, 10, 1,\n\t\t12, 1, 255, 9, 1, 1, 1, 5, 1, 258, 8, 1, 10, 1, 12, 1, 261, 9, 1, 1, 2,\n\t\t1, 2, 1, 2, 3, 2, 266, 8, 2, 3, 2, 268, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1,\n\t\t2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1,\n\t\t2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 294, 8, 2, 1, 3, 1,\n\t\t3, 1, 3, 1, 3, 1, 3, 3, 3, 301, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3,\n\t\t3, 308, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 314, 8, 3, 1, 3, 1, 3, 3, 3,\n\t\t318, 8, 3, 1, 3, 1, 3, 1, 3, 3, 3, 323, 8, 3, 1, 3, 3, 3, 326, 8, 3, 1,\n\t\t4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 333, 8, 4, 1, 4, 3, 4, 336, 8, 4, 1, 5,\n\t\t1, 5, 3, 5, 340, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 3, 6, 348, 8,\n\t\t6, 1, 6, 1, 6, 3, 6, 352, 8, 6, 3, 6, 354, 8, 6, 1, 7, 1, 7, 3, 7, 358,\n\t\t8, 7, 1, 8, 1, 8, 3, 8, 362, 8, 8, 1, 8, 1, 8, 3, 8, 366, 8, 8, 1, 8, 3,\n\t\t8, 369, 8, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 3, 10, 376, 8, 10, 1, 10,\n\t\t1, 10, 1, 11, 1, 11, 3, 11, 382, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3,\n\t\t11, 388, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 393, 8, 11, 1, 11, 1, 11, 1,\n\t\t11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 402, 8, 11, 10, 11, 12, 11, 405,\n\t\t9, 11, 1, 11, 1, 11, 1, 11, 3, 11, 410, 8, 11, 1, 12, 1, 12, 3, 12, 414,\n\t\t8, 12, 1, 12, 1, 12, 3, 12, 418, 8, 12, 1, 12, 3, 12, 421, 8, 12, 1, 13,\n\t\t1, 13, 1, 13, 3, 13, 426, 8, 13, 1, 14, 1, 14, 3, 14, 430, 8, 14, 1, 14,\n\t\t1, 14, 1, 14, 1, 14, 3, 14, 436, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 441,\n\t\t8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 448, 8, 14, 10, 14, 12,\n\t\t14, 451, 9, 14, 1, 14, 1, 14, 5, 14, 455, 8, 14, 10, 14, 12, 14, 458, 9,\n\t\t14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 464, 8, 14, 10, 14, 12, 14, 467,\n\t\t9, 14, 3, 14, 469, 8, 14, 1, 14, 1, 14, 3, 14, 473, 8, 14, 1, 15, 1, 15,\n\t\t3, 15, 477, 8, 15, 1, 15, 5, 15, 480, 8, 15, 10, 15, 12, 15, 483, 9, 15,\n\t\t1, 16, 4, 16, 486, 8, 16, 11, 16, 12, 16, 487, 1, 16, 1, 16, 1, 16, 1,\n\t\t16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 500, 8, 16, 1, 17,\n\t\t1, 17, 3, 17, 504, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 509, 8, 17, 1, 17,\n\t\t3, 17, 512, 8, 17, 1, 17, 3, 17, 515, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17,\n\t\t520, 8, 17, 1, 17, 3, 17, 523, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17,\n\t\t1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 537, 8, 17, 1,\n\t\t17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 544, 8, 17, 1, 17, 1, 17, 1, 17,\n\t\t1, 17, 1, 17, 3, 17, 551, 8, 17, 3, 17, 553, 8, 17, 1, 18, 3, 18, 556,\n\t\t8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 3, 19, 562, 8, 19, 1, 19, 1, 19, 1,\n\t\t19, 3, 19, 567, 8, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 573, 8, 19, 10,\n\t\t19, 12, 19, 576, 9, 19, 1, 19, 1, 19, 3, 19, 580, 8, 19, 1, 19, 1, 19,\n\t\t1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 593,\n\t\t8, 19, 10, 19, 12, 19, 596, 9, 19, 1, 19, 1, 19, 1, 19, 3, 19, 601, 8,\n\t\t19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 609, 8, 20, 10, 20,\n\t\t12, 20, 612, 9, 20, 1, 20, 1, 20, 3, 20, 616, 8, 20, 1, 20, 1, 20, 1, 20,\n\t\t1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 626, 8, 20, 1, 20, 1, 20, 5,\n\t\t20, 630, 8, 20, 10, 20, 12, 20, 633, 9, 20, 1, 20, 3, 20, 636, 8, 20, 1,\n\t\t20, 1, 20, 1, 20, 3, 20, 641, 8, 20, 3, 20, 643, 8, 20, 1, 21, 1, 21, 1,\n\t\t21, 1, 21, 1, 22, 1, 22, 3, 22, 651, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22,\n\t\t3, 22, 657, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 662, 8, 22, 1, 22, 1, 22,\n\t\t1, 22, 1, 22, 1, 22, 3, 22, 669, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1,\n\t\t22, 1, 22, 1, 22, 5, 22, 678, 8, 22, 10, 22, 12, 22, 681, 9, 22, 3, 22,\n\t\t683, 8, 22, 3, 22, 685, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22,\n\t\t692, 8, 22, 1, 22, 1, 22, 3, 22, 696, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22,\n\t\t1, 22, 3, 22, 703, 8, 22, 1, 22, 1, 22, 4, 22, 707, 8, 22, 11, 22, 12,\n\t\t22, 708, 1, 22, 1, 22, 1, 23, 1, 23, 3, 23, 715, 8, 23, 1, 23, 1, 23, 1,\n\t\t23, 1, 23, 3, 23, 721, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 726, 8, 23, 1,\n\t\t23, 1, 23, 1, 23, 1, 23, 1, 23, 5, 23, 733, 8, 23, 10, 23, 12, 23, 736,\n\t\t9, 23, 1, 23, 1, 23, 3, 23, 740, 8, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1,\n\t\t24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 751, 8, 24, 1, 24, 1, 24, 1, 24,\n\t\t3, 24, 756, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 5,\n\t\t24, 765, 8, 24, 10, 24, 12, 24, 768, 9, 24, 1, 24, 1, 24, 3, 24, 772, 8,\n\t\t24, 1, 25, 1, 25, 3, 25, 776, 8, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25,\n\t\t1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 790, 8, 25, 10,\n\t\t25, 12, 25, 793, 9, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 800,\n\t\t8, 26, 10, 26, 12, 26, 803, 9, 26, 1, 26, 1, 26, 3, 26, 807, 8, 26, 1,\n\t\t27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 815, 8, 27, 1, 27, 1, 27,\n\t\t1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 825, 8, 28, 10, 28, 12,\n\t\t28, 828, 9, 28, 1, 28, 1, 28, 3, 28, 832, 8, 28, 1, 28, 1, 28, 1, 28, 1,\n\t\t28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 843, 8, 29, 1, 29, 3, 29,\n\t\t846, 8, 29, 3, 29, 848, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 854,\n\t\t8, 29, 1, 29, 3, 29, 857, 8, 29, 3, 29, 859, 8, 29, 5, 29, 861, 8, 29,\n\t\t10, 29, 12, 29, 864, 9, 29, 1, 30, 3, 30, 867, 8, 30, 1, 30, 1, 30, 1,\n\t\t30, 1, 30, 1, 30, 3, 30, 874, 8, 30, 1, 30, 3, 30, 877, 8, 30, 1, 31, 3,\n\t\t31, 880, 8, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 887, 8, 31, 1,\n\t\t31, 3, 31, 890, 8, 31, 1, 31, 3, 31, 893, 8, 31, 1, 31, 3, 31, 896, 8,\n\t\t31, 1, 32, 1, 32, 3, 32, 900, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33,\n\t\t1, 33, 3, 33, 908, 8, 33, 1, 33, 1, 33, 1, 33, 3, 33, 913, 8, 33, 1, 33,\n\t\t1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 924, 8,\n\t\t34, 1, 34, 1, 34, 1, 34, 3, 34, 929, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34,\n\t\t1, 34, 1, 34, 1, 34, 3, 34, 938, 8, 34, 1, 34, 1, 34, 1, 34, 5, 34, 943,\n\t\t8, 34, 10, 34, 12, 34, 946, 9, 34, 1, 34, 3, 34, 949, 8, 34, 1, 34, 1,\n\t\t34, 3, 34, 953, 8, 34, 1, 34, 3, 34, 956, 8, 34, 1, 34, 1, 34, 1, 34, 1,\n\t\t34, 5, 34, 962, 8, 34, 10, 34, 12, 34, 965, 9, 34, 1, 34, 1, 34, 1, 34,\n\t\t1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 977, 8, 34, 1,\n\t\t34, 3, 34, 980, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34,\n\t\t988, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 4, 34, 995, 8, 34, 11, 34,\n\t\t12, 34, 996, 1, 34, 1, 34, 3, 34, 1001, 8, 34, 1, 34, 1, 34, 1, 34, 3,\n\t\t34, 1006, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34,\n\t\t1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1,\n\t\t34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1035,\n\t\t8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1042, 8, 34, 1, 34, 1,\n\t\t34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1053, 8, 34,\n\t\t1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1062, 8, 34, 1,\n\t\t34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 5, 34, 1070, 8, 34, 10, 34, 12,\n\t\t34, 1073, 9, 34, 3, 34, 1075, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34,\n\t\t1081, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1087, 8, 34, 1, 34, 1,\n\t\t34, 1, 34, 1, 34, 1, 34, 5, 34, 1094, 8, 34, 10, 34, 12, 34, 1097, 9, 34,\n\t\t3, 34, 1099, 8, 34, 1, 34, 1, 34, 3, 34, 1103, 8, 34, 1, 34, 1, 34, 1,\n\t\t34, 1, 34, 1, 34, 3, 34, 1110, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34,\n\t\t1116, 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1123, 8, 34, 5,\n\t\t34, 1125, 8, 34, 10, 34, 12, 34, 1128, 9, 34, 1, 35, 1, 35, 1, 35, 1, 35,\n\t\t1, 35, 1, 35, 3, 35, 1136, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 3,\n\t\t37, 1143, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1150, 8, 37,\n\t\t1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1156, 8, 37, 1, 37, 1, 37, 1, 37, 3,\n\t\t37, 1161, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1167, 8, 37, 10, 37,\n\t\t12, 37, 1170, 9, 37, 1, 37, 1, 37, 3, 37, 1174, 8, 37, 1, 37, 1, 37, 1,\n\t\t37, 1, 37, 1, 37, 5, 37, 1181, 8, 37, 10, 37, 12, 37, 1184, 9, 37, 1, 37,\n\t\t1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 1192, 8, 37, 10, 37, 12, 37,\n\t\t1195, 9, 37, 1, 37, 1, 37, 5, 37, 1199, 8, 37, 10, 37, 12, 37, 1202, 9,\n\t\t37, 1, 37, 1, 37, 1, 37, 3, 37, 1207, 8, 37, 1, 37, 3, 37, 1210, 8, 37,\n\t\t1, 37, 3, 37, 1213, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 5,\n\t\t38, 1221, 8, 38, 10, 38, 12, 38, 1224, 9, 38, 1, 38, 1, 38, 1, 38, 3, 38,\n\t\t1229, 8, 38, 3, 38, 1231, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1,\n\t\t38, 3, 38, 1239, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1246,\n\t\t8, 38, 1, 38, 1, 38, 1, 38, 5, 38, 1251, 8, 38, 10, 38, 12, 38, 1254, 9,\n\t\t38, 1, 38, 1, 38, 3, 38, 1258, 8, 38, 3, 38, 1260, 8, 38, 1, 39, 1, 39,\n\t\t1, 39, 1, 39, 3, 39, 1266, 8, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1,\n\t\t39, 1, 39, 3, 39, 1275, 8, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1280, 8, 40,\n\t\t1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1287, 8, 41, 1, 41, 1, 41, 3,\n\t\t41, 1291, 8, 41, 3, 41, 1293, 8, 41, 1, 42, 3, 42, 1296, 8, 42, 1, 42,\n\t\t1, 42, 1, 42, 1, 42, 5, 42, 1302, 8, 42, 10, 42, 12, 42, 1305, 9, 42, 1,\n\t\t42, 3, 42, 1308, 8, 42, 1, 42, 3, 42, 1311, 8, 42, 1, 43, 1, 43, 1, 43,\n\t\t1, 43, 1, 43, 5, 43, 1318, 8, 43, 10, 43, 12, 43, 1321, 9, 43, 1, 44, 1,\n\t\t44, 3, 44, 1325, 8, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1330, 8, 44, 10, 44,\n\t\t12, 44, 1333, 9, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1339, 8, 44, 10,\n\t\t44, 12, 44, 1342, 9, 44, 1, 44, 3, 44, 1345, 8, 44, 3, 44, 1347, 8, 44,\n\t\t1, 44, 1, 44, 3, 44, 1351, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5,\n\t\t44, 1358, 8, 44, 10, 44, 12, 44, 1361, 9, 44, 1, 44, 1, 44, 3, 44, 1365,\n\t\t8, 44, 3, 44, 1367, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1,\n\t\t44, 1, 44, 1, 44, 5, 44, 1378, 8, 44, 10, 44, 12, 44, 1381, 9, 44, 3, 44,\n\t\t1383, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44, 1390, 8, 44, 10,\n\t\t44, 12, 44, 1393, 9, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 5, 44,\n\t\t1401, 8, 44, 10, 44, 12, 44, 1404, 9, 44, 1, 44, 1, 44, 5, 44, 1408, 8,\n\t\t44, 10, 44, 12, 44, 1411, 9, 44, 3, 44, 1413, 8, 44, 1, 45, 1, 45, 1, 46,\n\t\t3, 46, 1418, 8, 46, 1, 46, 1, 46, 3, 46, 1422, 8, 46, 1, 46, 3, 46, 1425,\n\t\t8, 46, 1, 47, 3, 47, 1428, 8, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1433, 8,\n\t\t47, 1, 47, 1, 47, 3, 47, 1437, 8, 47, 1, 47, 4, 47, 1440, 8, 47, 11, 47,\n\t\t12, 47, 1441, 1, 47, 3, 47, 1445, 8, 47, 1, 47, 3, 47, 1448, 8, 47, 1,\n\t\t48, 1, 48, 1, 48, 3, 48, 1453, 8, 48, 1, 48, 1, 48, 3, 48, 1457, 8, 48,\n\t\t1, 48, 3, 48, 1460, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1467,\n\t\t8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1472, 8, 48, 1, 48, 1, 48, 1, 48, 1,\n\t\t48, 1, 48, 5, 48, 1479, 8, 48, 10, 48, 12, 48, 1482, 9, 48, 1, 48, 1, 48,\n\t\t3, 48, 1486, 8, 48, 1, 48, 3, 48, 1489, 8, 48, 1, 48, 1, 48, 1, 48, 1,\n\t\t48, 5, 48, 1495, 8, 48, 10, 48, 12, 48, 1498, 9, 48, 1, 48, 3, 48, 1501,\n\t\t8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1509, 8, 48, 1,\n\t\t48, 3, 48, 1512, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1517, 8, 48, 1, 48,\n\t\t1, 48, 3, 48, 1521, 8, 48, 1, 48, 3, 48, 1524, 8, 48, 1, 48, 1, 48, 1,\n\t\t48, 1, 48, 1, 48, 3, 48, 1531, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1536,\n\t\t8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1543, 8, 48, 10, 48, 12,\n\t\t48, 1546, 9, 48, 1, 48, 1, 48, 3, 48, 1550, 8, 48, 1, 48, 3, 48, 1553,\n\t\t8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1559, 8, 48, 10, 48, 12, 48,\n\t\t1562, 9, 48, 1, 48, 3, 48, 1565, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1,\n\t\t48, 1, 48, 3, 48, 1573, 8, 48, 1, 48, 3, 48, 1576, 8, 48, 3, 48, 1578,\n\t\t8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1587, 8,\n\t\t49, 1, 49, 3, 49, 1590, 8, 49, 3, 49, 1592, 8, 49, 1, 50, 1, 50, 3, 50,\n\t\t1596, 8, 50, 1, 50, 1, 50, 3, 50, 1600, 8, 50, 1, 50, 3, 50, 1603, 8, 50,\n\t\t1, 50, 1, 50, 1, 50, 3, 50, 1608, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1,\n\t\t51, 1, 51, 1, 51, 5, 51, 1617, 8, 51, 10, 51, 12, 51, 1620, 9, 51, 1, 51,\n\t\t1, 51, 3, 51, 1624, 8, 51, 1, 52, 1, 52, 3, 52, 1628, 8, 52, 1, 52, 1,\n\t\t52, 3, 52, 1632, 8, 52, 1, 53, 3, 53, 1635, 8, 53, 1, 53, 1, 53, 1, 53,\n\t\t3, 53, 1640, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1646, 8, 53, 1,\n\t\t53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1653, 8, 53, 1, 53, 1, 53, 1, 53,\n\t\t5, 53, 1658, 8, 53, 10, 53, 12, 53, 1661, 9, 53, 1, 53, 1, 53, 3, 53, 1665,\n\t\t8, 53, 1, 53, 3, 53, 1668, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1674,\n\t\t8, 54, 10, 54, 12, 54, 1677, 9, 54, 1, 54, 1, 54, 1, 55, 3, 55, 1682, 8,\n\t\t55, 1, 55, 1, 55, 1, 55, 3, 55, 1687, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55,\n\t\t3, 55, 1693, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 1700, 8,\n\t\t55, 1, 55, 1, 55, 1, 55, 5, 55, 1705, 8, 55, 10, 55, 12, 55, 1708, 9, 55,\n\t\t1, 55, 1, 55, 3, 55, 1712, 8, 55, 1, 55, 3, 55, 1715, 8, 55, 1, 55, 3,\n\t\t55, 1718, 8, 55, 1, 56, 1, 56, 1, 56, 3, 56, 1723, 8, 56, 1, 56, 1, 56,\n\t\t1, 56, 3, 56, 1728, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1735,\n\t\t8, 56, 1, 57, 1, 57, 3, 57, 1739, 8, 57, 1, 57, 1, 57, 3, 57, 1743, 8,\n\t\t57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 3, 59, 1753,\n\t\t8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1760, 8, 59, 10, 59, 12,\n\t\t59, 1763, 9, 59, 3, 59, 1765, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59,\n\t\t5, 59, 1772, 8, 59, 10, 59, 12, 59, 1775, 9, 59, 1, 59, 3, 59, 1778, 8,\n\t\t59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1786, 8, 60, 1, 60,\n\t\t1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1793, 8, 60, 10, 60, 12, 60, 1796, 9,\n\t\t60, 3, 60, 1798, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 5, 60, 1805,\n\t\t8, 60, 10, 60, 12, 60, 1808, 9, 60, 3, 60, 1810, 8, 60, 1, 60, 3, 60, 1813,\n\t\t8, 60, 1, 60, 3, 60, 1816, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1,\n\t\t61, 1, 61, 1, 61, 3, 61, 1826, 8, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62,\n\t\t1, 62, 1, 62, 3, 62, 1835, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 5,\n\t\t63, 1842, 8, 63, 10, 63, 12, 63, 1845, 9, 63, 1, 63, 3, 63, 1848, 8, 63,\n\t\t1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 3, 64, 1855, 8, 64, 1, 64, 1, 64, 1,\n\t\t64, 5, 64, 1860, 8, 64, 10, 64, 12, 64, 1863, 9, 64, 1, 64, 3, 64, 1866,\n\t\t8, 64, 1, 64, 1, 64, 3, 64, 1870, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1,\n\t\t65, 5, 65, 1877, 8, 65, 10, 65, 12, 65, 1880, 9, 65, 1, 65, 3, 65, 1883,\n\t\t8, 65, 1, 65, 1, 65, 3, 65, 1887, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1892,\n\t\t8, 65, 1, 66, 1, 66, 3, 66, 1896, 8, 66, 1, 66, 1, 66, 1, 66, 5, 66, 1901,\n\t\t8, 66, 10, 66, 12, 66, 1904, 9, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67,\n\t\t5, 67, 1911, 8, 67, 10, 67, 12, 67, 1914, 9, 67, 1, 68, 1, 68, 1, 68, 1,\n\t\t68, 3, 68, 1920, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1925, 8, 69, 1, 69,\n\t\t3, 69, 1928, 8, 69, 1, 69, 1, 69, 3, 69, 1932, 8, 69, 1, 70, 1, 70, 1,\n\t\t71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71,\n\t\t1946, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1,\n\t\t72, 1, 72, 3, 72, 1958, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73,\n\t\t1, 73, 3, 73, 1967, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1,\n\t\t74, 3, 74, 1976, 8, 74, 1, 74, 1, 74, 3, 74, 1980, 8, 74, 1, 74, 1, 74,\n\t\t1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1990, 8, 74, 1, 74, 3,\n\t\t74, 1993, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74,\n\t\t2002, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2011,\n\t\t8, 74, 1, 74, 3, 74, 2014, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2020,\n\t\t8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1,\n\t\t74, 1, 74, 1, 74, 3, 74, 2034, 8, 74, 1, 74, 1, 74, 3, 74, 2038, 8, 74,\n\t\t1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2049,\n\t\t8, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2054, 8, 74, 1, 75, 1, 75, 1, 75, 1,\n\t\t76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 4, 77, 2065, 8, 77, 11, 77, 12,\n\t\t77, 2066, 1, 78, 1, 78, 1, 78, 4, 78, 2072, 8, 78, 11, 78, 12, 78, 2073,\n\t\t1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 3, 80, 2082, 8, 80, 1, 80, 1,\n\t\t80, 1, 80, 3, 80, 2087, 8, 80, 5, 80, 2089, 8, 80, 10, 80, 12, 80, 2092,\n\t\t9, 80, 1, 81, 1, 81, 1, 82, 1, 82, 1, 83, 1, 83, 1, 84, 1, 84, 1, 85, 1,\n\t\t85, 3, 85, 2104, 8, 85, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89,\n\t\t1, 89, 1, 90, 1, 90, 1, 90, 3, 90, 2117, 8, 90, 1, 90, 1, 90, 1, 91, 1,\n\t\t91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 1, 94, 1, 95, 1, 95, 1, 96, 1, 96,\n\t\t1, 97, 1, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 100, 1, 100, 1, 101, 1, 101,\n\t\t1, 102, 1, 102, 1, 103, 1, 103, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106,\n\t\t1, 106, 1, 107, 1, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110,\n\t\t1, 111, 1, 111, 1, 112, 1, 112, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114,\n\t\t1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2174, 8, 114, 1, 114, 2, 449, 487,\n\t\t1, 68, 115, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30,\n\t\t32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66,\n\t\t68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102,\n\t\t104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132,\n\t\t134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162,\n\t\t164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192,\n\t\t194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222,\n\t\t224, 226, 228, 0, 30, 3, 0, 60, 60, 71, 71, 84, 84, 2, 0, 49, 49, 68, 68,\n\t\t1, 0, 136, 137, 2, 0, 149, 149, 174, 174, 2, 0, 8, 8, 11, 11, 2, 0, 61,\n\t\t61, 144, 144, 2, 0, 58, 58, 106, 106, 2, 0, 60, 60, 84, 84, 5, 0, 27, 27,\n\t\t74, 74, 83, 83, 124, 124, 128, 128, 4, 0, 86, 86, 135, 135, 141, 141, 148,\n\t\t148, 1, 0, 9, 10, 2, 0, 7, 7, 14, 15, 1, 0, 16, 19, 1, 0, 20, 23, 4, 0,\n\t\t79, 79, 99, 99, 101, 101, 120, 120, 3, 0, 27, 27, 74, 74, 128, 128, 5,\n\t\t0, 54, 56, 106, 106, 175, 176, 189, 189, 192, 193, 2, 0, 31, 31, 64, 64,\n\t\t3, 0, 78, 78, 98, 98, 127, 127, 3, 0, 130, 130, 157, 157, 182, 182, 2,\n\t\t0, 5, 5, 108, 108, 1, 0, 179, 180, 2, 0, 36, 36, 62, 62, 2, 0, 154, 154,\n\t\t165, 165, 2, 0, 162, 162, 169, 169, 2, 0, 163, 163, 170, 171, 2, 0, 164,\n\t\t164, 166, 166, 3, 0, 8, 8, 11, 12, 104, 104, 2, 0, 188, 188, 192, 192,\n\t\t1, 0, 27, 183, 2482, 0, 233, 1, 0, 0, 0, 2, 241, 1, 0, 0, 0, 4, 267, 1,\n\t\t0, 0, 0, 6, 295, 1, 0, 0, 0, 8, 327, 1, 0, 0, 0, 10, 337, 1, 0, 0, 0, 12,\n\t\t345, 1, 0, 0, 0, 14, 355, 1, 0, 0, 0, 16, 359, 1, 0, 0, 0, 18, 370, 1,\n\t\t0, 0, 0, 20, 373, 1, 0, 0, 0, 22, 379, 1, 0, 0, 0, 24, 413, 1, 0, 0, 0,\n\t\t26, 425, 1, 0, 0, 0, 28, 427, 1, 0, 0, 0, 30, 474, 1, 0, 0, 0, 32, 485,\n\t\t1, 0, 0, 0, 34, 503, 1, 0, 0, 0, 36, 555, 1, 0, 0, 0, 38, 561, 1, 0, 0,\n\t\t0, 40, 602, 1, 0, 0, 0, 42, 644, 1, 0, 0, 0, 44, 648, 1, 0, 0, 0, 46, 712,\n\t\t1, 0, 0, 0, 48, 744, 1, 0, 0, 0, 50, 773, 1, 0, 0, 0, 52, 794, 1, 0, 0,\n\t\t0, 54, 808, 1, 0, 0, 0, 56, 819, 1, 0, 0, 0, 58, 838, 1, 0, 0, 0, 60, 866,\n\t\t1, 0, 0, 0, 62, 879, 1, 0, 0, 0, 64, 897, 1, 0, 0, 0, 66, 903, 1, 0, 0,\n\t\t0, 68, 1005, 1, 0, 0, 0, 70, 1129, 1, 0, 0, 0, 72, 1139, 1, 0, 0, 0, 74,\n\t\t1142, 1, 0, 0, 0, 76, 1214, 1, 0, 0, 0, 78, 1261, 1, 0, 0, 0, 80, 1279,\n\t\t1, 0, 0, 0, 82, 1281, 1, 0, 0, 0, 84, 1295, 1, 0, 0, 0, 86, 1312, 1, 0,\n\t\t0, 0, 88, 1412, 1, 0, 0, 0, 90, 1414, 1, 0, 0, 0, 92, 1417, 1, 0, 0, 0,\n\t\t94, 1427, 1, 0, 0, 0, 96, 1577, 1, 0, 0, 0, 98, 1591, 1, 0, 0, 0, 100,\n\t\t1607, 1, 0, 0, 0, 102, 1623, 1, 0, 0, 0, 104, 1631, 1, 0, 0, 0, 106, 1634,\n\t\t1, 0, 0, 0, 108, 1669, 1, 0, 0, 0, 110, 1681, 1, 0, 0, 0, 112, 1722, 1,\n\t\t0, 0, 0, 114, 1736, 1, 0, 0, 0, 116, 1744, 1, 0, 0, 0, 118, 1750, 1, 0,\n\t\t0, 0, 120, 1781, 1, 0, 0, 0, 122, 1817, 1, 0, 0, 0, 124, 1827, 1, 0, 0,\n\t\t0, 126, 1836, 1, 0, 0, 0, 128, 1851, 1, 0, 0, 0, 130, 1871, 1, 0, 0, 0,\n\t\t132, 1893, 1, 0, 0, 0, 134, 1905, 1, 0, 0, 0, 136, 1915, 1, 0, 0, 0, 138,\n\t\t1921, 1, 0, 0, 0, 140, 1933, 1, 0, 0, 0, 142, 1945, 1, 0, 0, 0, 144, 1957,\n\t\t1, 0, 0, 0, 146, 1966, 1, 0, 0, 0, 148, 2053, 1, 0, 0, 0, 150, 2055, 1,\n\t\t0, 0, 0, 152, 2058, 1, 0, 0, 0, 154, 2061, 1, 0, 0, 0, 156, 2068, 1, 0,\n\t\t0, 0, 158, 2075, 1, 0, 0, 0, 160, 2079, 1, 0, 0, 0, 162, 2093, 1, 0, 0,\n\t\t0, 164, 2095, 1, 0, 0, 0, 166, 2097, 1, 0, 0, 0, 168, 2099, 1, 0, 0, 0,\n\t\t170, 2103, 1, 0, 0, 0, 172, 2105, 1, 0, 0, 0, 174, 2107, 1, 0, 0, 0, 176,\n\t\t2109, 1, 0, 0, 0, 178, 2111, 1, 0, 0, 0, 180, 2116, 1, 0, 0, 0, 182, 2120,\n\t\t1, 0, 0, 0, 184, 2122, 1, 0, 0, 0, 186, 2124, 1, 0, 0, 0, 188, 2126, 1,\n\t\t0, 0, 0, 190, 2128, 1, 0, 0, 0, 192, 2130, 1, 0, 0, 0, 194, 2132, 1, 0,\n\t\t0, 0, 196, 2134, 1, 0, 0, 0, 198, 2136, 1, 0, 0, 0, 200, 2138, 1, 0, 0,\n\t\t0, 202, 2140, 1, 0, 0, 0, 204, 2142, 1, 0, 0, 0, 206, 2144, 1, 0, 0, 0,\n\t\t208, 2146, 1, 0, 0, 0, 210, 2148, 1, 0, 0, 0, 212, 2150, 1, 0, 0, 0, 214,\n\t\t2152, 1, 0, 0, 0, 216, 2154, 1, 0, 0, 0, 218, 2156, 1, 0, 0, 0, 220, 2158,\n\t\t1, 0, 0, 0, 222, 2160, 1, 0, 0, 0, 224, 2162, 1, 0, 0, 0, 226, 2164, 1,\n\t\t0, 0, 0, 228, 2173, 1, 0, 0, 0, 230, 232, 3, 2, 1, 0, 231, 230, 1, 0, 0,\n\t\t0, 232, 235, 1, 0, 0, 0, 233, 231, 1, 0, 0, 0, 233, 234, 1, 0, 0, 0, 234,\n\t\t236, 1, 0, 0, 0, 235, 233, 1, 0, 0, 0, 236, 237, 5, 0, 0, 1, 237, 1, 1,\n\t\t0, 0, 0, 238, 240, 5, 1, 0, 0, 239, 238, 1, 0, 0, 0, 240, 243, 1, 0, 0,\n\t\t0, 241, 239, 1, 0, 0, 0, 241, 242, 1, 0, 0, 0, 242, 244, 1, 0, 0, 0, 243,\n\t\t241, 1, 0, 0, 0, 244, 253, 3, 4, 2, 0, 245, 247, 5, 1, 0, 0, 246, 245,\n\t\t1, 0, 0, 0, 247, 248, 1, 0, 0, 0, 248, 246, 1, 0, 0, 0, 248, 249, 1, 0,\n\t\t0, 0, 249, 250, 1, 0, 0, 0, 250, 252, 3, 4, 2, 0, 251, 246, 1, 0, 0, 0,\n\t\t252, 255, 1, 0, 0, 0, 253, 251, 1, 0, 0, 0, 253, 254, 1, 0, 0, 0, 254,\n\t\t259, 1, 0, 0, 0, 255, 253, 1, 0, 0, 0, 256, 258, 5, 1, 0, 0, 257, 256,\n\t\t1, 0, 0, 0, 258, 261, 1, 0, 0, 0, 259, 257, 1, 0, 0, 0, 259, 260, 1, 0,\n\t\t0, 0, 260, 3, 1, 0, 0, 0, 261, 259, 1, 0, 0, 0, 262, 265, 5, 73, 0, 0,\n\t\t263, 264, 5, 116, 0, 0, 264, 266, 5, 113, 0, 0, 265, 263, 1, 0, 0, 0, 265,\n\t\t266, 1, 0, 0, 0, 266, 268, 1, 0, 0, 0, 267, 262, 1, 0, 0, 0, 267, 268,\n\t\t1, 0, 0, 0, 268, 293, 1, 0, 0, 0, 269, 294, 3, 6, 3, 0, 270, 294, 3, 8,\n\t\t4, 0, 271, 294, 3, 10, 5, 0, 272, 294, 3, 12, 6, 0, 273, 294, 3, 14, 7,\n\t\t0, 274, 294, 3, 22, 11, 0, 275, 294, 3, 28, 14, 0, 276, 294, 3, 44, 22,\n\t\t0, 277, 294, 3, 46, 23, 0, 278, 294, 3, 48, 24, 0, 279, 294, 3, 60, 30,\n\t\t0, 280, 294, 3, 62, 31, 0, 281, 294, 3, 64, 32, 0, 282, 294, 3, 66, 33,\n\t\t0, 283, 294, 3, 74, 37, 0, 284, 294, 3, 78, 39, 0, 285, 294, 3, 82, 41,\n\t\t0, 286, 294, 3, 20, 10, 0, 287, 294, 3, 16, 8, 0, 288, 294, 3, 18, 9, 0,\n\t\t289, 294, 3, 84, 42, 0, 290, 294, 3, 106, 53, 0, 291, 294, 3, 110, 55,\n\t\t0, 292, 294, 3, 114, 57, 0, 293, 269, 1, 0, 0, 0, 293, 270, 1, 0, 0, 0,\n\t\t293, 271, 1, 0, 0, 0, 293, 272, 1, 0, 0, 0, 293, 273, 1, 0, 0, 0, 293,\n\t\t274, 1, 0, 0, 0, 293, 275, 1, 0, 0, 0, 293, 276, 1, 0, 0, 0, 293, 277,\n\t\t1, 0, 0, 0, 293, 278, 1, 0, 0, 0, 293, 279, 1, 0, 0, 0, 293, 280, 1, 0,\n\t\t0, 0, 293, 281, 1, 0, 0, 0, 293, 282, 1, 0, 0, 0, 293, 283, 1, 0, 0, 0,\n\t\t293, 284, 1, 0, 0, 0, 293, 285, 1, 0, 0, 0, 293, 286, 1, 0, 0, 0, 293,\n\t\t287, 1, 0, 0, 0, 293, 288, 1, 0, 0, 0, 293, 289, 1, 0, 0, 0, 293, 290,\n\t\t1, 0, 0, 0, 293, 291, 1, 0, 0, 0, 293, 292, 1, 0, 0, 0, 294, 5, 1, 0, 0,\n\t\t0, 295, 296, 5, 32, 0, 0, 296, 300, 5, 135, 0, 0, 297, 298, 3, 182, 91,\n\t\t0, 298, 299, 5, 2, 0, 0, 299, 301, 1, 0, 0, 0, 300, 297, 1, 0, 0, 0, 300,\n\t\t301, 1, 0, 0, 0, 301, 302, 1, 0, 0, 0, 302, 325, 3, 184, 92, 0, 303, 313,\n\t\t5, 123, 0, 0, 304, 305, 5, 139, 0, 0, 305, 314, 3, 188, 94, 0, 306, 308,\n\t\t5, 48, 0, 0, 307, 306, 1, 0, 0, 0, 307, 308, 1, 0, 0, 0, 308, 309, 1, 0,\n\t\t0, 0, 309, 310, 3, 190, 95, 0, 310, 311, 5, 139, 0, 0, 311, 312, 3, 190,\n\t\t95, 0, 312, 314, 1, 0, 0, 0, 313, 304, 1, 0, 0, 0, 313, 307, 1, 0, 0, 0,\n\t\t314, 326, 1, 0, 0, 0, 315, 317, 5, 29, 0, 0, 316, 318, 5, 48, 0, 0, 317,\n\t\t316, 1, 0, 0, 0, 317, 318, 1, 0, 0, 0, 318, 319, 1, 0, 0, 0, 319, 326,\n\t\t3, 30, 15, 0, 320, 322, 5, 65, 0, 0, 321, 323, 5, 48, 0, 0, 322, 321, 1,\n\t\t0, 0, 0, 322, 323, 1, 0, 0, 0, 323, 324, 1, 0, 0, 0, 324, 326, 3, 190,\n\t\t95, 0, 325, 303, 1, 0, 0, 0, 325, 315, 1, 0, 0, 0, 325, 320, 1, 0, 0, 0,\n\t\t326, 7, 1, 0, 0, 0, 327, 335, 5, 33, 0, 0, 328, 336, 3, 182, 91, 0, 329,\n\t\t330, 3, 182, 91, 0, 330, 331, 5, 2, 0, 0, 331, 333, 1, 0, 0, 0, 332, 329,\n\t\t1, 0, 0, 0, 332, 333, 1, 0, 0, 0, 333, 334, 1, 0, 0, 0, 334, 336, 3, 186,\n\t\t93, 0, 335, 328, 1, 0, 0, 0, 335, 332, 1, 0, 0, 0, 335, 336, 1, 0, 0, 0,\n\t\t336, 9, 1, 0, 0, 0, 337, 339, 5, 37, 0, 0, 338, 340, 5, 57, 0, 0, 339,\n\t\t338, 1, 0, 0, 0, 339, 340, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 342,\n\t\t3, 68, 34, 0, 342, 343, 5, 35, 0, 0, 343, 344, 3, 182, 91, 0, 344, 11,\n\t\t1, 0, 0, 0, 345, 347, 5, 40, 0, 0, 346, 348, 7, 0, 0, 0, 347, 346, 1, 0,\n\t\t0, 0, 347, 348, 1, 0, 0, 0, 348, 353, 1, 0, 0, 0, 349, 351, 5, 140, 0,\n\t\t0, 350, 352, 3, 212, 106, 0, 351, 350, 1, 0, 0, 0, 351, 352, 1, 0, 0, 0,\n\t\t352, 354, 1, 0, 0, 0, 353, 349, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354,\n\t\t13, 1, 0, 0, 0, 355, 357, 7, 1, 0, 0, 356, 358, 5, 140, 0, 0, 357, 356,\n\t\t1, 0, 0, 0, 357, 358, 1, 0, 0, 0, 358, 15, 1, 0, 0, 0, 359, 361, 5, 128,\n\t\t0, 0, 360, 362, 5, 140, 0, 0, 361, 360, 1, 0, 0, 0, 361, 362, 1, 0, 0,\n\t\t0, 362, 368, 1, 0, 0, 0, 363, 365, 5, 139, 0, 0, 364, 366, 5, 131, 0, 0,\n\t\t365, 364, 1, 0, 0, 0, 365, 366, 1, 0, 0, 0, 366, 367, 1, 0, 0, 0, 367,\n\t\t369, 3, 206, 103, 0, 368, 363, 1, 0, 0, 0, 368, 369, 1, 0, 0, 0, 369, 17,\n\t\t1, 0, 0, 0, 370, 371, 5, 131, 0, 0, 371, 372, 3, 206, 103, 0, 372, 19,\n\t\t1, 0, 0, 0, 373, 375, 5, 122, 0, 0, 374, 376, 5, 131, 0, 0, 375, 374, 1,\n\t\t0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 378, 3, 206,\n\t\t103, 0, 378, 21, 1, 0, 0, 0, 379, 381, 5, 52, 0, 0, 380, 382, 5, 143, 0,\n\t\t0, 381, 380, 1, 0, 0, 0, 381, 382, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383,\n\t\t387, 5, 86, 0, 0, 384, 385, 5, 82, 0, 0, 385, 386, 5, 104, 0, 0, 386, 388,\n\t\t5, 72, 0, 0, 387, 384, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 392, 1, 0,\n\t\t0, 0, 389, 390, 3, 182, 91, 0, 390, 391, 5, 2, 0, 0, 391, 393, 1, 0, 0,\n\t\t0, 392, 389, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 394, 1, 0, 0, 0, 394,\n\t\t395, 3, 196, 98, 0, 395, 396, 5, 109, 0, 0, 396, 397, 3, 184, 92, 0, 397,\n\t\t398, 5, 3, 0, 0, 398, 403, 3, 24, 12, 0, 399, 400, 5, 5, 0, 0, 400, 402,\n\t\t3, 24, 12, 0, 401, 399, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 401, 1,\n\t\t0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 406, 1, 0, 0, 0, 405, 403, 1, 0, 0,\n\t\t0, 406, 409, 5, 4, 0, 0, 407, 408, 5, 151, 0, 0, 408, 410, 3, 68, 34, 0,\n\t\t409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 23, 1, 0, 0, 0, 411, 414,\n\t\t3, 190, 95, 0, 412, 414, 3, 68, 34, 0, 413, 411, 1, 0, 0, 0, 413, 412,\n\t\t1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 416, 5, 47, 0, 0, 416, 418, 3, 192,\n\t\t96, 0, 417, 415, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 420, 1, 0, 0, 0,\n\t\t419, 421, 3, 140, 70, 0, 420, 419, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421,\n\t\t25, 1, 0, 0, 0, 422, 423, 5, 153, 0, 0, 423, 426, 5, 188, 0, 0, 424, 426,\n\t\t5, 134, 0, 0, 425, 422, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 27, 1, 0,\n\t\t0, 0, 427, 429, 5, 52, 0, 0, 428, 430, 7, 2, 0, 0, 429, 428, 1, 0, 0, 0,\n\t\t429, 430, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 435, 5, 135, 0, 0, 432,\n\t\t433, 5, 82, 0, 0, 433, 434, 5, 104, 0, 0, 434, 436, 5, 72, 0, 0, 435, 432,\n\t\t1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 440, 1, 0, 0, 0, 437, 438, 3, 182,\n\t\t91, 0, 438, 439, 5, 2, 0, 0, 439, 441, 1, 0, 0, 0, 440, 437, 1, 0, 0, 0,\n\t\t440, 441, 1, 0, 0, 0, 441, 442, 1, 0, 0, 0, 442, 472, 3, 184, 92, 0, 443,\n\t\t444, 5, 3, 0, 0, 444, 449, 3, 30, 15, 0, 445, 446, 5, 5, 0, 0, 446, 448,\n\t\t3, 30, 15, 0, 447, 445, 1, 0, 0, 0, 448, 451, 1, 0, 0, 0, 449, 450, 1,\n\t\t0, 0, 0, 449, 447, 1, 0, 0, 0, 450, 456, 1, 0, 0, 0, 451, 449, 1, 0, 0,\n\t\t0, 452, 453, 5, 5, 0, 0, 453, 455, 3, 38, 19, 0, 454, 452, 1, 0, 0, 0,\n\t\t455, 458, 1, 0, 0, 0, 456, 454, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457,\n\t\t459, 1, 0, 0, 0, 458, 456, 1, 0, 0, 0, 459, 468, 5, 4, 0, 0, 460, 465,\n\t\t3, 26, 13, 0, 461, 462, 5, 5, 0, 0, 462, 464, 3, 26, 13, 0, 463, 461, 1,\n\t\t0, 0, 0, 464, 467, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 465, 466, 1, 0, 0,\n\t\t0, 466, 469, 1, 0, 0, 0, 467, 465, 1, 0, 0, 0, 468, 460, 1, 0, 0, 0, 468,\n\t\t469, 1, 0, 0, 0, 469, 473, 1, 0, 0, 0, 470, 471, 5, 35, 0, 0, 471, 473,\n\t\t3, 84, 42, 0, 472, 443, 1, 0, 0, 0, 472, 470, 1, 0, 0, 0, 473, 29, 1, 0,\n\t\t0, 0, 474, 476, 3, 190, 95, 0, 475, 477, 3, 32, 16, 0, 476, 475, 1, 0,\n\t\t0, 0, 476, 477, 1, 0, 0, 0, 477, 481, 1, 0, 0, 0, 478, 480, 3, 34, 17,\n\t\t0, 479, 478, 1, 0, 0, 0, 480, 483, 1, 0, 0, 0, 481, 479, 1, 0, 0, 0, 481,\n\t\t482, 1, 0, 0, 0, 482, 31, 1, 0, 0, 0, 483, 481, 1, 0, 0, 0, 484, 486, 3,\n\t\t176, 88, 0, 485, 484, 1, 0, 0, 0, 486, 487, 1, 0, 0, 0, 487, 488, 1, 0,\n\t\t0, 0, 487, 485, 1, 0, 0, 0, 488, 499, 1, 0, 0, 0, 489, 490, 5, 3, 0, 0,\n\t\t490, 491, 3, 36, 18, 0, 491, 492, 5, 4, 0, 0, 492, 500, 1, 0, 0, 0, 493,\n\t\t494, 5, 3, 0, 0, 494, 495, 3, 36, 18, 0, 495, 496, 5, 5, 0, 0, 496, 497,\n\t\t3, 36, 18, 0, 497, 498, 5, 4, 0, 0, 498, 500, 1, 0, 0, 0, 499, 489, 1,\n\t\t0, 0, 0, 499, 493, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 33, 1, 0, 0,\n\t\t0, 501, 502, 5, 51, 0, 0, 502, 504, 3, 176, 88, 0, 503, 501, 1, 0, 0, 0,\n\t\t503, 504, 1, 0, 0, 0, 504, 552, 1, 0, 0, 0, 505, 506, 5, 115, 0, 0, 506,\n\t\t508, 5, 97, 0, 0, 507, 509, 3, 140, 70, 0, 508, 507, 1, 0, 0, 0, 508, 509,\n\t\t1, 0, 0, 0, 509, 511, 1, 0, 0, 0, 510, 512, 3, 42, 21, 0, 511, 510, 1,\n\t\t0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 514, 1, 0, 0, 0, 513, 515, 5, 38, 0,\n\t\t0, 514, 513, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 553, 1, 0, 0, 0, 516,\n\t\t517, 5, 104, 0, 0, 517, 520, 5, 106, 0, 0, 518, 520, 5, 143, 0, 0, 519,\n\t\t516, 1, 0, 0, 0, 519, 518, 1, 0, 0, 0, 520, 522, 1, 0, 0, 0, 521, 523,\n\t\t3, 42, 21, 0, 522, 521, 1, 0, 0, 0, 522, 523, 1, 0, 0, 0, 523, 553, 1,\n\t\t0, 0, 0, 524, 525, 5, 46, 0, 0, 525, 526, 5, 3, 0, 0, 526, 527, 3, 68,\n\t\t34, 0, 527, 528, 5, 4, 0, 0, 528, 553, 1, 0, 0, 0, 529, 536, 5, 58, 0,\n\t\t0, 530, 537, 3, 36, 18, 0, 531, 537, 3, 72, 36, 0, 532, 533, 5, 3, 0, 0,\n\t\t533, 534, 3, 68, 34, 0, 534, 535, 5, 4, 0, 0, 535, 537, 1, 0, 0, 0, 536,\n\t\t530, 1, 0, 0, 0, 536, 531, 1, 0, 0, 0, 536, 532, 1, 0, 0, 0, 537, 553,\n\t\t1, 0, 0, 0, 538, 539, 5, 47, 0, 0, 539, 553, 3, 192, 96, 0, 540, 553, 3,\n\t\t40, 20, 0, 541, 542, 5, 172, 0, 0, 542, 544, 5, 173, 0, 0, 543, 541, 1,\n\t\t0, 0, 0, 543, 544, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 546, 5, 35, 0,\n\t\t0, 546, 547, 5, 3, 0, 0, 547, 548, 3, 68, 34, 0, 548, 550, 5, 4, 0, 0,\n\t\t549, 551, 7, 3, 0, 0, 550, 549, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551,\n\t\t553, 1, 0, 0, 0, 552, 505, 1, 0, 0, 0, 552, 519, 1, 0, 0, 0, 552, 524,\n\t\t1, 0, 0, 0, 552, 529, 1, 0, 0, 0, 552, 538, 1, 0, 0, 0, 552, 540, 1, 0,\n\t\t0, 0, 552, 543, 1, 0, 0, 0, 553, 35, 1, 0, 0, 0, 554, 556, 7, 4, 0, 0,\n\t\t555, 554, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557,\n\t\t558, 5, 189, 0, 0, 558, 37, 1, 0, 0, 0, 559, 560, 5, 51, 0, 0, 560, 562,\n\t\t3, 176, 88, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 600, 1,\n\t\t0, 0, 0, 563, 564, 5, 115, 0, 0, 564, 567, 5, 97, 0, 0, 565, 567, 5, 143,\n\t\t0, 0, 566, 563, 1, 0, 0, 0, 566, 565, 1, 0, 0, 0, 567, 568, 1, 0, 0, 0,\n\t\t568, 569, 5, 3, 0, 0, 569, 574, 3, 24, 12, 0, 570, 571, 5, 5, 0, 0, 571,\n\t\t573, 3, 24, 12, 0, 572, 570, 1, 0, 0, 0, 573, 576, 1, 0, 0, 0, 574, 572,\n\t\t1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 577, 1, 0, 0, 0, 576, 574, 1, 0,\n\t\t0, 0, 577, 579, 5, 4, 0, 0, 578, 580, 3, 42, 21, 0, 579, 578, 1, 0, 0,\n\t\t0, 579, 580, 1, 0, 0, 0, 580, 601, 1, 0, 0, 0, 581, 582, 5, 46, 0, 0, 582,\n\t\t583, 5, 3, 0, 0, 583, 584, 3, 68, 34, 0, 584, 585, 5, 4, 0, 0, 585, 601,\n\t\t1, 0, 0, 0, 586, 587, 5, 76, 0, 0, 587, 588, 5, 97, 0, 0, 588, 589, 5,\n\t\t3, 0, 0, 589, 594, 3, 190, 95, 0, 590, 591, 5, 5, 0, 0, 591, 593, 3, 190,\n\t\t95, 0, 592, 590, 1, 0, 0, 0, 593, 596, 1, 0, 0, 0, 594, 592, 1, 0, 0, 0,\n\t\t594, 595, 1, 0, 0, 0, 595, 597, 1, 0, 0, 0, 596, 594, 1, 0, 0, 0, 597,\n\t\t598, 5, 4, 0, 0, 598, 599, 3, 40, 20, 0, 599, 601, 1, 0, 0, 0, 600, 566,\n\t\t1, 0, 0, 0, 600, 581, 1, 0, 0, 0, 600, 586, 1, 0, 0, 0, 601, 39, 1, 0,\n\t\t0, 0, 602, 603, 5, 119, 0, 0, 603, 615, 3, 194, 97, 0, 604, 605, 5, 3,\n\t\t0, 0, 605, 610, 3, 190, 95, 0, 606, 607, 5, 5, 0, 0, 607, 609, 3, 190,\n\t\t95, 0, 608, 606, 1, 0, 0, 0, 609, 612, 1, 0, 0, 0, 610, 608, 1, 0, 0, 0,\n\t\t610, 611, 1, 0, 0, 0, 611, 613, 1, 0, 0, 0, 612, 610, 1, 0, 0, 0, 613,\n\t\t614, 5, 4, 0, 0, 614, 616, 1, 0, 0, 0, 615, 604, 1, 0, 0, 0, 615, 616,\n\t\t1, 0, 0, 0, 616, 631, 1, 0, 0, 0, 617, 618, 5, 109, 0, 0, 618, 625, 7,\n\t\t5, 0, 0, 619, 620, 5, 133, 0, 0, 620, 626, 7, 6, 0, 0, 621, 626, 5, 43,\n\t\t0, 0, 622, 626, 5, 125, 0, 0, 623, 624, 5, 103, 0, 0, 624, 626, 5, 28,\n\t\t0, 0, 625, 619, 1, 0, 0, 0, 625, 621, 1, 0, 0, 0, 625, 622, 1, 0, 0, 0,\n\t\t625, 623, 1, 0, 0, 0, 626, 630, 1, 0, 0, 0, 627, 628, 5, 101, 0, 0, 628,\n\t\t630, 3, 176, 88, 0, 629, 617, 1, 0, 0, 0, 629, 627, 1, 0, 0, 0, 630, 633,\n\t\t1, 0, 0, 0, 631, 629, 1, 0, 0, 0, 631, 632, 1, 0, 0, 0, 632, 642, 1, 0,\n\t\t0, 0, 633, 631, 1, 0, 0, 0, 634, 636, 5, 104, 0, 0, 635, 634, 1, 0, 0,\n\t\t0, 635, 636, 1, 0, 0, 0, 636, 637, 1, 0, 0, 0, 637, 640, 5, 59, 0, 0, 638,\n\t\t639, 5, 88, 0, 0, 639, 641, 7, 7, 0, 0, 640, 638, 1, 0, 0, 0, 640, 641,\n\t\t1, 0, 0, 0, 641, 643, 1, 0, 0, 0, 642, 635, 1, 0, 0, 0, 642, 643, 1, 0,\n\t\t0, 0, 643, 41, 1, 0, 0, 0, 644, 645, 5, 109, 0, 0, 645, 646, 5, 50, 0,\n\t\t0, 646, 647, 7, 8, 0, 0, 647, 43, 1, 0, 0, 0, 648, 650, 5, 52, 0, 0, 649,\n\t\t651, 7, 2, 0, 0, 650, 649, 1, 0, 0, 0, 650, 651, 1, 0, 0, 0, 651, 652,\n\t\t1, 0, 0, 0, 652, 656, 5, 141, 0, 0, 653, 654, 5, 82, 0, 0, 654, 655, 5,\n\t\t104, 0, 0, 655, 657, 5, 72, 0, 0, 656, 653, 1, 0, 0, 0, 656, 657, 1, 0,\n\t\t0, 0, 657, 661, 1, 0, 0, 0, 658, 659, 3, 182, 91, 0, 659, 660, 5, 2, 0,\n\t\t0, 660, 662, 1, 0, 0, 0, 661, 658, 1, 0, 0, 0, 661, 662, 1, 0, 0, 0, 662,\n\t\t663, 1, 0, 0, 0, 663, 668, 3, 198, 99, 0, 664, 669, 5, 39, 0, 0, 665, 669,\n\t\t5, 30, 0, 0, 666, 667, 5, 91, 0, 0, 667, 669, 5, 107, 0, 0, 668, 664, 1,\n\t\t0, 0, 0, 668, 665, 1, 0, 0, 0, 668, 666, 1, 0, 0, 0, 668, 669, 1, 0, 0,\n\t\t0, 669, 684, 1, 0, 0, 0, 670, 685, 5, 61, 0, 0, 671, 685, 5, 90, 0, 0,\n\t\t672, 682, 5, 144, 0, 0, 673, 674, 5, 107, 0, 0, 674, 679, 3, 190, 95, 0,\n\t\t675, 676, 5, 5, 0, 0, 676, 678, 3, 190, 95, 0, 677, 675, 1, 0, 0, 0, 678,\n\t\t681, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 683,\n\t\t1, 0, 0, 0, 681, 679, 1, 0, 0, 0, 682, 673, 1, 0, 0, 0, 682, 683, 1, 0,\n\t\t0, 0, 683, 685, 1, 0, 0, 0, 684, 670, 1, 0, 0, 0, 684, 671, 1, 0, 0, 0,\n\t\t684, 672, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 687, 5, 109, 0, 0, 687,\n\t\t691, 3, 184, 92, 0, 688, 689, 5, 75, 0, 0, 689, 690, 5, 66, 0, 0, 690,\n\t\t692, 5, 129, 0, 0, 691, 688, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 695,\n\t\t1, 0, 0, 0, 693, 694, 5, 150, 0, 0, 694, 696, 3, 68, 34, 0, 695, 693, 1,\n\t\t0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 697, 1, 0, 0, 0, 697, 706, 5, 40, 0,\n\t\t0, 698, 703, 3, 106, 53, 0, 699, 703, 3, 74, 37, 0, 700, 703, 3, 60, 30,\n\t\t0, 701, 703, 3, 84, 42, 0, 702, 698, 1, 0, 0, 0, 702, 699, 1, 0, 0, 0,\n\t\t702, 700, 1, 0, 0, 0, 702, 701, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704,\n\t\t705, 5, 1, 0, 0, 705, 707, 1, 0, 0, 0, 706, 702, 1, 0, 0, 0, 707, 708,\n\t\t1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 710, 1, 0,\n\t\t0, 0, 710, 711, 5, 68, 0, 0, 711, 45, 1, 0, 0, 0, 712, 714, 5, 52, 0, 0,\n\t\t713, 715, 7, 2, 0, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715,\n\t\t716, 1, 0, 0, 0, 716, 720, 5, 148, 0, 0, 717, 718, 5, 82, 0, 0, 718, 719,\n\t\t5, 104, 0, 0, 719, 721, 5, 72, 0, 0, 720, 717, 1, 0, 0, 0, 720, 721, 1,\n\t\t0, 0, 0, 721, 725, 1, 0, 0, 0, 722, 723, 3, 182, 91, 0, 723, 724, 5, 2,\n\t\t0, 0, 724, 726, 1, 0, 0, 0, 725, 722, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0,\n\t\t726, 727, 1, 0, 0, 0, 727, 739, 3, 200, 100, 0, 728, 729, 5, 3, 0, 0, 729,\n\t\t734, 3, 190, 95, 0, 730, 731, 5, 5, 0, 0, 731, 733, 3, 190, 95, 0, 732,\n\t\t730, 1, 0, 0, 0, 733, 736, 1, 0, 0, 0, 734, 732, 1, 0, 0, 0, 734, 735,\n\t\t1, 0, 0, 0, 735, 737, 1, 0, 0, 0, 736, 734, 1, 0, 0, 0, 737, 738, 5, 4,\n\t\t0, 0, 738, 740, 1, 0, 0, 0, 739, 728, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0,\n\t\t740, 741, 1, 0, 0, 0, 741, 742, 5, 35, 0, 0, 742, 743, 3, 84, 42, 0, 743,\n\t\t47, 1, 0, 0, 0, 744, 745, 5, 52, 0, 0, 745, 746, 5, 149, 0, 0, 746, 750,\n\t\t5, 135, 0, 0, 747, 748, 5, 82, 0, 0, 748, 749, 5, 104, 0, 0, 749, 751,\n\t\t5, 72, 0, 0, 750, 747, 1, 0, 0, 0, 750, 751, 1, 0, 0, 0, 751, 755, 1, 0,\n\t\t0, 0, 752, 753, 3, 182, 91, 0, 753, 754, 5, 2, 0, 0, 754, 756, 1, 0, 0,\n\t\t0, 755, 752, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757,\n\t\t758, 3, 184, 92, 0, 758, 759, 5, 145, 0, 0, 759, 771, 3, 202, 101, 0, 760,\n\t\t761, 5, 3, 0, 0, 761, 766, 3, 170, 85, 0, 762, 763, 5, 5, 0, 0, 763, 765,\n\t\t3, 170, 85, 0, 764, 762, 1, 0, 0, 0, 765, 768, 1, 0, 0, 0, 766, 764, 1,\n\t\t0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 769, 1, 0, 0, 0, 768, 766, 1, 0, 0,\n\t\t0, 769, 770, 5, 4, 0, 0, 770, 772, 1, 0, 0, 0, 771, 760, 1, 0, 0, 0, 771,\n\t\t772, 1, 0, 0, 0, 772, 49, 1, 0, 0, 0, 773, 775, 5, 152, 0, 0, 774, 776,\n\t\t5, 118, 0, 0, 775, 774, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 777, 1,\n\t\t0, 0, 0, 777, 778, 3, 52, 26, 0, 778, 779, 5, 35, 0, 0, 779, 780, 5, 3,\n\t\t0, 0, 780, 781, 3, 84, 42, 0, 781, 791, 5, 4, 0, 0, 782, 783, 5, 5, 0,\n\t\t0, 783, 784, 3, 52, 26, 0, 784, 785, 5, 35, 0, 0, 785, 786, 5, 3, 0, 0,\n\t\t786, 787, 3, 84, 42, 0, 787, 788, 5, 4, 0, 0, 788, 790, 1, 0, 0, 0, 789,\n\t\t782, 1, 0, 0, 0, 790, 793, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 791, 792,\n\t\t1, 0, 0, 0, 792, 51, 1, 0, 0, 0, 793, 791, 1, 0, 0, 0, 794, 806, 3, 184,\n\t\t92, 0, 795, 796, 5, 3, 0, 0, 796, 801, 3, 190, 95, 0, 797, 798, 5, 5, 0,\n\t\t0, 798, 800, 3, 190, 95, 0, 799, 797, 1, 0, 0, 0, 800, 803, 1, 0, 0, 0,\n\t\t801, 799, 1, 0, 0, 0, 801, 802, 1, 0, 0, 0, 802, 804, 1, 0, 0, 0, 803,\n\t\t801, 1, 0, 0, 0, 804, 805, 5, 4, 0, 0, 805, 807, 1, 0, 0, 0, 806, 795,\n\t\t1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 53, 1, 0, 0, 0, 808, 809, 3, 52,\n\t\t26, 0, 809, 810, 5, 35, 0, 0, 810, 811, 5, 3, 0, 0, 811, 812, 3, 162, 81,\n\t\t0, 812, 814, 5, 142, 0, 0, 813, 815, 5, 31, 0, 0, 814, 813, 1, 0, 0, 0,\n\t\t814, 815, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 817, 3, 164, 82, 0, 817,\n\t\t818, 5, 4, 0, 0, 818, 55, 1, 0, 0, 0, 819, 831, 3, 184, 92, 0, 820, 821,\n\t\t5, 3, 0, 0, 821, 826, 3, 190, 95, 0, 822, 823, 5, 5, 0, 0, 823, 825, 3,\n\t\t190, 95, 0, 824, 822, 1, 0, 0, 0, 825, 828, 1, 0, 0, 0, 826, 824, 1, 0,\n\t\t0, 0, 826, 827, 1, 0, 0, 0, 827, 829, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0,\n\t\t829, 830, 5, 4, 0, 0, 830, 832, 1, 0, 0, 0, 831, 820, 1, 0, 0, 0, 831,\n\t\t832, 1, 0, 0, 0, 832, 833, 1, 0, 0, 0, 833, 834, 5, 35, 0, 0, 834, 835,\n\t\t5, 3, 0, 0, 835, 836, 3, 84, 42, 0, 836, 837, 5, 4, 0, 0, 837, 57, 1, 0,\n\t\t0, 0, 838, 847, 5, 126, 0, 0, 839, 848, 5, 7, 0, 0, 840, 845, 3, 68, 34,\n\t\t0, 841, 843, 5, 35, 0, 0, 842, 841, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843,\n\t\t844, 1, 0, 0, 0, 844, 846, 3, 172, 86, 0, 845, 842, 1, 0, 0, 0, 845, 846,\n\t\t1, 0, 0, 0, 846, 848, 1, 0, 0, 0, 847, 839, 1, 0, 0, 0, 847, 840, 1, 0,\n\t\t0, 0, 848, 862, 1, 0, 0, 0, 849, 858, 5, 5, 0, 0, 850, 859, 5, 7, 0, 0,\n\t\t851, 856, 3, 68, 34, 0, 852, 854, 5, 35, 0, 0, 853, 852, 1, 0, 0, 0, 853,\n\t\t854, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 857, 3, 172, 86, 0, 856, 853,\n\t\t1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 859, 1, 0, 0, 0, 858, 850, 1, 0,\n\t\t0, 0, 858, 851, 1, 0, 0, 0, 859, 861, 1, 0, 0, 0, 860, 849, 1, 0, 0, 0,\n\t\t861, 864, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 862, 863, 1, 0, 0, 0, 863,\n\t\t59, 1, 0, 0, 0, 864, 862, 1, 0, 0, 0, 865, 867, 3, 50, 25, 0, 866, 865,\n\t\t1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 869, 5, 61,\n\t\t0, 0, 869, 870, 5, 77, 0, 0, 870, 873, 3, 112, 56, 0, 871, 872, 5, 151,\n\t\t0, 0, 872, 874, 3, 68, 34, 0, 873, 871, 1, 0, 0, 0, 873, 874, 1, 0, 0,\n\t\t0, 874, 876, 1, 0, 0, 0, 875, 877, 3, 58, 29, 0, 876, 875, 1, 0, 0, 0,\n\t\t876, 877, 1, 0, 0, 0, 877, 61, 1, 0, 0, 0, 878, 880, 3, 50, 25, 0, 879,\n\t\t878, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 881, 1, 0, 0, 0, 881, 882,\n\t\t5, 61, 0, 0, 882, 883, 5, 77, 0, 0, 883, 886, 3, 112, 56, 0, 884, 885,\n\t\t5, 151, 0, 0, 885, 887, 3, 68, 34, 0, 886, 884, 1, 0, 0, 0, 886, 887, 1,\n\t\t0, 0, 0, 887, 892, 1, 0, 0, 0, 888, 890, 3, 134, 67, 0, 889, 888, 1, 0,\n\t\t0, 0, 889, 890, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 893, 3, 136, 68,\n\t\t0, 892, 889, 1, 0, 0, 0, 892, 893, 1, 0, 0, 0, 893, 895, 1, 0, 0, 0, 894,\n\t\t896, 3, 58, 29, 0, 895, 894, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 63,\n\t\t1, 0, 0, 0, 897, 899, 5, 63, 0, 0, 898, 900, 5, 57, 0, 0, 899, 898, 1,\n\t\t0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 901, 1, 0, 0, 0, 901, 902, 3, 182,\n\t\t91, 0, 902, 65, 1, 0, 0, 0, 903, 904, 5, 65, 0, 0, 904, 907, 7, 9, 0, 0,\n\t\t905, 906, 5, 82, 0, 0, 906, 908, 5, 72, 0, 0, 907, 905, 1, 0, 0, 0, 907,\n\t\t908, 1, 0, 0, 0, 908, 912, 1, 0, 0, 0, 909, 910, 3, 182, 91, 0, 910, 911,\n\t\t5, 2, 0, 0, 911, 913, 1, 0, 0, 0, 912, 909, 1, 0, 0, 0, 912, 913, 1, 0,\n\t\t0, 0, 913, 914, 1, 0, 0, 0, 914, 915, 3, 228, 114, 0, 915, 67, 1, 0, 0,\n\t\t0, 916, 917, 6, 34, -1, 0, 917, 1006, 3, 72, 36, 0, 918, 1006, 5, 190,\n\t\t0, 0, 919, 1006, 5, 191, 0, 0, 920, 921, 3, 182, 91, 0, 921, 922, 5, 2,\n\t\t0, 0, 922, 924, 1, 0, 0, 0, 923, 920, 1, 0, 0, 0, 923, 924, 1, 0, 0, 0,\n\t\t924, 925, 1, 0, 0, 0, 925, 926, 3, 184, 92, 0, 926, 927, 5, 2, 0, 0, 927,\n\t\t929, 1, 0, 0, 0, 928, 923, 1, 0, 0, 0, 928, 929, 1, 0, 0, 0, 929, 930,\n\t\t1, 0, 0, 0, 930, 1006, 3, 190, 95, 0, 931, 932, 3, 166, 83, 0, 932, 933,\n\t\t3, 68, 34, 21, 933, 1006, 1, 0, 0, 0, 934, 935, 3, 180, 90, 0, 935, 948,\n\t\t5, 3, 0, 0, 936, 938, 5, 64, 0, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0,\n\t\t0, 0, 938, 939, 1, 0, 0, 0, 939, 944, 3, 68, 34, 0, 940, 941, 5, 5, 0,\n\t\t0, 941, 943, 3, 68, 34, 0, 942, 940, 1, 0, 0, 0, 943, 946, 1, 0, 0, 0,\n\t\t944, 942, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 949, 1, 0, 0, 0, 946,\n\t\t944, 1, 0, 0, 0, 947, 949, 5, 7, 0, 0, 948, 937, 1, 0, 0, 0, 948, 947,\n\t\t1, 0, 0, 0, 948, 949, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 952, 5, 4,\n\t\t0, 0, 951, 953, 3, 116, 58, 0, 952, 951, 1, 0, 0, 0, 952, 953, 1, 0, 0,\n\t\t0, 953, 955, 1, 0, 0, 0, 954, 956, 3, 120, 60, 0, 955, 954, 1, 0, 0, 0,\n\t\t955, 956, 1, 0, 0, 0, 956, 1006, 1, 0, 0, 0, 957, 958, 5, 3, 0, 0, 958,\n\t\t963, 3, 68, 34, 0, 959, 960, 5, 5, 0, 0, 960, 962, 3, 68, 34, 0, 961, 959,\n\t\t1, 0, 0, 0, 962, 965, 1, 0, 0, 0, 963, 961, 1, 0, 0, 0, 963, 964, 1, 0,\n\t\t0, 0, 964, 966, 1, 0, 0, 0, 965, 963, 1, 0, 0, 0, 966, 967, 5, 4, 0, 0,\n\t\t967, 1006, 1, 0, 0, 0, 968, 969, 5, 45, 0, 0, 969, 970, 5, 3, 0, 0, 970,\n\t\t971, 3, 68, 34, 0, 971, 972, 5, 35, 0, 0, 972, 973, 3, 32, 16, 0, 973,\n\t\t974, 5, 4, 0, 0, 974, 1006, 1, 0, 0, 0, 975, 977, 5, 104, 0, 0, 976, 975,\n\t\t1, 0, 0, 0, 976, 977, 1, 0, 0, 0, 977, 978, 1, 0, 0, 0, 978, 980, 5, 72,\n\t\t0, 0, 979, 976, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0,\n\t\t981, 982, 5, 3, 0, 0, 982, 983, 3, 84, 42, 0, 983, 984, 5, 4, 0, 0, 984,\n\t\t1006, 1, 0, 0, 0, 985, 987, 5, 44, 0, 0, 986, 988, 3, 68, 34, 0, 987, 986,\n\t\t1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 994, 1, 0, 0, 0, 989, 990, 5, 150,\n\t\t0, 0, 990, 991, 3, 68, 34, 0, 991, 992, 5, 138, 0, 0, 992, 993, 3, 68,\n\t\t34, 0, 993, 995, 1, 0, 0, 0, 994, 989, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0,\n\t\t996, 994, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 1000, 1, 0, 0, 0, 998,\n\t\t999, 5, 67, 0, 0, 999, 1001, 3, 68, 34, 0, 1000, 998, 1, 0, 0, 0, 1000,\n\t\t1001, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1003, 5, 68, 0, 0, 1003,\n\t\t1006, 1, 0, 0, 0, 1004, 1006, 3, 70, 35, 0, 1005, 916, 1, 0, 0, 0, 1005,\n\t\t918, 1, 0, 0, 0, 1005, 919, 1, 0, 0, 0, 1005, 928, 1, 0, 0, 0, 1005, 931,\n\t\t1, 0, 0, 0, 1005, 934, 1, 0, 0, 0, 1005, 957, 1, 0, 0, 0, 1005, 968, 1,\n\t\t0, 0, 0, 1005, 979, 1, 0, 0, 0, 1005, 985, 1, 0, 0, 0, 1005, 1004, 1, 0,\n\t\t0, 0, 1006, 1126, 1, 0, 0, 0, 1007, 1008, 10, 20, 0, 0, 1008, 1009, 5,\n\t\t13, 0, 0, 1009, 1125, 3, 68, 34, 21, 1010, 1011, 10, 19, 0, 0, 1011, 1012,\n\t\t7, 10, 0, 0, 1012, 1125, 3, 68, 34, 20, 1013, 1014, 10, 18, 0, 0, 1014,\n\t\t1015, 7, 11, 0, 0, 1015, 1125, 3, 68, 34, 19, 1016, 1017, 10, 17, 0, 0,\n\t\t1017, 1018, 7, 4, 0, 0, 1018, 1125, 3, 68, 34, 18, 1019, 1020, 10, 16,\n\t\t0, 0, 1020, 1021, 7, 12, 0, 0, 1021, 1125, 3, 68, 34, 17, 1022, 1023, 10,\n\t\t15, 0, 0, 1023, 1024, 7, 13, 0, 0, 1024, 1125, 3, 68, 34, 16, 1025, 1041,\n\t\t10, 14, 0, 0, 1026, 1042, 5, 6, 0, 0, 1027, 1042, 5, 24, 0, 0, 1028, 1042,\n\t\t5, 25, 0, 0, 1029, 1042, 5, 26, 0, 0, 1030, 1042, 5, 94, 0, 0, 1031, 1032,\n\t\t5, 94, 0, 0, 1032, 1042, 5, 104, 0, 0, 1033, 1035, 5, 104, 0, 0, 1034,\n\t\t1033, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036,\n\t\t1042, 5, 85, 0, 0, 1037, 1042, 5, 99, 0, 0, 1038, 1042, 5, 79, 0, 0, 1039,\n\t\t1042, 5, 101, 0, 0, 1040, 1042, 5, 120, 0, 0, 1041, 1026, 1, 0, 0, 0, 1041,\n\t\t1027, 1, 0, 0, 0, 1041, 1028, 1, 0, 0, 0, 1041, 1029, 1, 0, 0, 0, 1041,\n\t\t1030, 1, 0, 0, 0, 1041, 1031, 1, 0, 0, 0, 1041, 1034, 1, 0, 0, 0, 1041,\n\t\t1037, 1, 0, 0, 0, 1041, 1038, 1, 0, 0, 0, 1041, 1039, 1, 0, 0, 0, 1041,\n\t\t1040, 1, 0, 0, 0, 1042, 1043, 1, 0, 0, 0, 1043, 1125, 3, 68, 34, 15, 1044,\n\t\t1045, 10, 12, 0, 0, 1045, 1046, 5, 34, 0, 0, 1046, 1125, 3, 68, 34, 13,\n\t\t1047, 1048, 10, 11, 0, 0, 1048, 1049, 5, 110, 0, 0, 1049, 1125, 3, 68,\n\t\t34, 12, 1050, 1052, 10, 4, 0, 0, 1051, 1053, 5, 104, 0, 0, 1052, 1051,\n\t\t1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 1054, 1, 0, 0, 0, 1054, 1055,\n\t\t5, 41, 0, 0, 1055, 1056, 3, 68, 34, 0, 1056, 1057, 5, 34, 0, 0, 1057, 1058,\n\t\t3, 68, 34, 5, 1058, 1125, 1, 0, 0, 0, 1059, 1061, 10, 13, 0, 0, 1060, 1062,\n\t\t5, 104, 0, 0, 1061, 1060, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063,\n\t\t1, 0, 0, 0, 1063, 1102, 5, 85, 0, 0, 1064, 1074, 5, 3, 0, 0, 1065, 1075,\n\t\t3, 84, 42, 0, 1066, 1071, 3, 68, 34, 0, 1067, 1068, 5, 5, 0, 0, 1068, 1070,\n\t\t3, 68, 34, 0, 1069, 1067, 1, 0, 0, 0, 1070, 1073, 1, 0, 0, 0, 1071, 1069,\n\t\t1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1075, 1, 0, 0, 0, 1073, 1071,\n\t\t1, 0, 0, 0, 1074, 1065, 1, 0, 0, 0, 1074, 1066, 1, 0, 0, 0, 1074, 1075,\n\t\t1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1103, 5, 4, 0, 0, 1077, 1078,\n\t\t3, 182, 91, 0, 1078, 1079, 5, 2, 0, 0, 1079, 1081, 1, 0, 0, 0, 1080, 1077,\n\t\t1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1103,\n\t\t3, 184, 92, 0, 1083, 1084, 3, 182, 91, 0, 1084, 1085, 5, 2, 0, 0, 1085,\n\t\t1087, 1, 0, 0, 0, 1086, 1083, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087,\n\t\t1088, 1, 0, 0, 0, 1088, 1089, 3, 226, 113, 0, 1089, 1098, 5, 3, 0, 0, 1090,\n\t\t1095, 3, 68, 34, 0, 1091, 1092, 5, 5, 0, 0, 1092, 1094, 3, 68, 34, 0, 1093,\n\t\t1091, 1, 0, 0, 0, 1094, 1097, 1, 0, 0, 0, 1095, 1093, 1, 0, 0, 0, 1095,\n\t\t1096, 1, 0, 0, 0, 1096, 1099, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1098,\n\t\t1090, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100,\n\t\t1101, 5, 4, 0, 0, 1101, 1103, 1, 0, 0, 0, 1102, 1064, 1, 0, 0, 0, 1102,\n\t\t1080, 1, 0, 0, 0, 1102, 1086, 1, 0, 0, 0, 1103, 1125, 1, 0, 0, 0, 1104,\n\t\t1105, 10, 7, 0, 0, 1105, 1106, 5, 47, 0, 0, 1106, 1125, 3, 192, 96, 0,\n\t\t1107, 1109, 10, 6, 0, 0, 1108, 1110, 5, 104, 0, 0, 1109, 1108, 1, 0, 0,\n\t\t0, 1109, 1110, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 7, 14, 0,\n\t\t0, 1112, 1115, 3, 68, 34, 0, 1113, 1114, 5, 69, 0, 0, 1114, 1116, 3, 68,\n\t\t34, 0, 1115, 1113, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1125, 1, 0,\n\t\t0, 0, 1117, 1122, 10, 5, 0, 0, 1118, 1123, 5, 95, 0, 0, 1119, 1123, 5,\n\t\t105, 0, 0, 1120, 1121, 5, 104, 0, 0, 1121, 1123, 5, 106, 0, 0, 1122, 1118,\n\t\t1, 0, 0, 0, 1122, 1119, 1, 0, 0, 0, 1122, 1120, 1, 0, 0, 0, 1123, 1125,\n\t\t1, 0, 0, 0, 1124, 1007, 1, 0, 0, 0, 1124, 1010, 1, 0, 0, 0, 1124, 1013,\n\t\t1, 0, 0, 0, 1124, 1016, 1, 0, 0, 0, 1124, 1019, 1, 0, 0, 0, 1124, 1022,\n\t\t1, 0, 0, 0, 1124, 1025, 1, 0, 0, 0, 1124, 1044, 1, 0, 0, 0, 1124, 1047,\n\t\t1, 0, 0, 0, 1124, 1050, 1, 0, 0, 0, 1124, 1059, 1, 0, 0, 0, 1124, 1104,\n\t\t1, 0, 0, 0, 1124, 1107, 1, 0, 0, 0, 1124, 1117, 1, 0, 0, 0, 1125, 1128,\n\t\t1, 0, 0, 0, 1126, 1124, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 69, 1,\n\t\t0, 0, 0, 1128, 1126, 1, 0, 0, 0, 1129, 1130, 5, 117, 0, 0, 1130, 1135,\n\t\t5, 3, 0, 0, 1131, 1136, 5, 83, 0, 0, 1132, 1133, 7, 15, 0, 0, 1133, 1134,\n\t\t5, 5, 0, 0, 1134, 1136, 3, 168, 84, 0, 1135, 1131, 1, 0, 0, 0, 1135, 1132,\n\t\t1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1138, 5, 4, 0, 0, 1138, 71, 1,\n\t\t0, 0, 0, 1139, 1140, 7, 16, 0, 0, 1140, 73, 1, 0, 0, 0, 1141, 1143, 3,\n\t\t50, 25, 0, 1142, 1141, 1, 0, 0, 0, 1142, 1143, 1, 0, 0, 0, 1143, 1149,\n\t\t1, 0, 0, 0, 1144, 1150, 5, 90, 0, 0, 1145, 1150, 5, 124, 0, 0, 1146, 1147,\n\t\t5, 90, 0, 0, 1147, 1148, 5, 110, 0, 0, 1148, 1150, 7, 8, 0, 0, 1149, 1144,\n\t\t1, 0, 0, 0, 1149, 1145, 1, 0, 0, 0, 1149, 1146, 1, 0, 0, 0, 1150, 1151,\n\t\t1, 0, 0, 0, 1151, 1155, 5, 93, 0, 0, 1152, 1153, 3, 182, 91, 0, 1153, 1154,\n\t\t5, 2, 0, 0, 1154, 1156, 1, 0, 0, 0, 1155, 1152, 1, 0, 0, 0, 1155, 1156,\n\t\t1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1160, 3, 184, 92, 0, 1158, 1159,\n\t\t5, 35, 0, 0, 1159, 1161, 3, 208, 104, 0, 1160, 1158, 1, 0, 0, 0, 1160,\n\t\t1161, 1, 0, 0, 0, 1161, 1173, 1, 0, 0, 0, 1162, 1163, 5, 3, 0, 0, 1163,\n\t\t1168, 3, 190, 95, 0, 1164, 1165, 5, 5, 0, 0, 1165, 1167, 3, 190, 95, 0,\n\t\t1166, 1164, 1, 0, 0, 0, 1167, 1170, 1, 0, 0, 0, 1168, 1166, 1, 0, 0, 0,\n\t\t1168, 1169, 1, 0, 0, 0, 1169, 1171, 1, 0, 0, 0, 1170, 1168, 1, 0, 0, 0,\n\t\t1171, 1172, 5, 4, 0, 0, 1172, 1174, 1, 0, 0, 0, 1173, 1162, 1, 0, 0, 0,\n\t\t1173, 1174, 1, 0, 0, 0, 1174, 1206, 1, 0, 0, 0, 1175, 1176, 5, 147, 0,\n\t\t0, 1176, 1177, 5, 3, 0, 0, 1177, 1182, 3, 68, 34, 0, 1178, 1179, 5, 5,\n\t\t0, 0, 1179, 1181, 3, 68, 34, 0, 1180, 1178, 1, 0, 0, 0, 1181, 1184, 1,\n\t\t0, 0, 0, 1182, 1180, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1185, 1,\n\t\t0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1185, 1200, 5, 4, 0, 0, 1186, 1187, 5,\n\t\t5, 0, 0, 1187, 1188, 5, 3, 0, 0, 1188, 1193, 3, 68, 34, 0, 1189, 1190,\n\t\t5, 5, 0, 0, 1190, 1192, 3, 68, 34, 0, 1191, 1189, 1, 0, 0, 0, 1192, 1195,\n\t\t1, 0, 0, 0, 1193, 1191, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1196,\n\t\t1, 0, 0, 0, 1195, 1193, 1, 0, 0, 0, 1196, 1197, 5, 4, 0, 0, 1197, 1199,\n\t\t1, 0, 0, 0, 1198, 1186, 1, 0, 0, 0, 1199, 1202, 1, 0, 0, 0, 1200, 1198,\n\t\t1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1207, 1, 0, 0, 0, 1202, 1200,\n\t\t1, 0, 0, 0, 1203, 1207, 3, 84, 42, 0, 1204, 1205, 5, 58, 0, 0, 1205, 1207,\n\t\t5, 147, 0, 0, 1206, 1175, 1, 0, 0, 0, 1206, 1203, 1, 0, 0, 0, 1206, 1204,\n\t\t1, 0, 0, 0, 1207, 1209, 1, 0, 0, 0, 1208, 1210, 3, 76, 38, 0, 1209, 1208,\n\t\t1, 0, 0, 0, 1209, 1210, 1, 0, 0, 0, 1210, 1212, 1, 0, 0, 0, 1211, 1213,\n\t\t3, 58, 29, 0, 1212, 1211, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 75,\n\t\t1, 0, 0, 0, 1214, 1215, 5, 109, 0, 0, 1215, 1230, 5, 50, 0, 0, 1216, 1217,\n\t\t5, 3, 0, 0, 1217, 1222, 3, 24, 12, 0, 1218, 1219, 5, 5, 0, 0, 1219, 1221,\n\t\t3, 24, 12, 0, 1220, 1218, 1, 0, 0, 0, 1221, 1224, 1, 0, 0, 0, 1222, 1220,\n\t\t1, 0, 0, 0, 1222, 1223, 1, 0, 0, 0, 1223, 1225, 1, 0, 0, 0, 1224, 1222,\n\t\t1, 0, 0, 0, 1225, 1228, 5, 4, 0, 0, 1226, 1227, 5, 151, 0, 0, 1227, 1229,\n\t\t3, 68, 34, 0, 1228, 1226, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1231,\n\t\t1, 0, 0, 0, 1230, 1216, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1232,\n\t\t1, 0, 0, 0, 1232, 1259, 5, 186, 0, 0, 1233, 1260, 5, 187, 0, 0, 1234, 1235,\n\t\t5, 144, 0, 0, 1235, 1238, 5, 133, 0, 0, 1236, 1239, 3, 190, 95, 0, 1237,\n\t\t1239, 3, 108, 54, 0, 1238, 1236, 1, 0, 0, 0, 1238, 1237, 1, 0, 0, 0, 1239,\n\t\t1240, 1, 0, 0, 0, 1240, 1241, 5, 6, 0, 0, 1241, 1252, 3, 68, 34, 0, 1242,\n\t\t1245, 5, 5, 0, 0, 1243, 1246, 3, 190, 95, 0, 1244, 1246, 3, 108, 54, 0,\n\t\t1245, 1243, 1, 0, 0, 0, 1245, 1244, 1, 0, 0, 0, 1246, 1247, 1, 0, 0, 0,\n\t\t1247, 1248, 5, 6, 0, 0, 1248, 1249, 3, 68, 34, 0, 1249, 1251, 1, 0, 0,\n\t\t0, 1250, 1242, 1, 0, 0, 0, 1251, 1254, 1, 0, 0, 0, 1252, 1250, 1, 0, 0,\n\t\t0, 1252, 1253, 1, 0, 0, 0, 1253, 1257, 1, 0, 0, 0, 1254, 1252, 1, 0, 0,\n\t\t0, 1255, 1256, 5, 151, 0, 0, 1256, 1258, 3, 68, 34, 0, 1257, 1255, 1, 0,\n\t\t0, 0, 1257, 1258, 1, 0, 0, 0, 1258, 1260, 1, 0, 0, 0, 1259, 1233, 1, 0,\n\t\t0, 0, 1259, 1234, 1, 0, 0, 0, 1260, 77, 1, 0, 0, 0, 1261, 1265, 5, 114,\n\t\t0, 0, 1262, 1263, 3, 182, 91, 0, 1263, 1264, 5, 2, 0, 0, 1264, 1266, 1,\n\t\t0, 0, 0, 1265, 1262, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 1267, 1,\n\t\t0, 0, 0, 1267, 1274, 3, 204, 102, 0, 1268, 1269, 5, 6, 0, 0, 1269, 1275,\n\t\t3, 80, 40, 0, 1270, 1271, 5, 3, 0, 0, 1271, 1272, 3, 80, 40, 0, 1272, 1273,\n\t\t5, 4, 0, 0, 1273, 1275, 1, 0, 0, 0, 1274, 1268, 1, 0, 0, 0, 1274, 1270,\n\t\t1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 79, 1, 0, 0, 0, 1276, 1280, 3,\n\t\t36, 18, 0, 1277, 1280, 3, 176, 88, 0, 1278, 1280, 5, 192, 0, 0, 1279, 1276,\n\t\t1, 0, 0, 0, 1279, 1277, 1, 0, 0, 0, 1279, 1278, 1, 0, 0, 0, 1280, 81, 1,\n\t\t0, 0, 0, 1281, 1292, 5, 121, 0, 0, 1282, 1293, 3, 192, 96, 0, 1283, 1284,\n\t\t3, 182, 91, 0, 1284, 1285, 5, 2, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1283,\n\t\t1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1290, 1, 0, 0, 0, 1288, 1291,\n\t\t3, 184, 92, 0, 1289, 1291, 3, 196, 98, 0, 1290, 1288, 1, 0, 0, 0, 1290,\n\t\t1289, 1, 0, 0, 0, 1291, 1293, 1, 0, 0, 0, 1292, 1282, 1, 0, 0, 0, 1292,\n\t\t1286, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 83, 1, 0, 0, 0, 1294, 1296,\n\t\t3, 132, 66, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297,\n\t\t1, 0, 0, 0, 1297, 1303, 3, 88, 44, 0, 1298, 1299, 3, 104, 52, 0, 1299,\n\t\t1300, 3, 88, 44, 0, 1300, 1302, 1, 0, 0, 0, 1301, 1298, 1, 0, 0, 0, 1302,\n\t\t1305, 1, 0, 0, 0, 1303, 1301, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304,\n\t\t1307, 1, 0, 0, 0, 1305, 1303, 1, 0, 0, 0, 1306, 1308, 3, 134, 67, 0, 1307,\n\t\t1306, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1310, 1, 0, 0, 0, 1309,\n\t\t1311, 3, 136, 68, 0, 1310, 1309, 1, 0, 0, 0, 1310, 1311, 1, 0, 0, 0, 1311,\n\t\t85, 1, 0, 0, 0, 1312, 1319, 3, 96, 48, 0, 1313, 1314, 3, 100, 50, 0, 1314,\n\t\t1315, 3, 96, 48, 0, 1315, 1316, 3, 102, 51, 0, 1316, 1318, 1, 0, 0, 0,\n\t\t1317, 1313, 1, 0, 0, 0, 1318, 1321, 1, 0, 0, 0, 1319, 1317, 1, 0, 0, 0,\n\t\t1319, 1320, 1, 0, 0, 0, 1320, 87, 1, 0, 0, 0, 1321, 1319, 1, 0, 0, 0, 1322,\n\t\t1324, 5, 132, 0, 0, 1323, 1325, 7, 17, 0, 0, 1324, 1323, 1, 0, 0, 0, 1324,\n\t\t1325, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1331, 3, 98, 49, 0, 1327,\n\t\t1328, 5, 5, 0, 0, 1328, 1330, 3, 98, 49, 0, 1329, 1327, 1, 0, 0, 0, 1330,\n\t\t1333, 1, 0, 0, 0, 1331, 1329, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332,\n\t\t1346, 1, 0, 0, 0, 1333, 1331, 1, 0, 0, 0, 1334, 1344, 5, 77, 0, 0, 1335,\n\t\t1340, 3, 96, 48, 0, 1336, 1337, 5, 5, 0, 0, 1337, 1339, 3, 96, 48, 0, 1338,\n\t\t1336, 1, 0, 0, 0, 1339, 1342, 1, 0, 0, 0, 1340, 1338, 1, 0, 0, 0, 1340,\n\t\t1341, 1, 0, 0, 0, 1341, 1345, 1, 0, 0, 0, 1342, 1340, 1, 0, 0, 0, 1343,\n\t\t1345, 3, 86, 43, 0, 1344, 1335, 1, 0, 0, 0, 1344, 1343, 1, 0, 0, 0, 1345,\n\t\t1347, 1, 0, 0, 0, 1346, 1334, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347,\n\t\t1350, 1, 0, 0, 0, 1348, 1349, 5, 151, 0, 0, 1349, 1351, 3, 68, 34, 0, 1350,\n\t\t1348, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 1366, 1, 0, 0, 0, 1352,\n\t\t1353, 5, 80, 0, 0, 1353, 1354, 5, 42, 0, 0, 1354, 1359, 3, 68, 34, 0, 1355,\n\t\t1356, 5, 5, 0, 0, 1356, 1358, 3, 68, 34, 0, 1357, 1355, 1, 0, 0, 0, 1358,\n\t\t1361, 1, 0, 0, 0, 1359, 1357, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360,\n\t\t1364, 1, 0, 0, 0, 1361, 1359, 1, 0, 0, 0, 1362, 1363, 5, 81, 0, 0, 1363,\n\t\t1365, 3, 68, 34, 0, 1364, 1362, 1, 0, 0, 0, 1364, 1365, 1, 0, 0, 0, 1365,\n\t\t1367, 1, 0, 0, 0, 1366, 1352, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367,\n\t\t1382, 1, 0, 0, 0, 1368, 1369, 5, 177, 0, 0, 1369, 1370, 3, 214, 107, 0,\n\t\t1370, 1371, 5, 35, 0, 0, 1371, 1379, 3, 118, 59, 0, 1372, 1373, 5, 5, 0,\n\t\t0, 1373, 1374, 3, 214, 107, 0, 1374, 1375, 5, 35, 0, 0, 1375, 1376, 3,\n\t\t118, 59, 0, 1376, 1378, 1, 0, 0, 0, 1377, 1372, 1, 0, 0, 0, 1378, 1381,\n\t\t1, 0, 0, 0, 1379, 1377, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1383,\n\t\t1, 0, 0, 0, 1381, 1379, 1, 0, 0, 0, 1382, 1368, 1, 0, 0, 0, 1382, 1383,\n\t\t1, 0, 0, 0, 1383, 1413, 1, 0, 0, 0, 1384, 1385, 5, 147, 0, 0, 1385, 1386,\n\t\t5, 3, 0, 0, 1386, 1391, 3, 68, 34, 0, 1387, 1388, 5, 5, 0, 0, 1388, 1390,\n\t\t3, 68, 34, 0, 1389, 1387, 1, 0, 0, 0, 1390, 1393, 1, 0, 0, 0, 1391, 1389,\n\t\t1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1394, 1, 0, 0, 0, 1393, 1391,\n\t\t1, 0, 0, 0, 1394, 1409, 5, 4, 0, 0, 1395, 1396, 5, 5, 0, 0, 1396, 1397,\n\t\t5, 3, 0, 0, 1397, 1402, 3, 68, 34, 0, 1398, 1399, 5, 5, 0, 0, 1399, 1401,\n\t\t3, 68, 34, 0, 1400, 1398, 1, 0, 0, 0, 1401, 1404, 1, 0, 0, 0, 1402, 1400,\n\t\t1, 0, 0, 0, 1402, 1403, 1, 0, 0, 0, 1403, 1405, 1, 0, 0, 0, 1404, 1402,\n\t\t1, 0, 0, 0, 1405, 1406, 5, 4, 0, 0, 1406, 1408, 1, 0, 0, 0, 1407, 1395,\n\t\t1, 0, 0, 0, 1408, 1411, 1, 0, 0, 0, 1409, 1407, 1, 0, 0, 0, 1409, 1410,\n\t\t1, 0, 0, 0, 1410, 1413, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1322,\n\t\t1, 0, 0, 0, 1412, 1384, 1, 0, 0, 0, 1413, 89, 1, 0, 0, 0, 1414, 1415, 3,\n\t\t84, 42, 0, 1415, 91, 1, 0, 0, 0, 1416, 1418, 3, 132, 66, 0, 1417, 1416,\n\t\t1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1421,\n\t\t3, 88, 44, 0, 1420, 1422, 3, 134, 67, 0, 1421, 1420, 1, 0, 0, 0, 1421,\n\t\t1422, 1, 0, 0, 0, 1422, 1424, 1, 0, 0, 0, 1423, 1425, 3, 136, 68, 0, 1424,\n\t\t1423, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 93, 1, 0, 0, 0, 1426, 1428,\n\t\t3, 132, 66, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429,\n\t\t1, 0, 0, 0, 1429, 1439, 3, 88, 44, 0, 1430, 1432, 5, 142, 0, 0, 1431, 1433,\n\t\t5, 31, 0, 0, 1432, 1431, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1437,\n\t\t1, 0, 0, 0, 1434, 1437, 5, 92, 0, 0, 1435, 1437, 5, 70, 0, 0, 1436, 1430,\n\t\t1, 0, 0, 0, 1436, 1434, 1, 0, 0, 0, 1436, 1435, 1, 0, 0, 0, 1437, 1438,\n\t\t1, 0, 0, 0, 1438, 1440, 3, 88, 44, 0, 1439, 1436, 1, 0, 0, 0, 1440, 1441,\n\t\t1, 0, 0, 0, 1441, 1439, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1444,\n\t\t1, 0, 0, 0, 1443, 1445, 3, 134, 67, 0, 1444, 1443, 1, 0, 0, 0, 1444, 1445,\n\t\t1, 0, 0, 0, 1445, 1447, 1, 0, 0, 0, 1446, 1448, 3, 136, 68, 0, 1447, 1446,\n\t\t1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1448, 95, 1, 0, 0, 0, 1449, 1450, 3,\n\t\t182, 91, 0, 1450, 1451, 5, 2, 0, 0, 1451, 1453, 1, 0, 0, 0, 1452, 1449,\n\t\t1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1459,\n\t\t3, 184, 92, 0, 1455, 1457, 5, 35, 0, 0, 1456, 1455, 1, 0, 0, 0, 1456, 1457,\n\t\t1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1460, 3, 208, 104, 0, 1459, 1456,\n\t\t1, 0, 0, 0, 1459, 1460, 1, 0, 0, 0, 1460, 1466, 1, 0, 0, 0, 1461, 1462,\n\t\t5, 87, 0, 0, 1462, 1463, 5, 42, 0, 0, 1463, 1467, 3, 196, 98, 0, 1464,\n\t\t1465, 5, 104, 0, 0, 1465, 1467, 5, 87, 0, 0, 1466, 1461, 1, 0, 0, 0, 1466,\n\t\t1464, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1578, 1, 0, 0, 0, 1468,\n\t\t1469, 3, 182, 91, 0, 1469, 1470, 5, 2, 0, 0, 1470, 1472, 1, 0, 0, 0, 1471,\n\t\t1468, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473,\n\t\t1474, 3, 226, 113, 0, 1474, 1475, 5, 3, 0, 0, 1475, 1480, 3, 68, 34, 0,\n\t\t1476, 1477, 5, 5, 0, 0, 1477, 1479, 3, 68, 34, 0, 1478, 1476, 1, 0, 0,\n\t\t0, 1479, 1482, 1, 0, 0, 0, 1480, 1478, 1, 0, 0, 0, 1480, 1481, 1, 0, 0,\n\t\t0, 1481, 1483, 1, 0, 0, 0, 1482, 1480, 1, 0, 0, 0, 1483, 1488, 5, 4, 0,\n\t\t0, 1484, 1486, 5, 35, 0, 0, 1485, 1484, 1, 0, 0, 0, 1485, 1486, 1, 0, 0,\n\t\t0, 1486, 1487, 1, 0, 0, 0, 1487, 1489, 3, 208, 104, 0, 1488, 1485, 1, 0,\n\t\t0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1578, 1, 0, 0, 0, 1490, 1500, 5, 3,\n\t\t0, 0, 1491, 1496, 3, 96, 48, 0, 1492, 1493, 5, 5, 0, 0, 1493, 1495, 3,\n\t\t96, 48, 0, 1494, 1492, 1, 0, 0, 0, 1495, 1498, 1, 0, 0, 0, 1496, 1494,\n\t\t1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 1501, 1, 0, 0, 0, 1498, 1496,\n\t\t1, 0, 0, 0, 1499, 1501, 3, 86, 43, 0, 1500, 1491, 1, 0, 0, 0, 1500, 1499,\n\t\t1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1503, 5, 4, 0, 0, 1503, 1578,\n\t\t1, 0, 0, 0, 1504, 1505, 5, 3, 0, 0, 1505, 1506, 3, 84, 42, 0, 1506, 1511,\n\t\t5, 4, 0, 0, 1507, 1509, 5, 35, 0, 0, 1508, 1507, 1, 0, 0, 0, 1508, 1509,\n\t\t1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1512, 3, 208, 104, 0, 1511, 1508,\n\t\t1, 0, 0, 0, 1511, 1512, 1, 0, 0, 0, 1512, 1578, 1, 0, 0, 0, 1513, 1514,\n\t\t3, 182, 91, 0, 1514, 1515, 5, 2, 0, 0, 1515, 1517, 1, 0, 0, 0, 1516, 1513,\n\t\t1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1518, 1, 0, 0, 0, 1518, 1523,\n\t\t3, 184, 92, 0, 1519, 1521, 5, 35, 0, 0, 1520, 1519, 1, 0, 0, 0, 1520, 1521,\n\t\t1, 0, 0, 0, 1521, 1522, 1, 0, 0, 0, 1522, 1524, 3, 210, 105, 0, 1523, 1520,\n\t\t1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1530, 1, 0, 0, 0, 1525, 1526,\n\t\t5, 87, 0, 0, 1526, 1527, 5, 42, 0, 0, 1527, 1531, 3, 196, 98, 0, 1528,\n\t\t1529, 5, 104, 0, 0, 1529, 1531, 5, 87, 0, 0, 1530, 1525, 1, 0, 0, 0, 1530,\n\t\t1528, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1578, 1, 0, 0, 0, 1532,\n\t\t1533, 3, 182, 91, 0, 1533, 1534, 5, 2, 0, 0, 1534, 1536, 1, 0, 0, 0, 1535,\n\t\t1532, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537,\n\t\t1538, 3, 226, 113, 0, 1538, 1539, 5, 3, 0, 0, 1539, 1544, 3, 68, 34, 0,\n\t\t1540, 1541, 5, 5, 0, 0, 1541, 1543, 3, 68, 34, 0, 1542, 1540, 1, 0, 0,\n\t\t0, 1543, 1546, 1, 0, 0, 0, 1544, 1542, 1, 0, 0, 0, 1544, 1545, 1, 0, 0,\n\t\t0, 1545, 1547, 1, 0, 0, 0, 1546, 1544, 1, 0, 0, 0, 1547, 1552, 5, 4, 0,\n\t\t0, 1548, 1550, 5, 35, 0, 0, 1549, 1548, 1, 0, 0, 0, 1549, 1550, 1, 0, 0,\n\t\t0, 1550, 1551, 1, 0, 0, 0, 1551, 1553, 3, 210, 105, 0, 1552, 1549, 1, 0,\n\t\t0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1578, 1, 0, 0, 0, 1554, 1564, 5, 3,\n\t\t0, 0, 1555, 1560, 3, 96, 48, 0, 1556, 1557, 5, 5, 0, 0, 1557, 1559, 3,\n\t\t96, 48, 0, 1558, 1556, 1, 0, 0, 0, 1559, 1562, 1, 0, 0, 0, 1560, 1558,\n\t\t1, 0, 0, 0, 1560, 1561, 1, 0, 0, 0, 1561, 1565, 1, 0, 0, 0, 1562, 1560,\n\t\t1, 0, 0, 0, 1563, 1565, 3, 86, 43, 0, 1564, 1555, 1, 0, 0, 0, 1564, 1563,\n\t\t1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1567, 5, 4, 0, 0, 1567, 1578,\n\t\t1, 0, 0, 0, 1568, 1569, 5, 3, 0, 0, 1569, 1570, 3, 84, 42, 0, 1570, 1575,\n\t\t5, 4, 0, 0, 1571, 1573, 5, 35, 0, 0, 1572, 1571, 1, 0, 0, 0, 1572, 1573,\n\t\t1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1576, 3, 210, 105, 0, 1575, 1572,\n\t\t1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1578, 1, 0, 0, 0, 1577, 1452,\n\t\t1, 0, 0, 0, 1577, 1471, 1, 0, 0, 0, 1577, 1490, 1, 0, 0, 0, 1577, 1504,\n\t\t1, 0, 0, 0, 1577, 1516, 1, 0, 0, 0, 1577, 1535, 1, 0, 0, 0, 1577, 1554,\n\t\t1, 0, 0, 0, 1577, 1568, 1, 0, 0, 0, 1578, 97, 1, 0, 0, 0, 1579, 1592, 5,\n\t\t7, 0, 0, 1580, 1581, 3, 184, 92, 0, 1581, 1582, 5, 2, 0, 0, 1582, 1583,\n\t\t5, 7, 0, 0, 1583, 1592, 1, 0, 0, 0, 1584, 1589, 3, 68, 34, 0, 1585, 1587,\n\t\t5, 35, 0, 0, 1586, 1585, 1, 0, 0, 0, 1586, 1587, 1, 0, 0, 0, 1587, 1588,\n\t\t1, 0, 0, 0, 1588, 1590, 3, 172, 86, 0, 1589, 1586, 1, 0, 0, 0, 1589, 1590,\n\t\t1, 0, 0, 0, 1590, 1592, 1, 0, 0, 0, 1591, 1579, 1, 0, 0, 0, 1591, 1580,\n\t\t1, 0, 0, 0, 1591, 1584, 1, 0, 0, 0, 1592, 99, 1, 0, 0, 0, 1593, 1608, 5,\n\t\t5, 0, 0, 1594, 1596, 5, 102, 0, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596,\n\t\t1, 0, 0, 0, 1596, 1602, 1, 0, 0, 0, 1597, 1599, 7, 18, 0, 0, 1598, 1600,\n\t\t5, 112, 0, 0, 1599, 1598, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1603,\n\t\t1, 0, 0, 0, 1601, 1603, 5, 89, 0, 0, 1602, 1597, 1, 0, 0, 0, 1602, 1601,\n\t\t1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1604, 1, 0, 0, 0, 1604, 1608,\n\t\t5, 96, 0, 0, 1605, 1606, 5, 53, 0, 0, 1606, 1608, 5, 96, 0, 0, 1607, 1593,\n\t\t1, 0, 0, 0, 1607, 1595, 1, 0, 0, 0, 1607, 1605, 1, 0, 0, 0, 1608, 101,\n\t\t1, 0, 0, 0, 1609, 1610, 5, 109, 0, 0, 1610, 1624, 3, 68, 34, 0, 1611, 1612,\n\t\t5, 145, 0, 0, 1612, 1613, 5, 3, 0, 0, 1613, 1618, 3, 190, 95, 0, 1614,\n\t\t1615, 5, 5, 0, 0, 1615, 1617, 3, 190, 95, 0, 1616, 1614, 1, 0, 0, 0, 1617,\n\t\t1620, 1, 0, 0, 0, 1618, 1616, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619,\n\t\t1621, 1, 0, 0, 0, 1620, 1618, 1, 0, 0, 0, 1621, 1622, 5, 4, 0, 0, 1622,\n\t\t1624, 1, 0, 0, 0, 1623, 1609, 1, 0, 0, 0, 1623, 1611, 1, 0, 0, 0, 1623,\n\t\t1624, 1, 0, 0, 0, 1624, 103, 1, 0, 0, 0, 1625, 1627, 5, 142, 0, 0, 1626,\n\t\t1628, 5, 31, 0, 0, 1627, 1626, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628,\n\t\t1632, 1, 0, 0, 0, 1629, 1632, 5, 92, 0, 0, 1630, 1632, 5, 70, 0, 0, 1631,\n\t\t1625, 1, 0, 0, 0, 1631, 1629, 1, 0, 0, 0, 1631, 1630, 1, 0, 0, 0, 1632,\n\t\t105, 1, 0, 0, 0, 1633, 1635, 3, 50, 25, 0, 1634, 1633, 1, 0, 0, 0, 1634,\n\t\t1635, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1639, 5, 144, 0, 0, 1637,\n\t\t1638, 5, 110, 0, 0, 1638, 1640, 7, 8, 0, 0, 1639, 1637, 1, 0, 0, 0, 1639,\n\t\t1640, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 3, 112, 56, 0, 1642,\n\t\t1645, 5, 133, 0, 0, 1643, 1646, 3, 190, 95, 0, 1644, 1646, 3, 108, 54,\n\t\t0, 1645, 1643, 1, 0, 0, 0, 1645, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0,\n\t\t0, 1647, 1648, 5, 6, 0, 0, 1648, 1659, 3, 68, 34, 0, 1649, 1652, 5, 5,\n\t\t0, 0, 1650, 1653, 3, 190, 95, 0, 1651, 1653, 3, 108, 54, 0, 1652, 1650,\n\t\t1, 0, 0, 0, 1652, 1651, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1655,\n\t\t5, 6, 0, 0, 1655, 1656, 3, 68, 34, 0, 1656, 1658, 1, 0, 0, 0, 1657, 1649,\n\t\t1, 0, 0, 0, 1658, 1661, 1, 0, 0, 0, 1659, 1657, 1, 0, 0, 0, 1659, 1660,\n\t\t1, 0, 0, 0, 1660, 1664, 1, 0, 0, 0, 1661, 1659, 1, 0, 0, 0, 1662, 1663,\n\t\t5, 151, 0, 0, 1663, 1665, 3, 68, 34, 0, 1664, 1662, 1, 0, 0, 0, 1664, 1665,\n\t\t1, 0, 0, 0, 1665, 1667, 1, 0, 0, 0, 1666, 1668, 3, 58, 29, 0, 1667, 1666,\n\t\t1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 107, 1, 0, 0, 0, 1669, 1670,\n\t\t5, 3, 0, 0, 1670, 1675, 3, 190, 95, 0, 1671, 1672, 5, 5, 0, 0, 1672, 1674,\n\t\t3, 190, 95, 0, 1673, 1671, 1, 0, 0, 0, 1674, 1677, 1, 0, 0, 0, 1675, 1673,\n\t\t1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 1, 0, 0, 0, 1677, 1675,\n\t\t1, 0, 0, 0, 1678, 1679, 5, 4, 0, 0, 1679, 109, 1, 0, 0, 0, 1680, 1682,\n\t\t3, 50, 25, 0, 1681, 1680, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 1683,\n\t\t1, 0, 0, 0, 1683, 1686, 5, 144, 0, 0, 1684, 1685, 5, 110, 0, 0, 1685, 1687,\n\t\t7, 8, 0, 0, 1686, 1684, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1688,\n\t\t1, 0, 0, 0, 1688, 1689, 3, 112, 56, 0, 1689, 1692, 5, 133, 0, 0, 1690,\n\t\t1693, 3, 190, 95, 0, 1691, 1693, 3, 108, 54, 0, 1692, 1690, 1, 0, 0, 0,\n\t\t1692, 1691, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1695, 5, 6, 0, 0,\n\t\t1695, 1706, 3, 68, 34, 0, 1696, 1699, 5, 5, 0, 0, 1697, 1700, 3, 190, 95,\n\t\t0, 1698, 1700, 3, 108, 54, 0, 1699, 1697, 1, 0, 0, 0, 1699, 1698, 1, 0,\n\t\t0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1702, 5, 6, 0, 0, 1702, 1703, 3, 68,\n\t\t34, 0, 1703, 1705, 1, 0, 0, 0, 1704, 1696, 1, 0, 0, 0, 1705, 1708, 1, 0,\n\t\t0, 0, 1706, 1704, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1711, 1, 0,\n\t\t0, 0, 1708, 1706, 1, 0, 0, 0, 1709, 1710, 5, 151, 0, 0, 1710, 1712, 3,\n\t\t68, 34, 0, 1711, 1709, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1717,\n\t\t1, 0, 0, 0, 1713, 1715, 3, 134, 67, 0, 1714, 1713, 1, 0, 0, 0, 1714, 1715,\n\t\t1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1718, 3, 136, 68, 0, 1717, 1714,\n\t\t1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 111, 1, 0, 0, 0, 1719, 1720,\n\t\t3, 182, 91, 0, 1720, 1721, 5, 2, 0, 0, 1721, 1723, 1, 0, 0, 0, 1722, 1719,\n\t\t1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1723, 1724, 1, 0, 0, 0, 1724, 1727,\n\t\t3, 184, 92, 0, 1725, 1726, 5, 35, 0, 0, 1726, 1728, 3, 216, 108, 0, 1727,\n\t\t1725, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1734, 1, 0, 0, 0, 1729,\n\t\t1730, 5, 87, 0, 0, 1730, 1731, 5, 42, 0, 0, 1731, 1735, 3, 196, 98, 0,\n\t\t1732, 1733, 5, 104, 0, 0, 1733, 1735, 5, 87, 0, 0, 1734, 1729, 1, 0, 0,\n\t\t0, 1734, 1732, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 113, 1, 0, 0,\n\t\t0, 1736, 1738, 5, 146, 0, 0, 1737, 1739, 3, 182, 91, 0, 1738, 1737, 1,\n\t\t0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1742, 1, 0, 0, 0, 1740, 1741, 5,\n\t\t93, 0, 0, 1741, 1743, 3, 218, 109, 0, 1742, 1740, 1, 0, 0, 0, 1742, 1743,\n\t\t1, 0, 0, 0, 1743, 115, 1, 0, 0, 0, 1744, 1745, 5, 181, 0, 0, 1745, 1746,\n\t\t5, 3, 0, 0, 1746, 1747, 5, 151, 0, 0, 1747, 1748, 3, 68, 34, 0, 1748, 1749,\n\t\t5, 4, 0, 0, 1749, 117, 1, 0, 0, 0, 1750, 1752, 5, 3, 0, 0, 1751, 1753,\n\t\t3, 220, 110, 0, 1752, 1751, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1764,\n\t\t1, 0, 0, 0, 1754, 1755, 5, 156, 0, 0, 1755, 1756, 5, 42, 0, 0, 1756, 1761,\n\t\t3, 68, 34, 0, 1757, 1758, 5, 5, 0, 0, 1758, 1760, 3, 68, 34, 0, 1759, 1757,\n\t\t1, 0, 0, 0, 1760, 1763, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1761, 1762,\n\t\t1, 0, 0, 0, 1762, 1765, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1764, 1754,\n\t\t1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1767,\n\t\t5, 111, 0, 0, 1767, 1768, 5, 42, 0, 0, 1768, 1773, 3, 138, 69, 0, 1769,\n\t\t1770, 5, 5, 0, 0, 1770, 1772, 3, 138, 69, 0, 1771, 1769, 1, 0, 0, 0, 1772,\n\t\t1775, 1, 0, 0, 0, 1773, 1771, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774,\n\t\t1777, 1, 0, 0, 0, 1775, 1773, 1, 0, 0, 0, 1776, 1778, 3, 122, 61, 0, 1777,\n\t\t1776, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779,\n\t\t1780, 5, 4, 0, 0, 1780, 119, 1, 0, 0, 0, 1781, 1815, 5, 155, 0, 0, 1782,\n\t\t1816, 3, 214, 107, 0, 1783, 1785, 5, 3, 0, 0, 1784, 1786, 3, 220, 110,\n\t\t0, 1785, 1784, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1797, 1, 0, 0,\n\t\t0, 1787, 1788, 5, 156, 0, 0, 1788, 1789, 5, 42, 0, 0, 1789, 1794, 3, 68,\n\t\t34, 0, 1790, 1791, 5, 5, 0, 0, 1791, 1793, 3, 68, 34, 0, 1792, 1790, 1,\n\t\t0, 0, 0, 1793, 1796, 1, 0, 0, 0, 1794, 1792, 1, 0, 0, 0, 1794, 1795, 1,\n\t\t0, 0, 0, 1795, 1798, 1, 0, 0, 0, 1796, 1794, 1, 0, 0, 0, 1797, 1787, 1,\n\t\t0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1809, 1, 0, 0, 0, 1799, 1800, 5,\n\t\t111, 0, 0, 1800, 1801, 5, 42, 0, 0, 1801, 1806, 3, 138, 69, 0, 1802, 1803,\n\t\t5, 5, 0, 0, 1803, 1805, 3, 138, 69, 0, 1804, 1802, 1, 0, 0, 0, 1805, 1808,\n\t\t1, 0, 0, 0, 1806, 1804, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 1810,\n\t\t1, 0, 0, 0, 1808, 1806, 1, 0, 0, 0, 1809, 1799, 1, 0, 0, 0, 1809, 1810,\n\t\t1, 0, 0, 0, 1810, 1812, 1, 0, 0, 0, 1811, 1813, 3, 122, 61, 0, 1812, 1811,\n\t\t1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1816,\n\t\t5, 4, 0, 0, 1815, 1782, 1, 0, 0, 0, 1815, 1783, 1, 0, 0, 0, 1816, 121,\n\t\t1, 0, 0, 0, 1817, 1825, 3, 124, 62, 0, 1818, 1819, 5, 183, 0, 0, 1819,\n\t\t1820, 5, 103, 0, 0, 1820, 1826, 5, 185, 0, 0, 1821, 1822, 5, 160, 0, 0,\n\t\t1822, 1826, 5, 129, 0, 0, 1823, 1826, 5, 80, 0, 0, 1824, 1826, 5, 184,\n\t\t0, 0, 1825, 1818, 1, 0, 0, 0, 1825, 1821, 1, 0, 0, 0, 1825, 1823, 1, 0,\n\t\t0, 0, 1825, 1824, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 123, 1, 0,\n\t\t0, 0, 1827, 1834, 7, 19, 0, 0, 1828, 1835, 3, 146, 73, 0, 1829, 1830, 5,\n\t\t41, 0, 0, 1830, 1831, 3, 142, 71, 0, 1831, 1832, 5, 34, 0, 0, 1832, 1833,\n\t\t3, 144, 72, 0, 1833, 1835, 1, 0, 0, 0, 1834, 1828, 1, 0, 0, 0, 1834, 1829,\n\t\t1, 0, 0, 0, 1835, 125, 1, 0, 0, 0, 1836, 1837, 3, 222, 111, 0, 1837, 1847,\n\t\t5, 3, 0, 0, 1838, 1843, 3, 68, 34, 0, 1839, 1840, 5, 5, 0, 0, 1840, 1842,\n\t\t3, 68, 34, 0, 1841, 1839, 1, 0, 0, 0, 1842, 1845, 1, 0, 0, 0, 1843, 1841,\n\t\t1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1848, 1, 0, 0, 0, 1845, 1843,\n\t\t1, 0, 0, 0, 1846, 1848, 5, 7, 0, 0, 1847, 1838, 1, 0, 0, 0, 1847, 1846,\n\t\t1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1850, 5, 4, 0, 0, 1850, 127,\n\t\t1, 0, 0, 0, 1851, 1852, 3, 224, 112, 0, 1852, 1865, 5, 3, 0, 0, 1853, 1855,\n\t\t5, 64, 0, 0, 1854, 1853, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1856,\n\t\t1, 0, 0, 0, 1856, 1861, 3, 68, 34, 0, 1857, 1858, 5, 5, 0, 0, 1858, 1860,\n\t\t3, 68, 34, 0, 1859, 1857, 1, 0, 0, 0, 1860, 1863, 1, 0, 0, 0, 1861, 1859,\n\t\t1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1866, 1, 0, 0, 0, 1863, 1861,\n\t\t1, 0, 0, 0, 1864, 1866, 5, 7, 0, 0, 1865, 1854, 1, 0, 0, 0, 1865, 1864,\n\t\t1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1869,\n\t\t5, 4, 0, 0, 1868, 1870, 3, 116, 58, 0, 1869, 1868, 1, 0, 0, 0, 1869, 1870,\n\t\t1, 0, 0, 0, 1870, 129, 1, 0, 0, 0, 1871, 1872, 3, 148, 74, 0, 1872, 1882,\n\t\t5, 3, 0, 0, 1873, 1878, 3, 68, 34, 0, 1874, 1875, 5, 5, 0, 0, 1875, 1877,\n\t\t3, 68, 34, 0, 1876, 1874, 1, 0, 0, 0, 1877, 1880, 1, 0, 0, 0, 1878, 1876,\n\t\t1, 0, 0, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1883, 1, 0, 0, 0, 1880, 1878,\n\t\t1, 0, 0, 0, 1881, 1883, 5, 7, 0, 0, 1882, 1873, 1, 0, 0, 0, 1882, 1881,\n\t\t1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 1886,\n\t\t5, 4, 0, 0, 1885, 1887, 3, 116, 58, 0, 1886, 1885, 1, 0, 0, 0, 1886, 1887,\n\t\t1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1891, 5, 155, 0, 0, 1889, 1892,\n\t\t3, 118, 59, 0, 1890, 1892, 3, 214, 107, 0, 1891, 1889, 1, 0, 0, 0, 1891,\n\t\t1890, 1, 0, 0, 0, 1892, 131, 1, 0, 0, 0, 1893, 1895, 5, 152, 0, 0, 1894,\n\t\t1896, 5, 118, 0, 0, 1895, 1894, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896,\n\t\t1897, 1, 0, 0, 0, 1897, 1902, 3, 56, 28, 0, 1898, 1899, 5, 5, 0, 0, 1899,\n\t\t1901, 3, 56, 28, 0, 1900, 1898, 1, 0, 0, 0, 1901, 1904, 1, 0, 0, 0, 1902,\n\t\t1900, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 133, 1, 0, 0, 0, 1904,\n\t\t1902, 1, 0, 0, 0, 1905, 1906, 5, 111, 0, 0, 1906, 1907, 5, 42, 0, 0, 1907,\n\t\t1912, 3, 138, 69, 0, 1908, 1909, 5, 5, 0, 0, 1909, 1911, 3, 138, 69, 0,\n\t\t1910, 1908, 1, 0, 0, 0, 1911, 1914, 1, 0, 0, 0, 1912, 1910, 1, 0, 0, 0,\n\t\t1912, 1913, 1, 0, 0, 0, 1913, 135, 1, 0, 0, 0, 1914, 1912, 1, 0, 0, 0,\n\t\t1915, 1916, 5, 100, 0, 0, 1916, 1919, 3, 68, 34, 0, 1917, 1918, 7, 20,\n\t\t0, 0, 1918, 1920, 3, 68, 34, 0, 1919, 1917, 1, 0, 0, 0, 1919, 1920, 1,\n\t\t0, 0, 0, 1920, 137, 1, 0, 0, 0, 1921, 1924, 3, 68, 34, 0, 1922, 1923, 5,\n\t\t47, 0, 0, 1923, 1925, 3, 192, 96, 0, 1924, 1922, 1, 0, 0, 0, 1924, 1925,\n\t\t1, 0, 0, 0, 1925, 1927, 1, 0, 0, 0, 1926, 1928, 3, 140, 70, 0, 1927, 1926,\n\t\t1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1931, 1, 0, 0, 0, 1929, 1930,\n\t\t5, 178, 0, 0, 1930, 1932, 7, 21, 0, 0, 1931, 1929, 1, 0, 0, 0, 1931, 1932,\n\t\t1, 0, 0, 0, 1932, 139, 1, 0, 0, 0, 1933, 1934, 7, 22, 0, 0, 1934, 141,\n\t\t1, 0, 0, 0, 1935, 1936, 3, 68, 34, 0, 1936, 1937, 5, 158, 0, 0, 1937, 1946,\n\t\t1, 0, 0, 0, 1938, 1939, 3, 68, 34, 0, 1939, 1940, 5, 161, 0, 0, 1940, 1946,\n\t\t1, 0, 0, 0, 1941, 1942, 5, 160, 0, 0, 1942, 1946, 5, 129, 0, 0, 1943, 1944,\n\t\t5, 159, 0, 0, 1944, 1946, 5, 158, 0, 0, 1945, 1935, 1, 0, 0, 0, 1945, 1938,\n\t\t1, 0, 0, 0, 1945, 1941, 1, 0, 0, 0, 1945, 1943, 1, 0, 0, 0, 1946, 143,\n\t\t1, 0, 0, 0, 1947, 1948, 3, 68, 34, 0, 1948, 1949, 5, 158, 0, 0, 1949, 1958,\n\t\t1, 0, 0, 0, 1950, 1951, 3, 68, 34, 0, 1951, 1952, 5, 161, 0, 0, 1952, 1958,\n\t\t1, 0, 0, 0, 1953, 1954, 5, 160, 0, 0, 1954, 1958, 5, 129, 0, 0, 1955, 1956,\n\t\t5, 159, 0, 0, 1956, 1958, 5, 161, 0, 0, 1957, 1947, 1, 0, 0, 0, 1957, 1950,\n\t\t1, 0, 0, 0, 1957, 1953, 1, 0, 0, 0, 1957, 1955, 1, 0, 0, 0, 1958, 145,\n\t\t1, 0, 0, 0, 1959, 1960, 3, 68, 34, 0, 1960, 1961, 5, 158, 0, 0, 1961, 1967,\n\t\t1, 0, 0, 0, 1962, 1963, 5, 159, 0, 0, 1963, 1967, 5, 158, 0, 0, 1964, 1965,\n\t\t5, 160, 0, 0, 1965, 1967, 5, 129, 0, 0, 1966, 1959, 1, 0, 0, 0, 1966, 1962,\n\t\t1, 0, 0, 0, 1966, 1964, 1, 0, 0, 0, 1967, 147, 1, 0, 0, 0, 1968, 1969,\n\t\t7, 23, 0, 0, 1969, 1970, 5, 3, 0, 0, 1970, 1971, 3, 68, 34, 0, 1971, 1972,\n\t\t5, 4, 0, 0, 1972, 1973, 5, 155, 0, 0, 1973, 1975, 5, 3, 0, 0, 1974, 1976,\n\t\t3, 154, 77, 0, 1975, 1974, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1977,\n\t\t1, 0, 0, 0, 1977, 1979, 3, 158, 79, 0, 1978, 1980, 3, 124, 62, 0, 1979,\n\t\t1978, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981,\n\t\t1982, 5, 4, 0, 0, 1982, 2054, 1, 0, 0, 0, 1983, 1984, 7, 24, 0, 0, 1984,\n\t\t1985, 5, 3, 0, 0, 1985, 1986, 5, 4, 0, 0, 1986, 1987, 5, 155, 0, 0, 1987,\n\t\t1989, 5, 3, 0, 0, 1988, 1990, 3, 154, 77, 0, 1989, 1988, 1, 0, 0, 0, 1989,\n\t\t1990, 1, 0, 0, 0, 1990, 1992, 1, 0, 0, 0, 1991, 1993, 3, 156, 78, 0, 1992,\n\t\t1991, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994,\n\t\t2054, 5, 4, 0, 0, 1995, 1996, 7, 25, 0, 0, 1996, 1997, 5, 3, 0, 0, 1997,\n\t\t1998, 5, 4, 0, 0, 1998, 1999, 5, 155, 0, 0, 1999, 2001, 5, 3, 0, 0, 2000,\n\t\t2002, 3, 154, 77, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002,\n\t\t2003, 1, 0, 0, 0, 2003, 2004, 3, 158, 79, 0, 2004, 2005, 5, 4, 0, 0, 2005,\n\t\t2054, 1, 0, 0, 0, 2006, 2007, 7, 26, 0, 0, 2007, 2008, 5, 3, 0, 0, 2008,\n\t\t2010, 3, 68, 34, 0, 2009, 2011, 3, 150, 75, 0, 2010, 2009, 1, 0, 0, 0,\n\t\t2010, 2011, 1, 0, 0, 0, 2011, 2013, 1, 0, 0, 0, 2012, 2014, 3, 152, 76,\n\t\t0, 2013, 2012, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 1, 0, 0,\n\t\t0, 2015, 2016, 5, 4, 0, 0, 2016, 2017, 5, 155, 0, 0, 2017, 2019, 5, 3,\n\t\t0, 0, 2018, 2020, 3, 154, 77, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1,\n\t\t0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2022, 3, 158, 79, 0, 2022, 2023,\n\t\t5, 4, 0, 0, 2023, 2054, 1, 0, 0, 0, 2024, 2025, 5, 167, 0, 0, 2025, 2026,\n\t\t5, 3, 0, 0, 2026, 2027, 3, 68, 34, 0, 2027, 2028, 5, 5, 0, 0, 2028, 2029,\n\t\t3, 36, 18, 0, 2029, 2030, 5, 4, 0, 0, 2030, 2031, 5, 155, 0, 0, 2031, 2033,\n\t\t5, 3, 0, 0, 2032, 2034, 3, 154, 77, 0, 2033, 2032, 1, 0, 0, 0, 2033, 2034,\n\t\t1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2037, 3, 158, 79, 0, 2036, 2038,\n\t\t3, 124, 62, 0, 2037, 2036, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2039,\n\t\t1, 0, 0, 0, 2039, 2040, 5, 4, 0, 0, 2040, 2054, 1, 0, 0, 0, 2041, 2042,\n\t\t5, 168, 0, 0, 2042, 2043, 5, 3, 0, 0, 2043, 2044, 3, 68, 34, 0, 2044, 2045,\n\t\t5, 4, 0, 0, 2045, 2046, 5, 155, 0, 0, 2046, 2048, 5, 3, 0, 0, 2047, 2049,\n\t\t3, 154, 77, 0, 2048, 2047, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2050,\n\t\t1, 0, 0, 0, 2050, 2051, 3, 158, 79, 0, 2051, 2052, 5, 4, 0, 0, 2052, 2054,\n\t\t1, 0, 0, 0, 2053, 1968, 1, 0, 0, 0, 2053, 1983, 1, 0, 0, 0, 2053, 1995,\n\t\t1, 0, 0, 0, 2053, 2006, 1, 0, 0, 0, 2053, 2024, 1, 0, 0, 0, 2053, 2041,\n\t\t1, 0, 0, 0, 2054, 149, 1, 0, 0, 0, 2055, 2056, 5, 5, 0, 0, 2056, 2057,\n\t\t3, 36, 18, 0, 2057, 151, 1, 0, 0, 0, 2058, 2059, 5, 5, 0, 0, 2059, 2060,\n\t\t3, 36, 18, 0, 2060, 153, 1, 0, 0, 0, 2061, 2062, 5, 156, 0, 0, 2062, 2064,\n\t\t5, 42, 0, 0, 2063, 2065, 3, 68, 34, 0, 2064, 2063, 1, 0, 0, 0, 2065, 2066,\n\t\t1, 0, 0, 0, 2066, 2064, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 155,\n\t\t1, 0, 0, 0, 2068, 2069, 5, 111, 0, 0, 2069, 2071, 5, 42, 0, 0, 2070, 2072,\n\t\t3, 68, 34, 0, 2071, 2070, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2071,\n\t\t1, 0, 0, 0, 2073, 2074, 1, 0, 0, 0, 2074, 157, 1, 0, 0, 0, 2075, 2076,\n\t\t5, 111, 0, 0, 2076, 2077, 5, 42, 0, 0, 2077, 2078, 3, 158, 79, 0, 2078,\n\t\t159, 1, 0, 0, 0, 2079, 2081, 3, 68, 34, 0, 2080, 2082, 3, 140, 70, 0, 2081,\n\t\t2080, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2090, 1, 0, 0, 0, 2083,\n\t\t2084, 5, 5, 0, 0, 2084, 2086, 3, 68, 34, 0, 2085, 2087, 3, 140, 70, 0,\n\t\t2086, 2085, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2089, 1, 0, 0, 0,\n\t\t2088, 2083, 1, 0, 0, 0, 2089, 2092, 1, 0, 0, 0, 2090, 2088, 1, 0, 0, 0,\n\t\t2090, 2091, 1, 0, 0, 0, 2091, 161, 1, 0, 0, 0, 2092, 2090, 1, 0, 0, 0,\n\t\t2093, 2094, 3, 84, 42, 0, 2094, 163, 1, 0, 0, 0, 2095, 2096, 3, 84, 42,\n\t\t0, 2096, 165, 1, 0, 0, 0, 2097, 2098, 7, 27, 0, 0, 2098, 167, 1, 0, 0,\n\t\t0, 2099, 2100, 5, 192, 0, 0, 2100, 169, 1, 0, 0, 0, 2101, 2104, 3, 68,\n\t\t34, 0, 2102, 2104, 3, 30, 15, 0, 2103, 2101, 1, 0, 0, 0, 2103, 2102, 1,\n\t\t0, 0, 0, 2104, 171, 1, 0, 0, 0, 2105, 2106, 7, 28, 0, 0, 2106, 173, 1,\n\t\t0, 0, 0, 2107, 2108, 7, 29, 0, 0, 2108, 175, 1, 0, 0, 0, 2109, 2110, 3,\n\t\t228, 114, 0, 2110, 177, 1, 0, 0, 0, 2111, 2112, 3, 228, 114, 0, 2112, 179,\n\t\t1, 0, 0, 0, 2113, 2114, 3, 182, 91, 0, 2114, 2115, 5, 2, 0, 0, 2115, 2117,\n\t\t1, 0, 0, 0, 2116, 2113, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2118,\n\t\t1, 0, 0, 0, 2118, 2119, 3, 178, 89, 0, 2119, 181, 1, 0, 0, 0, 2120, 2121,\n\t\t3, 228, 114, 0, 2121, 183, 1, 0, 0, 0, 2122, 2123, 3, 228, 114, 0, 2123,\n\t\t185, 1, 0, 0, 0, 2124, 2125, 3, 228, 114, 0, 2125, 187, 1, 0, 0, 0, 2126,\n\t\t2127, 3, 228, 114, 0, 2127, 189, 1, 0, 0, 0, 2128, 2129, 3, 228, 114, 0,\n\t\t2129, 191, 1, 0, 0, 0, 2130, 2131, 3, 228, 114, 0, 2131, 193, 1, 0, 0,\n\t\t0, 2132, 2133, 3, 228, 114, 0, 2133, 195, 1, 0, 0, 0, 2134, 2135, 3, 228,\n\t\t114, 0, 2135, 197, 1, 0, 0, 0, 2136, 2137, 3, 228, 114, 0, 2137, 199, 1,\n\t\t0, 0, 0, 2138, 2139, 3, 228, 114, 0, 2139, 201, 1, 0, 0, 0, 2140, 2141,\n\t\t3, 228, 114, 0, 2141, 203, 1, 0, 0, 0, 2142, 2143, 3, 228, 114, 0, 2143,\n\t\t205, 1, 0, 0, 0, 2144, 2145, 3, 228, 114, 0, 2145, 207, 1, 0, 0, 0, 2146,\n\t\t2147, 7, 28, 0, 0, 2147, 209, 1, 0, 0, 0, 2148, 2149, 3, 228, 114, 0, 2149,\n\t\t211, 1, 0, 0, 0, 2150, 2151, 3, 228, 114, 0, 2151, 213, 1, 0, 0, 0, 2152,\n\t\t2153, 3, 228, 114, 0, 2153, 215, 1, 0, 0, 0, 2154, 2155, 3, 228, 114, 0,\n\t\t2155, 217, 1, 0, 0, 0, 2156, 2157, 3, 228, 114, 0, 2157, 219, 1, 0, 0,\n\t\t0, 2158, 2159, 3, 228, 114, 0, 2159, 221, 1, 0, 0, 0, 2160, 2161, 3, 228,\n\t\t114, 0, 2161, 223, 1, 0, 0, 0, 2162, 2163, 3, 228, 114, 0, 2163, 225, 1,\n\t\t0, 0, 0, 2164, 2165, 3, 228, 114, 0, 2165, 227, 1, 0, 0, 0, 2166, 2174,\n\t\t5, 188, 0, 0, 2167, 2174, 3, 174, 87, 0, 2168, 2174, 5, 192, 0, 0, 2169,\n\t\t2170, 5, 3, 0, 0, 2170, 2171, 3, 228, 114, 0, 2171, 2172, 5, 4, 0, 0, 2172,\n\t\t2174, 1, 0, 0, 0, 2173, 2166, 1, 0, 0, 0, 2173, 2167, 1, 0, 0, 0, 2173,\n\t\t2168, 1, 0, 0, 0, 2173, 2169, 1, 0, 0, 0, 2174, 229, 1, 0, 0, 0, 313, 233,\n\t\t241, 248, 253, 259, 265, 267, 293, 300, 307, 313, 317, 322, 325, 332, 335,\n\t\t339, 347, 351, 353, 357, 361, 365, 368, 375, 381, 387, 392, 403, 409, 413,\n\t\t417, 420, 425, 429, 435, 440, 449, 456, 465, 468, 472, 476, 481, 487, 499,\n\t\t503, 508, 511, 514, 519, 522, 536, 543, 550, 552, 555, 561, 566, 574, 579,\n\t\t594, 600, 610, 615, 625, 629, 631, 635, 640, 642, 650, 656, 661, 668, 679,\n\t\t682, 684, 691, 695, 702, 708, 714, 720, 725, 734, 739, 750, 755, 766, 771,\n\t\t775, 791, 801, 806, 814, 826, 831, 842, 845, 847, 853, 856, 858, 862, 866,\n\t\t873, 876, 879, 886, 889, 892, 895, 899, 907, 912, 923, 928, 937, 944, 948,\n\t\t952, 955, 963, 976, 979, 987, 996, 1000, 1005, 1034, 1041, 1052, 1061,\n\t\t1071, 1074, 1080, 1086, 1095, 1098, 1102, 1109, 1115, 1122, 1124, 1126,\n\t\t1135, 1142, 1149, 1155, 1160, 1168, 1173, 1182, 1193, 1200, 1206, 1209,\n\t\t1212, 1222, 1228, 1230, 1238, 1245, 1252, 1257, 1259, 1265, 1274, 1279,\n\t\t1286, 1290, 1292, 1295, 1303, 1307, 1310, 1319, 1324, 1331, 1340, 1344,\n\t\t1346, 1350, 1359, 1364, 1366, 1379, 1382, 1391, 1402, 1409, 1412, 1417,\n\t\t1421, 1424, 1427, 1432, 1436, 1441, 1444, 1447, 1452, 1456, 1459, 1466,\n\t\t1471, 1480, 1485, 1488, 1496, 1500, 1508, 1511, 1516, 1520, 1523, 1530,\n\t\t1535, 1544, 1549, 1552, 1560, 1564, 1572, 1575, 1577, 1586, 1589, 1591,\n\t\t1595, 1599, 1602, 1607, 1618, 1623, 1627, 1631, 1634, 1639, 1645, 1652,\n\t\t1659, 1664, 1667, 1675, 1681, 1686, 1692, 1699, 1706, 1711, 1714, 1717,\n\t\t1722, 1727, 1734, 1738, 1742, 1752, 1761, 1764, 1773, 1777, 1785, 1794,\n\t\t1797, 1806, 1809, 1812, 1815, 1825, 1834, 1843, 1847, 1854, 1861, 1865,\n\t\t1869, 1878, 1882, 1886, 1891, 1895, 1902, 1912, 1919, 1924, 1927, 1931,\n\t\t1945, 1957, 1966, 1975, 1979, 1989, 1992, 2001, 2010, 2013, 2019, 2033,\n\t\t2037, 2048, 2053, 2066, 2073, 2081, 2086, 2090, 2103, 2116, 2173,\n\t}\n\tdeserializer := antlr.NewATNDeserializer(nil)\n\tstaticData.atn = deserializer.Deserialize(staticData.serializedATN)\n\tatn := staticData.atn\n\tstaticData.decisionToDFA = make([]*antlr.DFA, len(atn.DecisionToState))\n\tdecisionToDFA := staticData.decisionToDFA\n\tfor index, state := range atn.DecisionToState {\n\t\tdecisionToDFA[index] = antlr.NewDFA(state, index)\n\t}\n}\n\n// SQLiteParserInit initializes any static state used to implement SQLiteParser. By default the\n// static state used to implement the parser is lazily initialized during the first call to\n// NewSQLiteParser(). You can call this function if you wish to initialize the static state ahead\n// of time.\nfunc SQLiteParserInit() {\n\tstaticData := &SQLiteParserParserStaticData\n\tstaticData.once.Do(sqliteparserParserInit)\n}\n\n// NewSQLiteParser produces a new parser instance for the optional input antlr.TokenStream.\nfunc NewSQLiteParser(input antlr.TokenStream) *SQLiteParser {\n\tSQLiteParserInit()\n\tthis := new(SQLiteParser)\n\tthis.BaseParser = antlr.NewBaseParser(input)\n\tstaticData := &SQLiteParserParserStaticData\n\tthis.Interpreter = antlr.NewParserATNSimulator(this, staticData.atn, staticData.decisionToDFA, staticData.PredictionContextCache)\n\tthis.RuleNames = staticData.RuleNames\n\tthis.LiteralNames = staticData.LiteralNames\n\tthis.SymbolicNames = staticData.SymbolicNames\n\tthis.GrammarFileName = \"SQLiteParser.g4\"\n\n\treturn this\n}\n\n// SQLiteParser tokens.\nconst (\n\tSQLiteParserEOF                     = antlr.TokenEOF\n\tSQLiteParserSCOL                    = 1\n\tSQLiteParserDOT                     = 2\n\tSQLiteParserOPEN_PAR                = 3\n\tSQLiteParserCLOSE_PAR               = 4\n\tSQLiteParserCOMMA                   = 5\n\tSQLiteParserASSIGN                  = 6\n\tSQLiteParserSTAR                    = 7\n\tSQLiteParserPLUS                    = 8\n\tSQLiteParserPTR2                    = 9\n\tSQLiteParserPTR                     = 10\n\tSQLiteParserMINUS                   = 11\n\tSQLiteParserTILDE                   = 12\n\tSQLiteParserPIPE2                   = 13\n\tSQLiteParserDIV                     = 14\n\tSQLiteParserMOD                     = 15\n\tSQLiteParserLT2                     = 16\n\tSQLiteParserGT2                     = 17\n\tSQLiteParserAMP                     = 18\n\tSQLiteParserPIPE                    = 19\n\tSQLiteParserLT                      = 20\n\tSQLiteParserLT_EQ                   = 21\n\tSQLiteParserGT                      = 22\n\tSQLiteParserGT_EQ                   = 23\n\tSQLiteParserEQ                      = 24\n\tSQLiteParserNOT_EQ1                 = 25\n\tSQLiteParserNOT_EQ2                 = 26\n\tSQLiteParserABORT_                  = 27\n\tSQLiteParserACTION_                 = 28\n\tSQLiteParserADD_                    = 29\n\tSQLiteParserAFTER_                  = 30\n\tSQLiteParserALL_                    = 31\n\tSQLiteParserALTER_                  = 32\n\tSQLiteParserANALYZE_                = 33\n\tSQLiteParserAND_                    = 34\n\tSQLiteParserAS_                     = 35\n\tSQLiteParserASC_                    = 36\n\tSQLiteParserATTACH_                 = 37\n\tSQLiteParserAUTOINCREMENT_          = 38\n\tSQLiteParserBEFORE_                 = 39\n\tSQLiteParserBEGIN_                  = 40\n\tSQLiteParserBETWEEN_                = 41\n\tSQLiteParserBY_                     = 42\n\tSQLiteParserCASCADE_                = 43\n\tSQLiteParserCASE_                   = 44\n\tSQLiteParserCAST_                   = 45\n\tSQLiteParserCHECK_                  = 46\n\tSQLiteParserCOLLATE_                = 47\n\tSQLiteParserCOLUMN_                 = 48\n\tSQLiteParserCOMMIT_                 = 49\n\tSQLiteParserCONFLICT_               = 50\n\tSQLiteParserCONSTRAINT_             = 51\n\tSQLiteParserCREATE_                 = 52\n\tSQLiteParserCROSS_                  = 53\n\tSQLiteParserCURRENT_DATE_           = 54\n\tSQLiteParserCURRENT_TIME_           = 55\n\tSQLiteParserCURRENT_TIMESTAMP_      = 56\n\tSQLiteParserDATABASE_               = 57\n\tSQLiteParserDEFAULT_                = 58\n\tSQLiteParserDEFERRABLE_             = 59\n\tSQLiteParserDEFERRED_               = 60\n\tSQLiteParserDELETE_                 = 61\n\tSQLiteParserDESC_                   = 62\n\tSQLiteParserDETACH_                 = 63\n\tSQLiteParserDISTINCT_               = 64\n\tSQLiteParserDROP_                   = 65\n\tSQLiteParserEACH_                   = 66\n\tSQLiteParserELSE_                   = 67\n\tSQLiteParserEND_                    = 68\n\tSQLiteParserESCAPE_                 = 69\n\tSQLiteParserEXCEPT_                 = 70\n\tSQLiteParserEXCLUSIVE_              = 71\n\tSQLiteParserEXISTS_                 = 72\n\tSQLiteParserEXPLAIN_                = 73\n\tSQLiteParserFAIL_                   = 74\n\tSQLiteParserFOR_                    = 75\n\tSQLiteParserFOREIGN_                = 76\n\tSQLiteParserFROM_                   = 77\n\tSQLiteParserFULL_                   = 78\n\tSQLiteParserGLOB_                   = 79\n\tSQLiteParserGROUP_                  = 80\n\tSQLiteParserHAVING_                 = 81\n\tSQLiteParserIF_                     = 82\n\tSQLiteParserIGNORE_                 = 83\n\tSQLiteParserIMMEDIATE_              = 84\n\tSQLiteParserIN_                     = 85\n\tSQLiteParserINDEX_                  = 86\n\tSQLiteParserINDEXED_                = 87\n\tSQLiteParserINITIALLY_              = 88\n\tSQLiteParserINNER_                  = 89\n\tSQLiteParserINSERT_                 = 90\n\tSQLiteParserINSTEAD_                = 91\n\tSQLiteParserINTERSECT_              = 92\n\tSQLiteParserINTO_                   = 93\n\tSQLiteParserIS_                     = 94\n\tSQLiteParserISNULL_                 = 95\n\tSQLiteParserJOIN_                   = 96\n\tSQLiteParserKEY_                    = 97\n\tSQLiteParserLEFT_                   = 98\n\tSQLiteParserLIKE_                   = 99\n\tSQLiteParserLIMIT_                  = 100\n\tSQLiteParserMATCH_                  = 101\n\tSQLiteParserNATURAL_                = 102\n\tSQLiteParserNO_                     = 103\n\tSQLiteParserNOT_                    = 104\n\tSQLiteParserNOTNULL_                = 105\n\tSQLiteParserNULL_                   = 106\n\tSQLiteParserOF_                     = 107\n\tSQLiteParserOFFSET_                 = 108\n\tSQLiteParserON_                     = 109\n\tSQLiteParserOR_                     = 110\n\tSQLiteParserORDER_                  = 111\n\tSQLiteParserOUTER_                  = 112\n\tSQLiteParserPLAN_                   = 113\n\tSQLiteParserPRAGMA_                 = 114\n\tSQLiteParserPRIMARY_                = 115\n\tSQLiteParserQUERY_                  = 116\n\tSQLiteParserRAISE_                  = 117\n\tSQLiteParserRECURSIVE_              = 118\n\tSQLiteParserREFERENCES_             = 119\n\tSQLiteParserREGEXP_                 = 120\n\tSQLiteParserREINDEX_                = 121\n\tSQLiteParserRELEASE_                = 122\n\tSQLiteParserRENAME_                 = 123\n\tSQLiteParserREPLACE_                = 124\n\tSQLiteParserRESTRICT_               = 125\n\tSQLiteParserRETURNING_              = 126\n\tSQLiteParserRIGHT_                  = 127\n\tSQLiteParserROLLBACK_               = 128\n\tSQLiteParserROW_                    = 129\n\tSQLiteParserROWS_                   = 130\n\tSQLiteParserSAVEPOINT_              = 131\n\tSQLiteParserSELECT_                 = 132\n\tSQLiteParserSET_                    = 133\n\tSQLiteParserSTRICT_                 = 134\n\tSQLiteParserTABLE_                  = 135\n\tSQLiteParserTEMP_                   = 136\n\tSQLiteParserTEMPORARY_              = 137\n\tSQLiteParserTHEN_                   = 138\n\tSQLiteParserTO_                     = 139\n\tSQLiteParserTRANSACTION_            = 140\n\tSQLiteParserTRIGGER_                = 141\n\tSQLiteParserUNION_                  = 142\n\tSQLiteParserUNIQUE_                 = 143\n\tSQLiteParserUPDATE_                 = 144\n\tSQLiteParserUSING_                  = 145\n\tSQLiteParserVACUUM_                 = 146\n\tSQLiteParserVALUES_                 = 147\n\tSQLiteParserVIEW_                   = 148\n\tSQLiteParserVIRTUAL_                = 149\n\tSQLiteParserWHEN_                   = 150\n\tSQLiteParserWHERE_                  = 151\n\tSQLiteParserWITH_                   = 152\n\tSQLiteParserWITHOUT_                = 153\n\tSQLiteParserFIRST_VALUE_            = 154\n\tSQLiteParserOVER_                   = 155\n\tSQLiteParserPARTITION_              = 156\n\tSQLiteParserRANGE_                  = 157\n\tSQLiteParserPRECEDING_              = 158\n\tSQLiteParserUNBOUNDED_              = 159\n\tSQLiteParserCURRENT_                = 160\n\tSQLiteParserFOLLOWING_              = 161\n\tSQLiteParserCUME_DIST_              = 162\n\tSQLiteParserDENSE_RANK_             = 163\n\tSQLiteParserLAG_                    = 164\n\tSQLiteParserLAST_VALUE_             = 165\n\tSQLiteParserLEAD_                   = 166\n\tSQLiteParserNTH_VALUE_              = 167\n\tSQLiteParserNTILE_                  = 168\n\tSQLiteParserPERCENT_RANK_           = 169\n\tSQLiteParserRANK_                   = 170\n\tSQLiteParserROW_NUMBER_             = 171\n\tSQLiteParserGENERATED_              = 172\n\tSQLiteParserALWAYS_                 = 173\n\tSQLiteParserSTORED_                 = 174\n\tSQLiteParserTRUE_                   = 175\n\tSQLiteParserFALSE_                  = 176\n\tSQLiteParserWINDOW_                 = 177\n\tSQLiteParserNULLS_                  = 178\n\tSQLiteParserFIRST_                  = 179\n\tSQLiteParserLAST_                   = 180\n\tSQLiteParserFILTER_                 = 181\n\tSQLiteParserGROUPS_                 = 182\n\tSQLiteParserEXCLUDE_                = 183\n\tSQLiteParserTIES_                   = 184\n\tSQLiteParserOTHERS_                 = 185\n\tSQLiteParserDO_                     = 186\n\tSQLiteParserNOTHING_                = 187\n\tSQLiteParserIDENTIFIER              = 188\n\tSQLiteParserNUMERIC_LITERAL         = 189\n\tSQLiteParserNUMBERED_BIND_PARAMETER = 190\n\tSQLiteParserNAMED_BIND_PARAMETER    = 191\n\tSQLiteParserSTRING_LITERAL          = 192\n\tSQLiteParserBLOB_LITERAL            = 193\n\tSQLiteParserSINGLE_LINE_COMMENT     = 194\n\tSQLiteParserMULTILINE_COMMENT       = 195\n\tSQLiteParserSPACES                  = 196\n\tSQLiteParserUNEXPECTED_CHAR         = 197\n)\n\n// SQLiteParser rules.\nconst (\n\tSQLiteParserRULE_parse                         = 0\n\tSQLiteParserRULE_sql_stmt_list                 = 1\n\tSQLiteParserRULE_sql_stmt                      = 2\n\tSQLiteParserRULE_alter_table_stmt              = 3\n\tSQLiteParserRULE_analyze_stmt                  = 4\n\tSQLiteParserRULE_attach_stmt                   = 5\n\tSQLiteParserRULE_begin_stmt                    = 6\n\tSQLiteParserRULE_commit_stmt                   = 7\n\tSQLiteParserRULE_rollback_stmt                 = 8\n\tSQLiteParserRULE_savepoint_stmt                = 9\n\tSQLiteParserRULE_release_stmt                  = 10\n\tSQLiteParserRULE_create_index_stmt             = 11\n\tSQLiteParserRULE_indexed_column                = 12\n\tSQLiteParserRULE_table_option                  = 13\n\tSQLiteParserRULE_create_table_stmt             = 14\n\tSQLiteParserRULE_column_def                    = 15\n\tSQLiteParserRULE_type_name                     = 16\n\tSQLiteParserRULE_column_constraint             = 17\n\tSQLiteParserRULE_signed_number                 = 18\n\tSQLiteParserRULE_table_constraint              = 19\n\tSQLiteParserRULE_foreign_key_clause            = 20\n\tSQLiteParserRULE_conflict_clause               = 21\n\tSQLiteParserRULE_create_trigger_stmt           = 22\n\tSQLiteParserRULE_create_view_stmt              = 23\n\tSQLiteParserRULE_create_virtual_table_stmt     = 24\n\tSQLiteParserRULE_with_clause                   = 25\n\tSQLiteParserRULE_cte_table_name                = 26\n\tSQLiteParserRULE_recursive_cte                 = 27\n\tSQLiteParserRULE_common_table_expression       = 28\n\tSQLiteParserRULE_returning_clause              = 29\n\tSQLiteParserRULE_delete_stmt                   = 30\n\tSQLiteParserRULE_delete_stmt_limited           = 31\n\tSQLiteParserRULE_detach_stmt                   = 32\n\tSQLiteParserRULE_drop_stmt                     = 33\n\tSQLiteParserRULE_expr                          = 34\n\tSQLiteParserRULE_raise_function                = 35\n\tSQLiteParserRULE_literal_value                 = 36\n\tSQLiteParserRULE_insert_stmt                   = 37\n\tSQLiteParserRULE_upsert_clause                 = 38\n\tSQLiteParserRULE_pragma_stmt                   = 39\n\tSQLiteParserRULE_pragma_value                  = 40\n\tSQLiteParserRULE_reindex_stmt                  = 41\n\tSQLiteParserRULE_select_stmt                   = 42\n\tSQLiteParserRULE_join_clause                   = 43\n\tSQLiteParserRULE_select_core                   = 44\n\tSQLiteParserRULE_factored_select_stmt          = 45\n\tSQLiteParserRULE_simple_select_stmt            = 46\n\tSQLiteParserRULE_compound_select_stmt          = 47\n\tSQLiteParserRULE_table_or_subquery             = 48\n\tSQLiteParserRULE_result_column                 = 49\n\tSQLiteParserRULE_join_operator                 = 50\n\tSQLiteParserRULE_join_constraint               = 51\n\tSQLiteParserRULE_compound_operator             = 52\n\tSQLiteParserRULE_update_stmt                   = 53\n\tSQLiteParserRULE_column_name_list              = 54\n\tSQLiteParserRULE_update_stmt_limited           = 55\n\tSQLiteParserRULE_qualified_table_name          = 56\n\tSQLiteParserRULE_vacuum_stmt                   = 57\n\tSQLiteParserRULE_filter_clause                 = 58\n\tSQLiteParserRULE_window_defn                   = 59\n\tSQLiteParserRULE_over_clause                   = 60\n\tSQLiteParserRULE_frame_spec                    = 61\n\tSQLiteParserRULE_frame_clause                  = 62\n\tSQLiteParserRULE_simple_function_invocation    = 63\n\tSQLiteParserRULE_aggregate_function_invocation = 64\n\tSQLiteParserRULE_window_function_invocation    = 65\n\tSQLiteParserRULE_common_table_stmt             = 66\n\tSQLiteParserRULE_order_by_stmt                 = 67\n\tSQLiteParserRULE_limit_stmt                    = 68\n\tSQLiteParserRULE_ordering_term                 = 69\n\tSQLiteParserRULE_asc_desc                      = 70\n\tSQLiteParserRULE_frame_left                    = 71\n\tSQLiteParserRULE_frame_right                   = 72\n\tSQLiteParserRULE_frame_single                  = 73\n\tSQLiteParserRULE_window_function               = 74\n\tSQLiteParserRULE_of_OF_fset                    = 75\n\tSQLiteParserRULE_default_DEFAULT__value        = 76\n\tSQLiteParserRULE_partition_by                  = 77\n\tSQLiteParserRULE_order_by_expr                 = 78\n\tSQLiteParserRULE_order_by_expr_asc_desc        = 79\n\tSQLiteParserRULE_expr_asc_desc                 = 80\n\tSQLiteParserRULE_initial_select                = 81\n\tSQLiteParserRULE_recursive__select             = 82\n\tSQLiteParserRULE_unary_operator                = 83\n\tSQLiteParserRULE_error_message                 = 84\n\tSQLiteParserRULE_module_argument               = 85\n\tSQLiteParserRULE_column_alias                  = 86\n\tSQLiteParserRULE_keyword                       = 87\n\tSQLiteParserRULE_name                          = 88\n\tSQLiteParserRULE_function_name                 = 89\n\tSQLiteParserRULE_qualified_function_name       = 90\n\tSQLiteParserRULE_schema_name                   = 91\n\tSQLiteParserRULE_table_name                    = 92\n\tSQLiteParserRULE_table_or_index_name           = 93\n\tSQLiteParserRULE_new_table_name                = 94\n\tSQLiteParserRULE_column_name                   = 95\n\tSQLiteParserRULE_collation_name                = 96\n\tSQLiteParserRULE_foreign_table                 = 97\n\tSQLiteParserRULE_index_name                    = 98\n\tSQLiteParserRULE_trigger_name                  = 99\n\tSQLiteParserRULE_view_name                     = 100\n\tSQLiteParserRULE_module_name                   = 101\n\tSQLiteParserRULE_pragma_name                   = 102\n\tSQLiteParserRULE_savepoint_name                = 103\n\tSQLiteParserRULE_table_alias                   = 104\n\tSQLiteParserRULE_table_alias_fallback          = 105\n\tSQLiteParserRULE_transaction_name              = 106\n\tSQLiteParserRULE_window_name                   = 107\n\tSQLiteParserRULE_alias                         = 108\n\tSQLiteParserRULE_filename                      = 109\n\tSQLiteParserRULE_base_window_name              = 110\n\tSQLiteParserRULE_simple_func                   = 111\n\tSQLiteParserRULE_aggregate_func                = 112\n\tSQLiteParserRULE_table_function_name           = 113\n\tSQLiteParserRULE_any_name                      = 114\n)\n\n// IParseContext is an interface to support dynamic dispatch.\ntype IParseContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tEOF() antlr.TerminalNode\n\tAllSql_stmt_list() []ISql_stmt_listContext\n\tSql_stmt_list(i int) ISql_stmt_listContext\n\n\t// IsParseContext differentiates from other interfaces.\n\tIsParseContext()\n}\n\ntype ParseContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyParseContext() *ParseContext {\n\tvar p = new(ParseContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_parse\n\treturn p\n}\n\nfunc InitEmptyParseContext(p *ParseContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_parse\n}\n\nfunc (*ParseContext) IsParseContext() {}\n\nfunc NewParseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ParseContext {\n\tvar p = new(ParseContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_parse\n\n\treturn p\n}\n\nfunc (s *ParseContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *ParseContext) EOF() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEOF, 0)\n}\n\nfunc (s *ParseContext) AllSql_stmt_list() []ISql_stmt_listContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(ISql_stmt_listContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]ISql_stmt_listContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(ISql_stmt_listContext); ok {\n\t\t\ttst[i] = t.(ISql_stmt_listContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *ParseContext) Sql_stmt_list(i int) ISql_stmt_listContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISql_stmt_listContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISql_stmt_listContext)\n}\n\nfunc (s *ParseContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *ParseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *ParseContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterParse(s)\n\t}\n}\n\nfunc (s *ParseContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitParse(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Parse() (localctx IParseContext) {\n\tlocalctx = NewParseContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 0, SQLiteParserRULE_parse)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(233)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&-6912461228224806910) != 0) || ((int64((_la-65)) & ^0x3f) == 0 && ((int64(1)<<(_la-65))&-8430175552450592503) != 0) || ((int64((_la-131)) & ^0x3f) == 0 && ((int64(1)<<(_la-131))&2203651) != 0) {\n\t\t{\n\t\t\tp.SetState(230)\n\t\t\tp.Sql_stmt_list()\n\t\t}\n\n\t\tp.SetState(235)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\t{\n\t\tp.SetState(236)\n\t\tp.Match(SQLiteParserEOF)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ISql_stmt_listContext is an interface to support dynamic dispatch.\ntype ISql_stmt_listContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAllSql_stmt() []ISql_stmtContext\n\tSql_stmt(i int) ISql_stmtContext\n\tAllSCOL() []antlr.TerminalNode\n\tSCOL(i int) antlr.TerminalNode\n\n\t// IsSql_stmt_listContext differentiates from other interfaces.\n\tIsSql_stmt_listContext()\n}\n\ntype Sql_stmt_listContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptySql_stmt_listContext() *Sql_stmt_listContext {\n\tvar p = new(Sql_stmt_listContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_sql_stmt_list\n\treturn p\n}\n\nfunc InitEmptySql_stmt_listContext(p *Sql_stmt_listContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_sql_stmt_list\n}\n\nfunc (*Sql_stmt_listContext) IsSql_stmt_listContext() {}\n\nfunc NewSql_stmt_listContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Sql_stmt_listContext {\n\tvar p = new(Sql_stmt_listContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_sql_stmt_list\n\n\treturn p\n}\n\nfunc (s *Sql_stmt_listContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Sql_stmt_listContext) AllSql_stmt() []ISql_stmtContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(ISql_stmtContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]ISql_stmtContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(ISql_stmtContext); ok {\n\t\t\ttst[i] = t.(ISql_stmtContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Sql_stmt_listContext) Sql_stmt(i int) ISql_stmtContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISql_stmtContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISql_stmtContext)\n}\n\nfunc (s *Sql_stmt_listContext) AllSCOL() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserSCOL)\n}\n\nfunc (s *Sql_stmt_listContext) SCOL(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSCOL, i)\n}\n\nfunc (s *Sql_stmt_listContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Sql_stmt_listContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Sql_stmt_listContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterSql_stmt_list(s)\n\t}\n}\n\nfunc (s *Sql_stmt_listContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitSql_stmt_list(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Sql_stmt_list() (localctx ISql_stmt_listContext) {\n\tlocalctx = NewSql_stmt_listContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 2, SQLiteParserRULE_sql_stmt_list)\n\tvar _la int\n\n\tvar _alt int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(241)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor _la == SQLiteParserSCOL {\n\t\t{\n\t\t\tp.SetState(238)\n\t\t\tp.Match(SQLiteParserSCOL)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t\tp.SetState(243)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\t{\n\t\tp.SetState(244)\n\t\tp.Sql_stmt()\n\t}\n\tp.SetState(253)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 3, p.GetParserRuleContext())\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\tfor _alt != 2 && _alt != antlr.ATNInvalidAltNumber {\n\t\tif _alt == 1 {\n\t\t\tp.SetState(246)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tfor ok := true; ok; ok = _la == SQLiteParserSCOL {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(245)\n\t\t\t\t\tp.Match(SQLiteParserSCOL)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tp.SetState(248)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(250)\n\t\t\t\tp.Sql_stmt()\n\t\t\t}\n\n\t\t}\n\t\tp.SetState(255)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 3, p.GetParserRuleContext())\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(259)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 4, p.GetParserRuleContext())\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\tfor _alt != 2 && _alt != antlr.ATNInvalidAltNumber {\n\t\tif _alt == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(256)\n\t\t\t\tp.Match(SQLiteParserSCOL)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\t\tp.SetState(261)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 4, p.GetParserRuleContext())\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ISql_stmtContext is an interface to support dynamic dispatch.\ntype ISql_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAlter_table_stmt() IAlter_table_stmtContext\n\tAnalyze_stmt() IAnalyze_stmtContext\n\tAttach_stmt() IAttach_stmtContext\n\tBegin_stmt() IBegin_stmtContext\n\tCommit_stmt() ICommit_stmtContext\n\tCreate_index_stmt() ICreate_index_stmtContext\n\tCreate_table_stmt() ICreate_table_stmtContext\n\tCreate_trigger_stmt() ICreate_trigger_stmtContext\n\tCreate_view_stmt() ICreate_view_stmtContext\n\tCreate_virtual_table_stmt() ICreate_virtual_table_stmtContext\n\tDelete_stmt() IDelete_stmtContext\n\tDelete_stmt_limited() IDelete_stmt_limitedContext\n\tDetach_stmt() IDetach_stmtContext\n\tDrop_stmt() IDrop_stmtContext\n\tInsert_stmt() IInsert_stmtContext\n\tPragma_stmt() IPragma_stmtContext\n\tReindex_stmt() IReindex_stmtContext\n\tRelease_stmt() IRelease_stmtContext\n\tRollback_stmt() IRollback_stmtContext\n\tSavepoint_stmt() ISavepoint_stmtContext\n\tSelect_stmt() ISelect_stmtContext\n\tUpdate_stmt() IUpdate_stmtContext\n\tUpdate_stmt_limited() IUpdate_stmt_limitedContext\n\tVacuum_stmt() IVacuum_stmtContext\n\tEXPLAIN_() antlr.TerminalNode\n\tQUERY_() antlr.TerminalNode\n\tPLAN_() antlr.TerminalNode\n\n\t// IsSql_stmtContext differentiates from other interfaces.\n\tIsSql_stmtContext()\n}\n\ntype Sql_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptySql_stmtContext() *Sql_stmtContext {\n\tvar p = new(Sql_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_sql_stmt\n\treturn p\n}\n\nfunc InitEmptySql_stmtContext(p *Sql_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_sql_stmt\n}\n\nfunc (*Sql_stmtContext) IsSql_stmtContext() {}\n\nfunc NewSql_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Sql_stmtContext {\n\tvar p = new(Sql_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_sql_stmt\n\n\treturn p\n}\n\nfunc (s *Sql_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Sql_stmtContext) Alter_table_stmt() IAlter_table_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAlter_table_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAlter_table_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Analyze_stmt() IAnalyze_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAnalyze_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAnalyze_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Attach_stmt() IAttach_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAttach_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAttach_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Begin_stmt() IBegin_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IBegin_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IBegin_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Commit_stmt() ICommit_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICommit_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICommit_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Create_index_stmt() ICreate_index_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICreate_index_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICreate_index_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Create_table_stmt() ICreate_table_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICreate_table_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICreate_table_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Create_trigger_stmt() ICreate_trigger_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICreate_trigger_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICreate_trigger_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Create_view_stmt() ICreate_view_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICreate_view_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICreate_view_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Create_virtual_table_stmt() ICreate_virtual_table_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICreate_virtual_table_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICreate_virtual_table_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Delete_stmt() IDelete_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IDelete_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IDelete_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Delete_stmt_limited() IDelete_stmt_limitedContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IDelete_stmt_limitedContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IDelete_stmt_limitedContext)\n}\n\nfunc (s *Sql_stmtContext) Detach_stmt() IDetach_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IDetach_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IDetach_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Drop_stmt() IDrop_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IDrop_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IDrop_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Insert_stmt() IInsert_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IInsert_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IInsert_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Pragma_stmt() IPragma_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IPragma_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IPragma_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Reindex_stmt() IReindex_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IReindex_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IReindex_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Release_stmt() IRelease_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IRelease_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IRelease_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Rollback_stmt() IRollback_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IRollback_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IRollback_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Savepoint_stmt() ISavepoint_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISavepoint_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISavepoint_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Select_stmt() ISelect_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISelect_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Update_stmt() IUpdate_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IUpdate_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IUpdate_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) Update_stmt_limited() IUpdate_stmt_limitedContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IUpdate_stmt_limitedContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IUpdate_stmt_limitedContext)\n}\n\nfunc (s *Sql_stmtContext) Vacuum_stmt() IVacuum_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IVacuum_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IVacuum_stmtContext)\n}\n\nfunc (s *Sql_stmtContext) EXPLAIN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXPLAIN_, 0)\n}\n\nfunc (s *Sql_stmtContext) QUERY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserQUERY_, 0)\n}\n\nfunc (s *Sql_stmtContext) PLAN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPLAN_, 0)\n}\n\nfunc (s *Sql_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Sql_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Sql_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterSql_stmt(s)\n\t}\n}\n\nfunc (s *Sql_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitSql_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Sql_stmt() (localctx ISql_stmtContext) {\n\tlocalctx = NewSql_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 4, SQLiteParserRULE_sql_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(267)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserEXPLAIN_ {\n\t\t{\n\t\t\tp.SetState(262)\n\t\t\tp.Match(SQLiteParserEXPLAIN_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(265)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserQUERY_ {\n\t\t\t{\n\t\t\t\tp.SetState(263)\n\t\t\t\tp.Match(SQLiteParserQUERY_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(264)\n\t\t\t\tp.Match(SQLiteParserPLAN_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t}\n\tp.SetState(293)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 7, p.GetParserRuleContext()) {\n\tcase 1:\n\t\t{\n\t\t\tp.SetState(269)\n\t\t\tp.Alter_table_stmt()\n\t\t}\n\n\tcase 2:\n\t\t{\n\t\t\tp.SetState(270)\n\t\t\tp.Analyze_stmt()\n\t\t}\n\n\tcase 3:\n\t\t{\n\t\t\tp.SetState(271)\n\t\t\tp.Attach_stmt()\n\t\t}\n\n\tcase 4:\n\t\t{\n\t\t\tp.SetState(272)\n\t\t\tp.Begin_stmt()\n\t\t}\n\n\tcase 5:\n\t\t{\n\t\t\tp.SetState(273)\n\t\t\tp.Commit_stmt()\n\t\t}\n\n\tcase 6:\n\t\t{\n\t\t\tp.SetState(274)\n\t\t\tp.Create_index_stmt()\n\t\t}\n\n\tcase 7:\n\t\t{\n\t\t\tp.SetState(275)\n\t\t\tp.Create_table_stmt()\n\t\t}\n\n\tcase 8:\n\t\t{\n\t\t\tp.SetState(276)\n\t\t\tp.Create_trigger_stmt()\n\t\t}\n\n\tcase 9:\n\t\t{\n\t\t\tp.SetState(277)\n\t\t\tp.Create_view_stmt()\n\t\t}\n\n\tcase 10:\n\t\t{\n\t\t\tp.SetState(278)\n\t\t\tp.Create_virtual_table_stmt()\n\t\t}\n\n\tcase 11:\n\t\t{\n\t\t\tp.SetState(279)\n\t\t\tp.Delete_stmt()\n\t\t}\n\n\tcase 12:\n\t\t{\n\t\t\tp.SetState(280)\n\t\t\tp.Delete_stmt_limited()\n\t\t}\n\n\tcase 13:\n\t\t{\n\t\t\tp.SetState(281)\n\t\t\tp.Detach_stmt()\n\t\t}\n\n\tcase 14:\n\t\t{\n\t\t\tp.SetState(282)\n\t\t\tp.Drop_stmt()\n\t\t}\n\n\tcase 15:\n\t\t{\n\t\t\tp.SetState(283)\n\t\t\tp.Insert_stmt()\n\t\t}\n\n\tcase 16:\n\t\t{\n\t\t\tp.SetState(284)\n\t\t\tp.Pragma_stmt()\n\t\t}\n\n\tcase 17:\n\t\t{\n\t\t\tp.SetState(285)\n\t\t\tp.Reindex_stmt()\n\t\t}\n\n\tcase 18:\n\t\t{\n\t\t\tp.SetState(286)\n\t\t\tp.Release_stmt()\n\t\t}\n\n\tcase 19:\n\t\t{\n\t\t\tp.SetState(287)\n\t\t\tp.Rollback_stmt()\n\t\t}\n\n\tcase 20:\n\t\t{\n\t\t\tp.SetState(288)\n\t\t\tp.Savepoint_stmt()\n\t\t}\n\n\tcase 21:\n\t\t{\n\t\t\tp.SetState(289)\n\t\t\tp.Select_stmt()\n\t\t}\n\n\tcase 22:\n\t\t{\n\t\t\tp.SetState(290)\n\t\t\tp.Update_stmt()\n\t\t}\n\n\tcase 23:\n\t\t{\n\t\t\tp.SetState(291)\n\t\t\tp.Update_stmt_limited()\n\t\t}\n\n\tcase 24:\n\t\t{\n\t\t\tp.SetState(292)\n\t\t\tp.Vacuum_stmt()\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IAlter_table_stmtContext is an interface to support dynamic dispatch.\ntype IAlter_table_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// GetOld_column_name returns the old_column_name rule contexts.\n\tGetOld_column_name() IColumn_nameContext\n\n\t// GetNew_column_name returns the new_column_name rule contexts.\n\tGetNew_column_name() IColumn_nameContext\n\n\t// SetOld_column_name sets the old_column_name rule contexts.\n\tSetOld_column_name(IColumn_nameContext)\n\n\t// SetNew_column_name sets the new_column_name rule contexts.\n\tSetNew_column_name(IColumn_nameContext)\n\n\t// Getter signatures\n\tALTER_() antlr.TerminalNode\n\tTABLE_() antlr.TerminalNode\n\tTable_name() ITable_nameContext\n\tRENAME_() antlr.TerminalNode\n\tADD_() antlr.TerminalNode\n\tColumn_def() IColumn_defContext\n\tDROP_() antlr.TerminalNode\n\tAllColumn_name() []IColumn_nameContext\n\tColumn_name(i int) IColumn_nameContext\n\tSchema_name() ISchema_nameContext\n\tDOT() antlr.TerminalNode\n\tTO_() antlr.TerminalNode\n\tNew_table_name() INew_table_nameContext\n\tCOLUMN_() antlr.TerminalNode\n\n\t// IsAlter_table_stmtContext differentiates from other interfaces.\n\tIsAlter_table_stmtContext()\n}\n\ntype Alter_table_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser          antlr.Parser\n\told_column_name IColumn_nameContext\n\tnew_column_name IColumn_nameContext\n}\n\nfunc NewEmptyAlter_table_stmtContext() *Alter_table_stmtContext {\n\tvar p = new(Alter_table_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_alter_table_stmt\n\treturn p\n}\n\nfunc InitEmptyAlter_table_stmtContext(p *Alter_table_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_alter_table_stmt\n}\n\nfunc (*Alter_table_stmtContext) IsAlter_table_stmtContext() {}\n\nfunc NewAlter_table_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Alter_table_stmtContext {\n\tvar p = new(Alter_table_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_alter_table_stmt\n\n\treturn p\n}\n\nfunc (s *Alter_table_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Alter_table_stmtContext) GetOld_column_name() IColumn_nameContext { return s.old_column_name }\n\nfunc (s *Alter_table_stmtContext) GetNew_column_name() IColumn_nameContext { return s.new_column_name }\n\nfunc (s *Alter_table_stmtContext) SetOld_column_name(v IColumn_nameContext) { s.old_column_name = v }\n\nfunc (s *Alter_table_stmtContext) SetNew_column_name(v IColumn_nameContext) { s.new_column_name = v }\n\nfunc (s *Alter_table_stmtContext) ALTER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserALTER_, 0)\n}\n\nfunc (s *Alter_table_stmtContext) TABLE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTABLE_, 0)\n}\n\nfunc (s *Alter_table_stmtContext) Table_name() ITable_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_nameContext)\n}\n\nfunc (s *Alter_table_stmtContext) RENAME_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRENAME_, 0)\n}\n\nfunc (s *Alter_table_stmtContext) ADD_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserADD_, 0)\n}\n\nfunc (s *Alter_table_stmtContext) Column_def() IColumn_defContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_defContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_defContext)\n}\n\nfunc (s *Alter_table_stmtContext) DROP_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDROP_, 0)\n}\n\nfunc (s *Alter_table_stmtContext) AllColumn_name() []IColumn_nameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_nameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_nameContext); ok {\n\t\t\ttst[i] = t.(IColumn_nameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Alter_table_stmtContext) Column_name(i int) IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Alter_table_stmtContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Alter_table_stmtContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Alter_table_stmtContext) TO_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTO_, 0)\n}\n\nfunc (s *Alter_table_stmtContext) New_table_name() INew_table_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(INew_table_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(INew_table_nameContext)\n}\n\nfunc (s *Alter_table_stmtContext) COLUMN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOLUMN_, 0)\n}\n\nfunc (s *Alter_table_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Alter_table_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Alter_table_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterAlter_table_stmt(s)\n\t}\n}\n\nfunc (s *Alter_table_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitAlter_table_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Alter_table_stmt() (localctx IAlter_table_stmtContext) {\n\tlocalctx = NewAlter_table_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 6, SQLiteParserRULE_alter_table_stmt)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(295)\n\t\tp.Match(SQLiteParserALTER_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(296)\n\t\tp.Match(SQLiteParserTABLE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(300)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 8, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(297)\n\t\t\tp.Schema_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(298)\n\t\t\tp.Match(SQLiteParserDOT)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(302)\n\t\tp.Table_name()\n\t}\n\tp.SetState(325)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserRENAME_:\n\t\t{\n\t\t\tp.SetState(303)\n\t\t\tp.Match(SQLiteParserRENAME_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(313)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 10, p.GetParserRuleContext()) {\n\t\tcase 1:\n\t\t\t{\n\t\t\t\tp.SetState(304)\n\t\t\t\tp.Match(SQLiteParserTO_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(305)\n\t\t\t\tp.New_table_name()\n\t\t\t}\n\n\t\tcase 2:\n\t\t\tp.SetState(307)\n\t\t\tp.GetErrorHandler().Sync(p)\n\n\t\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 9, p.GetParserRuleContext()) == 1 {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(306)\n\t\t\t\t\tp.Match(SQLiteParserCOLUMN_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t} else if p.HasError() { // JIM\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(309)\n\n\t\t\t\tvar _x = p.Column_name()\n\n\t\t\t\tlocalctx.(*Alter_table_stmtContext).old_column_name = _x\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(310)\n\t\t\t\tp.Match(SQLiteParserTO_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(311)\n\n\t\t\t\tvar _x = p.Column_name()\n\n\t\t\t\tlocalctx.(*Alter_table_stmtContext).new_column_name = _x\n\t\t\t}\n\n\t\tcase antlr.ATNInvalidAltNumber:\n\t\t\tgoto errorExit\n\t\t}\n\n\tcase SQLiteParserADD_:\n\t\t{\n\t\t\tp.SetState(315)\n\t\t\tp.Match(SQLiteParserADD_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(317)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 11, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(316)\n\t\t\t\tp.Match(SQLiteParserCOLUMN_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(319)\n\t\t\tp.Column_def()\n\t\t}\n\n\tcase SQLiteParserDROP_:\n\t\t{\n\t\t\tp.SetState(320)\n\t\t\tp.Match(SQLiteParserDROP_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(322)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 12, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(321)\n\t\t\t\tp.Match(SQLiteParserCOLUMN_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(324)\n\t\t\tp.Column_name()\n\t\t}\n\n\tdefault:\n\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IAnalyze_stmtContext is an interface to support dynamic dispatch.\ntype IAnalyze_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tANALYZE_() antlr.TerminalNode\n\tSchema_name() ISchema_nameContext\n\tTable_or_index_name() ITable_or_index_nameContext\n\tDOT() antlr.TerminalNode\n\n\t// IsAnalyze_stmtContext differentiates from other interfaces.\n\tIsAnalyze_stmtContext()\n}\n\ntype Analyze_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyAnalyze_stmtContext() *Analyze_stmtContext {\n\tvar p = new(Analyze_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_analyze_stmt\n\treturn p\n}\n\nfunc InitEmptyAnalyze_stmtContext(p *Analyze_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_analyze_stmt\n}\n\nfunc (*Analyze_stmtContext) IsAnalyze_stmtContext() {}\n\nfunc NewAnalyze_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Analyze_stmtContext {\n\tvar p = new(Analyze_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_analyze_stmt\n\n\treturn p\n}\n\nfunc (s *Analyze_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Analyze_stmtContext) ANALYZE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserANALYZE_, 0)\n}\n\nfunc (s *Analyze_stmtContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Analyze_stmtContext) Table_or_index_name() ITable_or_index_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_or_index_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_or_index_nameContext)\n}\n\nfunc (s *Analyze_stmtContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Analyze_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Analyze_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Analyze_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterAnalyze_stmt(s)\n\t}\n}\n\nfunc (s *Analyze_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitAnalyze_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Analyze_stmt() (localctx IAnalyze_stmtContext) {\n\tlocalctx = NewAnalyze_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 8, SQLiteParserRULE_analyze_stmt)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(327)\n\t\tp.Match(SQLiteParserANALYZE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(335)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 15, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(328)\n\t\t\tp.Schema_name()\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t} else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 15, p.GetParserRuleContext()) == 2 {\n\t\tp.SetState(332)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 14, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(329)\n\t\t\t\tp.Schema_name()\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(330)\n\t\t\t\tp.Match(SQLiteParserDOT)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(334)\n\t\t\tp.Table_or_index_name()\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IAttach_stmtContext is an interface to support dynamic dispatch.\ntype IAttach_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tATTACH_() antlr.TerminalNode\n\tExpr() IExprContext\n\tAS_() antlr.TerminalNode\n\tSchema_name() ISchema_nameContext\n\tDATABASE_() antlr.TerminalNode\n\n\t// IsAttach_stmtContext differentiates from other interfaces.\n\tIsAttach_stmtContext()\n}\n\ntype Attach_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyAttach_stmtContext() *Attach_stmtContext {\n\tvar p = new(Attach_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_attach_stmt\n\treturn p\n}\n\nfunc InitEmptyAttach_stmtContext(p *Attach_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_attach_stmt\n}\n\nfunc (*Attach_stmtContext) IsAttach_stmtContext() {}\n\nfunc NewAttach_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Attach_stmtContext {\n\tvar p = new(Attach_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_attach_stmt\n\n\treturn p\n}\n\nfunc (s *Attach_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Attach_stmtContext) ATTACH_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserATTACH_, 0)\n}\n\nfunc (s *Attach_stmtContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Attach_stmtContext) AS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAS_, 0)\n}\n\nfunc (s *Attach_stmtContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Attach_stmtContext) DATABASE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDATABASE_, 0)\n}\n\nfunc (s *Attach_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Attach_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Attach_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterAttach_stmt(s)\n\t}\n}\n\nfunc (s *Attach_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitAttach_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Attach_stmt() (localctx IAttach_stmtContext) {\n\tlocalctx = NewAttach_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 10, SQLiteParserRULE_attach_stmt)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(337)\n\t\tp.Match(SQLiteParserATTACH_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(339)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 16, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(338)\n\t\t\tp.Match(SQLiteParserDATABASE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(341)\n\t\tp.expr(0)\n\t}\n\t{\n\t\tp.SetState(342)\n\t\tp.Match(SQLiteParserAS_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(343)\n\t\tp.Schema_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IBegin_stmtContext is an interface to support dynamic dispatch.\ntype IBegin_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tBEGIN_() antlr.TerminalNode\n\tTRANSACTION_() antlr.TerminalNode\n\tDEFERRED_() antlr.TerminalNode\n\tIMMEDIATE_() antlr.TerminalNode\n\tEXCLUSIVE_() antlr.TerminalNode\n\tTransaction_name() ITransaction_nameContext\n\n\t// IsBegin_stmtContext differentiates from other interfaces.\n\tIsBegin_stmtContext()\n}\n\ntype Begin_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyBegin_stmtContext() *Begin_stmtContext {\n\tvar p = new(Begin_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_begin_stmt\n\treturn p\n}\n\nfunc InitEmptyBegin_stmtContext(p *Begin_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_begin_stmt\n}\n\nfunc (*Begin_stmtContext) IsBegin_stmtContext() {}\n\nfunc NewBegin_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Begin_stmtContext {\n\tvar p = new(Begin_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_begin_stmt\n\n\treturn p\n}\n\nfunc (s *Begin_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Begin_stmtContext) BEGIN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBEGIN_, 0)\n}\n\nfunc (s *Begin_stmtContext) TRANSACTION_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTRANSACTION_, 0)\n}\n\nfunc (s *Begin_stmtContext) DEFERRED_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDEFERRED_, 0)\n}\n\nfunc (s *Begin_stmtContext) IMMEDIATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIMMEDIATE_, 0)\n}\n\nfunc (s *Begin_stmtContext) EXCLUSIVE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXCLUSIVE_, 0)\n}\n\nfunc (s *Begin_stmtContext) Transaction_name() ITransaction_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITransaction_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITransaction_nameContext)\n}\n\nfunc (s *Begin_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Begin_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Begin_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterBegin_stmt(s)\n\t}\n}\n\nfunc (s *Begin_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitBegin_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Begin_stmt() (localctx IBegin_stmtContext) {\n\tlocalctx = NewBegin_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 12, SQLiteParserRULE_begin_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(345)\n\t\tp.Match(SQLiteParserBEGIN_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(347)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif (int64((_la-60)) & ^0x3f) == 0 && ((int64(1)<<(_la-60))&16779265) != 0 {\n\t\t{\n\t\t\tp.SetState(346)\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif !((int64((_la-60)) & ^0x3f) == 0 && ((int64(1)<<(_la-60))&16779265) != 0) {\n\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t} else {\n\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\tp.Consume()\n\t\t\t}\n\t\t}\n\n\t}\n\tp.SetState(353)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserTRANSACTION_ {\n\t\t{\n\t\t\tp.SetState(349)\n\t\t\tp.Match(SQLiteParserTRANSACTION_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(351)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 18, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(350)\n\t\t\t\tp.Transaction_name()\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ICommit_stmtContext is an interface to support dynamic dispatch.\ntype ICommit_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tCOMMIT_() antlr.TerminalNode\n\tEND_() antlr.TerminalNode\n\tTRANSACTION_() antlr.TerminalNode\n\n\t// IsCommit_stmtContext differentiates from other interfaces.\n\tIsCommit_stmtContext()\n}\n\ntype Commit_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyCommit_stmtContext() *Commit_stmtContext {\n\tvar p = new(Commit_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_commit_stmt\n\treturn p\n}\n\nfunc InitEmptyCommit_stmtContext(p *Commit_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_commit_stmt\n}\n\nfunc (*Commit_stmtContext) IsCommit_stmtContext() {}\n\nfunc NewCommit_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Commit_stmtContext {\n\tvar p = new(Commit_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_commit_stmt\n\n\treturn p\n}\n\nfunc (s *Commit_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Commit_stmtContext) COMMIT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMIT_, 0)\n}\n\nfunc (s *Commit_stmtContext) END_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEND_, 0)\n}\n\nfunc (s *Commit_stmtContext) TRANSACTION_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTRANSACTION_, 0)\n}\n\nfunc (s *Commit_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Commit_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Commit_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterCommit_stmt(s)\n\t}\n}\n\nfunc (s *Commit_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitCommit_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Commit_stmt() (localctx ICommit_stmtContext) {\n\tlocalctx = NewCommit_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 14, SQLiteParserRULE_commit_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(355)\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif !(_la == SQLiteParserCOMMIT_ || _la == SQLiteParserEND_) {\n\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t} else {\n\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\tp.Consume()\n\t\t}\n\t}\n\tp.SetState(357)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserTRANSACTION_ {\n\t\t{\n\t\t\tp.SetState(356)\n\t\t\tp.Match(SQLiteParserTRANSACTION_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IRollback_stmtContext is an interface to support dynamic dispatch.\ntype IRollback_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tROLLBACK_() antlr.TerminalNode\n\tTRANSACTION_() antlr.TerminalNode\n\tTO_() antlr.TerminalNode\n\tSavepoint_name() ISavepoint_nameContext\n\tSAVEPOINT_() antlr.TerminalNode\n\n\t// IsRollback_stmtContext differentiates from other interfaces.\n\tIsRollback_stmtContext()\n}\n\ntype Rollback_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyRollback_stmtContext() *Rollback_stmtContext {\n\tvar p = new(Rollback_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_rollback_stmt\n\treturn p\n}\n\nfunc InitEmptyRollback_stmtContext(p *Rollback_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_rollback_stmt\n}\n\nfunc (*Rollback_stmtContext) IsRollback_stmtContext() {}\n\nfunc NewRollback_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Rollback_stmtContext {\n\tvar p = new(Rollback_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_rollback_stmt\n\n\treturn p\n}\n\nfunc (s *Rollback_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Rollback_stmtContext) ROLLBACK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROLLBACK_, 0)\n}\n\nfunc (s *Rollback_stmtContext) TRANSACTION_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTRANSACTION_, 0)\n}\n\nfunc (s *Rollback_stmtContext) TO_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTO_, 0)\n}\n\nfunc (s *Rollback_stmtContext) Savepoint_name() ISavepoint_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISavepoint_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISavepoint_nameContext)\n}\n\nfunc (s *Rollback_stmtContext) SAVEPOINT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSAVEPOINT_, 0)\n}\n\nfunc (s *Rollback_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Rollback_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Rollback_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterRollback_stmt(s)\n\t}\n}\n\nfunc (s *Rollback_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitRollback_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Rollback_stmt() (localctx IRollback_stmtContext) {\n\tlocalctx = NewRollback_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 16, SQLiteParserRULE_rollback_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(359)\n\t\tp.Match(SQLiteParserROLLBACK_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(361)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserTRANSACTION_ {\n\t\t{\n\t\t\tp.SetState(360)\n\t\t\tp.Match(SQLiteParserTRANSACTION_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t}\n\tp.SetState(368)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserTO_ {\n\t\t{\n\t\t\tp.SetState(363)\n\t\t\tp.Match(SQLiteParserTO_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(365)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 22, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(364)\n\t\t\t\tp.Match(SQLiteParserSAVEPOINT_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(367)\n\t\t\tp.Savepoint_name()\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ISavepoint_stmtContext is an interface to support dynamic dispatch.\ntype ISavepoint_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tSAVEPOINT_() antlr.TerminalNode\n\tSavepoint_name() ISavepoint_nameContext\n\n\t// IsSavepoint_stmtContext differentiates from other interfaces.\n\tIsSavepoint_stmtContext()\n}\n\ntype Savepoint_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptySavepoint_stmtContext() *Savepoint_stmtContext {\n\tvar p = new(Savepoint_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_savepoint_stmt\n\treturn p\n}\n\nfunc InitEmptySavepoint_stmtContext(p *Savepoint_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_savepoint_stmt\n}\n\nfunc (*Savepoint_stmtContext) IsSavepoint_stmtContext() {}\n\nfunc NewSavepoint_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Savepoint_stmtContext {\n\tvar p = new(Savepoint_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_savepoint_stmt\n\n\treturn p\n}\n\nfunc (s *Savepoint_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Savepoint_stmtContext) SAVEPOINT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSAVEPOINT_, 0)\n}\n\nfunc (s *Savepoint_stmtContext) Savepoint_name() ISavepoint_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISavepoint_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISavepoint_nameContext)\n}\n\nfunc (s *Savepoint_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Savepoint_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Savepoint_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterSavepoint_stmt(s)\n\t}\n}\n\nfunc (s *Savepoint_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitSavepoint_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Savepoint_stmt() (localctx ISavepoint_stmtContext) {\n\tlocalctx = NewSavepoint_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 18, SQLiteParserRULE_savepoint_stmt)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(370)\n\t\tp.Match(SQLiteParserSAVEPOINT_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(371)\n\t\tp.Savepoint_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IRelease_stmtContext is an interface to support dynamic dispatch.\ntype IRelease_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tRELEASE_() antlr.TerminalNode\n\tSavepoint_name() ISavepoint_nameContext\n\tSAVEPOINT_() antlr.TerminalNode\n\n\t// IsRelease_stmtContext differentiates from other interfaces.\n\tIsRelease_stmtContext()\n}\n\ntype Release_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyRelease_stmtContext() *Release_stmtContext {\n\tvar p = new(Release_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_release_stmt\n\treturn p\n}\n\nfunc InitEmptyRelease_stmtContext(p *Release_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_release_stmt\n}\n\nfunc (*Release_stmtContext) IsRelease_stmtContext() {}\n\nfunc NewRelease_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Release_stmtContext {\n\tvar p = new(Release_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_release_stmt\n\n\treturn p\n}\n\nfunc (s *Release_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Release_stmtContext) RELEASE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRELEASE_, 0)\n}\n\nfunc (s *Release_stmtContext) Savepoint_name() ISavepoint_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISavepoint_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISavepoint_nameContext)\n}\n\nfunc (s *Release_stmtContext) SAVEPOINT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSAVEPOINT_, 0)\n}\n\nfunc (s *Release_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Release_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Release_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterRelease_stmt(s)\n\t}\n}\n\nfunc (s *Release_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitRelease_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Release_stmt() (localctx IRelease_stmtContext) {\n\tlocalctx = NewRelease_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 20, SQLiteParserRULE_release_stmt)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(373)\n\t\tp.Match(SQLiteParserRELEASE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(375)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 24, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(374)\n\t\t\tp.Match(SQLiteParserSAVEPOINT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(377)\n\t\tp.Savepoint_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ICreate_index_stmtContext is an interface to support dynamic dispatch.\ntype ICreate_index_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tCREATE_() antlr.TerminalNode\n\tINDEX_() antlr.TerminalNode\n\tIndex_name() IIndex_nameContext\n\tON_() antlr.TerminalNode\n\tTable_name() ITable_nameContext\n\tOPEN_PAR() antlr.TerminalNode\n\tAllIndexed_column() []IIndexed_columnContext\n\tIndexed_column(i int) IIndexed_columnContext\n\tCLOSE_PAR() antlr.TerminalNode\n\tUNIQUE_() antlr.TerminalNode\n\tIF_() antlr.TerminalNode\n\tNOT_() antlr.TerminalNode\n\tEXISTS_() antlr.TerminalNode\n\tSchema_name() ISchema_nameContext\n\tDOT() antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\tWHERE_() antlr.TerminalNode\n\tExpr() IExprContext\n\n\t// IsCreate_index_stmtContext differentiates from other interfaces.\n\tIsCreate_index_stmtContext()\n}\n\ntype Create_index_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyCreate_index_stmtContext() *Create_index_stmtContext {\n\tvar p = new(Create_index_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_create_index_stmt\n\treturn p\n}\n\nfunc InitEmptyCreate_index_stmtContext(p *Create_index_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_create_index_stmt\n}\n\nfunc (*Create_index_stmtContext) IsCreate_index_stmtContext() {}\n\nfunc NewCreate_index_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Create_index_stmtContext {\n\tvar p = new(Create_index_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_create_index_stmt\n\n\treturn p\n}\n\nfunc (s *Create_index_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Create_index_stmtContext) CREATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCREATE_, 0)\n}\n\nfunc (s *Create_index_stmtContext) INDEX_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINDEX_, 0)\n}\n\nfunc (s *Create_index_stmtContext) Index_name() IIndex_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IIndex_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IIndex_nameContext)\n}\n\nfunc (s *Create_index_stmtContext) ON_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserON_, 0)\n}\n\nfunc (s *Create_index_stmtContext) Table_name() ITable_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_nameContext)\n}\n\nfunc (s *Create_index_stmtContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Create_index_stmtContext) AllIndexed_column() []IIndexed_columnContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IIndexed_columnContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IIndexed_columnContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IIndexed_columnContext); ok {\n\t\t\ttst[i] = t.(IIndexed_columnContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Create_index_stmtContext) Indexed_column(i int) IIndexed_columnContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IIndexed_columnContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IIndexed_columnContext)\n}\n\nfunc (s *Create_index_stmtContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Create_index_stmtContext) UNIQUE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUNIQUE_, 0)\n}\n\nfunc (s *Create_index_stmtContext) IF_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIF_, 0)\n}\n\nfunc (s *Create_index_stmtContext) NOT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_, 0)\n}\n\nfunc (s *Create_index_stmtContext) EXISTS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXISTS_, 0)\n}\n\nfunc (s *Create_index_stmtContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Create_index_stmtContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Create_index_stmtContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Create_index_stmtContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Create_index_stmtContext) WHERE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWHERE_, 0)\n}\n\nfunc (s *Create_index_stmtContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Create_index_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Create_index_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Create_index_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterCreate_index_stmt(s)\n\t}\n}\n\nfunc (s *Create_index_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitCreate_index_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Create_index_stmt() (localctx ICreate_index_stmtContext) {\n\tlocalctx = NewCreate_index_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 22, SQLiteParserRULE_create_index_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(379)\n\t\tp.Match(SQLiteParserCREATE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(381)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserUNIQUE_ {\n\t\t{\n\t\t\tp.SetState(380)\n\t\t\tp.Match(SQLiteParserUNIQUE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(383)\n\t\tp.Match(SQLiteParserINDEX_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(387)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 26, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(384)\n\t\t\tp.Match(SQLiteParserIF_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(385)\n\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(386)\n\t\t\tp.Match(SQLiteParserEXISTS_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\tp.SetState(392)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 27, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(389)\n\t\t\tp.Schema_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(390)\n\t\t\tp.Match(SQLiteParserDOT)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(394)\n\t\tp.Index_name()\n\t}\n\t{\n\t\tp.SetState(395)\n\t\tp.Match(SQLiteParserON_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(396)\n\t\tp.Table_name()\n\t}\n\t{\n\t\tp.SetState(397)\n\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(398)\n\t\tp.Indexed_column()\n\t}\n\tp.SetState(403)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor _la == SQLiteParserCOMMA {\n\t\t{\n\t\t\tp.SetState(399)\n\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(400)\n\t\t\tp.Indexed_column()\n\t\t}\n\n\t\tp.SetState(405)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\t{\n\t\tp.SetState(406)\n\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(409)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserWHERE_ {\n\t\t{\n\t\t\tp.SetState(407)\n\t\t\tp.Match(SQLiteParserWHERE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(408)\n\t\t\tp.expr(0)\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IIndexed_columnContext is an interface to support dynamic dispatch.\ntype IIndexed_columnContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tColumn_name() IColumn_nameContext\n\tExpr() IExprContext\n\tCOLLATE_() antlr.TerminalNode\n\tCollation_name() ICollation_nameContext\n\tAsc_desc() IAsc_descContext\n\n\t// IsIndexed_columnContext differentiates from other interfaces.\n\tIsIndexed_columnContext()\n}\n\ntype Indexed_columnContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyIndexed_columnContext() *Indexed_columnContext {\n\tvar p = new(Indexed_columnContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_indexed_column\n\treturn p\n}\n\nfunc InitEmptyIndexed_columnContext(p *Indexed_columnContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_indexed_column\n}\n\nfunc (*Indexed_columnContext) IsIndexed_columnContext() {}\n\nfunc NewIndexed_columnContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Indexed_columnContext {\n\tvar p = new(Indexed_columnContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_indexed_column\n\n\treturn p\n}\n\nfunc (s *Indexed_columnContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Indexed_columnContext) Column_name() IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Indexed_columnContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Indexed_columnContext) COLLATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOLLATE_, 0)\n}\n\nfunc (s *Indexed_columnContext) Collation_name() ICollation_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICollation_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICollation_nameContext)\n}\n\nfunc (s *Indexed_columnContext) Asc_desc() IAsc_descContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAsc_descContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAsc_descContext)\n}\n\nfunc (s *Indexed_columnContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Indexed_columnContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Indexed_columnContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterIndexed_column(s)\n\t}\n}\n\nfunc (s *Indexed_columnContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitIndexed_column(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Indexed_column() (localctx IIndexed_columnContext) {\n\tlocalctx = NewIndexed_columnContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 24, SQLiteParserRULE_indexed_column)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(413)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 30, p.GetParserRuleContext()) {\n\tcase 1:\n\t\t{\n\t\t\tp.SetState(411)\n\t\t\tp.Column_name()\n\t\t}\n\n\tcase 2:\n\t\t{\n\t\t\tp.SetState(412)\n\t\t\tp.expr(0)\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\tp.SetState(417)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserCOLLATE_ {\n\t\t{\n\t\t\tp.SetState(415)\n\t\t\tp.Match(SQLiteParserCOLLATE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(416)\n\t\t\tp.Collation_name()\n\t\t}\n\n\t}\n\tp.SetState(420)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserASC_ || _la == SQLiteParserDESC_ {\n\t\t{\n\t\t\tp.SetState(419)\n\t\t\tp.Asc_desc()\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ITable_optionContext is an interface to support dynamic dispatch.\ntype ITable_optionContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// GetRow_ROW_ID returns the row_ROW_ID token.\n\tGetRow_ROW_ID() antlr.Token\n\n\t// SetRow_ROW_ID sets the row_ROW_ID token.\n\tSetRow_ROW_ID(antlr.Token)\n\n\t// Getter signatures\n\tWITHOUT_() antlr.TerminalNode\n\tIDENTIFIER() antlr.TerminalNode\n\tSTRICT_() antlr.TerminalNode\n\n\t// IsTable_optionContext differentiates from other interfaces.\n\tIsTable_optionContext()\n}\n\ntype Table_optionContext struct {\n\tantlr.BaseParserRuleContext\n\tparser     antlr.Parser\n\trow_ROW_ID antlr.Token\n}\n\nfunc NewEmptyTable_optionContext() *Table_optionContext {\n\tvar p = new(Table_optionContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_option\n\treturn p\n}\n\nfunc InitEmptyTable_optionContext(p *Table_optionContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_option\n}\n\nfunc (*Table_optionContext) IsTable_optionContext() {}\n\nfunc NewTable_optionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Table_optionContext {\n\tvar p = new(Table_optionContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_table_option\n\n\treturn p\n}\n\nfunc (s *Table_optionContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Table_optionContext) GetRow_ROW_ID() antlr.Token { return s.row_ROW_ID }\n\nfunc (s *Table_optionContext) SetRow_ROW_ID(v antlr.Token) { s.row_ROW_ID = v }\n\nfunc (s *Table_optionContext) WITHOUT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWITHOUT_, 0)\n}\n\nfunc (s *Table_optionContext) IDENTIFIER() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIDENTIFIER, 0)\n}\n\nfunc (s *Table_optionContext) STRICT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTRICT_, 0)\n}\n\nfunc (s *Table_optionContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Table_optionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Table_optionContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterTable_option(s)\n\t}\n}\n\nfunc (s *Table_optionContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitTable_option(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Table_option() (localctx ITable_optionContext) {\n\tlocalctx = NewTable_optionContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 26, SQLiteParserRULE_table_option)\n\tp.SetState(425)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserWITHOUT_:\n\t\tp.EnterOuterAlt(localctx, 1)\n\t\t{\n\t\t\tp.SetState(422)\n\t\t\tp.Match(SQLiteParserWITHOUT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(423)\n\n\t\t\tvar _m = p.Match(SQLiteParserIDENTIFIER)\n\n\t\t\tlocalctx.(*Table_optionContext).row_ROW_ID = _m\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserSTRICT_:\n\t\tp.EnterOuterAlt(localctx, 2)\n\t\t{\n\t\t\tp.SetState(424)\n\t\t\tp.Match(SQLiteParserSTRICT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tdefault:\n\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ICreate_table_stmtContext is an interface to support dynamic dispatch.\ntype ICreate_table_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tCREATE_() antlr.TerminalNode\n\tTABLE_() antlr.TerminalNode\n\tTable_name() ITable_nameContext\n\tOPEN_PAR() antlr.TerminalNode\n\tAllColumn_def() []IColumn_defContext\n\tColumn_def(i int) IColumn_defContext\n\tCLOSE_PAR() antlr.TerminalNode\n\tAS_() antlr.TerminalNode\n\tSelect_stmt() ISelect_stmtContext\n\tIF_() antlr.TerminalNode\n\tNOT_() antlr.TerminalNode\n\tEXISTS_() antlr.TerminalNode\n\tSchema_name() ISchema_nameContext\n\tDOT() antlr.TerminalNode\n\tTEMP_() antlr.TerminalNode\n\tTEMPORARY_() antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\tAllTable_constraint() []ITable_constraintContext\n\tTable_constraint(i int) ITable_constraintContext\n\tAllTable_option() []ITable_optionContext\n\tTable_option(i int) ITable_optionContext\n\n\t// IsCreate_table_stmtContext differentiates from other interfaces.\n\tIsCreate_table_stmtContext()\n}\n\ntype Create_table_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyCreate_table_stmtContext() *Create_table_stmtContext {\n\tvar p = new(Create_table_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_create_table_stmt\n\treturn p\n}\n\nfunc InitEmptyCreate_table_stmtContext(p *Create_table_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_create_table_stmt\n}\n\nfunc (*Create_table_stmtContext) IsCreate_table_stmtContext() {}\n\nfunc NewCreate_table_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Create_table_stmtContext {\n\tvar p = new(Create_table_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_create_table_stmt\n\n\treturn p\n}\n\nfunc (s *Create_table_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Create_table_stmtContext) CREATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCREATE_, 0)\n}\n\nfunc (s *Create_table_stmtContext) TABLE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTABLE_, 0)\n}\n\nfunc (s *Create_table_stmtContext) Table_name() ITable_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_nameContext)\n}\n\nfunc (s *Create_table_stmtContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Create_table_stmtContext) AllColumn_def() []IColumn_defContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_defContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_defContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_defContext); ok {\n\t\t\ttst[i] = t.(IColumn_defContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Create_table_stmtContext) Column_def(i int) IColumn_defContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_defContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_defContext)\n}\n\nfunc (s *Create_table_stmtContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Create_table_stmtContext) AS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAS_, 0)\n}\n\nfunc (s *Create_table_stmtContext) Select_stmt() ISelect_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISelect_stmtContext)\n}\n\nfunc (s *Create_table_stmtContext) IF_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIF_, 0)\n}\n\nfunc (s *Create_table_stmtContext) NOT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_, 0)\n}\n\nfunc (s *Create_table_stmtContext) EXISTS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXISTS_, 0)\n}\n\nfunc (s *Create_table_stmtContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Create_table_stmtContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Create_table_stmtContext) TEMP_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTEMP_, 0)\n}\n\nfunc (s *Create_table_stmtContext) TEMPORARY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTEMPORARY_, 0)\n}\n\nfunc (s *Create_table_stmtContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Create_table_stmtContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Create_table_stmtContext) AllTable_constraint() []ITable_constraintContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(ITable_constraintContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]ITable_constraintContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(ITable_constraintContext); ok {\n\t\t\ttst[i] = t.(ITable_constraintContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Create_table_stmtContext) Table_constraint(i int) ITable_constraintContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_constraintContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_constraintContext)\n}\n\nfunc (s *Create_table_stmtContext) AllTable_option() []ITable_optionContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(ITable_optionContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]ITable_optionContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(ITable_optionContext); ok {\n\t\t\ttst[i] = t.(ITable_optionContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Create_table_stmtContext) Table_option(i int) ITable_optionContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_optionContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_optionContext)\n}\n\nfunc (s *Create_table_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Create_table_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Create_table_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterCreate_table_stmt(s)\n\t}\n}\n\nfunc (s *Create_table_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitCreate_table_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Create_table_stmt() (localctx ICreate_table_stmtContext) {\n\tlocalctx = NewCreate_table_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 28, SQLiteParserRULE_create_table_stmt)\n\tvar _la int\n\n\tvar _alt int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(427)\n\t\tp.Match(SQLiteParserCREATE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(429)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserTEMP_ || _la == SQLiteParserTEMPORARY_ {\n\t\t{\n\t\t\tp.SetState(428)\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif !(_la == SQLiteParserTEMP_ || _la == SQLiteParserTEMPORARY_) {\n\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t} else {\n\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\tp.Consume()\n\t\t\t}\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(431)\n\t\tp.Match(SQLiteParserTABLE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(435)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 35, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(432)\n\t\t\tp.Match(SQLiteParserIF_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(433)\n\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(434)\n\t\t\tp.Match(SQLiteParserEXISTS_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\tp.SetState(440)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 36, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(437)\n\t\t\tp.Schema_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(438)\n\t\t\tp.Match(SQLiteParserDOT)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(442)\n\t\tp.Table_name()\n\t}\n\tp.SetState(472)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserOPEN_PAR:\n\t\t{\n\t\t\tp.SetState(443)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(444)\n\t\t\tp.Column_def()\n\t\t}\n\t\tp.SetState(449)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 37, p.GetParserRuleContext())\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\tfor _alt != 1 && _alt != antlr.ATNInvalidAltNumber {\n\t\t\tif _alt == 1+1 {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(445)\n\t\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(446)\n\t\t\t\t\tp.Column_def()\n\t\t\t\t}\n\n\t\t\t}\n\t\t\tp.SetState(451)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 37, p.GetParserRuleContext())\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(456)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(452)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(453)\n\t\t\t\tp.Table_constraint()\n\t\t\t}\n\n\t\t\tp.SetState(458)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(459)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(468)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserSTRICT_ || _la == SQLiteParserWITHOUT_ {\n\t\t\t{\n\t\t\t\tp.SetState(460)\n\t\t\t\tp.Table_option()\n\t\t\t}\n\t\t\tp.SetState(465)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(461)\n\t\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(462)\n\t\t\t\t\tp.Table_option()\n\t\t\t\t}\n\n\t\t\t\tp.SetState(467)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t\t}\n\n\t\t}\n\n\tcase SQLiteParserAS_:\n\t\t{\n\t\t\tp.SetState(470)\n\t\t\tp.Match(SQLiteParserAS_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(471)\n\t\t\tp.Select_stmt()\n\t\t}\n\n\tdefault:\n\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IColumn_defContext is an interface to support dynamic dispatch.\ntype IColumn_defContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tColumn_name() IColumn_nameContext\n\tType_name() IType_nameContext\n\tAllColumn_constraint() []IColumn_constraintContext\n\tColumn_constraint(i int) IColumn_constraintContext\n\n\t// IsColumn_defContext differentiates from other interfaces.\n\tIsColumn_defContext()\n}\n\ntype Column_defContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyColumn_defContext() *Column_defContext {\n\tvar p = new(Column_defContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_column_def\n\treturn p\n}\n\nfunc InitEmptyColumn_defContext(p *Column_defContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_column_def\n}\n\nfunc (*Column_defContext) IsColumn_defContext() {}\n\nfunc NewColumn_defContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Column_defContext {\n\tvar p = new(Column_defContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_column_def\n\n\treturn p\n}\n\nfunc (s *Column_defContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Column_defContext) Column_name() IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Column_defContext) Type_name() IType_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IType_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IType_nameContext)\n}\n\nfunc (s *Column_defContext) AllColumn_constraint() []IColumn_constraintContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_constraintContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_constraintContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_constraintContext); ok {\n\t\t\ttst[i] = t.(IColumn_constraintContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Column_defContext) Column_constraint(i int) IColumn_constraintContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_constraintContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_constraintContext)\n}\n\nfunc (s *Column_defContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Column_defContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Column_defContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterColumn_def(s)\n\t}\n}\n\nfunc (s *Column_defContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitColumn_def(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Column_def() (localctx IColumn_defContext) {\n\tlocalctx = NewColumn_defContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 30, SQLiteParserRULE_column_def)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(474)\n\t\tp.Column_name()\n\t}\n\tp.SetState(476)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 42, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(475)\n\t\t\tp.Type_name()\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\tp.SetState(481)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&290693316557668352) != 0) || ((int64((_la-104)) & ^0x3f) == 0 && ((int64(1)<<(_la-104))&549755848705) != 0) || _la == SQLiteParserGENERATED_ {\n\t\t{\n\t\t\tp.SetState(478)\n\t\t\tp.Column_constraint()\n\t\t}\n\n\t\tp.SetState(483)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IType_nameContext is an interface to support dynamic dispatch.\ntype IType_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAllName() []INameContext\n\tName(i int) INameContext\n\tOPEN_PAR() antlr.TerminalNode\n\tAllSigned_number() []ISigned_numberContext\n\tSigned_number(i int) ISigned_numberContext\n\tCLOSE_PAR() antlr.TerminalNode\n\tCOMMA() antlr.TerminalNode\n\n\t// IsType_nameContext differentiates from other interfaces.\n\tIsType_nameContext()\n}\n\ntype Type_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyType_nameContext() *Type_nameContext {\n\tvar p = new(Type_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_type_name\n\treturn p\n}\n\nfunc InitEmptyType_nameContext(p *Type_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_type_name\n}\n\nfunc (*Type_nameContext) IsType_nameContext() {}\n\nfunc NewType_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Type_nameContext {\n\tvar p = new(Type_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_type_name\n\n\treturn p\n}\n\nfunc (s *Type_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Type_nameContext) AllName() []INameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(INameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]INameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(INameContext); ok {\n\t\t\ttst[i] = t.(INameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Type_nameContext) Name(i int) INameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(INameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(INameContext)\n}\n\nfunc (s *Type_nameContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Type_nameContext) AllSigned_number() []ISigned_numberContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(ISigned_numberContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]ISigned_numberContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(ISigned_numberContext); ok {\n\t\t\ttst[i] = t.(ISigned_numberContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Type_nameContext) Signed_number(i int) ISigned_numberContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISigned_numberContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISigned_numberContext)\n}\n\nfunc (s *Type_nameContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Type_nameContext) COMMA() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, 0)\n}\n\nfunc (s *Type_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Type_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Type_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterType_name(s)\n\t}\n}\n\nfunc (s *Type_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitType_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Type_name() (localctx IType_nameContext) {\n\tlocalctx = NewType_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 32, SQLiteParserRULE_type_name)\n\tvar _alt int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(485)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_alt = 1 + 1\n\tfor ok := true; ok; ok = _alt != 1 && _alt != antlr.ATNInvalidAltNumber {\n\t\tswitch _alt {\n\t\tcase 1 + 1:\n\t\t\t{\n\t\t\t\tp.SetState(484)\n\t\t\t\tp.Name()\n\t\t\t}\n\n\t\tdefault:\n\t\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tp.SetState(487)\n\t\tp.GetErrorHandler().Sync(p)\n\t\t_alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 44, p.GetParserRuleContext())\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(499)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 45, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(489)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(490)\n\t\t\tp.Signed_number()\n\t\t}\n\t\t{\n\t\t\tp.SetState(491)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t} else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 45, p.GetParserRuleContext()) == 2 {\n\t\t{\n\t\t\tp.SetState(493)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(494)\n\t\t\tp.Signed_number()\n\t\t}\n\t\t{\n\t\t\tp.SetState(495)\n\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(496)\n\t\t\tp.Signed_number()\n\t\t}\n\t\t{\n\t\t\tp.SetState(497)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IColumn_constraintContext is an interface to support dynamic dispatch.\ntype IColumn_constraintContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tCHECK_() antlr.TerminalNode\n\tOPEN_PAR() antlr.TerminalNode\n\tExpr() IExprContext\n\tCLOSE_PAR() antlr.TerminalNode\n\tDEFAULT_() antlr.TerminalNode\n\tCOLLATE_() antlr.TerminalNode\n\tCollation_name() ICollation_nameContext\n\tForeign_key_clause() IForeign_key_clauseContext\n\tAS_() antlr.TerminalNode\n\tCONSTRAINT_() antlr.TerminalNode\n\tName() INameContext\n\tPRIMARY_() antlr.TerminalNode\n\tKEY_() antlr.TerminalNode\n\tNOT_() antlr.TerminalNode\n\tNULL_() antlr.TerminalNode\n\tUNIQUE_() antlr.TerminalNode\n\tSigned_number() ISigned_numberContext\n\tLiteral_value() ILiteral_valueContext\n\tConflict_clause() IConflict_clauseContext\n\tGENERATED_() antlr.TerminalNode\n\tALWAYS_() antlr.TerminalNode\n\tSTORED_() antlr.TerminalNode\n\tVIRTUAL_() antlr.TerminalNode\n\tAsc_desc() IAsc_descContext\n\tAUTOINCREMENT_() antlr.TerminalNode\n\n\t// IsColumn_constraintContext differentiates from other interfaces.\n\tIsColumn_constraintContext()\n}\n\ntype Column_constraintContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyColumn_constraintContext() *Column_constraintContext {\n\tvar p = new(Column_constraintContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_column_constraint\n\treturn p\n}\n\nfunc InitEmptyColumn_constraintContext(p *Column_constraintContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_column_constraint\n}\n\nfunc (*Column_constraintContext) IsColumn_constraintContext() {}\n\nfunc NewColumn_constraintContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Column_constraintContext {\n\tvar p = new(Column_constraintContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_column_constraint\n\n\treturn p\n}\n\nfunc (s *Column_constraintContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Column_constraintContext) CHECK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCHECK_, 0)\n}\n\nfunc (s *Column_constraintContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Column_constraintContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Column_constraintContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Column_constraintContext) DEFAULT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDEFAULT_, 0)\n}\n\nfunc (s *Column_constraintContext) COLLATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOLLATE_, 0)\n}\n\nfunc (s *Column_constraintContext) Collation_name() ICollation_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICollation_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICollation_nameContext)\n}\n\nfunc (s *Column_constraintContext) Foreign_key_clause() IForeign_key_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IForeign_key_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IForeign_key_clauseContext)\n}\n\nfunc (s *Column_constraintContext) AS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAS_, 0)\n}\n\nfunc (s *Column_constraintContext) CONSTRAINT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCONSTRAINT_, 0)\n}\n\nfunc (s *Column_constraintContext) Name() INameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(INameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(INameContext)\n}\n\nfunc (s *Column_constraintContext) PRIMARY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPRIMARY_, 0)\n}\n\nfunc (s *Column_constraintContext) KEY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserKEY_, 0)\n}\n\nfunc (s *Column_constraintContext) NOT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_, 0)\n}\n\nfunc (s *Column_constraintContext) NULL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNULL_, 0)\n}\n\nfunc (s *Column_constraintContext) UNIQUE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUNIQUE_, 0)\n}\n\nfunc (s *Column_constraintContext) Signed_number() ISigned_numberContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISigned_numberContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISigned_numberContext)\n}\n\nfunc (s *Column_constraintContext) Literal_value() ILiteral_valueContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ILiteral_valueContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ILiteral_valueContext)\n}\n\nfunc (s *Column_constraintContext) Conflict_clause() IConflict_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IConflict_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IConflict_clauseContext)\n}\n\nfunc (s *Column_constraintContext) GENERATED_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserGENERATED_, 0)\n}\n\nfunc (s *Column_constraintContext) ALWAYS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserALWAYS_, 0)\n}\n\nfunc (s *Column_constraintContext) STORED_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTORED_, 0)\n}\n\nfunc (s *Column_constraintContext) VIRTUAL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserVIRTUAL_, 0)\n}\n\nfunc (s *Column_constraintContext) Asc_desc() IAsc_descContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAsc_descContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAsc_descContext)\n}\n\nfunc (s *Column_constraintContext) AUTOINCREMENT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAUTOINCREMENT_, 0)\n}\n\nfunc (s *Column_constraintContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Column_constraintContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Column_constraintContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterColumn_constraint(s)\n\t}\n}\n\nfunc (s *Column_constraintContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitColumn_constraint(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Column_constraint() (localctx IColumn_constraintContext) {\n\tlocalctx = NewColumn_constraintContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 34, SQLiteParserRULE_column_constraint)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(503)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserCONSTRAINT_ {\n\t\t{\n\t\t\tp.SetState(501)\n\t\t\tp.Match(SQLiteParserCONSTRAINT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(502)\n\t\t\tp.Name()\n\t\t}\n\n\t}\n\tp.SetState(552)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserPRIMARY_:\n\t\t{\n\t\t\tp.SetState(505)\n\t\t\tp.Match(SQLiteParserPRIMARY_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(506)\n\t\t\tp.Match(SQLiteParserKEY_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(508)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserASC_ || _la == SQLiteParserDESC_ {\n\t\t\t{\n\t\t\t\tp.SetState(507)\n\t\t\t\tp.Asc_desc()\n\t\t\t}\n\n\t\t}\n\t\tp.SetState(511)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserON_ {\n\t\t\t{\n\t\t\t\tp.SetState(510)\n\t\t\t\tp.Conflict_clause()\n\t\t\t}\n\n\t\t}\n\t\tp.SetState(514)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserAUTOINCREMENT_ {\n\t\t\t{\n\t\t\t\tp.SetState(513)\n\t\t\t\tp.Match(SQLiteParserAUTOINCREMENT_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\tcase SQLiteParserNOT_, SQLiteParserUNIQUE_:\n\t\tp.SetState(519)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tswitch p.GetTokenStream().LA(1) {\n\t\tcase SQLiteParserNOT_:\n\t\t\t{\n\t\t\t\tp.SetState(516)\n\t\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(517)\n\t\t\t\tp.Match(SQLiteParserNULL_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase SQLiteParserUNIQUE_:\n\t\t\t{\n\t\t\t\tp.SetState(518)\n\t\t\t\tp.Match(SQLiteParserUNIQUE_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\tdefault:\n\t\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\t\tgoto errorExit\n\t\t}\n\t\tp.SetState(522)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserON_ {\n\t\t\t{\n\t\t\t\tp.SetState(521)\n\t\t\t\tp.Conflict_clause()\n\t\t\t}\n\n\t\t}\n\n\tcase SQLiteParserCHECK_:\n\t\t{\n\t\t\tp.SetState(524)\n\t\t\tp.Match(SQLiteParserCHECK_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(525)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(526)\n\t\t\tp.expr(0)\n\t\t}\n\t\t{\n\t\t\tp.SetState(527)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserDEFAULT_:\n\t\t{\n\t\t\tp.SetState(529)\n\t\t\tp.Match(SQLiteParserDEFAULT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(536)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 52, p.GetParserRuleContext()) {\n\t\tcase 1:\n\t\t\t{\n\t\t\t\tp.SetState(530)\n\t\t\t\tp.Signed_number()\n\t\t\t}\n\n\t\tcase 2:\n\t\t\t{\n\t\t\t\tp.SetState(531)\n\t\t\t\tp.Literal_value()\n\t\t\t}\n\n\t\tcase 3:\n\t\t\t{\n\t\t\t\tp.SetState(532)\n\t\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(533)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(534)\n\t\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase antlr.ATNInvalidAltNumber:\n\t\t\tgoto errorExit\n\t\t}\n\n\tcase SQLiteParserCOLLATE_:\n\t\t{\n\t\t\tp.SetState(538)\n\t\t\tp.Match(SQLiteParserCOLLATE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(539)\n\t\t\tp.Collation_name()\n\t\t}\n\n\tcase SQLiteParserREFERENCES_:\n\t\t{\n\t\t\tp.SetState(540)\n\t\t\tp.Foreign_key_clause()\n\t\t}\n\n\tcase SQLiteParserAS_, SQLiteParserGENERATED_:\n\t\tp.SetState(543)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserGENERATED_ {\n\t\t\t{\n\t\t\t\tp.SetState(541)\n\t\t\t\tp.Match(SQLiteParserGENERATED_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(542)\n\t\t\t\tp.Match(SQLiteParserALWAYS_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(545)\n\t\t\tp.Match(SQLiteParserAS_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(546)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(547)\n\t\t\tp.expr(0)\n\t\t}\n\t\t{\n\t\t\tp.SetState(548)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(550)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserVIRTUAL_ || _la == SQLiteParserSTORED_ {\n\t\t\t{\n\t\t\t\tp.SetState(549)\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\tif !(_la == SQLiteParserVIRTUAL_ || _la == SQLiteParserSTORED_) {\n\t\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t\t} else {\n\t\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\t\tp.Consume()\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\tdefault:\n\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ISigned_numberContext is an interface to support dynamic dispatch.\ntype ISigned_numberContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tNUMERIC_LITERAL() antlr.TerminalNode\n\tPLUS() antlr.TerminalNode\n\tMINUS() antlr.TerminalNode\n\n\t// IsSigned_numberContext differentiates from other interfaces.\n\tIsSigned_numberContext()\n}\n\ntype Signed_numberContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptySigned_numberContext() *Signed_numberContext {\n\tvar p = new(Signed_numberContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_signed_number\n\treturn p\n}\n\nfunc InitEmptySigned_numberContext(p *Signed_numberContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_signed_number\n}\n\nfunc (*Signed_numberContext) IsSigned_numberContext() {}\n\nfunc NewSigned_numberContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Signed_numberContext {\n\tvar p = new(Signed_numberContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_signed_number\n\n\treturn p\n}\n\nfunc (s *Signed_numberContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Signed_numberContext) NUMERIC_LITERAL() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNUMERIC_LITERAL, 0)\n}\n\nfunc (s *Signed_numberContext) PLUS() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPLUS, 0)\n}\n\nfunc (s *Signed_numberContext) MINUS() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserMINUS, 0)\n}\n\nfunc (s *Signed_numberContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Signed_numberContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Signed_numberContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterSigned_number(s)\n\t}\n}\n\nfunc (s *Signed_numberContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitSigned_number(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Signed_number() (localctx ISigned_numberContext) {\n\tlocalctx = NewSigned_numberContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 36, SQLiteParserRULE_signed_number)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(555)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserPLUS || _la == SQLiteParserMINUS {\n\t\t{\n\t\t\tp.SetState(554)\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif !(_la == SQLiteParserPLUS || _la == SQLiteParserMINUS) {\n\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t} else {\n\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\tp.Consume()\n\t\t\t}\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(557)\n\t\tp.Match(SQLiteParserNUMERIC_LITERAL)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ITable_constraintContext is an interface to support dynamic dispatch.\ntype ITable_constraintContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tOPEN_PAR() antlr.TerminalNode\n\tAllIndexed_column() []IIndexed_columnContext\n\tIndexed_column(i int) IIndexed_columnContext\n\tCLOSE_PAR() antlr.TerminalNode\n\tCHECK_() antlr.TerminalNode\n\tExpr() IExprContext\n\tFOREIGN_() antlr.TerminalNode\n\tKEY_() antlr.TerminalNode\n\tAllColumn_name() []IColumn_nameContext\n\tColumn_name(i int) IColumn_nameContext\n\tForeign_key_clause() IForeign_key_clauseContext\n\tCONSTRAINT_() antlr.TerminalNode\n\tName() INameContext\n\tPRIMARY_() antlr.TerminalNode\n\tUNIQUE_() antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\tConflict_clause() IConflict_clauseContext\n\n\t// IsTable_constraintContext differentiates from other interfaces.\n\tIsTable_constraintContext()\n}\n\ntype Table_constraintContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyTable_constraintContext() *Table_constraintContext {\n\tvar p = new(Table_constraintContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_constraint\n\treturn p\n}\n\nfunc InitEmptyTable_constraintContext(p *Table_constraintContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_constraint\n}\n\nfunc (*Table_constraintContext) IsTable_constraintContext() {}\n\nfunc NewTable_constraintContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Table_constraintContext {\n\tvar p = new(Table_constraintContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_table_constraint\n\n\treturn p\n}\n\nfunc (s *Table_constraintContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Table_constraintContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Table_constraintContext) AllIndexed_column() []IIndexed_columnContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IIndexed_columnContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IIndexed_columnContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IIndexed_columnContext); ok {\n\t\t\ttst[i] = t.(IIndexed_columnContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Table_constraintContext) Indexed_column(i int) IIndexed_columnContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IIndexed_columnContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IIndexed_columnContext)\n}\n\nfunc (s *Table_constraintContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Table_constraintContext) CHECK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCHECK_, 0)\n}\n\nfunc (s *Table_constraintContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Table_constraintContext) FOREIGN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFOREIGN_, 0)\n}\n\nfunc (s *Table_constraintContext) KEY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserKEY_, 0)\n}\n\nfunc (s *Table_constraintContext) AllColumn_name() []IColumn_nameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_nameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_nameContext); ok {\n\t\t\ttst[i] = t.(IColumn_nameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Table_constraintContext) Column_name(i int) IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Table_constraintContext) Foreign_key_clause() IForeign_key_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IForeign_key_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IForeign_key_clauseContext)\n}\n\nfunc (s *Table_constraintContext) CONSTRAINT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCONSTRAINT_, 0)\n}\n\nfunc (s *Table_constraintContext) Name() INameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(INameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(INameContext)\n}\n\nfunc (s *Table_constraintContext) PRIMARY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPRIMARY_, 0)\n}\n\nfunc (s *Table_constraintContext) UNIQUE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUNIQUE_, 0)\n}\n\nfunc (s *Table_constraintContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Table_constraintContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Table_constraintContext) Conflict_clause() IConflict_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IConflict_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IConflict_clauseContext)\n}\n\nfunc (s *Table_constraintContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Table_constraintContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Table_constraintContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterTable_constraint(s)\n\t}\n}\n\nfunc (s *Table_constraintContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitTable_constraint(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Table_constraint() (localctx ITable_constraintContext) {\n\tlocalctx = NewTable_constraintContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 38, SQLiteParserRULE_table_constraint)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(561)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserCONSTRAINT_ {\n\t\t{\n\t\t\tp.SetState(559)\n\t\t\tp.Match(SQLiteParserCONSTRAINT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(560)\n\t\t\tp.Name()\n\t\t}\n\n\t}\n\tp.SetState(600)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserPRIMARY_, SQLiteParserUNIQUE_:\n\t\tp.SetState(566)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tswitch p.GetTokenStream().LA(1) {\n\t\tcase SQLiteParserPRIMARY_:\n\t\t\t{\n\t\t\t\tp.SetState(563)\n\t\t\t\tp.Match(SQLiteParserPRIMARY_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(564)\n\t\t\t\tp.Match(SQLiteParserKEY_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase SQLiteParserUNIQUE_:\n\t\t\t{\n\t\t\t\tp.SetState(565)\n\t\t\t\tp.Match(SQLiteParserUNIQUE_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\tdefault:\n\t\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(568)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(569)\n\t\t\tp.Indexed_column()\n\t\t}\n\t\tp.SetState(574)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(570)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(571)\n\t\t\t\tp.Indexed_column()\n\t\t\t}\n\n\t\t\tp.SetState(576)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(577)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(579)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserON_ {\n\t\t\t{\n\t\t\t\tp.SetState(578)\n\t\t\t\tp.Conflict_clause()\n\t\t\t}\n\n\t\t}\n\n\tcase SQLiteParserCHECK_:\n\t\t{\n\t\t\tp.SetState(581)\n\t\t\tp.Match(SQLiteParserCHECK_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(582)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(583)\n\t\t\tp.expr(0)\n\t\t}\n\t\t{\n\t\t\tp.SetState(584)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserFOREIGN_:\n\t\t{\n\t\t\tp.SetState(586)\n\t\t\tp.Match(SQLiteParserFOREIGN_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(587)\n\t\t\tp.Match(SQLiteParserKEY_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(588)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(589)\n\t\t\tp.Column_name()\n\t\t}\n\t\tp.SetState(594)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(590)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(591)\n\t\t\t\tp.Column_name()\n\t\t\t}\n\n\t\t\tp.SetState(596)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(597)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(598)\n\t\t\tp.Foreign_key_clause()\n\t\t}\n\n\tdefault:\n\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IForeign_key_clauseContext is an interface to support dynamic dispatch.\ntype IForeign_key_clauseContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tREFERENCES_() antlr.TerminalNode\n\tForeign_table() IForeign_tableContext\n\tOPEN_PAR() antlr.TerminalNode\n\tAllColumn_name() []IColumn_nameContext\n\tColumn_name(i int) IColumn_nameContext\n\tCLOSE_PAR() antlr.TerminalNode\n\tAllON_() []antlr.TerminalNode\n\tON_(i int) antlr.TerminalNode\n\tAllMATCH_() []antlr.TerminalNode\n\tMATCH_(i int) antlr.TerminalNode\n\tAllName() []INameContext\n\tName(i int) INameContext\n\tDEFERRABLE_() antlr.TerminalNode\n\tAllDELETE_() []antlr.TerminalNode\n\tDELETE_(i int) antlr.TerminalNode\n\tAllUPDATE_() []antlr.TerminalNode\n\tUPDATE_(i int) antlr.TerminalNode\n\tAllSET_() []antlr.TerminalNode\n\tSET_(i int) antlr.TerminalNode\n\tAllCASCADE_() []antlr.TerminalNode\n\tCASCADE_(i int) antlr.TerminalNode\n\tAllRESTRICT_() []antlr.TerminalNode\n\tRESTRICT_(i int) antlr.TerminalNode\n\tAllNO_() []antlr.TerminalNode\n\tNO_(i int) antlr.TerminalNode\n\tAllACTION_() []antlr.TerminalNode\n\tACTION_(i int) antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\tAllNULL_() []antlr.TerminalNode\n\tNULL_(i int) antlr.TerminalNode\n\tAllDEFAULT_() []antlr.TerminalNode\n\tDEFAULT_(i int) antlr.TerminalNode\n\tNOT_() antlr.TerminalNode\n\tINITIALLY_() antlr.TerminalNode\n\tDEFERRED_() antlr.TerminalNode\n\tIMMEDIATE_() antlr.TerminalNode\n\n\t// IsForeign_key_clauseContext differentiates from other interfaces.\n\tIsForeign_key_clauseContext()\n}\n\ntype Foreign_key_clauseContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyForeign_key_clauseContext() *Foreign_key_clauseContext {\n\tvar p = new(Foreign_key_clauseContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_foreign_key_clause\n\treturn p\n}\n\nfunc InitEmptyForeign_key_clauseContext(p *Foreign_key_clauseContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_foreign_key_clause\n}\n\nfunc (*Foreign_key_clauseContext) IsForeign_key_clauseContext() {}\n\nfunc NewForeign_key_clauseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Foreign_key_clauseContext {\n\tvar p = new(Foreign_key_clauseContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_foreign_key_clause\n\n\treturn p\n}\n\nfunc (s *Foreign_key_clauseContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Foreign_key_clauseContext) REFERENCES_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserREFERENCES_, 0)\n}\n\nfunc (s *Foreign_key_clauseContext) Foreign_table() IForeign_tableContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IForeign_tableContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IForeign_tableContext)\n}\n\nfunc (s *Foreign_key_clauseContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Foreign_key_clauseContext) AllColumn_name() []IColumn_nameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_nameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_nameContext); ok {\n\t\t\ttst[i] = t.(IColumn_nameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Foreign_key_clauseContext) Column_name(i int) IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Foreign_key_clauseContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Foreign_key_clauseContext) AllON_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserON_)\n}\n\nfunc (s *Foreign_key_clauseContext) ON_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserON_, i)\n}\n\nfunc (s *Foreign_key_clauseContext) AllMATCH_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserMATCH_)\n}\n\nfunc (s *Foreign_key_clauseContext) MATCH_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserMATCH_, i)\n}\n\nfunc (s *Foreign_key_clauseContext) AllName() []INameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(INameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]INameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(INameContext); ok {\n\t\t\ttst[i] = t.(INameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Foreign_key_clauseContext) Name(i int) INameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(INameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(INameContext)\n}\n\nfunc (s *Foreign_key_clauseContext) DEFERRABLE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDEFERRABLE_, 0)\n}\n\nfunc (s *Foreign_key_clauseContext) AllDELETE_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserDELETE_)\n}\n\nfunc (s *Foreign_key_clauseContext) DELETE_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDELETE_, i)\n}\n\nfunc (s *Foreign_key_clauseContext) AllUPDATE_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserUPDATE_)\n}\n\nfunc (s *Foreign_key_clauseContext) UPDATE_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUPDATE_, i)\n}\n\nfunc (s *Foreign_key_clauseContext) AllSET_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserSET_)\n}\n\nfunc (s *Foreign_key_clauseContext) SET_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSET_, i)\n}\n\nfunc (s *Foreign_key_clauseContext) AllCASCADE_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCASCADE_)\n}\n\nfunc (s *Foreign_key_clauseContext) CASCADE_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCASCADE_, i)\n}\n\nfunc (s *Foreign_key_clauseContext) AllRESTRICT_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserRESTRICT_)\n}\n\nfunc (s *Foreign_key_clauseContext) RESTRICT_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRESTRICT_, i)\n}\n\nfunc (s *Foreign_key_clauseContext) AllNO_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserNO_)\n}\n\nfunc (s *Foreign_key_clauseContext) NO_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNO_, i)\n}\n\nfunc (s *Foreign_key_clauseContext) AllACTION_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserACTION_)\n}\n\nfunc (s *Foreign_key_clauseContext) ACTION_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserACTION_, i)\n}\n\nfunc (s *Foreign_key_clauseContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Foreign_key_clauseContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Foreign_key_clauseContext) AllNULL_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserNULL_)\n}\n\nfunc (s *Foreign_key_clauseContext) NULL_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNULL_, i)\n}\n\nfunc (s *Foreign_key_clauseContext) AllDEFAULT_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserDEFAULT_)\n}\n\nfunc (s *Foreign_key_clauseContext) DEFAULT_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDEFAULT_, i)\n}\n\nfunc (s *Foreign_key_clauseContext) NOT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_, 0)\n}\n\nfunc (s *Foreign_key_clauseContext) INITIALLY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINITIALLY_, 0)\n}\n\nfunc (s *Foreign_key_clauseContext) DEFERRED_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDEFERRED_, 0)\n}\n\nfunc (s *Foreign_key_clauseContext) IMMEDIATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIMMEDIATE_, 0)\n}\n\nfunc (s *Foreign_key_clauseContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Foreign_key_clauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Foreign_key_clauseContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterForeign_key_clause(s)\n\t}\n}\n\nfunc (s *Foreign_key_clauseContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitForeign_key_clause(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Foreign_key_clause() (localctx IForeign_key_clauseContext) {\n\tlocalctx = NewForeign_key_clauseContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 40, SQLiteParserRULE_foreign_key_clause)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(602)\n\t\tp.Match(SQLiteParserREFERENCES_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(603)\n\t\tp.Foreign_table()\n\t}\n\tp.SetState(615)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserOPEN_PAR {\n\t\t{\n\t\t\tp.SetState(604)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(605)\n\t\t\tp.Column_name()\n\t\t}\n\t\tp.SetState(610)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(606)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(607)\n\t\t\t\tp.Column_name()\n\t\t\t}\n\n\t\t\tp.SetState(612)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(613)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t}\n\tp.SetState(631)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor _la == SQLiteParserMATCH_ || _la == SQLiteParserON_ {\n\t\tp.SetState(629)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tswitch p.GetTokenStream().LA(1) {\n\t\tcase SQLiteParserON_:\n\t\t\t{\n\t\t\t\tp.SetState(617)\n\t\t\t\tp.Match(SQLiteParserON_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(618)\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\tif !(_la == SQLiteParserDELETE_ || _la == SQLiteParserUPDATE_) {\n\t\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t\t} else {\n\t\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\t\tp.Consume()\n\t\t\t\t}\n\t\t\t}\n\t\t\tp.SetState(625)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\n\t\t\tswitch p.GetTokenStream().LA(1) {\n\t\t\tcase SQLiteParserSET_:\n\t\t\t\t{\n\t\t\t\t\tp.SetState(619)\n\t\t\t\t\tp.Match(SQLiteParserSET_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(620)\n\t\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\t\tif !(_la == SQLiteParserDEFAULT_ || _la == SQLiteParserNULL_) {\n\t\t\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\t\t\tp.Consume()\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\tcase SQLiteParserCASCADE_:\n\t\t\t\t{\n\t\t\t\t\tp.SetState(621)\n\t\t\t\t\tp.Match(SQLiteParserCASCADE_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\tcase SQLiteParserRESTRICT_:\n\t\t\t\t{\n\t\t\t\t\tp.SetState(622)\n\t\t\t\t\tp.Match(SQLiteParserRESTRICT_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\tcase SQLiteParserNO_:\n\t\t\t\t{\n\t\t\t\t\tp.SetState(623)\n\t\t\t\t\tp.Match(SQLiteParserNO_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(624)\n\t\t\t\t\tp.Match(SQLiteParserACTION_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\tdefault:\n\t\t\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\t\t\tgoto errorExit\n\t\t\t}\n\n\t\tcase SQLiteParserMATCH_:\n\t\t\t{\n\t\t\t\tp.SetState(627)\n\t\t\t\tp.Match(SQLiteParserMATCH_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(628)\n\t\t\t\tp.Name()\n\t\t\t}\n\n\t\tdefault:\n\t\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tp.SetState(633)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\tp.SetState(642)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 70, p.GetParserRuleContext()) == 1 {\n\t\tp.SetState(635)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserNOT_ {\n\t\t\t{\n\t\t\t\tp.SetState(634)\n\t\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(637)\n\t\t\tp.Match(SQLiteParserDEFERRABLE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(640)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserINITIALLY_ {\n\t\t\t{\n\t\t\t\tp.SetState(638)\n\t\t\t\tp.Match(SQLiteParserINITIALLY_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(639)\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\tif !(_la == SQLiteParserDEFERRED_ || _la == SQLiteParserIMMEDIATE_) {\n\t\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t\t} else {\n\t\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\t\tp.Consume()\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IConflict_clauseContext is an interface to support dynamic dispatch.\ntype IConflict_clauseContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tON_() antlr.TerminalNode\n\tCONFLICT_() antlr.TerminalNode\n\tROLLBACK_() antlr.TerminalNode\n\tABORT_() antlr.TerminalNode\n\tFAIL_() antlr.TerminalNode\n\tIGNORE_() antlr.TerminalNode\n\tREPLACE_() antlr.TerminalNode\n\n\t// IsConflict_clauseContext differentiates from other interfaces.\n\tIsConflict_clauseContext()\n}\n\ntype Conflict_clauseContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyConflict_clauseContext() *Conflict_clauseContext {\n\tvar p = new(Conflict_clauseContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_conflict_clause\n\treturn p\n}\n\nfunc InitEmptyConflict_clauseContext(p *Conflict_clauseContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_conflict_clause\n}\n\nfunc (*Conflict_clauseContext) IsConflict_clauseContext() {}\n\nfunc NewConflict_clauseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Conflict_clauseContext {\n\tvar p = new(Conflict_clauseContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_conflict_clause\n\n\treturn p\n}\n\nfunc (s *Conflict_clauseContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Conflict_clauseContext) ON_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserON_, 0)\n}\n\nfunc (s *Conflict_clauseContext) CONFLICT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCONFLICT_, 0)\n}\n\nfunc (s *Conflict_clauseContext) ROLLBACK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROLLBACK_, 0)\n}\n\nfunc (s *Conflict_clauseContext) ABORT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserABORT_, 0)\n}\n\nfunc (s *Conflict_clauseContext) FAIL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFAIL_, 0)\n}\n\nfunc (s *Conflict_clauseContext) IGNORE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIGNORE_, 0)\n}\n\nfunc (s *Conflict_clauseContext) REPLACE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserREPLACE_, 0)\n}\n\nfunc (s *Conflict_clauseContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Conflict_clauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Conflict_clauseContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterConflict_clause(s)\n\t}\n}\n\nfunc (s *Conflict_clauseContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitConflict_clause(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Conflict_clause() (localctx IConflict_clauseContext) {\n\tlocalctx = NewConflict_clauseContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 42, SQLiteParserRULE_conflict_clause)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(644)\n\t\tp.Match(SQLiteParserON_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(645)\n\t\tp.Match(SQLiteParserCONFLICT_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(646)\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif !(_la == SQLiteParserABORT_ || ((int64((_la-74)) & ^0x3f) == 0 && ((int64(1)<<(_la-74))&19140298416325121) != 0)) {\n\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t} else {\n\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\tp.Consume()\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ICreate_trigger_stmtContext is an interface to support dynamic dispatch.\ntype ICreate_trigger_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tCREATE_() antlr.TerminalNode\n\tTRIGGER_() antlr.TerminalNode\n\tTrigger_name() ITrigger_nameContext\n\tON_() antlr.TerminalNode\n\tTable_name() ITable_nameContext\n\tBEGIN_() antlr.TerminalNode\n\tEND_() antlr.TerminalNode\n\tDELETE_() antlr.TerminalNode\n\tINSERT_() antlr.TerminalNode\n\tUPDATE_() antlr.TerminalNode\n\tIF_() antlr.TerminalNode\n\tNOT_() antlr.TerminalNode\n\tEXISTS_() antlr.TerminalNode\n\tSchema_name() ISchema_nameContext\n\tDOT() antlr.TerminalNode\n\tBEFORE_() antlr.TerminalNode\n\tAFTER_() antlr.TerminalNode\n\tINSTEAD_() antlr.TerminalNode\n\tAllOF_() []antlr.TerminalNode\n\tOF_(i int) antlr.TerminalNode\n\tFOR_() antlr.TerminalNode\n\tEACH_() antlr.TerminalNode\n\tROW_() antlr.TerminalNode\n\tWHEN_() antlr.TerminalNode\n\tExpr() IExprContext\n\tAllSCOL() []antlr.TerminalNode\n\tSCOL(i int) antlr.TerminalNode\n\tTEMP_() antlr.TerminalNode\n\tTEMPORARY_() antlr.TerminalNode\n\tAllColumn_name() []IColumn_nameContext\n\tColumn_name(i int) IColumn_nameContext\n\tAllUpdate_stmt() []IUpdate_stmtContext\n\tUpdate_stmt(i int) IUpdate_stmtContext\n\tAllInsert_stmt() []IInsert_stmtContext\n\tInsert_stmt(i int) IInsert_stmtContext\n\tAllDelete_stmt() []IDelete_stmtContext\n\tDelete_stmt(i int) IDelete_stmtContext\n\tAllSelect_stmt() []ISelect_stmtContext\n\tSelect_stmt(i int) ISelect_stmtContext\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsCreate_trigger_stmtContext differentiates from other interfaces.\n\tIsCreate_trigger_stmtContext()\n}\n\ntype Create_trigger_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyCreate_trigger_stmtContext() *Create_trigger_stmtContext {\n\tvar p = new(Create_trigger_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_create_trigger_stmt\n\treturn p\n}\n\nfunc InitEmptyCreate_trigger_stmtContext(p *Create_trigger_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_create_trigger_stmt\n}\n\nfunc (*Create_trigger_stmtContext) IsCreate_trigger_stmtContext() {}\n\nfunc NewCreate_trigger_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Create_trigger_stmtContext {\n\tvar p = new(Create_trigger_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_create_trigger_stmt\n\n\treturn p\n}\n\nfunc (s *Create_trigger_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Create_trigger_stmtContext) CREATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCREATE_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) TRIGGER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTRIGGER_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) Trigger_name() ITrigger_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITrigger_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITrigger_nameContext)\n}\n\nfunc (s *Create_trigger_stmtContext) ON_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserON_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) Table_name() ITable_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_nameContext)\n}\n\nfunc (s *Create_trigger_stmtContext) BEGIN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBEGIN_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) END_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEND_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) DELETE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDELETE_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) INSERT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINSERT_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) UPDATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUPDATE_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) IF_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIF_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) NOT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) EXISTS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXISTS_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Create_trigger_stmtContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) BEFORE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBEFORE_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) AFTER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAFTER_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) INSTEAD_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINSTEAD_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) AllOF_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserOF_)\n}\n\nfunc (s *Create_trigger_stmtContext) OF_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOF_, i)\n}\n\nfunc (s *Create_trigger_stmtContext) FOR_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFOR_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) EACH_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEACH_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) ROW_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROW_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) WHEN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWHEN_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Create_trigger_stmtContext) AllSCOL() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserSCOL)\n}\n\nfunc (s *Create_trigger_stmtContext) SCOL(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSCOL, i)\n}\n\nfunc (s *Create_trigger_stmtContext) TEMP_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTEMP_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) TEMPORARY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTEMPORARY_, 0)\n}\n\nfunc (s *Create_trigger_stmtContext) AllColumn_name() []IColumn_nameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_nameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_nameContext); ok {\n\t\t\ttst[i] = t.(IColumn_nameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Create_trigger_stmtContext) Column_name(i int) IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Create_trigger_stmtContext) AllUpdate_stmt() []IUpdate_stmtContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IUpdate_stmtContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IUpdate_stmtContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IUpdate_stmtContext); ok {\n\t\t\ttst[i] = t.(IUpdate_stmtContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Create_trigger_stmtContext) Update_stmt(i int) IUpdate_stmtContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IUpdate_stmtContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IUpdate_stmtContext)\n}\n\nfunc (s *Create_trigger_stmtContext) AllInsert_stmt() []IInsert_stmtContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IInsert_stmtContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IInsert_stmtContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IInsert_stmtContext); ok {\n\t\t\ttst[i] = t.(IInsert_stmtContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Create_trigger_stmtContext) Insert_stmt(i int) IInsert_stmtContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IInsert_stmtContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IInsert_stmtContext)\n}\n\nfunc (s *Create_trigger_stmtContext) AllDelete_stmt() []IDelete_stmtContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IDelete_stmtContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IDelete_stmtContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IDelete_stmtContext); ok {\n\t\t\ttst[i] = t.(IDelete_stmtContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Create_trigger_stmtContext) Delete_stmt(i int) IDelete_stmtContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IDelete_stmtContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IDelete_stmtContext)\n}\n\nfunc (s *Create_trigger_stmtContext) AllSelect_stmt() []ISelect_stmtContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]ISelect_stmtContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\ttst[i] = t.(ISelect_stmtContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Create_trigger_stmtContext) Select_stmt(i int) ISelect_stmtContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISelect_stmtContext)\n}\n\nfunc (s *Create_trigger_stmtContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Create_trigger_stmtContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Create_trigger_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Create_trigger_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Create_trigger_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterCreate_trigger_stmt(s)\n\t}\n}\n\nfunc (s *Create_trigger_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitCreate_trigger_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Create_trigger_stmt() (localctx ICreate_trigger_stmtContext) {\n\tlocalctx = NewCreate_trigger_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 44, SQLiteParserRULE_create_trigger_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(648)\n\t\tp.Match(SQLiteParserCREATE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(650)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserTEMP_ || _la == SQLiteParserTEMPORARY_ {\n\t\t{\n\t\t\tp.SetState(649)\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif !(_la == SQLiteParserTEMP_ || _la == SQLiteParserTEMPORARY_) {\n\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t} else {\n\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\tp.Consume()\n\t\t\t}\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(652)\n\t\tp.Match(SQLiteParserTRIGGER_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(656)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 72, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(653)\n\t\t\tp.Match(SQLiteParserIF_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(654)\n\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(655)\n\t\t\tp.Match(SQLiteParserEXISTS_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\tp.SetState(661)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 73, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(658)\n\t\t\tp.Schema_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(659)\n\t\t\tp.Match(SQLiteParserDOT)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(663)\n\t\tp.Trigger_name()\n\t}\n\tp.SetState(668)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserBEFORE_:\n\t\t{\n\t\t\tp.SetState(664)\n\t\t\tp.Match(SQLiteParserBEFORE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserAFTER_:\n\t\t{\n\t\t\tp.SetState(665)\n\t\t\tp.Match(SQLiteParserAFTER_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserINSTEAD_:\n\t\t{\n\t\t\tp.SetState(666)\n\t\t\tp.Match(SQLiteParserINSTEAD_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(667)\n\t\t\tp.Match(SQLiteParserOF_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserDELETE_, SQLiteParserINSERT_, SQLiteParserUPDATE_:\n\n\tdefault:\n\t}\n\tp.SetState(684)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserDELETE_:\n\t\t{\n\t\t\tp.SetState(670)\n\t\t\tp.Match(SQLiteParserDELETE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserINSERT_:\n\t\t{\n\t\t\tp.SetState(671)\n\t\t\tp.Match(SQLiteParserINSERT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserUPDATE_:\n\t\t{\n\t\t\tp.SetState(672)\n\t\t\tp.Match(SQLiteParserUPDATE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(682)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserOF_ {\n\t\t\t{\n\t\t\t\tp.SetState(673)\n\t\t\t\tp.Match(SQLiteParserOF_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(674)\n\t\t\t\tp.Column_name()\n\t\t\t}\n\t\t\tp.SetState(679)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(675)\n\t\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(676)\n\t\t\t\t\tp.Column_name()\n\t\t\t\t}\n\n\t\t\t\tp.SetState(681)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t\t}\n\n\t\t}\n\n\tdefault:\n\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(686)\n\t\tp.Match(SQLiteParserON_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(687)\n\t\tp.Table_name()\n\t}\n\tp.SetState(691)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserFOR_ {\n\t\t{\n\t\t\tp.SetState(688)\n\t\t\tp.Match(SQLiteParserFOR_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(689)\n\t\t\tp.Match(SQLiteParserEACH_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(690)\n\t\t\tp.Match(SQLiteParserROW_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t}\n\tp.SetState(695)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserWHEN_ {\n\t\t{\n\t\t\tp.SetState(693)\n\t\t\tp.Match(SQLiteParserWHEN_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(694)\n\t\t\tp.expr(0)\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(697)\n\t\tp.Match(SQLiteParserBEGIN_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(706)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor ok := true; ok; ok = _la == SQLiteParserDELETE_ || ((int64((_la-90)) & ^0x3f) == 0 && ((int64(1)<<(_la-90))&4773820020239106049) != 0) {\n\t\tp.SetState(702)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 80, p.GetParserRuleContext()) {\n\t\tcase 1:\n\t\t\t{\n\t\t\t\tp.SetState(698)\n\t\t\t\tp.Update_stmt()\n\t\t\t}\n\n\t\tcase 2:\n\t\t\t{\n\t\t\t\tp.SetState(699)\n\t\t\t\tp.Insert_stmt()\n\t\t\t}\n\n\t\tcase 3:\n\t\t\t{\n\t\t\t\tp.SetState(700)\n\t\t\t\tp.Delete_stmt()\n\t\t\t}\n\n\t\tcase 4:\n\t\t\t{\n\t\t\t\tp.SetState(701)\n\t\t\t\tp.Select_stmt()\n\t\t\t}\n\n\t\tcase antlr.ATNInvalidAltNumber:\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(704)\n\t\t\tp.Match(SQLiteParserSCOL)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t\tp.SetState(708)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\t{\n\t\tp.SetState(710)\n\t\tp.Match(SQLiteParserEND_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ICreate_view_stmtContext is an interface to support dynamic dispatch.\ntype ICreate_view_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tCREATE_() antlr.TerminalNode\n\tVIEW_() antlr.TerminalNode\n\tView_name() IView_nameContext\n\tAS_() antlr.TerminalNode\n\tSelect_stmt() ISelect_stmtContext\n\tIF_() antlr.TerminalNode\n\tNOT_() antlr.TerminalNode\n\tEXISTS_() antlr.TerminalNode\n\tSchema_name() ISchema_nameContext\n\tDOT() antlr.TerminalNode\n\tOPEN_PAR() antlr.TerminalNode\n\tAllColumn_name() []IColumn_nameContext\n\tColumn_name(i int) IColumn_nameContext\n\tCLOSE_PAR() antlr.TerminalNode\n\tTEMP_() antlr.TerminalNode\n\tTEMPORARY_() antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsCreate_view_stmtContext differentiates from other interfaces.\n\tIsCreate_view_stmtContext()\n}\n\ntype Create_view_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyCreate_view_stmtContext() *Create_view_stmtContext {\n\tvar p = new(Create_view_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_create_view_stmt\n\treturn p\n}\n\nfunc InitEmptyCreate_view_stmtContext(p *Create_view_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_create_view_stmt\n}\n\nfunc (*Create_view_stmtContext) IsCreate_view_stmtContext() {}\n\nfunc NewCreate_view_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Create_view_stmtContext {\n\tvar p = new(Create_view_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_create_view_stmt\n\n\treturn p\n}\n\nfunc (s *Create_view_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Create_view_stmtContext) CREATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCREATE_, 0)\n}\n\nfunc (s *Create_view_stmtContext) VIEW_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserVIEW_, 0)\n}\n\nfunc (s *Create_view_stmtContext) View_name() IView_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IView_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IView_nameContext)\n}\n\nfunc (s *Create_view_stmtContext) AS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAS_, 0)\n}\n\nfunc (s *Create_view_stmtContext) Select_stmt() ISelect_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISelect_stmtContext)\n}\n\nfunc (s *Create_view_stmtContext) IF_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIF_, 0)\n}\n\nfunc (s *Create_view_stmtContext) NOT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_, 0)\n}\n\nfunc (s *Create_view_stmtContext) EXISTS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXISTS_, 0)\n}\n\nfunc (s *Create_view_stmtContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Create_view_stmtContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Create_view_stmtContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Create_view_stmtContext) AllColumn_name() []IColumn_nameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_nameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_nameContext); ok {\n\t\t\ttst[i] = t.(IColumn_nameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Create_view_stmtContext) Column_name(i int) IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Create_view_stmtContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Create_view_stmtContext) TEMP_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTEMP_, 0)\n}\n\nfunc (s *Create_view_stmtContext) TEMPORARY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTEMPORARY_, 0)\n}\n\nfunc (s *Create_view_stmtContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Create_view_stmtContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Create_view_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Create_view_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Create_view_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterCreate_view_stmt(s)\n\t}\n}\n\nfunc (s *Create_view_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitCreate_view_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Create_view_stmt() (localctx ICreate_view_stmtContext) {\n\tlocalctx = NewCreate_view_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 46, SQLiteParserRULE_create_view_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(712)\n\t\tp.Match(SQLiteParserCREATE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(714)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserTEMP_ || _la == SQLiteParserTEMPORARY_ {\n\t\t{\n\t\t\tp.SetState(713)\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif !(_la == SQLiteParserTEMP_ || _la == SQLiteParserTEMPORARY_) {\n\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t} else {\n\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\tp.Consume()\n\t\t\t}\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(716)\n\t\tp.Match(SQLiteParserVIEW_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(720)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 83, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(717)\n\t\t\tp.Match(SQLiteParserIF_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(718)\n\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(719)\n\t\t\tp.Match(SQLiteParserEXISTS_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\tp.SetState(725)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 84, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(722)\n\t\t\tp.Schema_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(723)\n\t\t\tp.Match(SQLiteParserDOT)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(727)\n\t\tp.View_name()\n\t}\n\tp.SetState(739)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserOPEN_PAR {\n\t\t{\n\t\t\tp.SetState(728)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(729)\n\t\t\tp.Column_name()\n\t\t}\n\t\tp.SetState(734)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(730)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(731)\n\t\t\t\tp.Column_name()\n\t\t\t}\n\n\t\t\tp.SetState(736)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(737)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(741)\n\t\tp.Match(SQLiteParserAS_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(742)\n\t\tp.Select_stmt()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ICreate_virtual_table_stmtContext is an interface to support dynamic dispatch.\ntype ICreate_virtual_table_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tCREATE_() antlr.TerminalNode\n\tVIRTUAL_() antlr.TerminalNode\n\tTABLE_() antlr.TerminalNode\n\tTable_name() ITable_nameContext\n\tUSING_() antlr.TerminalNode\n\tModule_name() IModule_nameContext\n\tIF_() antlr.TerminalNode\n\tNOT_() antlr.TerminalNode\n\tEXISTS_() antlr.TerminalNode\n\tSchema_name() ISchema_nameContext\n\tDOT() antlr.TerminalNode\n\tOPEN_PAR() antlr.TerminalNode\n\tAllModule_argument() []IModule_argumentContext\n\tModule_argument(i int) IModule_argumentContext\n\tCLOSE_PAR() antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsCreate_virtual_table_stmtContext differentiates from other interfaces.\n\tIsCreate_virtual_table_stmtContext()\n}\n\ntype Create_virtual_table_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyCreate_virtual_table_stmtContext() *Create_virtual_table_stmtContext {\n\tvar p = new(Create_virtual_table_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_create_virtual_table_stmt\n\treturn p\n}\n\nfunc InitEmptyCreate_virtual_table_stmtContext(p *Create_virtual_table_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_create_virtual_table_stmt\n}\n\nfunc (*Create_virtual_table_stmtContext) IsCreate_virtual_table_stmtContext() {}\n\nfunc NewCreate_virtual_table_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Create_virtual_table_stmtContext {\n\tvar p = new(Create_virtual_table_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_create_virtual_table_stmt\n\n\treturn p\n}\n\nfunc (s *Create_virtual_table_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Create_virtual_table_stmtContext) CREATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCREATE_, 0)\n}\n\nfunc (s *Create_virtual_table_stmtContext) VIRTUAL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserVIRTUAL_, 0)\n}\n\nfunc (s *Create_virtual_table_stmtContext) TABLE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTABLE_, 0)\n}\n\nfunc (s *Create_virtual_table_stmtContext) Table_name() ITable_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_nameContext)\n}\n\nfunc (s *Create_virtual_table_stmtContext) USING_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUSING_, 0)\n}\n\nfunc (s *Create_virtual_table_stmtContext) Module_name() IModule_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IModule_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IModule_nameContext)\n}\n\nfunc (s *Create_virtual_table_stmtContext) IF_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIF_, 0)\n}\n\nfunc (s *Create_virtual_table_stmtContext) NOT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_, 0)\n}\n\nfunc (s *Create_virtual_table_stmtContext) EXISTS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXISTS_, 0)\n}\n\nfunc (s *Create_virtual_table_stmtContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Create_virtual_table_stmtContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Create_virtual_table_stmtContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Create_virtual_table_stmtContext) AllModule_argument() []IModule_argumentContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IModule_argumentContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IModule_argumentContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IModule_argumentContext); ok {\n\t\t\ttst[i] = t.(IModule_argumentContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Create_virtual_table_stmtContext) Module_argument(i int) IModule_argumentContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IModule_argumentContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IModule_argumentContext)\n}\n\nfunc (s *Create_virtual_table_stmtContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Create_virtual_table_stmtContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Create_virtual_table_stmtContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Create_virtual_table_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Create_virtual_table_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Create_virtual_table_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterCreate_virtual_table_stmt(s)\n\t}\n}\n\nfunc (s *Create_virtual_table_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitCreate_virtual_table_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Create_virtual_table_stmt() (localctx ICreate_virtual_table_stmtContext) {\n\tlocalctx = NewCreate_virtual_table_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 48, SQLiteParserRULE_create_virtual_table_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(744)\n\t\tp.Match(SQLiteParserCREATE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(745)\n\t\tp.Match(SQLiteParserVIRTUAL_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(746)\n\t\tp.Match(SQLiteParserTABLE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(750)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 87, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(747)\n\t\t\tp.Match(SQLiteParserIF_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(748)\n\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(749)\n\t\t\tp.Match(SQLiteParserEXISTS_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\tp.SetState(755)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 88, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(752)\n\t\t\tp.Schema_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(753)\n\t\t\tp.Match(SQLiteParserDOT)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(757)\n\t\tp.Table_name()\n\t}\n\t{\n\t\tp.SetState(758)\n\t\tp.Match(SQLiteParserUSING_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(759)\n\t\tp.Module_name()\n\t}\n\tp.SetState(771)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserOPEN_PAR {\n\t\t{\n\t\t\tp.SetState(760)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(761)\n\t\t\tp.Module_argument()\n\t\t}\n\t\tp.SetState(766)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(762)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(763)\n\t\t\t\tp.Module_argument()\n\t\t\t}\n\n\t\t\tp.SetState(768)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(769)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IWith_clauseContext is an interface to support dynamic dispatch.\ntype IWith_clauseContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tWITH_() antlr.TerminalNode\n\tAllCte_table_name() []ICte_table_nameContext\n\tCte_table_name(i int) ICte_table_nameContext\n\tAllAS_() []antlr.TerminalNode\n\tAS_(i int) antlr.TerminalNode\n\tAllOPEN_PAR() []antlr.TerminalNode\n\tOPEN_PAR(i int) antlr.TerminalNode\n\tAllSelect_stmt() []ISelect_stmtContext\n\tSelect_stmt(i int) ISelect_stmtContext\n\tAllCLOSE_PAR() []antlr.TerminalNode\n\tCLOSE_PAR(i int) antlr.TerminalNode\n\tRECURSIVE_() antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsWith_clauseContext differentiates from other interfaces.\n\tIsWith_clauseContext()\n}\n\ntype With_clauseContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyWith_clauseContext() *With_clauseContext {\n\tvar p = new(With_clauseContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_with_clause\n\treturn p\n}\n\nfunc InitEmptyWith_clauseContext(p *With_clauseContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_with_clause\n}\n\nfunc (*With_clauseContext) IsWith_clauseContext() {}\n\nfunc NewWith_clauseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *With_clauseContext {\n\tvar p = new(With_clauseContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_with_clause\n\n\treturn p\n}\n\nfunc (s *With_clauseContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *With_clauseContext) WITH_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWITH_, 0)\n}\n\nfunc (s *With_clauseContext) AllCte_table_name() []ICte_table_nameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(ICte_table_nameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]ICte_table_nameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(ICte_table_nameContext); ok {\n\t\t\ttst[i] = t.(ICte_table_nameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *With_clauseContext) Cte_table_name(i int) ICte_table_nameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICte_table_nameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICte_table_nameContext)\n}\n\nfunc (s *With_clauseContext) AllAS_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserAS_)\n}\n\nfunc (s *With_clauseContext) AS_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAS_, i)\n}\n\nfunc (s *With_clauseContext) AllOPEN_PAR() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserOPEN_PAR)\n}\n\nfunc (s *With_clauseContext) OPEN_PAR(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, i)\n}\n\nfunc (s *With_clauseContext) AllSelect_stmt() []ISelect_stmtContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]ISelect_stmtContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\ttst[i] = t.(ISelect_stmtContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *With_clauseContext) Select_stmt(i int) ISelect_stmtContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISelect_stmtContext)\n}\n\nfunc (s *With_clauseContext) AllCLOSE_PAR() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCLOSE_PAR)\n}\n\nfunc (s *With_clauseContext) CLOSE_PAR(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, i)\n}\n\nfunc (s *With_clauseContext) RECURSIVE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRECURSIVE_, 0)\n}\n\nfunc (s *With_clauseContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *With_clauseContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *With_clauseContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *With_clauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *With_clauseContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterWith_clause(s)\n\t}\n}\n\nfunc (s *With_clauseContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitWith_clause(s)\n\t}\n}\n\nfunc (p *SQLiteParser) With_clause() (localctx IWith_clauseContext) {\n\tlocalctx = NewWith_clauseContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 50, SQLiteParserRULE_with_clause)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(773)\n\t\tp.Match(SQLiteParserWITH_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(775)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 91, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(774)\n\t\t\tp.Match(SQLiteParserRECURSIVE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(777)\n\t\tp.Cte_table_name()\n\t}\n\t{\n\t\tp.SetState(778)\n\t\tp.Match(SQLiteParserAS_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(779)\n\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(780)\n\t\tp.Select_stmt()\n\t}\n\t{\n\t\tp.SetState(781)\n\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(791)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor _la == SQLiteParserCOMMA {\n\t\t{\n\t\t\tp.SetState(782)\n\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(783)\n\t\t\tp.Cte_table_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(784)\n\t\t\tp.Match(SQLiteParserAS_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(785)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(786)\n\t\t\tp.Select_stmt()\n\t\t}\n\t\t{\n\t\t\tp.SetState(787)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t\tp.SetState(793)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ICte_table_nameContext is an interface to support dynamic dispatch.\ntype ICte_table_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tTable_name() ITable_nameContext\n\tOPEN_PAR() antlr.TerminalNode\n\tAllColumn_name() []IColumn_nameContext\n\tColumn_name(i int) IColumn_nameContext\n\tCLOSE_PAR() antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsCte_table_nameContext differentiates from other interfaces.\n\tIsCte_table_nameContext()\n}\n\ntype Cte_table_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyCte_table_nameContext() *Cte_table_nameContext {\n\tvar p = new(Cte_table_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_cte_table_name\n\treturn p\n}\n\nfunc InitEmptyCte_table_nameContext(p *Cte_table_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_cte_table_name\n}\n\nfunc (*Cte_table_nameContext) IsCte_table_nameContext() {}\n\nfunc NewCte_table_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Cte_table_nameContext {\n\tvar p = new(Cte_table_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_cte_table_name\n\n\treturn p\n}\n\nfunc (s *Cte_table_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Cte_table_nameContext) Table_name() ITable_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_nameContext)\n}\n\nfunc (s *Cte_table_nameContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Cte_table_nameContext) AllColumn_name() []IColumn_nameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_nameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_nameContext); ok {\n\t\t\ttst[i] = t.(IColumn_nameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Cte_table_nameContext) Column_name(i int) IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Cte_table_nameContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Cte_table_nameContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Cte_table_nameContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Cte_table_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Cte_table_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Cte_table_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterCte_table_name(s)\n\t}\n}\n\nfunc (s *Cte_table_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitCte_table_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Cte_table_name() (localctx ICte_table_nameContext) {\n\tlocalctx = NewCte_table_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 52, SQLiteParserRULE_cte_table_name)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(794)\n\t\tp.Table_name()\n\t}\n\tp.SetState(806)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserOPEN_PAR {\n\t\t{\n\t\t\tp.SetState(795)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(796)\n\t\t\tp.Column_name()\n\t\t}\n\t\tp.SetState(801)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(797)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(798)\n\t\t\t\tp.Column_name()\n\t\t\t}\n\n\t\t\tp.SetState(803)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(804)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IRecursive_cteContext is an interface to support dynamic dispatch.\ntype IRecursive_cteContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tCte_table_name() ICte_table_nameContext\n\tAS_() antlr.TerminalNode\n\tOPEN_PAR() antlr.TerminalNode\n\tInitial_select() IInitial_selectContext\n\tUNION_() antlr.TerminalNode\n\tRecursive__select() IRecursive__selectContext\n\tCLOSE_PAR() antlr.TerminalNode\n\tALL_() antlr.TerminalNode\n\n\t// IsRecursive_cteContext differentiates from other interfaces.\n\tIsRecursive_cteContext()\n}\n\ntype Recursive_cteContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyRecursive_cteContext() *Recursive_cteContext {\n\tvar p = new(Recursive_cteContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_recursive_cte\n\treturn p\n}\n\nfunc InitEmptyRecursive_cteContext(p *Recursive_cteContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_recursive_cte\n}\n\nfunc (*Recursive_cteContext) IsRecursive_cteContext() {}\n\nfunc NewRecursive_cteContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Recursive_cteContext {\n\tvar p = new(Recursive_cteContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_recursive_cte\n\n\treturn p\n}\n\nfunc (s *Recursive_cteContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Recursive_cteContext) Cte_table_name() ICte_table_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICte_table_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICte_table_nameContext)\n}\n\nfunc (s *Recursive_cteContext) AS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAS_, 0)\n}\n\nfunc (s *Recursive_cteContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Recursive_cteContext) Initial_select() IInitial_selectContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IInitial_selectContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IInitial_selectContext)\n}\n\nfunc (s *Recursive_cteContext) UNION_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUNION_, 0)\n}\n\nfunc (s *Recursive_cteContext) Recursive__select() IRecursive__selectContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IRecursive__selectContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IRecursive__selectContext)\n}\n\nfunc (s *Recursive_cteContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Recursive_cteContext) ALL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserALL_, 0)\n}\n\nfunc (s *Recursive_cteContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Recursive_cteContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Recursive_cteContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterRecursive_cte(s)\n\t}\n}\n\nfunc (s *Recursive_cteContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitRecursive_cte(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Recursive_cte() (localctx IRecursive_cteContext) {\n\tlocalctx = NewRecursive_cteContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 54, SQLiteParserRULE_recursive_cte)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(808)\n\t\tp.Cte_table_name()\n\t}\n\t{\n\t\tp.SetState(809)\n\t\tp.Match(SQLiteParserAS_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(810)\n\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(811)\n\t\tp.Initial_select()\n\t}\n\t{\n\t\tp.SetState(812)\n\t\tp.Match(SQLiteParserUNION_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(814)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserALL_ {\n\t\t{\n\t\t\tp.SetState(813)\n\t\t\tp.Match(SQLiteParserALL_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(816)\n\t\tp.Recursive__select()\n\t}\n\t{\n\t\tp.SetState(817)\n\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ICommon_table_expressionContext is an interface to support dynamic dispatch.\ntype ICommon_table_expressionContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tTable_name() ITable_nameContext\n\tAS_() antlr.TerminalNode\n\tAllOPEN_PAR() []antlr.TerminalNode\n\tOPEN_PAR(i int) antlr.TerminalNode\n\tSelect_stmt() ISelect_stmtContext\n\tAllCLOSE_PAR() []antlr.TerminalNode\n\tCLOSE_PAR(i int) antlr.TerminalNode\n\tAllColumn_name() []IColumn_nameContext\n\tColumn_name(i int) IColumn_nameContext\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsCommon_table_expressionContext differentiates from other interfaces.\n\tIsCommon_table_expressionContext()\n}\n\ntype Common_table_expressionContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyCommon_table_expressionContext() *Common_table_expressionContext {\n\tvar p = new(Common_table_expressionContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_common_table_expression\n\treturn p\n}\n\nfunc InitEmptyCommon_table_expressionContext(p *Common_table_expressionContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_common_table_expression\n}\n\nfunc (*Common_table_expressionContext) IsCommon_table_expressionContext() {}\n\nfunc NewCommon_table_expressionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Common_table_expressionContext {\n\tvar p = new(Common_table_expressionContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_common_table_expression\n\n\treturn p\n}\n\nfunc (s *Common_table_expressionContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Common_table_expressionContext) Table_name() ITable_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_nameContext)\n}\n\nfunc (s *Common_table_expressionContext) AS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAS_, 0)\n}\n\nfunc (s *Common_table_expressionContext) AllOPEN_PAR() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserOPEN_PAR)\n}\n\nfunc (s *Common_table_expressionContext) OPEN_PAR(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, i)\n}\n\nfunc (s *Common_table_expressionContext) Select_stmt() ISelect_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISelect_stmtContext)\n}\n\nfunc (s *Common_table_expressionContext) AllCLOSE_PAR() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCLOSE_PAR)\n}\n\nfunc (s *Common_table_expressionContext) CLOSE_PAR(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, i)\n}\n\nfunc (s *Common_table_expressionContext) AllColumn_name() []IColumn_nameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_nameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_nameContext); ok {\n\t\t\ttst[i] = t.(IColumn_nameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Common_table_expressionContext) Column_name(i int) IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Common_table_expressionContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Common_table_expressionContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Common_table_expressionContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Common_table_expressionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Common_table_expressionContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterCommon_table_expression(s)\n\t}\n}\n\nfunc (s *Common_table_expressionContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitCommon_table_expression(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Common_table_expression() (localctx ICommon_table_expressionContext) {\n\tlocalctx = NewCommon_table_expressionContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 56, SQLiteParserRULE_common_table_expression)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(819)\n\t\tp.Table_name()\n\t}\n\tp.SetState(831)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserOPEN_PAR {\n\t\t{\n\t\t\tp.SetState(820)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(821)\n\t\t\tp.Column_name()\n\t\t}\n\t\tp.SetState(826)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(822)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(823)\n\t\t\t\tp.Column_name()\n\t\t\t}\n\n\t\t\tp.SetState(828)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(829)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(833)\n\t\tp.Match(SQLiteParserAS_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(834)\n\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(835)\n\t\tp.Select_stmt()\n\t}\n\t{\n\t\tp.SetState(836)\n\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IReturning_clauseContext is an interface to support dynamic dispatch.\ntype IReturning_clauseContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tRETURNING_() antlr.TerminalNode\n\tAllSTAR() []antlr.TerminalNode\n\tSTAR(i int) antlr.TerminalNode\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\tAllColumn_alias() []IColumn_aliasContext\n\tColumn_alias(i int) IColumn_aliasContext\n\tAllAS_() []antlr.TerminalNode\n\tAS_(i int) antlr.TerminalNode\n\n\t// IsReturning_clauseContext differentiates from other interfaces.\n\tIsReturning_clauseContext()\n}\n\ntype Returning_clauseContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyReturning_clauseContext() *Returning_clauseContext {\n\tvar p = new(Returning_clauseContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_returning_clause\n\treturn p\n}\n\nfunc InitEmptyReturning_clauseContext(p *Returning_clauseContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_returning_clause\n}\n\nfunc (*Returning_clauseContext) IsReturning_clauseContext() {}\n\nfunc NewReturning_clauseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Returning_clauseContext {\n\tvar p = new(Returning_clauseContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_returning_clause\n\n\treturn p\n}\n\nfunc (s *Returning_clauseContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Returning_clauseContext) RETURNING_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRETURNING_, 0)\n}\n\nfunc (s *Returning_clauseContext) AllSTAR() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserSTAR)\n}\n\nfunc (s *Returning_clauseContext) STAR(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTAR, i)\n}\n\nfunc (s *Returning_clauseContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Returning_clauseContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Returning_clauseContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Returning_clauseContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Returning_clauseContext) AllColumn_alias() []IColumn_aliasContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_aliasContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_aliasContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_aliasContext); ok {\n\t\t\ttst[i] = t.(IColumn_aliasContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Returning_clauseContext) Column_alias(i int) IColumn_aliasContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_aliasContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_aliasContext)\n}\n\nfunc (s *Returning_clauseContext) AllAS_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserAS_)\n}\n\nfunc (s *Returning_clauseContext) AS_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAS_, i)\n}\n\nfunc (s *Returning_clauseContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Returning_clauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Returning_clauseContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterReturning_clause(s)\n\t}\n}\n\nfunc (s *Returning_clauseContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitReturning_clause(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Returning_clause() (localctx IReturning_clauseContext) {\n\tlocalctx = NewReturning_clauseContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 58, SQLiteParserRULE_returning_clause)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(838)\n\t\tp.Match(SQLiteParserRETURNING_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\n\tp.SetState(847)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserSTAR:\n\t\t{\n\t\t\tp.SetState(839)\n\t\t\tp.Match(SQLiteParserSTAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserOPEN_PAR, SQLiteParserPLUS, SQLiteParserMINUS, SQLiteParserTILDE, SQLiteParserABORT_, SQLiteParserACTION_, SQLiteParserADD_, SQLiteParserAFTER_, SQLiteParserALL_, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserAND_, SQLiteParserAS_, SQLiteParserASC_, SQLiteParserATTACH_, SQLiteParserAUTOINCREMENT_, SQLiteParserBEFORE_, SQLiteParserBEGIN_, SQLiteParserBETWEEN_, SQLiteParserBY_, SQLiteParserCASCADE_, SQLiteParserCASE_, SQLiteParserCAST_, SQLiteParserCHECK_, SQLiteParserCOLLATE_, SQLiteParserCOLUMN_, SQLiteParserCOMMIT_, SQLiteParserCONFLICT_, SQLiteParserCONSTRAINT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserCURRENT_DATE_, SQLiteParserCURRENT_TIME_, SQLiteParserCURRENT_TIMESTAMP_, SQLiteParserDATABASE_, SQLiteParserDEFAULT_, SQLiteParserDEFERRABLE_, SQLiteParserDEFERRED_, SQLiteParserDELETE_, SQLiteParserDESC_, SQLiteParserDETACH_, SQLiteParserDISTINCT_, SQLiteParserDROP_, SQLiteParserEACH_, SQLiteParserELSE_, SQLiteParserEND_, SQLiteParserESCAPE_, SQLiteParserEXCEPT_, SQLiteParserEXCLUSIVE_, SQLiteParserEXISTS_, SQLiteParserEXPLAIN_, SQLiteParserFAIL_, SQLiteParserFOR_, SQLiteParserFOREIGN_, SQLiteParserFROM_, SQLiteParserFULL_, SQLiteParserGLOB_, SQLiteParserGROUP_, SQLiteParserHAVING_, SQLiteParserIF_, SQLiteParserIGNORE_, SQLiteParserIMMEDIATE_, SQLiteParserIN_, SQLiteParserINDEX_, SQLiteParserINDEXED_, SQLiteParserINITIALLY_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINSTEAD_, SQLiteParserINTERSECT_, SQLiteParserINTO_, SQLiteParserIS_, SQLiteParserISNULL_, SQLiteParserJOIN_, SQLiteParserKEY_, SQLiteParserLEFT_, SQLiteParserLIKE_, SQLiteParserLIMIT_, SQLiteParserMATCH_, SQLiteParserNATURAL_, SQLiteParserNO_, SQLiteParserNOT_, SQLiteParserNOTNULL_, SQLiteParserNULL_, SQLiteParserOF_, SQLiteParserOFFSET_, SQLiteParserON_, SQLiteParserOR_, SQLiteParserORDER_, SQLiteParserOUTER_, SQLiteParserPLAN_, SQLiteParserPRAGMA_, SQLiteParserPRIMARY_, SQLiteParserQUERY_, SQLiteParserRAISE_, SQLiteParserRECURSIVE_, SQLiteParserREFERENCES_, SQLiteParserREGEXP_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserRENAME_, SQLiteParserREPLACE_, SQLiteParserRESTRICT_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserROW_, SQLiteParserROWS_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserSET_, SQLiteParserSTRICT_, SQLiteParserTABLE_, SQLiteParserTEMP_, SQLiteParserTEMPORARY_, SQLiteParserTHEN_, SQLiteParserTO_, SQLiteParserTRANSACTION_, SQLiteParserTRIGGER_, SQLiteParserUNION_, SQLiteParserUNIQUE_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserVIEW_, SQLiteParserVIRTUAL_, SQLiteParserWHEN_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWITHOUT_, SQLiteParserFIRST_VALUE_, SQLiteParserOVER_, SQLiteParserPARTITION_, SQLiteParserRANGE_, SQLiteParserPRECEDING_, SQLiteParserUNBOUNDED_, SQLiteParserCURRENT_, SQLiteParserFOLLOWING_, SQLiteParserCUME_DIST_, SQLiteParserDENSE_RANK_, SQLiteParserLAG_, SQLiteParserLAST_VALUE_, SQLiteParserLEAD_, SQLiteParserNTH_VALUE_, SQLiteParserNTILE_, SQLiteParserPERCENT_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_, SQLiteParserGENERATED_, SQLiteParserALWAYS_, SQLiteParserSTORED_, SQLiteParserTRUE_, SQLiteParserFALSE_, SQLiteParserWINDOW_, SQLiteParserNULLS_, SQLiteParserFIRST_, SQLiteParserLAST_, SQLiteParserFILTER_, SQLiteParserGROUPS_, SQLiteParserEXCLUDE_, SQLiteParserIDENTIFIER, SQLiteParserNUMERIC_LITERAL, SQLiteParserNUMBERED_BIND_PARAMETER, SQLiteParserNAMED_BIND_PARAMETER, SQLiteParserSTRING_LITERAL, SQLiteParserBLOB_LITERAL:\n\t\t{\n\t\t\tp.SetState(840)\n\t\t\tp.expr(0)\n\t\t}\n\t\tp.SetState(845)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserAS_ || _la == SQLiteParserIDENTIFIER || _la == SQLiteParserSTRING_LITERAL {\n\t\t\tp.SetState(842)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif _la == SQLiteParserAS_ {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(841)\n\t\t\t\t\tp.Match(SQLiteParserAS_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(844)\n\t\t\t\tp.Column_alias()\n\t\t\t}\n\n\t\t}\n\n\tdefault:\n\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\tgoto errorExit\n\t}\n\tp.SetState(862)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor _la == SQLiteParserCOMMA {\n\t\t{\n\t\t\tp.SetState(849)\n\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(858)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tswitch p.GetTokenStream().LA(1) {\n\t\tcase SQLiteParserSTAR:\n\t\t\t{\n\t\t\t\tp.SetState(850)\n\t\t\t\tp.Match(SQLiteParserSTAR)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase SQLiteParserOPEN_PAR, SQLiteParserPLUS, SQLiteParserMINUS, SQLiteParserTILDE, SQLiteParserABORT_, SQLiteParserACTION_, SQLiteParserADD_, SQLiteParserAFTER_, SQLiteParserALL_, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserAND_, SQLiteParserAS_, SQLiteParserASC_, SQLiteParserATTACH_, SQLiteParserAUTOINCREMENT_, SQLiteParserBEFORE_, SQLiteParserBEGIN_, SQLiteParserBETWEEN_, SQLiteParserBY_, SQLiteParserCASCADE_, SQLiteParserCASE_, SQLiteParserCAST_, SQLiteParserCHECK_, SQLiteParserCOLLATE_, SQLiteParserCOLUMN_, SQLiteParserCOMMIT_, SQLiteParserCONFLICT_, SQLiteParserCONSTRAINT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserCURRENT_DATE_, SQLiteParserCURRENT_TIME_, SQLiteParserCURRENT_TIMESTAMP_, SQLiteParserDATABASE_, SQLiteParserDEFAULT_, SQLiteParserDEFERRABLE_, SQLiteParserDEFERRED_, SQLiteParserDELETE_, SQLiteParserDESC_, SQLiteParserDETACH_, SQLiteParserDISTINCT_, SQLiteParserDROP_, SQLiteParserEACH_, SQLiteParserELSE_, SQLiteParserEND_, SQLiteParserESCAPE_, SQLiteParserEXCEPT_, SQLiteParserEXCLUSIVE_, SQLiteParserEXISTS_, SQLiteParserEXPLAIN_, SQLiteParserFAIL_, SQLiteParserFOR_, SQLiteParserFOREIGN_, SQLiteParserFROM_, SQLiteParserFULL_, SQLiteParserGLOB_, SQLiteParserGROUP_, SQLiteParserHAVING_, SQLiteParserIF_, SQLiteParserIGNORE_, SQLiteParserIMMEDIATE_, SQLiteParserIN_, SQLiteParserINDEX_, SQLiteParserINDEXED_, SQLiteParserINITIALLY_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINSTEAD_, SQLiteParserINTERSECT_, SQLiteParserINTO_, SQLiteParserIS_, SQLiteParserISNULL_, SQLiteParserJOIN_, SQLiteParserKEY_, SQLiteParserLEFT_, SQLiteParserLIKE_, SQLiteParserLIMIT_, SQLiteParserMATCH_, SQLiteParserNATURAL_, SQLiteParserNO_, SQLiteParserNOT_, SQLiteParserNOTNULL_, SQLiteParserNULL_, SQLiteParserOF_, SQLiteParserOFFSET_, SQLiteParserON_, SQLiteParserOR_, SQLiteParserORDER_, SQLiteParserOUTER_, SQLiteParserPLAN_, SQLiteParserPRAGMA_, SQLiteParserPRIMARY_, SQLiteParserQUERY_, SQLiteParserRAISE_, SQLiteParserRECURSIVE_, SQLiteParserREFERENCES_, SQLiteParserREGEXP_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserRENAME_, SQLiteParserREPLACE_, SQLiteParserRESTRICT_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserROW_, SQLiteParserROWS_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserSET_, SQLiteParserSTRICT_, SQLiteParserTABLE_, SQLiteParserTEMP_, SQLiteParserTEMPORARY_, SQLiteParserTHEN_, SQLiteParserTO_, SQLiteParserTRANSACTION_, SQLiteParserTRIGGER_, SQLiteParserUNION_, SQLiteParserUNIQUE_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserVIEW_, SQLiteParserVIRTUAL_, SQLiteParserWHEN_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWITHOUT_, SQLiteParserFIRST_VALUE_, SQLiteParserOVER_, SQLiteParserPARTITION_, SQLiteParserRANGE_, SQLiteParserPRECEDING_, SQLiteParserUNBOUNDED_, SQLiteParserCURRENT_, SQLiteParserFOLLOWING_, SQLiteParserCUME_DIST_, SQLiteParserDENSE_RANK_, SQLiteParserLAG_, SQLiteParserLAST_VALUE_, SQLiteParserLEAD_, SQLiteParserNTH_VALUE_, SQLiteParserNTILE_, SQLiteParserPERCENT_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_, SQLiteParserGENERATED_, SQLiteParserALWAYS_, SQLiteParserSTORED_, SQLiteParserTRUE_, SQLiteParserFALSE_, SQLiteParserWINDOW_, SQLiteParserNULLS_, SQLiteParserFIRST_, SQLiteParserLAST_, SQLiteParserFILTER_, SQLiteParserGROUPS_, SQLiteParserEXCLUDE_, SQLiteParserIDENTIFIER, SQLiteParserNUMERIC_LITERAL, SQLiteParserNUMBERED_BIND_PARAMETER, SQLiteParserNAMED_BIND_PARAMETER, SQLiteParserSTRING_LITERAL, SQLiteParserBLOB_LITERAL:\n\t\t\t{\n\t\t\t\tp.SetState(851)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\t\t\tp.SetState(856)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif _la == SQLiteParserAS_ || _la == SQLiteParserIDENTIFIER || _la == SQLiteParserSTRING_LITERAL {\n\t\t\t\tp.SetState(853)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\tif _la == SQLiteParserAS_ {\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(852)\n\t\t\t\t\t\tp.Match(SQLiteParserAS_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(855)\n\t\t\t\t\tp.Column_alias()\n\t\t\t\t}\n\n\t\t\t}\n\n\t\tdefault:\n\t\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tp.SetState(864)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IDelete_stmtContext is an interface to support dynamic dispatch.\ntype IDelete_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tDELETE_() antlr.TerminalNode\n\tFROM_() antlr.TerminalNode\n\tQualified_table_name() IQualified_table_nameContext\n\tWith_clause() IWith_clauseContext\n\tWHERE_() antlr.TerminalNode\n\tExpr() IExprContext\n\tReturning_clause() IReturning_clauseContext\n\n\t// IsDelete_stmtContext differentiates from other interfaces.\n\tIsDelete_stmtContext()\n}\n\ntype Delete_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyDelete_stmtContext() *Delete_stmtContext {\n\tvar p = new(Delete_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_delete_stmt\n\treturn p\n}\n\nfunc InitEmptyDelete_stmtContext(p *Delete_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_delete_stmt\n}\n\nfunc (*Delete_stmtContext) IsDelete_stmtContext() {}\n\nfunc NewDelete_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Delete_stmtContext {\n\tvar p = new(Delete_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_delete_stmt\n\n\treturn p\n}\n\nfunc (s *Delete_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Delete_stmtContext) DELETE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDELETE_, 0)\n}\n\nfunc (s *Delete_stmtContext) FROM_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFROM_, 0)\n}\n\nfunc (s *Delete_stmtContext) Qualified_table_name() IQualified_table_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IQualified_table_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IQualified_table_nameContext)\n}\n\nfunc (s *Delete_stmtContext) With_clause() IWith_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IWith_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IWith_clauseContext)\n}\n\nfunc (s *Delete_stmtContext) WHERE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWHERE_, 0)\n}\n\nfunc (s *Delete_stmtContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Delete_stmtContext) Returning_clause() IReturning_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IReturning_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IReturning_clauseContext)\n}\n\nfunc (s *Delete_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Delete_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Delete_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterDelete_stmt(s)\n\t}\n}\n\nfunc (s *Delete_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitDelete_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Delete_stmt() (localctx IDelete_stmtContext) {\n\tlocalctx = NewDelete_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 60, SQLiteParserRULE_delete_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(866)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserWITH_ {\n\t\t{\n\t\t\tp.SetState(865)\n\t\t\tp.With_clause()\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(868)\n\t\tp.Match(SQLiteParserDELETE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(869)\n\t\tp.Match(SQLiteParserFROM_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(870)\n\t\tp.Qualified_table_name()\n\t}\n\tp.SetState(873)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserWHERE_ {\n\t\t{\n\t\t\tp.SetState(871)\n\t\t\tp.Match(SQLiteParserWHERE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(872)\n\t\t\tp.expr(0)\n\t\t}\n\n\t}\n\tp.SetState(876)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserRETURNING_ {\n\t\t{\n\t\t\tp.SetState(875)\n\t\t\tp.Returning_clause()\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IDelete_stmt_limitedContext is an interface to support dynamic dispatch.\ntype IDelete_stmt_limitedContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tDELETE_() antlr.TerminalNode\n\tFROM_() antlr.TerminalNode\n\tQualified_table_name() IQualified_table_nameContext\n\tWith_clause() IWith_clauseContext\n\tWHERE_() antlr.TerminalNode\n\tExpr() IExprContext\n\tLimit_stmt() ILimit_stmtContext\n\tReturning_clause() IReturning_clauseContext\n\tOrder_by_stmt() IOrder_by_stmtContext\n\n\t// IsDelete_stmt_limitedContext differentiates from other interfaces.\n\tIsDelete_stmt_limitedContext()\n}\n\ntype Delete_stmt_limitedContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyDelete_stmt_limitedContext() *Delete_stmt_limitedContext {\n\tvar p = new(Delete_stmt_limitedContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_delete_stmt_limited\n\treturn p\n}\n\nfunc InitEmptyDelete_stmt_limitedContext(p *Delete_stmt_limitedContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_delete_stmt_limited\n}\n\nfunc (*Delete_stmt_limitedContext) IsDelete_stmt_limitedContext() {}\n\nfunc NewDelete_stmt_limitedContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Delete_stmt_limitedContext {\n\tvar p = new(Delete_stmt_limitedContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_delete_stmt_limited\n\n\treturn p\n}\n\nfunc (s *Delete_stmt_limitedContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Delete_stmt_limitedContext) DELETE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDELETE_, 0)\n}\n\nfunc (s *Delete_stmt_limitedContext) FROM_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFROM_, 0)\n}\n\nfunc (s *Delete_stmt_limitedContext) Qualified_table_name() IQualified_table_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IQualified_table_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IQualified_table_nameContext)\n}\n\nfunc (s *Delete_stmt_limitedContext) With_clause() IWith_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IWith_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IWith_clauseContext)\n}\n\nfunc (s *Delete_stmt_limitedContext) WHERE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWHERE_, 0)\n}\n\nfunc (s *Delete_stmt_limitedContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Delete_stmt_limitedContext) Limit_stmt() ILimit_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ILimit_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ILimit_stmtContext)\n}\n\nfunc (s *Delete_stmt_limitedContext) Returning_clause() IReturning_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IReturning_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IReturning_clauseContext)\n}\n\nfunc (s *Delete_stmt_limitedContext) Order_by_stmt() IOrder_by_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IOrder_by_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IOrder_by_stmtContext)\n}\n\nfunc (s *Delete_stmt_limitedContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Delete_stmt_limitedContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Delete_stmt_limitedContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterDelete_stmt_limited(s)\n\t}\n}\n\nfunc (s *Delete_stmt_limitedContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitDelete_stmt_limited(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Delete_stmt_limited() (localctx IDelete_stmt_limitedContext) {\n\tlocalctx = NewDelete_stmt_limitedContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 62, SQLiteParserRULE_delete_stmt_limited)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(879)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserWITH_ {\n\t\t{\n\t\t\tp.SetState(878)\n\t\t\tp.With_clause()\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(881)\n\t\tp.Match(SQLiteParserDELETE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(882)\n\t\tp.Match(SQLiteParserFROM_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(883)\n\t\tp.Qualified_table_name()\n\t}\n\tp.SetState(886)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserWHERE_ {\n\t\t{\n\t\t\tp.SetState(884)\n\t\t\tp.Match(SQLiteParserWHERE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(885)\n\t\t\tp.expr(0)\n\t\t}\n\n\t}\n\tp.SetState(892)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserLIMIT_ || _la == SQLiteParserORDER_ {\n\t\tp.SetState(889)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserORDER_ {\n\t\t\t{\n\t\t\t\tp.SetState(888)\n\t\t\t\tp.Order_by_stmt()\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(891)\n\t\t\tp.Limit_stmt()\n\t\t}\n\n\t}\n\tp.SetState(895)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserRETURNING_ {\n\t\t{\n\t\t\tp.SetState(894)\n\t\t\tp.Returning_clause()\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IDetach_stmtContext is an interface to support dynamic dispatch.\ntype IDetach_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tDETACH_() antlr.TerminalNode\n\tSchema_name() ISchema_nameContext\n\tDATABASE_() antlr.TerminalNode\n\n\t// IsDetach_stmtContext differentiates from other interfaces.\n\tIsDetach_stmtContext()\n}\n\ntype Detach_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyDetach_stmtContext() *Detach_stmtContext {\n\tvar p = new(Detach_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_detach_stmt\n\treturn p\n}\n\nfunc InitEmptyDetach_stmtContext(p *Detach_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_detach_stmt\n}\n\nfunc (*Detach_stmtContext) IsDetach_stmtContext() {}\n\nfunc NewDetach_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Detach_stmtContext {\n\tvar p = new(Detach_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_detach_stmt\n\n\treturn p\n}\n\nfunc (s *Detach_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Detach_stmtContext) DETACH_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDETACH_, 0)\n}\n\nfunc (s *Detach_stmtContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Detach_stmtContext) DATABASE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDATABASE_, 0)\n}\n\nfunc (s *Detach_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Detach_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Detach_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterDetach_stmt(s)\n\t}\n}\n\nfunc (s *Detach_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitDetach_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Detach_stmt() (localctx IDetach_stmtContext) {\n\tlocalctx = NewDetach_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 64, SQLiteParserRULE_detach_stmt)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(897)\n\t\tp.Match(SQLiteParserDETACH_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(899)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 113, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(898)\n\t\t\tp.Match(SQLiteParserDATABASE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(901)\n\t\tp.Schema_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IDrop_stmtContext is an interface to support dynamic dispatch.\ntype IDrop_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// GetObject returns the object token.\n\tGetObject() antlr.Token\n\n\t// SetObject sets the object token.\n\tSetObject(antlr.Token)\n\n\t// Getter signatures\n\tDROP_() antlr.TerminalNode\n\tAny_name() IAny_nameContext\n\tINDEX_() antlr.TerminalNode\n\tTABLE_() antlr.TerminalNode\n\tTRIGGER_() antlr.TerminalNode\n\tVIEW_() antlr.TerminalNode\n\tIF_() antlr.TerminalNode\n\tEXISTS_() antlr.TerminalNode\n\tSchema_name() ISchema_nameContext\n\tDOT() antlr.TerminalNode\n\n\t// IsDrop_stmtContext differentiates from other interfaces.\n\tIsDrop_stmtContext()\n}\n\ntype Drop_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n\tobject antlr.Token\n}\n\nfunc NewEmptyDrop_stmtContext() *Drop_stmtContext {\n\tvar p = new(Drop_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_drop_stmt\n\treturn p\n}\n\nfunc InitEmptyDrop_stmtContext(p *Drop_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_drop_stmt\n}\n\nfunc (*Drop_stmtContext) IsDrop_stmtContext() {}\n\nfunc NewDrop_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Drop_stmtContext {\n\tvar p = new(Drop_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_drop_stmt\n\n\treturn p\n}\n\nfunc (s *Drop_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Drop_stmtContext) GetObject() antlr.Token { return s.object }\n\nfunc (s *Drop_stmtContext) SetObject(v antlr.Token) { s.object = v }\n\nfunc (s *Drop_stmtContext) DROP_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDROP_, 0)\n}\n\nfunc (s *Drop_stmtContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Drop_stmtContext) INDEX_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINDEX_, 0)\n}\n\nfunc (s *Drop_stmtContext) TABLE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTABLE_, 0)\n}\n\nfunc (s *Drop_stmtContext) TRIGGER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTRIGGER_, 0)\n}\n\nfunc (s *Drop_stmtContext) VIEW_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserVIEW_, 0)\n}\n\nfunc (s *Drop_stmtContext) IF_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIF_, 0)\n}\n\nfunc (s *Drop_stmtContext) EXISTS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXISTS_, 0)\n}\n\nfunc (s *Drop_stmtContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Drop_stmtContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Drop_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Drop_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Drop_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterDrop_stmt(s)\n\t}\n}\n\nfunc (s *Drop_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitDrop_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Drop_stmt() (localctx IDrop_stmtContext) {\n\tlocalctx = NewDrop_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 66, SQLiteParserRULE_drop_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(903)\n\t\tp.Match(SQLiteParserDROP_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(904)\n\n\t\tvar _lt = p.GetTokenStream().LT(1)\n\n\t\tlocalctx.(*Drop_stmtContext).object = _lt\n\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif !((int64((_la-86)) & ^0x3f) == 0 && ((int64(1)<<(_la-86))&4648277765399773185) != 0) {\n\t\t\tvar _ri = p.GetErrorHandler().RecoverInline(p)\n\n\t\t\tlocalctx.(*Drop_stmtContext).object = _ri\n\t\t} else {\n\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\tp.Consume()\n\t\t}\n\t}\n\tp.SetState(907)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 114, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(905)\n\t\t\tp.Match(SQLiteParserIF_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(906)\n\t\t\tp.Match(SQLiteParserEXISTS_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\tp.SetState(912)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 115, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(909)\n\t\t\tp.Schema_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(910)\n\t\t\tp.Match(SQLiteParserDOT)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(914)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IExprContext is an interface to support dynamic dispatch.\ntype IExprContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\t// IsExprContext differentiates from other interfaces.\n\tIsExprContext()\n}\n\ntype ExprContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyExprContext() *ExprContext {\n\tvar p = new(ExprContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_expr\n\treturn p\n}\n\nfunc InitEmptyExprContext(p *ExprContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_expr\n}\n\nfunc (*ExprContext) IsExprContext() {}\n\nfunc NewExprContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *ExprContext {\n\tvar p = new(ExprContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_expr\n\n\treturn p\n}\n\nfunc (s *ExprContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *ExprContext) CopyAll(ctx *ExprContext) {\n\ts.CopyFrom(&ctx.BaseParserRuleContext)\n}\n\nfunc (s *ExprContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *ExprContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\ntype Expr_caseContext struct {\n\tExprContext\n}\n\nfunc NewExpr_caseContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_caseContext {\n\tvar p = new(Expr_caseContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_caseContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_caseContext) CASE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCASE_, 0)\n}\n\nfunc (s *Expr_caseContext) END_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEND_, 0)\n}\n\nfunc (s *Expr_caseContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Expr_caseContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Expr_caseContext) AllWHEN_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserWHEN_)\n}\n\nfunc (s *Expr_caseContext) WHEN_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWHEN_, i)\n}\n\nfunc (s *Expr_caseContext) AllTHEN_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserTHEN_)\n}\n\nfunc (s *Expr_caseContext) THEN_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTHEN_, i)\n}\n\nfunc (s *Expr_caseContext) ELSE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserELSE_, 0)\n}\n\nfunc (s *Expr_caseContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_case(s)\n\t}\n}\n\nfunc (s *Expr_caseContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_case(s)\n\t}\n}\n\ntype Expr_raiseContext struct {\n\tExprContext\n}\n\nfunc NewExpr_raiseContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_raiseContext {\n\tvar p = new(Expr_raiseContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_raiseContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_raiseContext) Raise_function() IRaise_functionContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IRaise_functionContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IRaise_functionContext)\n}\n\nfunc (s *Expr_raiseContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_raise(s)\n\t}\n}\n\nfunc (s *Expr_raiseContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_raise(s)\n\t}\n}\n\ntype Expr_functionContext struct {\n\tExprContext\n}\n\nfunc NewExpr_functionContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_functionContext {\n\tvar p = new(Expr_functionContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_functionContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_functionContext) Qualified_function_name() IQualified_function_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IQualified_function_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IQualified_function_nameContext)\n}\n\nfunc (s *Expr_functionContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Expr_functionContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Expr_functionContext) STAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTAR, 0)\n}\n\nfunc (s *Expr_functionContext) Filter_clause() IFilter_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IFilter_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IFilter_clauseContext)\n}\n\nfunc (s *Expr_functionContext) Over_clause() IOver_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IOver_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IOver_clauseContext)\n}\n\nfunc (s *Expr_functionContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Expr_functionContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Expr_functionContext) DISTINCT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDISTINCT_, 0)\n}\n\nfunc (s *Expr_functionContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Expr_functionContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Expr_functionContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_function(s)\n\t}\n}\n\nfunc (s *Expr_functionContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_function(s)\n\t}\n}\n\ntype Expr_comparisonContext struct {\n\tExprContext\n}\n\nfunc NewExpr_comparisonContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_comparisonContext {\n\tvar p = new(Expr_comparisonContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_comparisonContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_comparisonContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Expr_comparisonContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Expr_comparisonContext) LT2() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLT2, 0)\n}\n\nfunc (s *Expr_comparisonContext) GT2() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserGT2, 0)\n}\n\nfunc (s *Expr_comparisonContext) AMP() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAMP, 0)\n}\n\nfunc (s *Expr_comparisonContext) PIPE() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPIPE, 0)\n}\n\nfunc (s *Expr_comparisonContext) LT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLT, 0)\n}\n\nfunc (s *Expr_comparisonContext) LT_EQ() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLT_EQ, 0)\n}\n\nfunc (s *Expr_comparisonContext) GT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserGT, 0)\n}\n\nfunc (s *Expr_comparisonContext) GT_EQ() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserGT_EQ, 0)\n}\n\nfunc (s *Expr_comparisonContext) ASSIGN() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserASSIGN, 0)\n}\n\nfunc (s *Expr_comparisonContext) EQ() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEQ, 0)\n}\n\nfunc (s *Expr_comparisonContext) NOT_EQ1() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_EQ1, 0)\n}\n\nfunc (s *Expr_comparisonContext) NOT_EQ2() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_EQ2, 0)\n}\n\nfunc (s *Expr_comparisonContext) IS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIS_, 0)\n}\n\nfunc (s *Expr_comparisonContext) NOT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_, 0)\n}\n\nfunc (s *Expr_comparisonContext) IN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIN_, 0)\n}\n\nfunc (s *Expr_comparisonContext) LIKE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLIKE_, 0)\n}\n\nfunc (s *Expr_comparisonContext) GLOB_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserGLOB_, 0)\n}\n\nfunc (s *Expr_comparisonContext) MATCH_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserMATCH_, 0)\n}\n\nfunc (s *Expr_comparisonContext) REGEXP_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserREGEXP_, 0)\n}\n\nfunc (s *Expr_comparisonContext) ESCAPE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserESCAPE_, 0)\n}\n\nfunc (s *Expr_comparisonContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_comparison(s)\n\t}\n}\n\nfunc (s *Expr_comparisonContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_comparison(s)\n\t}\n}\n\ntype Expr_boolContext struct {\n\tExprContext\n}\n\nfunc NewExpr_boolContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_boolContext {\n\tvar p = new(Expr_boolContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_boolContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_boolContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Expr_boolContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Expr_boolContext) AND_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAND_, 0)\n}\n\nfunc (s *Expr_boolContext) OR_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOR_, 0)\n}\n\nfunc (s *Expr_boolContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_bool(s)\n\t}\n}\n\nfunc (s *Expr_boolContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_bool(s)\n\t}\n}\n\ntype Expr_binaryContext struct {\n\tExprContext\n}\n\nfunc NewExpr_binaryContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_binaryContext {\n\tvar p = new(Expr_binaryContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_binaryContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_binaryContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Expr_binaryContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Expr_binaryContext) PIPE2() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPIPE2, 0)\n}\n\nfunc (s *Expr_binaryContext) PTR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPTR, 0)\n}\n\nfunc (s *Expr_binaryContext) PTR2() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPTR2, 0)\n}\n\nfunc (s *Expr_binaryContext) STAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTAR, 0)\n}\n\nfunc (s *Expr_binaryContext) DIV() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDIV, 0)\n}\n\nfunc (s *Expr_binaryContext) MOD() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserMOD, 0)\n}\n\nfunc (s *Expr_binaryContext) PLUS() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPLUS, 0)\n}\n\nfunc (s *Expr_binaryContext) MINUS() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserMINUS, 0)\n}\n\nfunc (s *Expr_binaryContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_binary(s)\n\t}\n}\n\nfunc (s *Expr_binaryContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_binary(s)\n\t}\n}\n\ntype Expr_literalContext struct {\n\tExprContext\n}\n\nfunc NewExpr_literalContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_literalContext {\n\tvar p = new(Expr_literalContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_literalContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_literalContext) Literal_value() ILiteral_valueContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ILiteral_valueContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ILiteral_valueContext)\n}\n\nfunc (s *Expr_literalContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_literal(s)\n\t}\n}\n\nfunc (s *Expr_literalContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_literal(s)\n\t}\n}\n\ntype Expr_castContext struct {\n\tExprContext\n}\n\nfunc NewExpr_castContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_castContext {\n\tvar p = new(Expr_castContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_castContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_castContext) CAST_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCAST_, 0)\n}\n\nfunc (s *Expr_castContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Expr_castContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Expr_castContext) AS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAS_, 0)\n}\n\nfunc (s *Expr_castContext) Type_name() IType_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IType_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IType_nameContext)\n}\n\nfunc (s *Expr_castContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Expr_castContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_cast(s)\n\t}\n}\n\nfunc (s *Expr_castContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_cast(s)\n\t}\n}\n\ntype Expr_in_selectContext struct {\n\tExprContext\n}\n\nfunc NewExpr_in_selectContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_in_selectContext {\n\tvar p = new(Expr_in_selectContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_in_selectContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_in_selectContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Expr_in_selectContext) Select_stmt() ISelect_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISelect_stmtContext)\n}\n\nfunc (s *Expr_in_selectContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Expr_in_selectContext) EXISTS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXISTS_, 0)\n}\n\nfunc (s *Expr_in_selectContext) NOT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_, 0)\n}\n\nfunc (s *Expr_in_selectContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Expr_in_selectContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Expr_in_selectContext) IN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIN_, 0)\n}\n\nfunc (s *Expr_in_selectContext) Table_name() ITable_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_nameContext)\n}\n\nfunc (s *Expr_in_selectContext) Table_function_name() ITable_function_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_function_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_function_nameContext)\n}\n\nfunc (s *Expr_in_selectContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Expr_in_selectContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Expr_in_selectContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Expr_in_selectContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Expr_in_selectContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_in_select(s)\n\t}\n}\n\nfunc (s *Expr_in_selectContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_in_select(s)\n\t}\n}\n\ntype Expr_listContext struct {\n\tExprContext\n}\n\nfunc NewExpr_listContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_listContext {\n\tvar p = new(Expr_listContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_listContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_listContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Expr_listContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Expr_listContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Expr_listContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Expr_listContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Expr_listContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Expr_listContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_list(s)\n\t}\n}\n\nfunc (s *Expr_listContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_list(s)\n\t}\n}\n\ntype Expr_betweenContext struct {\n\tExprContext\n}\n\nfunc NewExpr_betweenContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_betweenContext {\n\tvar p = new(Expr_betweenContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_betweenContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_betweenContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Expr_betweenContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Expr_betweenContext) BETWEEN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBETWEEN_, 0)\n}\n\nfunc (s *Expr_betweenContext) AND_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAND_, 0)\n}\n\nfunc (s *Expr_betweenContext) NOT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_, 0)\n}\n\nfunc (s *Expr_betweenContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_between(s)\n\t}\n}\n\nfunc (s *Expr_betweenContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_between(s)\n\t}\n}\n\ntype Expr_collateContext struct {\n\tExprContext\n}\n\nfunc NewExpr_collateContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_collateContext {\n\tvar p = new(Expr_collateContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_collateContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_collateContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Expr_collateContext) COLLATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOLLATE_, 0)\n}\n\nfunc (s *Expr_collateContext) Collation_name() ICollation_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICollation_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICollation_nameContext)\n}\n\nfunc (s *Expr_collateContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_collate(s)\n\t}\n}\n\nfunc (s *Expr_collateContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_collate(s)\n\t}\n}\n\ntype Expr_qualified_column_nameContext struct {\n\tExprContext\n}\n\nfunc NewExpr_qualified_column_nameContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_qualified_column_nameContext {\n\tvar p = new(Expr_qualified_column_nameContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_qualified_column_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_qualified_column_nameContext) Column_name() IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Expr_qualified_column_nameContext) Table_name() ITable_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_nameContext)\n}\n\nfunc (s *Expr_qualified_column_nameContext) AllDOT() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserDOT)\n}\n\nfunc (s *Expr_qualified_column_nameContext) DOT(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, i)\n}\n\nfunc (s *Expr_qualified_column_nameContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Expr_qualified_column_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_qualified_column_name(s)\n\t}\n}\n\nfunc (s *Expr_qualified_column_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_qualified_column_name(s)\n\t}\n}\n\ntype Expr_unaryContext struct {\n\tExprContext\n}\n\nfunc NewExpr_unaryContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_unaryContext {\n\tvar p = new(Expr_unaryContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_unaryContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_unaryContext) Unary_operator() IUnary_operatorContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IUnary_operatorContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IUnary_operatorContext)\n}\n\nfunc (s *Expr_unaryContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Expr_unaryContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_unary(s)\n\t}\n}\n\nfunc (s *Expr_unaryContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_unary(s)\n\t}\n}\n\ntype Expr_null_compContext struct {\n\tExprContext\n}\n\nfunc NewExpr_null_compContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_null_compContext {\n\tvar p = new(Expr_null_compContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_null_compContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_null_compContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Expr_null_compContext) ISNULL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserISNULL_, 0)\n}\n\nfunc (s *Expr_null_compContext) NOTNULL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOTNULL_, 0)\n}\n\nfunc (s *Expr_null_compContext) NOT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_, 0)\n}\n\nfunc (s *Expr_null_compContext) NULL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNULL_, 0)\n}\n\nfunc (s *Expr_null_compContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_null_comp(s)\n\t}\n}\n\nfunc (s *Expr_null_compContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_null_comp(s)\n\t}\n}\n\ntype Expr_bindContext struct {\n\tExprContext\n}\n\nfunc NewExpr_bindContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *Expr_bindContext {\n\tvar p = new(Expr_bindContext)\n\n\tInitEmptyExprContext(&p.ExprContext)\n\tp.parser = parser\n\tp.CopyAll(ctx.(*ExprContext))\n\n\treturn p\n}\n\nfunc (s *Expr_bindContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_bindContext) NUMBERED_BIND_PARAMETER() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNUMBERED_BIND_PARAMETER, 0)\n}\n\nfunc (s *Expr_bindContext) NAMED_BIND_PARAMETER() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNAMED_BIND_PARAMETER, 0)\n}\n\nfunc (s *Expr_bindContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_bind(s)\n\t}\n}\n\nfunc (s *Expr_bindContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_bind(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Expr() (localctx IExprContext) {\n\treturn p.expr(0)\n}\n\nfunc (p *SQLiteParser) expr(_p int) (localctx IExprContext) {\n\tvar _parentctx antlr.ParserRuleContext = p.GetParserRuleContext()\n\n\t_parentState := p.GetState()\n\tlocalctx = NewExprContext(p, p.GetParserRuleContext(), _parentState)\n\tvar _prevctx IExprContext = localctx\n\tvar _ antlr.ParserRuleContext = _prevctx // TODO: To prevent unused variable warning.\n\t_startState := 68\n\tp.EnterRecursionRule(localctx, 68, SQLiteParserRULE_expr, _p)\n\tvar _la int\n\n\tvar _alt int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(1005)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 129, p.GetParserRuleContext()) {\n\tcase 1:\n\t\tlocalctx = NewExpr_literalContext(p, localctx)\n\t\tp.SetParserRuleContext(localctx)\n\t\t_prevctx = localctx\n\n\t\t{\n\t\t\tp.SetState(917)\n\t\t\tp.Literal_value()\n\t\t}\n\n\tcase 2:\n\t\tlocalctx = NewExpr_bindContext(p, localctx)\n\t\tp.SetParserRuleContext(localctx)\n\t\t_prevctx = localctx\n\t\t{\n\t\t\tp.SetState(918)\n\t\t\tp.Match(SQLiteParserNUMBERED_BIND_PARAMETER)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 3:\n\t\tlocalctx = NewExpr_bindContext(p, localctx)\n\t\tp.SetParserRuleContext(localctx)\n\t\t_prevctx = localctx\n\t\t{\n\t\t\tp.SetState(919)\n\t\t\tp.Match(SQLiteParserNAMED_BIND_PARAMETER)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 4:\n\t\tlocalctx = NewExpr_qualified_column_nameContext(p, localctx)\n\t\tp.SetParserRuleContext(localctx)\n\t\t_prevctx = localctx\n\t\tp.SetState(928)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 117, p.GetParserRuleContext()) == 1 {\n\t\t\tp.SetState(923)\n\t\t\tp.GetErrorHandler().Sync(p)\n\n\t\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 116, p.GetParserRuleContext()) == 1 {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(920)\n\t\t\t\t\tp.Schema_name()\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(921)\n\t\t\t\t\tp.Match(SQLiteParserDOT)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t} else if p.HasError() { // JIM\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(925)\n\t\t\t\tp.Table_name()\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(926)\n\t\t\t\tp.Match(SQLiteParserDOT)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(930)\n\t\t\tp.Column_name()\n\t\t}\n\n\tcase 5:\n\t\tlocalctx = NewExpr_unaryContext(p, localctx)\n\t\tp.SetParserRuleContext(localctx)\n\t\t_prevctx = localctx\n\t\t{\n\t\t\tp.SetState(931)\n\t\t\tp.Unary_operator()\n\t\t}\n\t\t{\n\t\t\tp.SetState(932)\n\t\t\tp.expr(21)\n\t\t}\n\n\tcase 6:\n\t\tlocalctx = NewExpr_functionContext(p, localctx)\n\t\tp.SetParserRuleContext(localctx)\n\t\t_prevctx = localctx\n\t\t{\n\t\t\tp.SetState(934)\n\t\t\tp.Qualified_function_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(935)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(948)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\tswitch p.GetTokenStream().LA(1) {\n\t\tcase SQLiteParserOPEN_PAR, SQLiteParserPLUS, SQLiteParserMINUS, SQLiteParserTILDE, SQLiteParserABORT_, SQLiteParserACTION_, SQLiteParserADD_, SQLiteParserAFTER_, SQLiteParserALL_, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserAND_, SQLiteParserAS_, SQLiteParserASC_, SQLiteParserATTACH_, SQLiteParserAUTOINCREMENT_, SQLiteParserBEFORE_, SQLiteParserBEGIN_, SQLiteParserBETWEEN_, SQLiteParserBY_, SQLiteParserCASCADE_, SQLiteParserCASE_, SQLiteParserCAST_, SQLiteParserCHECK_, SQLiteParserCOLLATE_, SQLiteParserCOLUMN_, SQLiteParserCOMMIT_, SQLiteParserCONFLICT_, SQLiteParserCONSTRAINT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserCURRENT_DATE_, SQLiteParserCURRENT_TIME_, SQLiteParserCURRENT_TIMESTAMP_, SQLiteParserDATABASE_, SQLiteParserDEFAULT_, SQLiteParserDEFERRABLE_, SQLiteParserDEFERRED_, SQLiteParserDELETE_, SQLiteParserDESC_, SQLiteParserDETACH_, SQLiteParserDISTINCT_, SQLiteParserDROP_, SQLiteParserEACH_, SQLiteParserELSE_, SQLiteParserEND_, SQLiteParserESCAPE_, SQLiteParserEXCEPT_, SQLiteParserEXCLUSIVE_, SQLiteParserEXISTS_, SQLiteParserEXPLAIN_, SQLiteParserFAIL_, SQLiteParserFOR_, SQLiteParserFOREIGN_, SQLiteParserFROM_, SQLiteParserFULL_, SQLiteParserGLOB_, SQLiteParserGROUP_, SQLiteParserHAVING_, SQLiteParserIF_, SQLiteParserIGNORE_, SQLiteParserIMMEDIATE_, SQLiteParserIN_, SQLiteParserINDEX_, SQLiteParserINDEXED_, SQLiteParserINITIALLY_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINSTEAD_, SQLiteParserINTERSECT_, SQLiteParserINTO_, SQLiteParserIS_, SQLiteParserISNULL_, SQLiteParserJOIN_, SQLiteParserKEY_, SQLiteParserLEFT_, SQLiteParserLIKE_, SQLiteParserLIMIT_, SQLiteParserMATCH_, SQLiteParserNATURAL_, SQLiteParserNO_, SQLiteParserNOT_, SQLiteParserNOTNULL_, SQLiteParserNULL_, SQLiteParserOF_, SQLiteParserOFFSET_, SQLiteParserON_, SQLiteParserOR_, SQLiteParserORDER_, SQLiteParserOUTER_, SQLiteParserPLAN_, SQLiteParserPRAGMA_, SQLiteParserPRIMARY_, SQLiteParserQUERY_, SQLiteParserRAISE_, SQLiteParserRECURSIVE_, SQLiteParserREFERENCES_, SQLiteParserREGEXP_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserRENAME_, SQLiteParserREPLACE_, SQLiteParserRESTRICT_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserROW_, SQLiteParserROWS_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserSET_, SQLiteParserSTRICT_, SQLiteParserTABLE_, SQLiteParserTEMP_, SQLiteParserTEMPORARY_, SQLiteParserTHEN_, SQLiteParserTO_, SQLiteParserTRANSACTION_, SQLiteParserTRIGGER_, SQLiteParserUNION_, SQLiteParserUNIQUE_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserVIEW_, SQLiteParserVIRTUAL_, SQLiteParserWHEN_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWITHOUT_, SQLiteParserFIRST_VALUE_, SQLiteParserOVER_, SQLiteParserPARTITION_, SQLiteParserRANGE_, SQLiteParserPRECEDING_, SQLiteParserUNBOUNDED_, SQLiteParserCURRENT_, SQLiteParserFOLLOWING_, SQLiteParserCUME_DIST_, SQLiteParserDENSE_RANK_, SQLiteParserLAG_, SQLiteParserLAST_VALUE_, SQLiteParserLEAD_, SQLiteParserNTH_VALUE_, SQLiteParserNTILE_, SQLiteParserPERCENT_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_, SQLiteParserGENERATED_, SQLiteParserALWAYS_, SQLiteParserSTORED_, SQLiteParserTRUE_, SQLiteParserFALSE_, SQLiteParserWINDOW_, SQLiteParserNULLS_, SQLiteParserFIRST_, SQLiteParserLAST_, SQLiteParserFILTER_, SQLiteParserGROUPS_, SQLiteParserEXCLUDE_, SQLiteParserIDENTIFIER, SQLiteParserNUMERIC_LITERAL, SQLiteParserNUMBERED_BIND_PARAMETER, SQLiteParserNAMED_BIND_PARAMETER, SQLiteParserSTRING_LITERAL, SQLiteParserBLOB_LITERAL:\n\t\t\tp.SetState(937)\n\t\t\tp.GetErrorHandler().Sync(p)\n\n\t\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 118, p.GetParserRuleContext()) == 1 {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(936)\n\t\t\t\t\tp.Match(SQLiteParserDISTINCT_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t} else if p.HasError() { // JIM\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(939)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\t\t\tp.SetState(944)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(940)\n\t\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(941)\n\t\t\t\t\tp.expr(0)\n\t\t\t\t}\n\n\t\t\t\tp.SetState(946)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t\t}\n\n\t\tcase SQLiteParserSTAR:\n\t\t\t{\n\t\t\t\tp.SetState(947)\n\t\t\t\tp.Match(SQLiteParserSTAR)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase SQLiteParserCLOSE_PAR:\n\n\t\tdefault:\n\t\t}\n\t\t{\n\t\t\tp.SetState(950)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(952)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 121, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(951)\n\t\t\t\tp.Filter_clause()\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\tp.SetState(955)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 122, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(954)\n\t\t\t\tp.Over_clause()\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\n\tcase 7:\n\t\tlocalctx = NewExpr_listContext(p, localctx)\n\t\tp.SetParserRuleContext(localctx)\n\t\t_prevctx = localctx\n\t\t{\n\t\t\tp.SetState(957)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(958)\n\t\t\tp.expr(0)\n\t\t}\n\t\tp.SetState(963)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(959)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(960)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t\tp.SetState(965)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(966)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 8:\n\t\tlocalctx = NewExpr_castContext(p, localctx)\n\t\tp.SetParserRuleContext(localctx)\n\t\t_prevctx = localctx\n\t\t{\n\t\t\tp.SetState(968)\n\t\t\tp.Match(SQLiteParserCAST_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(969)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(970)\n\t\t\tp.expr(0)\n\t\t}\n\t\t{\n\t\t\tp.SetState(971)\n\t\t\tp.Match(SQLiteParserAS_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(972)\n\t\t\tp.Type_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(973)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 9:\n\t\tlocalctx = NewExpr_in_selectContext(p, localctx)\n\t\tp.SetParserRuleContext(localctx)\n\t\t_prevctx = localctx\n\t\tp.SetState(979)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserEXISTS_ || _la == SQLiteParserNOT_ {\n\t\t\tp.SetState(976)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif _la == SQLiteParserNOT_ {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(975)\n\t\t\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(978)\n\t\t\t\tp.Match(SQLiteParserEXISTS_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(981)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(982)\n\t\t\tp.Select_stmt()\n\t\t}\n\t\t{\n\t\t\tp.SetState(983)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 10:\n\t\tlocalctx = NewExpr_caseContext(p, localctx)\n\t\tp.SetParserRuleContext(localctx)\n\t\t_prevctx = localctx\n\t\t{\n\t\t\tp.SetState(985)\n\t\t\tp.Match(SQLiteParserCASE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(987)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 126, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(986)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\tp.SetState(994)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor ok := true; ok; ok = _la == SQLiteParserWHEN_ {\n\t\t\t{\n\t\t\t\tp.SetState(989)\n\t\t\t\tp.Match(SQLiteParserWHEN_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(990)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(991)\n\t\t\t\tp.Match(SQLiteParserTHEN_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(992)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t\tp.SetState(996)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\tp.SetState(1000)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserELSE_ {\n\t\t\t{\n\t\t\t\tp.SetState(998)\n\t\t\t\tp.Match(SQLiteParserELSE_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(999)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(1002)\n\t\t\tp.Match(SQLiteParserEND_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 11:\n\t\tlocalctx = NewExpr_raiseContext(p, localctx)\n\t\tp.SetParserRuleContext(localctx)\n\t\t_prevctx = localctx\n\t\t{\n\t\t\tp.SetState(1004)\n\t\t\tp.Raise_function()\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\tp.GetParserRuleContext().SetStop(p.GetTokenStream().LT(-1))\n\tp.SetState(1126)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 145, p.GetParserRuleContext())\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\tfor _alt != 2 && _alt != antlr.ATNInvalidAltNumber {\n\t\tif _alt == 1 {\n\t\t\tif p.GetParseListeners() != nil {\n\t\t\t\tp.TriggerExitRuleEvent()\n\t\t\t}\n\t\t\t_prevctx = localctx\n\t\t\tp.SetState(1124)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\n\t\t\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 144, p.GetParserRuleContext()) {\n\t\t\tcase 1:\n\t\t\t\tlocalctx = NewExpr_binaryContext(p, NewExprContext(p, _parentctx, _parentState))\n\t\t\t\tp.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr)\n\t\t\t\tp.SetState(1007)\n\n\t\t\t\tif !(p.Precpred(p.GetParserRuleContext(), 20)) {\n\t\t\t\t\tp.SetError(antlr.NewFailedPredicateException(p, \"p.Precpred(p.GetParserRuleContext(), 20)\", \"\"))\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1008)\n\t\t\t\t\tp.Match(SQLiteParserPIPE2)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1009)\n\t\t\t\t\tp.expr(21)\n\t\t\t\t}\n\n\t\t\tcase 2:\n\t\t\t\tlocalctx = NewExpr_binaryContext(p, NewExprContext(p, _parentctx, _parentState))\n\t\t\t\tp.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr)\n\t\t\t\tp.SetState(1010)\n\n\t\t\t\tif !(p.Precpred(p.GetParserRuleContext(), 19)) {\n\t\t\t\t\tp.SetError(antlr.NewFailedPredicateException(p, \"p.Precpred(p.GetParserRuleContext(), 19)\", \"\"))\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1011)\n\t\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\t\tif !(_la == SQLiteParserPTR2 || _la == SQLiteParserPTR) {\n\t\t\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\t\t\tp.Consume()\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1012)\n\t\t\t\t\tp.expr(20)\n\t\t\t\t}\n\n\t\t\tcase 3:\n\t\t\t\tlocalctx = NewExpr_binaryContext(p, NewExprContext(p, _parentctx, _parentState))\n\t\t\t\tp.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr)\n\t\t\t\tp.SetState(1013)\n\n\t\t\t\tif !(p.Precpred(p.GetParserRuleContext(), 18)) {\n\t\t\t\t\tp.SetError(antlr.NewFailedPredicateException(p, \"p.Precpred(p.GetParserRuleContext(), 18)\", \"\"))\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1014)\n\t\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\t\tif !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&49280) != 0) {\n\t\t\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\t\t\tp.Consume()\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1015)\n\t\t\t\t\tp.expr(19)\n\t\t\t\t}\n\n\t\t\tcase 4:\n\t\t\t\tlocalctx = NewExpr_binaryContext(p, NewExprContext(p, _parentctx, _parentState))\n\t\t\t\tp.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr)\n\t\t\t\tp.SetState(1016)\n\n\t\t\t\tif !(p.Precpred(p.GetParserRuleContext(), 17)) {\n\t\t\t\t\tp.SetError(antlr.NewFailedPredicateException(p, \"p.Precpred(p.GetParserRuleContext(), 17)\", \"\"))\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1017)\n\t\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\t\tif !(_la == SQLiteParserPLUS || _la == SQLiteParserMINUS) {\n\t\t\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\t\t\tp.Consume()\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1018)\n\t\t\t\t\tp.expr(18)\n\t\t\t\t}\n\n\t\t\tcase 5:\n\t\t\t\tlocalctx = NewExpr_comparisonContext(p, NewExprContext(p, _parentctx, _parentState))\n\t\t\t\tp.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr)\n\t\t\t\tp.SetState(1019)\n\n\t\t\t\tif !(p.Precpred(p.GetParserRuleContext(), 16)) {\n\t\t\t\t\tp.SetError(antlr.NewFailedPredicateException(p, \"p.Precpred(p.GetParserRuleContext(), 16)\", \"\"))\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1020)\n\t\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\t\tif !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&983040) != 0) {\n\t\t\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\t\t\tp.Consume()\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1021)\n\t\t\t\t\tp.expr(17)\n\t\t\t\t}\n\n\t\t\tcase 6:\n\t\t\t\tlocalctx = NewExpr_comparisonContext(p, NewExprContext(p, _parentctx, _parentState))\n\t\t\t\tp.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr)\n\t\t\t\tp.SetState(1022)\n\n\t\t\t\tif !(p.Precpred(p.GetParserRuleContext(), 15)) {\n\t\t\t\t\tp.SetError(antlr.NewFailedPredicateException(p, \"p.Precpred(p.GetParserRuleContext(), 15)\", \"\"))\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1023)\n\t\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\t\tif !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&15728640) != 0) {\n\t\t\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\t\t\tp.Consume()\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1024)\n\t\t\t\t\tp.expr(16)\n\t\t\t\t}\n\n\t\t\tcase 7:\n\t\t\t\tlocalctx = NewExpr_comparisonContext(p, NewExprContext(p, _parentctx, _parentState))\n\t\t\t\tp.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr)\n\t\t\t\tp.SetState(1025)\n\n\t\t\t\tif !(p.Precpred(p.GetParserRuleContext(), 14)) {\n\t\t\t\t\tp.SetError(antlr.NewFailedPredicateException(p, \"p.Precpred(p.GetParserRuleContext(), 14)\", \"\"))\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\tp.SetState(1041)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\n\t\t\t\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 131, p.GetParserRuleContext()) {\n\t\t\t\tcase 1:\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1026)\n\t\t\t\t\t\tp.Match(SQLiteParserASSIGN)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase 2:\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1027)\n\t\t\t\t\t\tp.Match(SQLiteParserEQ)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase 3:\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1028)\n\t\t\t\t\t\tp.Match(SQLiteParserNOT_EQ1)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase 4:\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1029)\n\t\t\t\t\t\tp.Match(SQLiteParserNOT_EQ2)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase 5:\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1030)\n\t\t\t\t\t\tp.Match(SQLiteParserIS_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase 6:\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1031)\n\t\t\t\t\t\tp.Match(SQLiteParserIS_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1032)\n\t\t\t\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase 7:\n\t\t\t\t\tp.SetState(1034)\n\t\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\t\tif _la == SQLiteParserNOT_ {\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tp.SetState(1033)\n\t\t\t\t\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1036)\n\t\t\t\t\t\tp.Match(SQLiteParserIN_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase 8:\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1037)\n\t\t\t\t\t\tp.Match(SQLiteParserLIKE_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase 9:\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1038)\n\t\t\t\t\t\tp.Match(SQLiteParserGLOB_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase 10:\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1039)\n\t\t\t\t\t\tp.Match(SQLiteParserMATCH_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase 11:\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1040)\n\t\t\t\t\t\tp.Match(SQLiteParserREGEXP_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase antlr.ATNInvalidAltNumber:\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1043)\n\t\t\t\t\tp.expr(15)\n\t\t\t\t}\n\n\t\t\tcase 8:\n\t\t\t\tlocalctx = NewExpr_boolContext(p, NewExprContext(p, _parentctx, _parentState))\n\t\t\t\tp.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr)\n\t\t\t\tp.SetState(1044)\n\n\t\t\t\tif !(p.Precpred(p.GetParserRuleContext(), 12)) {\n\t\t\t\t\tp.SetError(antlr.NewFailedPredicateException(p, \"p.Precpred(p.GetParserRuleContext(), 12)\", \"\"))\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1045)\n\t\t\t\t\tp.Match(SQLiteParserAND_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1046)\n\t\t\t\t\tp.expr(13)\n\t\t\t\t}\n\n\t\t\tcase 9:\n\t\t\t\tlocalctx = NewExpr_boolContext(p, NewExprContext(p, _parentctx, _parentState))\n\t\t\t\tp.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr)\n\t\t\t\tp.SetState(1047)\n\n\t\t\t\tif !(p.Precpred(p.GetParserRuleContext(), 11)) {\n\t\t\t\t\tp.SetError(antlr.NewFailedPredicateException(p, \"p.Precpred(p.GetParserRuleContext(), 11)\", \"\"))\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1048)\n\t\t\t\t\tp.Match(SQLiteParserOR_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1049)\n\t\t\t\t\tp.expr(12)\n\t\t\t\t}\n\n\t\t\tcase 10:\n\t\t\t\tlocalctx = NewExpr_betweenContext(p, NewExprContext(p, _parentctx, _parentState))\n\t\t\t\tp.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr)\n\t\t\t\tp.SetState(1050)\n\n\t\t\t\tif !(p.Precpred(p.GetParserRuleContext(), 4)) {\n\t\t\t\t\tp.SetError(antlr.NewFailedPredicateException(p, \"p.Precpred(p.GetParserRuleContext(), 4)\", \"\"))\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\tp.SetState(1052)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\tif _la == SQLiteParserNOT_ {\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1051)\n\t\t\t\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1054)\n\t\t\t\t\tp.Match(SQLiteParserBETWEEN_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1055)\n\t\t\t\t\tp.expr(0)\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1056)\n\t\t\t\t\tp.Match(SQLiteParserAND_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1057)\n\t\t\t\t\tp.expr(5)\n\t\t\t\t}\n\n\t\t\tcase 11:\n\t\t\t\tlocalctx = NewExpr_in_selectContext(p, NewExprContext(p, _parentctx, _parentState))\n\t\t\t\tp.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr)\n\t\t\t\tp.SetState(1059)\n\n\t\t\t\tif !(p.Precpred(p.GetParserRuleContext(), 13)) {\n\t\t\t\t\tp.SetError(antlr.NewFailedPredicateException(p, \"p.Precpred(p.GetParserRuleContext(), 13)\", \"\"))\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\tp.SetState(1061)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\tif _la == SQLiteParserNOT_ {\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1060)\n\t\t\t\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1063)\n\t\t\t\t\tp.Match(SQLiteParserIN_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tp.SetState(1102)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\n\t\t\t\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 140, p.GetParserRuleContext()) {\n\t\t\t\tcase 1:\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1064)\n\t\t\t\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tp.SetState(1074)\n\t\t\t\t\tp.GetErrorHandler().Sync(p)\n\n\t\t\t\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 135, p.GetParserRuleContext()) == 1 {\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tp.SetState(1065)\n\t\t\t\t\t\t\tp.Select_stmt()\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else if p.HasError() { // JIM\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t} else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 135, p.GetParserRuleContext()) == 2 {\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tp.SetState(1066)\n\t\t\t\t\t\t\tp.expr(0)\n\t\t\t\t\t\t}\n\t\t\t\t\t\tp.SetState(1071)\n\t\t\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\t\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tp.SetState(1067)\n\t\t\t\t\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tp.SetState(1068)\n\t\t\t\t\t\t\t\tp.expr(0)\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tp.SetState(1073)\n\t\t\t\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else if p.HasError() { // JIM\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1076)\n\t\t\t\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase 2:\n\t\t\t\t\tp.SetState(1080)\n\t\t\t\t\tp.GetErrorHandler().Sync(p)\n\n\t\t\t\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 136, p.GetParserRuleContext()) == 1 {\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tp.SetState(1077)\n\t\t\t\t\t\t\tp.Schema_name()\n\t\t\t\t\t\t}\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tp.SetState(1078)\n\t\t\t\t\t\t\tp.Match(SQLiteParserDOT)\n\t\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else if p.HasError() { // JIM\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1082)\n\t\t\t\t\t\tp.Table_name()\n\t\t\t\t\t}\n\n\t\t\t\tcase 3:\n\t\t\t\t\tp.SetState(1086)\n\t\t\t\t\tp.GetErrorHandler().Sync(p)\n\n\t\t\t\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 137, p.GetParserRuleContext()) == 1 {\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tp.SetState(1083)\n\t\t\t\t\t\t\tp.Schema_name()\n\t\t\t\t\t\t}\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tp.SetState(1084)\n\t\t\t\t\t\t\tp.Match(SQLiteParserDOT)\n\t\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t} else if p.HasError() { // JIM\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1088)\n\t\t\t\t\t\tp.Table_function_name()\n\t\t\t\t\t}\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1089)\n\t\t\t\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tp.SetState(1098)\n\t\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\t\tif ((int64((_la-3)) & ^0x3f) == 0 && ((int64(1)<<(_la-3))&-16776415) != 0) || ((int64((_la-67)) & ^0x3f) == 0 && ((int64(1)<<(_la-67))&-1) != 0) || ((int64((_la-131)) & ^0x3f) == 0 && ((int64(1)<<(_la-131))&9088264048033660927) != 0) {\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tp.SetState(1090)\n\t\t\t\t\t\t\tp.expr(0)\n\t\t\t\t\t\t}\n\t\t\t\t\t\tp.SetState(1095)\n\t\t\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\t\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tp.SetState(1091)\n\t\t\t\t\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tp.SetState(1092)\n\t\t\t\t\t\t\t\tp.expr(0)\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\tp.SetState(1097)\n\t\t\t\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1100)\n\t\t\t\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase antlr.ATNInvalidAltNumber:\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\n\t\t\tcase 12:\n\t\t\t\tlocalctx = NewExpr_collateContext(p, NewExprContext(p, _parentctx, _parentState))\n\t\t\t\tp.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr)\n\t\t\t\tp.SetState(1104)\n\n\t\t\t\tif !(p.Precpred(p.GetParserRuleContext(), 7)) {\n\t\t\t\t\tp.SetError(antlr.NewFailedPredicateException(p, \"p.Precpred(p.GetParserRuleContext(), 7)\", \"\"))\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1105)\n\t\t\t\t\tp.Match(SQLiteParserCOLLATE_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1106)\n\t\t\t\t\tp.Collation_name()\n\t\t\t\t}\n\n\t\t\tcase 13:\n\t\t\t\tlocalctx = NewExpr_comparisonContext(p, NewExprContext(p, _parentctx, _parentState))\n\t\t\t\tp.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr)\n\t\t\t\tp.SetState(1107)\n\n\t\t\t\tif !(p.Precpred(p.GetParserRuleContext(), 6)) {\n\t\t\t\t\tp.SetError(antlr.NewFailedPredicateException(p, \"p.Precpred(p.GetParserRuleContext(), 6)\", \"\"))\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\tp.SetState(1109)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\tif _la == SQLiteParserNOT_ {\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1108)\n\t\t\t\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1111)\n\t\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\t\tif !((int64((_la-79)) & ^0x3f) == 0 && ((int64(1)<<(_la-79))&2199028498433) != 0) {\n\t\t\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t\t\t} else {\n\t\t\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\t\t\tp.Consume()\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1112)\n\t\t\t\t\tp.expr(0)\n\t\t\t\t}\n\t\t\t\tp.SetState(1115)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\n\t\t\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 142, p.GetParserRuleContext()) == 1 {\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1113)\n\t\t\t\t\t\tp.Match(SQLiteParserESCAPE_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1114)\n\t\t\t\t\t\tp.expr(0)\n\t\t\t\t\t}\n\n\t\t\t\t} else if p.HasError() { // JIM\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\n\t\t\tcase 14:\n\t\t\t\tlocalctx = NewExpr_null_compContext(p, NewExprContext(p, _parentctx, _parentState))\n\t\t\t\tp.PushNewRecursionContext(localctx, _startState, SQLiteParserRULE_expr)\n\t\t\t\tp.SetState(1117)\n\n\t\t\t\tif !(p.Precpred(p.GetParserRuleContext(), 5)) {\n\t\t\t\t\tp.SetError(antlr.NewFailedPredicateException(p, \"p.Precpred(p.GetParserRuleContext(), 5)\", \"\"))\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\tp.SetState(1122)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\n\t\t\t\tswitch p.GetTokenStream().LA(1) {\n\t\t\t\tcase SQLiteParserISNULL_:\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1118)\n\t\t\t\t\t\tp.Match(SQLiteParserISNULL_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase SQLiteParserNOTNULL_:\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1119)\n\t\t\t\t\t\tp.Match(SQLiteParserNOTNULL_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tcase SQLiteParserNOT_:\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1120)\n\t\t\t\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1121)\n\t\t\t\t\t\tp.Match(SQLiteParserNULL_)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\tdefault:\n\t\t\t\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\n\t\t\tcase antlr.ATNInvalidAltNumber:\n\t\t\t\tgoto errorExit\n\t\t\t}\n\n\t\t}\n\t\tp.SetState(1128)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 145, p.GetParserRuleContext())\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.UnrollRecursionContexts(_parentctx)\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IRaise_functionContext is an interface to support dynamic dispatch.\ntype IRaise_functionContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tRAISE_() antlr.TerminalNode\n\tOPEN_PAR() antlr.TerminalNode\n\tCLOSE_PAR() antlr.TerminalNode\n\tIGNORE_() antlr.TerminalNode\n\tCOMMA() antlr.TerminalNode\n\tError_message() IError_messageContext\n\tROLLBACK_() antlr.TerminalNode\n\tABORT_() antlr.TerminalNode\n\tFAIL_() antlr.TerminalNode\n\n\t// IsRaise_functionContext differentiates from other interfaces.\n\tIsRaise_functionContext()\n}\n\ntype Raise_functionContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyRaise_functionContext() *Raise_functionContext {\n\tvar p = new(Raise_functionContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_raise_function\n\treturn p\n}\n\nfunc InitEmptyRaise_functionContext(p *Raise_functionContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_raise_function\n}\n\nfunc (*Raise_functionContext) IsRaise_functionContext() {}\n\nfunc NewRaise_functionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Raise_functionContext {\n\tvar p = new(Raise_functionContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_raise_function\n\n\treturn p\n}\n\nfunc (s *Raise_functionContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Raise_functionContext) RAISE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRAISE_, 0)\n}\n\nfunc (s *Raise_functionContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Raise_functionContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Raise_functionContext) IGNORE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIGNORE_, 0)\n}\n\nfunc (s *Raise_functionContext) COMMA() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, 0)\n}\n\nfunc (s *Raise_functionContext) Error_message() IError_messageContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IError_messageContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IError_messageContext)\n}\n\nfunc (s *Raise_functionContext) ROLLBACK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROLLBACK_, 0)\n}\n\nfunc (s *Raise_functionContext) ABORT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserABORT_, 0)\n}\n\nfunc (s *Raise_functionContext) FAIL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFAIL_, 0)\n}\n\nfunc (s *Raise_functionContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Raise_functionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Raise_functionContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterRaise_function(s)\n\t}\n}\n\nfunc (s *Raise_functionContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitRaise_function(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Raise_function() (localctx IRaise_functionContext) {\n\tlocalctx = NewRaise_functionContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 70, SQLiteParserRULE_raise_function)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1129)\n\t\tp.Match(SQLiteParserRAISE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(1130)\n\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1135)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserIGNORE_:\n\t\t{\n\t\t\tp.SetState(1131)\n\t\t\tp.Match(SQLiteParserIGNORE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserABORT_, SQLiteParserFAIL_, SQLiteParserROLLBACK_:\n\t\t{\n\t\t\tp.SetState(1132)\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif !(_la == SQLiteParserABORT_ || _la == SQLiteParserFAIL_ || _la == SQLiteParserROLLBACK_) {\n\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t} else {\n\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\tp.Consume()\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1133)\n\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1134)\n\t\t\tp.Error_message()\n\t\t}\n\n\tdefault:\n\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(1137)\n\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ILiteral_valueContext is an interface to support dynamic dispatch.\ntype ILiteral_valueContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tNUMERIC_LITERAL() antlr.TerminalNode\n\tSTRING_LITERAL() antlr.TerminalNode\n\tBLOB_LITERAL() antlr.TerminalNode\n\tNULL_() antlr.TerminalNode\n\tTRUE_() antlr.TerminalNode\n\tFALSE_() antlr.TerminalNode\n\tCURRENT_TIME_() antlr.TerminalNode\n\tCURRENT_DATE_() antlr.TerminalNode\n\tCURRENT_TIMESTAMP_() antlr.TerminalNode\n\n\t// IsLiteral_valueContext differentiates from other interfaces.\n\tIsLiteral_valueContext()\n}\n\ntype Literal_valueContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyLiteral_valueContext() *Literal_valueContext {\n\tvar p = new(Literal_valueContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_literal_value\n\treturn p\n}\n\nfunc InitEmptyLiteral_valueContext(p *Literal_valueContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_literal_value\n}\n\nfunc (*Literal_valueContext) IsLiteral_valueContext() {}\n\nfunc NewLiteral_valueContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Literal_valueContext {\n\tvar p = new(Literal_valueContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_literal_value\n\n\treturn p\n}\n\nfunc (s *Literal_valueContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Literal_valueContext) NUMERIC_LITERAL() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNUMERIC_LITERAL, 0)\n}\n\nfunc (s *Literal_valueContext) STRING_LITERAL() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTRING_LITERAL, 0)\n}\n\nfunc (s *Literal_valueContext) BLOB_LITERAL() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBLOB_LITERAL, 0)\n}\n\nfunc (s *Literal_valueContext) NULL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNULL_, 0)\n}\n\nfunc (s *Literal_valueContext) TRUE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTRUE_, 0)\n}\n\nfunc (s *Literal_valueContext) FALSE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFALSE_, 0)\n}\n\nfunc (s *Literal_valueContext) CURRENT_TIME_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCURRENT_TIME_, 0)\n}\n\nfunc (s *Literal_valueContext) CURRENT_DATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCURRENT_DATE_, 0)\n}\n\nfunc (s *Literal_valueContext) CURRENT_TIMESTAMP_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCURRENT_TIMESTAMP_, 0)\n}\n\nfunc (s *Literal_valueContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Literal_valueContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Literal_valueContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterLiteral_value(s)\n\t}\n}\n\nfunc (s *Literal_valueContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitLiteral_value(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Literal_value() (localctx ILiteral_valueContext) {\n\tlocalctx = NewLiteral_valueContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 72, SQLiteParserRULE_literal_value)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1139)\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif !(((int64((_la-54)) & ^0x3f) == 0 && ((int64(1)<<(_la-54))&4503599627370503) != 0) || ((int64((_la-175)) & ^0x3f) == 0 && ((int64(1)<<(_la-175))&409603) != 0)) {\n\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t} else {\n\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\tp.Consume()\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IInsert_stmtContext is an interface to support dynamic dispatch.\ntype IInsert_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tINTO_() antlr.TerminalNode\n\tTable_name() ITable_nameContext\n\tINSERT_() antlr.TerminalNode\n\tREPLACE_() antlr.TerminalNode\n\tOR_() antlr.TerminalNode\n\tWith_clause() IWith_clauseContext\n\tROLLBACK_() antlr.TerminalNode\n\tABORT_() antlr.TerminalNode\n\tFAIL_() antlr.TerminalNode\n\tIGNORE_() antlr.TerminalNode\n\tSchema_name() ISchema_nameContext\n\tDOT() antlr.TerminalNode\n\tAS_() antlr.TerminalNode\n\tTable_alias() ITable_aliasContext\n\tAllOPEN_PAR() []antlr.TerminalNode\n\tOPEN_PAR(i int) antlr.TerminalNode\n\tAllColumn_name() []IColumn_nameContext\n\tColumn_name(i int) IColumn_nameContext\n\tAllCLOSE_PAR() []antlr.TerminalNode\n\tCLOSE_PAR(i int) antlr.TerminalNode\n\tVALUES_() antlr.TerminalNode\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\tSelect_stmt() ISelect_stmtContext\n\tDEFAULT_() antlr.TerminalNode\n\tUpsert_clause() IUpsert_clauseContext\n\tReturning_clause() IReturning_clauseContext\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsInsert_stmtContext differentiates from other interfaces.\n\tIsInsert_stmtContext()\n}\n\ntype Insert_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyInsert_stmtContext() *Insert_stmtContext {\n\tvar p = new(Insert_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_insert_stmt\n\treturn p\n}\n\nfunc InitEmptyInsert_stmtContext(p *Insert_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_insert_stmt\n}\n\nfunc (*Insert_stmtContext) IsInsert_stmtContext() {}\n\nfunc NewInsert_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Insert_stmtContext {\n\tvar p = new(Insert_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_insert_stmt\n\n\treturn p\n}\n\nfunc (s *Insert_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Insert_stmtContext) INTO_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINTO_, 0)\n}\n\nfunc (s *Insert_stmtContext) Table_name() ITable_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_nameContext)\n}\n\nfunc (s *Insert_stmtContext) INSERT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINSERT_, 0)\n}\n\nfunc (s *Insert_stmtContext) REPLACE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserREPLACE_, 0)\n}\n\nfunc (s *Insert_stmtContext) OR_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOR_, 0)\n}\n\nfunc (s *Insert_stmtContext) With_clause() IWith_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IWith_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IWith_clauseContext)\n}\n\nfunc (s *Insert_stmtContext) ROLLBACK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROLLBACK_, 0)\n}\n\nfunc (s *Insert_stmtContext) ABORT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserABORT_, 0)\n}\n\nfunc (s *Insert_stmtContext) FAIL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFAIL_, 0)\n}\n\nfunc (s *Insert_stmtContext) IGNORE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIGNORE_, 0)\n}\n\nfunc (s *Insert_stmtContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Insert_stmtContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Insert_stmtContext) AS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAS_, 0)\n}\n\nfunc (s *Insert_stmtContext) Table_alias() ITable_aliasContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_aliasContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_aliasContext)\n}\n\nfunc (s *Insert_stmtContext) AllOPEN_PAR() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserOPEN_PAR)\n}\n\nfunc (s *Insert_stmtContext) OPEN_PAR(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, i)\n}\n\nfunc (s *Insert_stmtContext) AllColumn_name() []IColumn_nameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_nameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_nameContext); ok {\n\t\t\ttst[i] = t.(IColumn_nameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Insert_stmtContext) Column_name(i int) IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Insert_stmtContext) AllCLOSE_PAR() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCLOSE_PAR)\n}\n\nfunc (s *Insert_stmtContext) CLOSE_PAR(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, i)\n}\n\nfunc (s *Insert_stmtContext) VALUES_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserVALUES_, 0)\n}\n\nfunc (s *Insert_stmtContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Insert_stmtContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Insert_stmtContext) Select_stmt() ISelect_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISelect_stmtContext)\n}\n\nfunc (s *Insert_stmtContext) DEFAULT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDEFAULT_, 0)\n}\n\nfunc (s *Insert_stmtContext) Upsert_clause() IUpsert_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IUpsert_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IUpsert_clauseContext)\n}\n\nfunc (s *Insert_stmtContext) Returning_clause() IReturning_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IReturning_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IReturning_clauseContext)\n}\n\nfunc (s *Insert_stmtContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Insert_stmtContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Insert_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Insert_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Insert_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterInsert_stmt(s)\n\t}\n}\n\nfunc (s *Insert_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitInsert_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Insert_stmt() (localctx IInsert_stmtContext) {\n\tlocalctx = NewInsert_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 74, SQLiteParserRULE_insert_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(1142)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserWITH_ {\n\t\t{\n\t\t\tp.SetState(1141)\n\t\t\tp.With_clause()\n\t\t}\n\n\t}\n\tp.SetState(1149)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 148, p.GetParserRuleContext()) {\n\tcase 1:\n\t\t{\n\t\t\tp.SetState(1144)\n\t\t\tp.Match(SQLiteParserINSERT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 2:\n\t\t{\n\t\t\tp.SetState(1145)\n\t\t\tp.Match(SQLiteParserREPLACE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 3:\n\t\t{\n\t\t\tp.SetState(1146)\n\t\t\tp.Match(SQLiteParserINSERT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1147)\n\t\t\tp.Match(SQLiteParserOR_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1148)\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif !(_la == SQLiteParserABORT_ || ((int64((_la-74)) & ^0x3f) == 0 && ((int64(1)<<(_la-74))&19140298416325121) != 0)) {\n\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t} else {\n\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\tp.Consume()\n\t\t\t}\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(1151)\n\t\tp.Match(SQLiteParserINTO_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1155)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 149, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(1152)\n\t\t\tp.Schema_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(1153)\n\t\t\tp.Match(SQLiteParserDOT)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(1157)\n\t\tp.Table_name()\n\t}\n\tp.SetState(1160)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserAS_ {\n\t\t{\n\t\t\tp.SetState(1158)\n\t\t\tp.Match(SQLiteParserAS_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1159)\n\t\t\tp.Table_alias()\n\t\t}\n\n\t}\n\tp.SetState(1173)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserOPEN_PAR {\n\t\t{\n\t\t\tp.SetState(1162)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1163)\n\t\t\tp.Column_name()\n\t\t}\n\t\tp.SetState(1168)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(1164)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1165)\n\t\t\t\tp.Column_name()\n\t\t\t}\n\n\t\t\tp.SetState(1170)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(1171)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t}\n\n\tp.SetState(1206)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 156, p.GetParserRuleContext()) {\n\tcase 1:\n\t\t{\n\t\t\tp.SetState(1175)\n\t\t\tp.Match(SQLiteParserVALUES_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1176)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1177)\n\t\t\tp.expr(0)\n\t\t}\n\t\tp.SetState(1182)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(1178)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1179)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t\tp.SetState(1184)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(1185)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1200)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(1186)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1187)\n\t\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1188)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\t\t\tp.SetState(1193)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1189)\n\t\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1190)\n\t\t\t\t\tp.expr(0)\n\t\t\t\t}\n\n\t\t\t\tp.SetState(1195)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1196)\n\t\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tp.SetState(1202)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\n\tcase 2:\n\t\t{\n\t\t\tp.SetState(1203)\n\t\t\tp.Select_stmt()\n\t\t}\n\n\tcase 3:\n\t\t{\n\t\t\tp.SetState(1204)\n\t\t\tp.Match(SQLiteParserDEFAULT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1205)\n\t\t\tp.Match(SQLiteParserVALUES_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\tp.SetState(1209)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserON_ {\n\t\t{\n\t\t\tp.SetState(1208)\n\t\t\tp.Upsert_clause()\n\t\t}\n\n\t}\n\tp.SetState(1212)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserRETURNING_ {\n\t\t{\n\t\t\tp.SetState(1211)\n\t\t\tp.Returning_clause()\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IUpsert_clauseContext is an interface to support dynamic dispatch.\ntype IUpsert_clauseContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tON_() antlr.TerminalNode\n\tCONFLICT_() antlr.TerminalNode\n\tDO_() antlr.TerminalNode\n\tNOTHING_() antlr.TerminalNode\n\tUPDATE_() antlr.TerminalNode\n\tSET_() antlr.TerminalNode\n\tOPEN_PAR() antlr.TerminalNode\n\tAllIndexed_column() []IIndexed_columnContext\n\tIndexed_column(i int) IIndexed_columnContext\n\tCLOSE_PAR() antlr.TerminalNode\n\tAllASSIGN() []antlr.TerminalNode\n\tASSIGN(i int) antlr.TerminalNode\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\tAllWHERE_() []antlr.TerminalNode\n\tWHERE_(i int) antlr.TerminalNode\n\tAllColumn_name() []IColumn_nameContext\n\tColumn_name(i int) IColumn_nameContext\n\tAllColumn_name_list() []IColumn_name_listContext\n\tColumn_name_list(i int) IColumn_name_listContext\n\n\t// IsUpsert_clauseContext differentiates from other interfaces.\n\tIsUpsert_clauseContext()\n}\n\ntype Upsert_clauseContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyUpsert_clauseContext() *Upsert_clauseContext {\n\tvar p = new(Upsert_clauseContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_upsert_clause\n\treturn p\n}\n\nfunc InitEmptyUpsert_clauseContext(p *Upsert_clauseContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_upsert_clause\n}\n\nfunc (*Upsert_clauseContext) IsUpsert_clauseContext() {}\n\nfunc NewUpsert_clauseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Upsert_clauseContext {\n\tvar p = new(Upsert_clauseContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_upsert_clause\n\n\treturn p\n}\n\nfunc (s *Upsert_clauseContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Upsert_clauseContext) ON_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserON_, 0)\n}\n\nfunc (s *Upsert_clauseContext) CONFLICT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCONFLICT_, 0)\n}\n\nfunc (s *Upsert_clauseContext) DO_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDO_, 0)\n}\n\nfunc (s *Upsert_clauseContext) NOTHING_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOTHING_, 0)\n}\n\nfunc (s *Upsert_clauseContext) UPDATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUPDATE_, 0)\n}\n\nfunc (s *Upsert_clauseContext) SET_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSET_, 0)\n}\n\nfunc (s *Upsert_clauseContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Upsert_clauseContext) AllIndexed_column() []IIndexed_columnContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IIndexed_columnContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IIndexed_columnContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IIndexed_columnContext); ok {\n\t\t\ttst[i] = t.(IIndexed_columnContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Upsert_clauseContext) Indexed_column(i int) IIndexed_columnContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IIndexed_columnContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IIndexed_columnContext)\n}\n\nfunc (s *Upsert_clauseContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Upsert_clauseContext) AllASSIGN() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserASSIGN)\n}\n\nfunc (s *Upsert_clauseContext) ASSIGN(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserASSIGN, i)\n}\n\nfunc (s *Upsert_clauseContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Upsert_clauseContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Upsert_clauseContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Upsert_clauseContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Upsert_clauseContext) AllWHERE_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserWHERE_)\n}\n\nfunc (s *Upsert_clauseContext) WHERE_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWHERE_, i)\n}\n\nfunc (s *Upsert_clauseContext) AllColumn_name() []IColumn_nameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_nameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_nameContext); ok {\n\t\t\ttst[i] = t.(IColumn_nameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Upsert_clauseContext) Column_name(i int) IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Upsert_clauseContext) AllColumn_name_list() []IColumn_name_listContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_name_listContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_name_listContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_name_listContext); ok {\n\t\t\ttst[i] = t.(IColumn_name_listContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Upsert_clauseContext) Column_name_list(i int) IColumn_name_listContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_name_listContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_name_listContext)\n}\n\nfunc (s *Upsert_clauseContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Upsert_clauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Upsert_clauseContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterUpsert_clause(s)\n\t}\n}\n\nfunc (s *Upsert_clauseContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitUpsert_clause(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Upsert_clause() (localctx IUpsert_clauseContext) {\n\tlocalctx = NewUpsert_clauseContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 76, SQLiteParserRULE_upsert_clause)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1214)\n\t\tp.Match(SQLiteParserON_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(1215)\n\t\tp.Match(SQLiteParserCONFLICT_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1230)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserOPEN_PAR {\n\t\t{\n\t\t\tp.SetState(1216)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1217)\n\t\t\tp.Indexed_column()\n\t\t}\n\t\tp.SetState(1222)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(1218)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1219)\n\t\t\t\tp.Indexed_column()\n\t\t\t}\n\n\t\t\tp.SetState(1224)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(1225)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1228)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserWHERE_ {\n\t\t\t{\n\t\t\t\tp.SetState(1226)\n\t\t\t\tp.Match(SQLiteParserWHERE_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1227)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(1232)\n\t\tp.Match(SQLiteParserDO_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1259)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserNOTHING_:\n\t\t{\n\t\t\tp.SetState(1233)\n\t\t\tp.Match(SQLiteParserNOTHING_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserUPDATE_:\n\t\t{\n\t\t\tp.SetState(1234)\n\t\t\tp.Match(SQLiteParserUPDATE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1235)\n\t\t\tp.Match(SQLiteParserSET_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t\tp.SetState(1238)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 162, p.GetParserRuleContext()) {\n\t\tcase 1:\n\t\t\t{\n\t\t\t\tp.SetState(1236)\n\t\t\t\tp.Column_name()\n\t\t\t}\n\n\t\tcase 2:\n\t\t\t{\n\t\t\t\tp.SetState(1237)\n\t\t\t\tp.Column_name_list()\n\t\t\t}\n\n\t\tcase antlr.ATNInvalidAltNumber:\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(1240)\n\t\t\tp.Match(SQLiteParserASSIGN)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1241)\n\t\t\tp.expr(0)\n\t\t}\n\t\tp.SetState(1252)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(1242)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\tp.SetState(1245)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\n\t\t\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 163, p.GetParserRuleContext()) {\n\t\t\tcase 1:\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1243)\n\t\t\t\t\tp.Column_name()\n\t\t\t\t}\n\n\t\t\tcase 2:\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1244)\n\t\t\t\t\tp.Column_name_list()\n\t\t\t\t}\n\n\t\t\tcase antlr.ATNInvalidAltNumber:\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1247)\n\t\t\t\tp.Match(SQLiteParserASSIGN)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1248)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t\tp.SetState(1254)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\tp.SetState(1257)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserWHERE_ {\n\t\t\t{\n\t\t\t\tp.SetState(1255)\n\t\t\t\tp.Match(SQLiteParserWHERE_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1256)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t}\n\n\tdefault:\n\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IPragma_stmtContext is an interface to support dynamic dispatch.\ntype IPragma_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tPRAGMA_() antlr.TerminalNode\n\tPragma_name() IPragma_nameContext\n\tSchema_name() ISchema_nameContext\n\tDOT() antlr.TerminalNode\n\tASSIGN() antlr.TerminalNode\n\tPragma_value() IPragma_valueContext\n\tOPEN_PAR() antlr.TerminalNode\n\tCLOSE_PAR() antlr.TerminalNode\n\n\t// IsPragma_stmtContext differentiates from other interfaces.\n\tIsPragma_stmtContext()\n}\n\ntype Pragma_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyPragma_stmtContext() *Pragma_stmtContext {\n\tvar p = new(Pragma_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_pragma_stmt\n\treturn p\n}\n\nfunc InitEmptyPragma_stmtContext(p *Pragma_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_pragma_stmt\n}\n\nfunc (*Pragma_stmtContext) IsPragma_stmtContext() {}\n\nfunc NewPragma_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Pragma_stmtContext {\n\tvar p = new(Pragma_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_pragma_stmt\n\n\treturn p\n}\n\nfunc (s *Pragma_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Pragma_stmtContext) PRAGMA_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPRAGMA_, 0)\n}\n\nfunc (s *Pragma_stmtContext) Pragma_name() IPragma_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IPragma_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IPragma_nameContext)\n}\n\nfunc (s *Pragma_stmtContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Pragma_stmtContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Pragma_stmtContext) ASSIGN() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserASSIGN, 0)\n}\n\nfunc (s *Pragma_stmtContext) Pragma_value() IPragma_valueContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IPragma_valueContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IPragma_valueContext)\n}\n\nfunc (s *Pragma_stmtContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Pragma_stmtContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Pragma_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Pragma_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Pragma_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterPragma_stmt(s)\n\t}\n}\n\nfunc (s *Pragma_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitPragma_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Pragma_stmt() (localctx IPragma_stmtContext) {\n\tlocalctx = NewPragma_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 78, SQLiteParserRULE_pragma_stmt)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1261)\n\t\tp.Match(SQLiteParserPRAGMA_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1265)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 167, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(1262)\n\t\t\tp.Schema_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(1263)\n\t\t\tp.Match(SQLiteParserDOT)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(1267)\n\t\tp.Pragma_name()\n\t}\n\tp.SetState(1274)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserASSIGN:\n\t\t{\n\t\t\tp.SetState(1268)\n\t\t\tp.Match(SQLiteParserASSIGN)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1269)\n\t\t\tp.Pragma_value()\n\t\t}\n\n\tcase SQLiteParserOPEN_PAR:\n\t\t{\n\t\t\tp.SetState(1270)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1271)\n\t\t\tp.Pragma_value()\n\t\t}\n\t\t{\n\t\t\tp.SetState(1272)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserEOF, SQLiteParserSCOL, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserATTACH_, SQLiteParserBEGIN_, SQLiteParserCOMMIT_, SQLiteParserCREATE_, SQLiteParserDELETE_, SQLiteParserDETACH_, SQLiteParserDROP_, SQLiteParserEND_, SQLiteParserEXPLAIN_, SQLiteParserINSERT_, SQLiteParserPRAGMA_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserREPLACE_, SQLiteParserROLLBACK_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserUPDATE_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserWITH_:\n\n\tdefault:\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IPragma_valueContext is an interface to support dynamic dispatch.\ntype IPragma_valueContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tSigned_number() ISigned_numberContext\n\tName() INameContext\n\tSTRING_LITERAL() antlr.TerminalNode\n\n\t// IsPragma_valueContext differentiates from other interfaces.\n\tIsPragma_valueContext()\n}\n\ntype Pragma_valueContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyPragma_valueContext() *Pragma_valueContext {\n\tvar p = new(Pragma_valueContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_pragma_value\n\treturn p\n}\n\nfunc InitEmptyPragma_valueContext(p *Pragma_valueContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_pragma_value\n}\n\nfunc (*Pragma_valueContext) IsPragma_valueContext() {}\n\nfunc NewPragma_valueContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Pragma_valueContext {\n\tvar p = new(Pragma_valueContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_pragma_value\n\n\treturn p\n}\n\nfunc (s *Pragma_valueContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Pragma_valueContext) Signed_number() ISigned_numberContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISigned_numberContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISigned_numberContext)\n}\n\nfunc (s *Pragma_valueContext) Name() INameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(INameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(INameContext)\n}\n\nfunc (s *Pragma_valueContext) STRING_LITERAL() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTRING_LITERAL, 0)\n}\n\nfunc (s *Pragma_valueContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Pragma_valueContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Pragma_valueContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterPragma_value(s)\n\t}\n}\n\nfunc (s *Pragma_valueContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitPragma_value(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Pragma_value() (localctx IPragma_valueContext) {\n\tlocalctx = NewPragma_valueContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 80, SQLiteParserRULE_pragma_value)\n\tp.SetState(1279)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 169, p.GetParserRuleContext()) {\n\tcase 1:\n\t\tp.EnterOuterAlt(localctx, 1)\n\t\t{\n\t\t\tp.SetState(1276)\n\t\t\tp.Signed_number()\n\t\t}\n\n\tcase 2:\n\t\tp.EnterOuterAlt(localctx, 2)\n\t\t{\n\t\t\tp.SetState(1277)\n\t\t\tp.Name()\n\t\t}\n\n\tcase 3:\n\t\tp.EnterOuterAlt(localctx, 3)\n\t\t{\n\t\t\tp.SetState(1278)\n\t\t\tp.Match(SQLiteParserSTRING_LITERAL)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IReindex_stmtContext is an interface to support dynamic dispatch.\ntype IReindex_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tREINDEX_() antlr.TerminalNode\n\tCollation_name() ICollation_nameContext\n\tTable_name() ITable_nameContext\n\tIndex_name() IIndex_nameContext\n\tSchema_name() ISchema_nameContext\n\tDOT() antlr.TerminalNode\n\n\t// IsReindex_stmtContext differentiates from other interfaces.\n\tIsReindex_stmtContext()\n}\n\ntype Reindex_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyReindex_stmtContext() *Reindex_stmtContext {\n\tvar p = new(Reindex_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_reindex_stmt\n\treturn p\n}\n\nfunc InitEmptyReindex_stmtContext(p *Reindex_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_reindex_stmt\n}\n\nfunc (*Reindex_stmtContext) IsReindex_stmtContext() {}\n\nfunc NewReindex_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Reindex_stmtContext {\n\tvar p = new(Reindex_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_reindex_stmt\n\n\treturn p\n}\n\nfunc (s *Reindex_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Reindex_stmtContext) REINDEX_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserREINDEX_, 0)\n}\n\nfunc (s *Reindex_stmtContext) Collation_name() ICollation_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICollation_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICollation_nameContext)\n}\n\nfunc (s *Reindex_stmtContext) Table_name() ITable_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_nameContext)\n}\n\nfunc (s *Reindex_stmtContext) Index_name() IIndex_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IIndex_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IIndex_nameContext)\n}\n\nfunc (s *Reindex_stmtContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Reindex_stmtContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Reindex_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Reindex_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Reindex_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterReindex_stmt(s)\n\t}\n}\n\nfunc (s *Reindex_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitReindex_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Reindex_stmt() (localctx IReindex_stmtContext) {\n\tlocalctx = NewReindex_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 82, SQLiteParserRULE_reindex_stmt)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1281)\n\t\tp.Match(SQLiteParserREINDEX_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1292)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 172, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(1282)\n\t\t\tp.Collation_name()\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t} else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 172, p.GetParserRuleContext()) == 2 {\n\t\tp.SetState(1286)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 170, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(1283)\n\t\t\t\tp.Schema_name()\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1284)\n\t\t\t\tp.Match(SQLiteParserDOT)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\tp.SetState(1290)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 171, p.GetParserRuleContext()) {\n\t\tcase 1:\n\t\t\t{\n\t\t\t\tp.SetState(1288)\n\t\t\t\tp.Table_name()\n\t\t\t}\n\n\t\tcase 2:\n\t\t\t{\n\t\t\t\tp.SetState(1289)\n\t\t\t\tp.Index_name()\n\t\t\t}\n\n\t\tcase antlr.ATNInvalidAltNumber:\n\t\t\tgoto errorExit\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ISelect_stmtContext is an interface to support dynamic dispatch.\ntype ISelect_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAllSelect_core() []ISelect_coreContext\n\tSelect_core(i int) ISelect_coreContext\n\tCommon_table_stmt() ICommon_table_stmtContext\n\tAllCompound_operator() []ICompound_operatorContext\n\tCompound_operator(i int) ICompound_operatorContext\n\tOrder_by_stmt() IOrder_by_stmtContext\n\tLimit_stmt() ILimit_stmtContext\n\n\t// IsSelect_stmtContext differentiates from other interfaces.\n\tIsSelect_stmtContext()\n}\n\ntype Select_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptySelect_stmtContext() *Select_stmtContext {\n\tvar p = new(Select_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_select_stmt\n\treturn p\n}\n\nfunc InitEmptySelect_stmtContext(p *Select_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_select_stmt\n}\n\nfunc (*Select_stmtContext) IsSelect_stmtContext() {}\n\nfunc NewSelect_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Select_stmtContext {\n\tvar p = new(Select_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_select_stmt\n\n\treturn p\n}\n\nfunc (s *Select_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Select_stmtContext) AllSelect_core() []ISelect_coreContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(ISelect_coreContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]ISelect_coreContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(ISelect_coreContext); ok {\n\t\t\ttst[i] = t.(ISelect_coreContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Select_stmtContext) Select_core(i int) ISelect_coreContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISelect_coreContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISelect_coreContext)\n}\n\nfunc (s *Select_stmtContext) Common_table_stmt() ICommon_table_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICommon_table_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICommon_table_stmtContext)\n}\n\nfunc (s *Select_stmtContext) AllCompound_operator() []ICompound_operatorContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(ICompound_operatorContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]ICompound_operatorContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(ICompound_operatorContext); ok {\n\t\t\ttst[i] = t.(ICompound_operatorContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Select_stmtContext) Compound_operator(i int) ICompound_operatorContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICompound_operatorContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICompound_operatorContext)\n}\n\nfunc (s *Select_stmtContext) Order_by_stmt() IOrder_by_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IOrder_by_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IOrder_by_stmtContext)\n}\n\nfunc (s *Select_stmtContext) Limit_stmt() ILimit_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ILimit_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ILimit_stmtContext)\n}\n\nfunc (s *Select_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Select_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Select_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterSelect_stmt(s)\n\t}\n}\n\nfunc (s *Select_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitSelect_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Select_stmt() (localctx ISelect_stmtContext) {\n\tlocalctx = NewSelect_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 84, SQLiteParserRULE_select_stmt)\n\tvar _la int\n\n\tvar _alt int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(1295)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserWITH_ {\n\t\t{\n\t\t\tp.SetState(1294)\n\t\t\tp.Common_table_stmt()\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(1297)\n\t\tp.Select_core()\n\t}\n\tp.SetState(1303)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 174, p.GetParserRuleContext())\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\tfor _alt != 2 && _alt != antlr.ATNInvalidAltNumber {\n\t\tif _alt == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(1298)\n\t\t\t\tp.Compound_operator()\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1299)\n\t\t\t\tp.Select_core()\n\t\t\t}\n\n\t\t}\n\t\tp.SetState(1305)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 174, p.GetParserRuleContext())\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1307)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserORDER_ {\n\t\t{\n\t\t\tp.SetState(1306)\n\t\t\tp.Order_by_stmt()\n\t\t}\n\n\t}\n\tp.SetState(1310)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserLIMIT_ {\n\t\t{\n\t\t\tp.SetState(1309)\n\t\t\tp.Limit_stmt()\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IJoin_clauseContext is an interface to support dynamic dispatch.\ntype IJoin_clauseContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAllTable_or_subquery() []ITable_or_subqueryContext\n\tTable_or_subquery(i int) ITable_or_subqueryContext\n\tAllJoin_operator() []IJoin_operatorContext\n\tJoin_operator(i int) IJoin_operatorContext\n\tAllJoin_constraint() []IJoin_constraintContext\n\tJoin_constraint(i int) IJoin_constraintContext\n\n\t// IsJoin_clauseContext differentiates from other interfaces.\n\tIsJoin_clauseContext()\n}\n\ntype Join_clauseContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyJoin_clauseContext() *Join_clauseContext {\n\tvar p = new(Join_clauseContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_join_clause\n\treturn p\n}\n\nfunc InitEmptyJoin_clauseContext(p *Join_clauseContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_join_clause\n}\n\nfunc (*Join_clauseContext) IsJoin_clauseContext() {}\n\nfunc NewJoin_clauseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Join_clauseContext {\n\tvar p = new(Join_clauseContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_join_clause\n\n\treturn p\n}\n\nfunc (s *Join_clauseContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Join_clauseContext) AllTable_or_subquery() []ITable_or_subqueryContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(ITable_or_subqueryContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]ITable_or_subqueryContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(ITable_or_subqueryContext); ok {\n\t\t\ttst[i] = t.(ITable_or_subqueryContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Join_clauseContext) Table_or_subquery(i int) ITable_or_subqueryContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_or_subqueryContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_or_subqueryContext)\n}\n\nfunc (s *Join_clauseContext) AllJoin_operator() []IJoin_operatorContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IJoin_operatorContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IJoin_operatorContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IJoin_operatorContext); ok {\n\t\t\ttst[i] = t.(IJoin_operatorContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Join_clauseContext) Join_operator(i int) IJoin_operatorContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IJoin_operatorContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IJoin_operatorContext)\n}\n\nfunc (s *Join_clauseContext) AllJoin_constraint() []IJoin_constraintContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IJoin_constraintContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IJoin_constraintContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IJoin_constraintContext); ok {\n\t\t\ttst[i] = t.(IJoin_constraintContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Join_clauseContext) Join_constraint(i int) IJoin_constraintContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IJoin_constraintContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IJoin_constraintContext)\n}\n\nfunc (s *Join_clauseContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Join_clauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Join_clauseContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterJoin_clause(s)\n\t}\n}\n\nfunc (s *Join_clauseContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitJoin_clause(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Join_clause() (localctx IJoin_clauseContext) {\n\tlocalctx = NewJoin_clauseContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 86, SQLiteParserRULE_join_clause)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1312)\n\t\tp.Table_or_subquery()\n\t}\n\tp.SetState(1319)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor _la == SQLiteParserCOMMA || _la == SQLiteParserCROSS_ || ((int64((_la-78)) & ^0x3f) == 0 && ((int64(1)<<(_la-78))&562949971511297) != 0) {\n\t\t{\n\t\t\tp.SetState(1313)\n\t\t\tp.Join_operator()\n\t\t}\n\t\t{\n\t\t\tp.SetState(1314)\n\t\t\tp.Table_or_subquery()\n\t\t}\n\t\t{\n\t\t\tp.SetState(1315)\n\t\t\tp.Join_constraint()\n\t\t}\n\n\t\tp.SetState(1321)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ISelect_coreContext is an interface to support dynamic dispatch.\ntype ISelect_coreContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tSELECT_() antlr.TerminalNode\n\tAllResult_column() []IResult_columnContext\n\tResult_column(i int) IResult_columnContext\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\tFROM_() antlr.TerminalNode\n\tWHERE_() antlr.TerminalNode\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\tGROUP_() antlr.TerminalNode\n\tBY_() antlr.TerminalNode\n\tWINDOW_() antlr.TerminalNode\n\tAllWindow_name() []IWindow_nameContext\n\tWindow_name(i int) IWindow_nameContext\n\tAllAS_() []antlr.TerminalNode\n\tAS_(i int) antlr.TerminalNode\n\tAllWindow_defn() []IWindow_defnContext\n\tWindow_defn(i int) IWindow_defnContext\n\tDISTINCT_() antlr.TerminalNode\n\tALL_() antlr.TerminalNode\n\tAllTable_or_subquery() []ITable_or_subqueryContext\n\tTable_or_subquery(i int) ITable_or_subqueryContext\n\tJoin_clause() IJoin_clauseContext\n\tHAVING_() antlr.TerminalNode\n\tVALUES_() antlr.TerminalNode\n\tAllOPEN_PAR() []antlr.TerminalNode\n\tOPEN_PAR(i int) antlr.TerminalNode\n\tAllCLOSE_PAR() []antlr.TerminalNode\n\tCLOSE_PAR(i int) antlr.TerminalNode\n\n\t// IsSelect_coreContext differentiates from other interfaces.\n\tIsSelect_coreContext()\n}\n\ntype Select_coreContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptySelect_coreContext() *Select_coreContext {\n\tvar p = new(Select_coreContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_select_core\n\treturn p\n}\n\nfunc InitEmptySelect_coreContext(p *Select_coreContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_select_core\n}\n\nfunc (*Select_coreContext) IsSelect_coreContext() {}\n\nfunc NewSelect_coreContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Select_coreContext {\n\tvar p = new(Select_coreContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_select_core\n\n\treturn p\n}\n\nfunc (s *Select_coreContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Select_coreContext) SELECT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSELECT_, 0)\n}\n\nfunc (s *Select_coreContext) AllResult_column() []IResult_columnContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IResult_columnContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IResult_columnContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IResult_columnContext); ok {\n\t\t\ttst[i] = t.(IResult_columnContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Select_coreContext) Result_column(i int) IResult_columnContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IResult_columnContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IResult_columnContext)\n}\n\nfunc (s *Select_coreContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Select_coreContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Select_coreContext) FROM_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFROM_, 0)\n}\n\nfunc (s *Select_coreContext) WHERE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWHERE_, 0)\n}\n\nfunc (s *Select_coreContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Select_coreContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Select_coreContext) GROUP_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserGROUP_, 0)\n}\n\nfunc (s *Select_coreContext) BY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBY_, 0)\n}\n\nfunc (s *Select_coreContext) WINDOW_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWINDOW_, 0)\n}\n\nfunc (s *Select_coreContext) AllWindow_name() []IWindow_nameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IWindow_nameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IWindow_nameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IWindow_nameContext); ok {\n\t\t\ttst[i] = t.(IWindow_nameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Select_coreContext) Window_name(i int) IWindow_nameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IWindow_nameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IWindow_nameContext)\n}\n\nfunc (s *Select_coreContext) AllAS_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserAS_)\n}\n\nfunc (s *Select_coreContext) AS_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAS_, i)\n}\n\nfunc (s *Select_coreContext) AllWindow_defn() []IWindow_defnContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IWindow_defnContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IWindow_defnContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IWindow_defnContext); ok {\n\t\t\ttst[i] = t.(IWindow_defnContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Select_coreContext) Window_defn(i int) IWindow_defnContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IWindow_defnContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IWindow_defnContext)\n}\n\nfunc (s *Select_coreContext) DISTINCT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDISTINCT_, 0)\n}\n\nfunc (s *Select_coreContext) ALL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserALL_, 0)\n}\n\nfunc (s *Select_coreContext) AllTable_or_subquery() []ITable_or_subqueryContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(ITable_or_subqueryContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]ITable_or_subqueryContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(ITable_or_subqueryContext); ok {\n\t\t\ttst[i] = t.(ITable_or_subqueryContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Select_coreContext) Table_or_subquery(i int) ITable_or_subqueryContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_or_subqueryContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_or_subqueryContext)\n}\n\nfunc (s *Select_coreContext) Join_clause() IJoin_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IJoin_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IJoin_clauseContext)\n}\n\nfunc (s *Select_coreContext) HAVING_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserHAVING_, 0)\n}\n\nfunc (s *Select_coreContext) VALUES_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserVALUES_, 0)\n}\n\nfunc (s *Select_coreContext) AllOPEN_PAR() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserOPEN_PAR)\n}\n\nfunc (s *Select_coreContext) OPEN_PAR(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, i)\n}\n\nfunc (s *Select_coreContext) AllCLOSE_PAR() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCLOSE_PAR)\n}\n\nfunc (s *Select_coreContext) CLOSE_PAR(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, i)\n}\n\nfunc (s *Select_coreContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Select_coreContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Select_coreContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterSelect_core(s)\n\t}\n}\n\nfunc (s *Select_coreContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitSelect_core(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Select_core() (localctx ISelect_coreContext) {\n\tlocalctx = NewSelect_coreContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 88, SQLiteParserRULE_select_core)\n\tvar _la int\n\n\tp.SetState(1412)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserSELECT_:\n\t\tp.EnterOuterAlt(localctx, 1)\n\t\t{\n\t\t\tp.SetState(1322)\n\t\t\tp.Match(SQLiteParserSELECT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1324)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 178, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(1323)\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\tif !(_la == SQLiteParserALL_ || _la == SQLiteParserDISTINCT_) {\n\t\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t\t} else {\n\t\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\t\tp.Consume()\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(1326)\n\t\t\tp.Result_column()\n\t\t}\n\t\tp.SetState(1331)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(1327)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1328)\n\t\t\t\tp.Result_column()\n\t\t\t}\n\n\t\t\tp.SetState(1333)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\tp.SetState(1346)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserFROM_ {\n\t\t\t{\n\t\t\t\tp.SetState(1334)\n\t\t\t\tp.Match(SQLiteParserFROM_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\tp.SetState(1344)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\n\t\t\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 181, p.GetParserRuleContext()) {\n\t\t\tcase 1:\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1335)\n\t\t\t\t\tp.Table_or_subquery()\n\t\t\t\t}\n\t\t\t\tp.SetState(1340)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1336)\n\t\t\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t{\n\t\t\t\t\t\tp.SetState(1337)\n\t\t\t\t\t\tp.Table_or_subquery()\n\t\t\t\t\t}\n\n\t\t\t\t\tp.SetState(1342)\n\t\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t\t\t}\n\n\t\t\tcase 2:\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1343)\n\t\t\t\t\tp.Join_clause()\n\t\t\t\t}\n\n\t\t\tcase antlr.ATNInvalidAltNumber:\n\t\t\t\tgoto errorExit\n\t\t\t}\n\n\t\t}\n\t\tp.SetState(1350)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserWHERE_ {\n\t\t\t{\n\t\t\t\tp.SetState(1348)\n\t\t\t\tp.Match(SQLiteParserWHERE_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1349)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t}\n\t\tp.SetState(1366)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserGROUP_ {\n\t\t\t{\n\t\t\t\tp.SetState(1352)\n\t\t\t\tp.Match(SQLiteParserGROUP_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1353)\n\t\t\t\tp.Match(SQLiteParserBY_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1354)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\t\t\tp.SetState(1359)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1355)\n\t\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1356)\n\t\t\t\t\tp.expr(0)\n\t\t\t\t}\n\n\t\t\t\tp.SetState(1361)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t\t}\n\t\t\tp.SetState(1364)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif _la == SQLiteParserHAVING_ {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1362)\n\t\t\t\t\tp.Match(SQLiteParserHAVING_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1363)\n\t\t\t\t\tp.expr(0)\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\t\tp.SetState(1382)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserWINDOW_ {\n\t\t\t{\n\t\t\t\tp.SetState(1368)\n\t\t\t\tp.Match(SQLiteParserWINDOW_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1369)\n\t\t\t\tp.Window_name()\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1370)\n\t\t\t\tp.Match(SQLiteParserAS_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1371)\n\t\t\t\tp.Window_defn()\n\t\t\t}\n\t\t\tp.SetState(1379)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1372)\n\t\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1373)\n\t\t\t\t\tp.Window_name()\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1374)\n\t\t\t\t\tp.Match(SQLiteParserAS_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1375)\n\t\t\t\t\tp.Window_defn()\n\t\t\t\t}\n\n\t\t\t\tp.SetState(1381)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t\t}\n\n\t\t}\n\n\tcase SQLiteParserVALUES_:\n\t\tp.EnterOuterAlt(localctx, 2)\n\t\t{\n\t\t\tp.SetState(1384)\n\t\t\tp.Match(SQLiteParserVALUES_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1385)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1386)\n\t\t\tp.expr(0)\n\t\t}\n\t\tp.SetState(1391)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(1387)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1388)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t\tp.SetState(1393)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(1394)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1409)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(1395)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1396)\n\t\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1397)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\t\t\tp.SetState(1402)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1398)\n\t\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1399)\n\t\t\t\t\tp.expr(0)\n\t\t\t\t}\n\n\t\t\t\tp.SetState(1404)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1405)\n\t\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tp.SetState(1411)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\n\tdefault:\n\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IFactored_select_stmtContext is an interface to support dynamic dispatch.\ntype IFactored_select_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tSelect_stmt() ISelect_stmtContext\n\n\t// IsFactored_select_stmtContext differentiates from other interfaces.\n\tIsFactored_select_stmtContext()\n}\n\ntype Factored_select_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyFactored_select_stmtContext() *Factored_select_stmtContext {\n\tvar p = new(Factored_select_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_factored_select_stmt\n\treturn p\n}\n\nfunc InitEmptyFactored_select_stmtContext(p *Factored_select_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_factored_select_stmt\n}\n\nfunc (*Factored_select_stmtContext) IsFactored_select_stmtContext() {}\n\nfunc NewFactored_select_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Factored_select_stmtContext {\n\tvar p = new(Factored_select_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_factored_select_stmt\n\n\treturn p\n}\n\nfunc (s *Factored_select_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Factored_select_stmtContext) Select_stmt() ISelect_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISelect_stmtContext)\n}\n\nfunc (s *Factored_select_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Factored_select_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Factored_select_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterFactored_select_stmt(s)\n\t}\n}\n\nfunc (s *Factored_select_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitFactored_select_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Factored_select_stmt() (localctx IFactored_select_stmtContext) {\n\tlocalctx = NewFactored_select_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 90, SQLiteParserRULE_factored_select_stmt)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1414)\n\t\tp.Select_stmt()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ISimple_select_stmtContext is an interface to support dynamic dispatch.\ntype ISimple_select_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tSelect_core() ISelect_coreContext\n\tCommon_table_stmt() ICommon_table_stmtContext\n\tOrder_by_stmt() IOrder_by_stmtContext\n\tLimit_stmt() ILimit_stmtContext\n\n\t// IsSimple_select_stmtContext differentiates from other interfaces.\n\tIsSimple_select_stmtContext()\n}\n\ntype Simple_select_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptySimple_select_stmtContext() *Simple_select_stmtContext {\n\tvar p = new(Simple_select_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_simple_select_stmt\n\treturn p\n}\n\nfunc InitEmptySimple_select_stmtContext(p *Simple_select_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_simple_select_stmt\n}\n\nfunc (*Simple_select_stmtContext) IsSimple_select_stmtContext() {}\n\nfunc NewSimple_select_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Simple_select_stmtContext {\n\tvar p = new(Simple_select_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_simple_select_stmt\n\n\treturn p\n}\n\nfunc (s *Simple_select_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Simple_select_stmtContext) Select_core() ISelect_coreContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISelect_coreContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISelect_coreContext)\n}\n\nfunc (s *Simple_select_stmtContext) Common_table_stmt() ICommon_table_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICommon_table_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICommon_table_stmtContext)\n}\n\nfunc (s *Simple_select_stmtContext) Order_by_stmt() IOrder_by_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IOrder_by_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IOrder_by_stmtContext)\n}\n\nfunc (s *Simple_select_stmtContext) Limit_stmt() ILimit_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ILimit_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ILimit_stmtContext)\n}\n\nfunc (s *Simple_select_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Simple_select_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Simple_select_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterSimple_select_stmt(s)\n\t}\n}\n\nfunc (s *Simple_select_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitSimple_select_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Simple_select_stmt() (localctx ISimple_select_stmtContext) {\n\tlocalctx = NewSimple_select_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 92, SQLiteParserRULE_simple_select_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(1417)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserWITH_ {\n\t\t{\n\t\t\tp.SetState(1416)\n\t\t\tp.Common_table_stmt()\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(1419)\n\t\tp.Select_core()\n\t}\n\tp.SetState(1421)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserORDER_ {\n\t\t{\n\t\t\tp.SetState(1420)\n\t\t\tp.Order_by_stmt()\n\t\t}\n\n\t}\n\tp.SetState(1424)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserLIMIT_ {\n\t\t{\n\t\t\tp.SetState(1423)\n\t\t\tp.Limit_stmt()\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ICompound_select_stmtContext is an interface to support dynamic dispatch.\ntype ICompound_select_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAllSelect_core() []ISelect_coreContext\n\tSelect_core(i int) ISelect_coreContext\n\tCommon_table_stmt() ICommon_table_stmtContext\n\tOrder_by_stmt() IOrder_by_stmtContext\n\tLimit_stmt() ILimit_stmtContext\n\tAllUNION_() []antlr.TerminalNode\n\tUNION_(i int) antlr.TerminalNode\n\tAllINTERSECT_() []antlr.TerminalNode\n\tINTERSECT_(i int) antlr.TerminalNode\n\tAllEXCEPT_() []antlr.TerminalNode\n\tEXCEPT_(i int) antlr.TerminalNode\n\tAllALL_() []antlr.TerminalNode\n\tALL_(i int) antlr.TerminalNode\n\n\t// IsCompound_select_stmtContext differentiates from other interfaces.\n\tIsCompound_select_stmtContext()\n}\n\ntype Compound_select_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyCompound_select_stmtContext() *Compound_select_stmtContext {\n\tvar p = new(Compound_select_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_compound_select_stmt\n\treturn p\n}\n\nfunc InitEmptyCompound_select_stmtContext(p *Compound_select_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_compound_select_stmt\n}\n\nfunc (*Compound_select_stmtContext) IsCompound_select_stmtContext() {}\n\nfunc NewCompound_select_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Compound_select_stmtContext {\n\tvar p = new(Compound_select_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_compound_select_stmt\n\n\treturn p\n}\n\nfunc (s *Compound_select_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Compound_select_stmtContext) AllSelect_core() []ISelect_coreContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(ISelect_coreContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]ISelect_coreContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(ISelect_coreContext); ok {\n\t\t\ttst[i] = t.(ISelect_coreContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Compound_select_stmtContext) Select_core(i int) ISelect_coreContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISelect_coreContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISelect_coreContext)\n}\n\nfunc (s *Compound_select_stmtContext) Common_table_stmt() ICommon_table_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICommon_table_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICommon_table_stmtContext)\n}\n\nfunc (s *Compound_select_stmtContext) Order_by_stmt() IOrder_by_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IOrder_by_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IOrder_by_stmtContext)\n}\n\nfunc (s *Compound_select_stmtContext) Limit_stmt() ILimit_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ILimit_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ILimit_stmtContext)\n}\n\nfunc (s *Compound_select_stmtContext) AllUNION_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserUNION_)\n}\n\nfunc (s *Compound_select_stmtContext) UNION_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUNION_, i)\n}\n\nfunc (s *Compound_select_stmtContext) AllINTERSECT_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserINTERSECT_)\n}\n\nfunc (s *Compound_select_stmtContext) INTERSECT_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINTERSECT_, i)\n}\n\nfunc (s *Compound_select_stmtContext) AllEXCEPT_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserEXCEPT_)\n}\n\nfunc (s *Compound_select_stmtContext) EXCEPT_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXCEPT_, i)\n}\n\nfunc (s *Compound_select_stmtContext) AllALL_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserALL_)\n}\n\nfunc (s *Compound_select_stmtContext) ALL_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserALL_, i)\n}\n\nfunc (s *Compound_select_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Compound_select_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Compound_select_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterCompound_select_stmt(s)\n\t}\n}\n\nfunc (s *Compound_select_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitCompound_select_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Compound_select_stmt() (localctx ICompound_select_stmtContext) {\n\tlocalctx = NewCompound_select_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 94, SQLiteParserRULE_compound_select_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(1427)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserWITH_ {\n\t\t{\n\t\t\tp.SetState(1426)\n\t\t\tp.Common_table_stmt()\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(1429)\n\t\tp.Select_core()\n\t}\n\tp.SetState(1439)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor ok := true; ok; ok = _la == SQLiteParserEXCEPT_ || _la == SQLiteParserINTERSECT_ || _la == SQLiteParserUNION_ {\n\t\tp.SetState(1436)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tswitch p.GetTokenStream().LA(1) {\n\t\tcase SQLiteParserUNION_:\n\t\t\t{\n\t\t\t\tp.SetState(1430)\n\t\t\t\tp.Match(SQLiteParserUNION_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\tp.SetState(1432)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif _la == SQLiteParserALL_ {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1431)\n\t\t\t\t\tp.Match(SQLiteParserALL_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\n\t\tcase SQLiteParserINTERSECT_:\n\t\t\t{\n\t\t\t\tp.SetState(1434)\n\t\t\t\tp.Match(SQLiteParserINTERSECT_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase SQLiteParserEXCEPT_:\n\t\t\t{\n\t\t\t\tp.SetState(1435)\n\t\t\t\tp.Match(SQLiteParserEXCEPT_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\tdefault:\n\t\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(1438)\n\t\t\tp.Select_core()\n\t\t}\n\n\t\tp.SetState(1441)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\tp.SetState(1444)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserORDER_ {\n\t\t{\n\t\t\tp.SetState(1443)\n\t\t\tp.Order_by_stmt()\n\t\t}\n\n\t}\n\tp.SetState(1447)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserLIMIT_ {\n\t\t{\n\t\t\tp.SetState(1446)\n\t\t\tp.Limit_stmt()\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ITable_or_subqueryContext is an interface to support dynamic dispatch.\ntype ITable_or_subqueryContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tTable_name() ITable_nameContext\n\tSchema_name() ISchema_nameContext\n\tDOT() antlr.TerminalNode\n\tTable_alias() ITable_aliasContext\n\tINDEXED_() antlr.TerminalNode\n\tBY_() antlr.TerminalNode\n\tIndex_name() IIndex_nameContext\n\tNOT_() antlr.TerminalNode\n\tAS_() antlr.TerminalNode\n\tTable_function_name() ITable_function_nameContext\n\tOPEN_PAR() antlr.TerminalNode\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\tCLOSE_PAR() antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\tAllTable_or_subquery() []ITable_or_subqueryContext\n\tTable_or_subquery(i int) ITable_or_subqueryContext\n\tJoin_clause() IJoin_clauseContext\n\tSelect_stmt() ISelect_stmtContext\n\tTable_alias_fallback() ITable_alias_fallbackContext\n\n\t// IsTable_or_subqueryContext differentiates from other interfaces.\n\tIsTable_or_subqueryContext()\n}\n\ntype Table_or_subqueryContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyTable_or_subqueryContext() *Table_or_subqueryContext {\n\tvar p = new(Table_or_subqueryContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_or_subquery\n\treturn p\n}\n\nfunc InitEmptyTable_or_subqueryContext(p *Table_or_subqueryContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_or_subquery\n}\n\nfunc (*Table_or_subqueryContext) IsTable_or_subqueryContext() {}\n\nfunc NewTable_or_subqueryContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Table_or_subqueryContext {\n\tvar p = new(Table_or_subqueryContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_table_or_subquery\n\n\treturn p\n}\n\nfunc (s *Table_or_subqueryContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Table_or_subqueryContext) Table_name() ITable_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_nameContext)\n}\n\nfunc (s *Table_or_subqueryContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Table_or_subqueryContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Table_or_subqueryContext) Table_alias() ITable_aliasContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_aliasContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_aliasContext)\n}\n\nfunc (s *Table_or_subqueryContext) INDEXED_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINDEXED_, 0)\n}\n\nfunc (s *Table_or_subqueryContext) BY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBY_, 0)\n}\n\nfunc (s *Table_or_subqueryContext) Index_name() IIndex_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IIndex_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IIndex_nameContext)\n}\n\nfunc (s *Table_or_subqueryContext) NOT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_, 0)\n}\n\nfunc (s *Table_or_subqueryContext) AS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAS_, 0)\n}\n\nfunc (s *Table_or_subqueryContext) Table_function_name() ITable_function_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_function_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_function_nameContext)\n}\n\nfunc (s *Table_or_subqueryContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Table_or_subqueryContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Table_or_subqueryContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Table_or_subqueryContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Table_or_subqueryContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Table_or_subqueryContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Table_or_subqueryContext) AllTable_or_subquery() []ITable_or_subqueryContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(ITable_or_subqueryContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]ITable_or_subqueryContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(ITable_or_subqueryContext); ok {\n\t\t\ttst[i] = t.(ITable_or_subqueryContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Table_or_subqueryContext) Table_or_subquery(i int) ITable_or_subqueryContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_or_subqueryContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_or_subqueryContext)\n}\n\nfunc (s *Table_or_subqueryContext) Join_clause() IJoin_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IJoin_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IJoin_clauseContext)\n}\n\nfunc (s *Table_or_subqueryContext) Select_stmt() ISelect_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISelect_stmtContext)\n}\n\nfunc (s *Table_or_subqueryContext) Table_alias_fallback() ITable_alias_fallbackContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_alias_fallbackContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_alias_fallbackContext)\n}\n\nfunc (s *Table_or_subqueryContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Table_or_subqueryContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Table_or_subqueryContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterTable_or_subquery(s)\n\t}\n}\n\nfunc (s *Table_or_subqueryContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitTable_or_subquery(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Table_or_subquery() (localctx ITable_or_subqueryContext) {\n\tlocalctx = NewTable_or_subqueryContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 96, SQLiteParserRULE_table_or_subquery)\n\tvar _la int\n\n\tp.SetState(1577)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 226, p.GetParserRuleContext()) {\n\tcase 1:\n\t\tp.EnterOuterAlt(localctx, 1)\n\t\tp.SetState(1452)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 202, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(1449)\n\t\t\t\tp.Schema_name()\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1450)\n\t\t\t\tp.Match(SQLiteParserDOT)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(1454)\n\t\t\tp.Table_name()\n\t\t}\n\t\tp.SetState(1459)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserAS_ || _la == SQLiteParserIDENTIFIER || _la == SQLiteParserSTRING_LITERAL {\n\t\t\tp.SetState(1456)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif _la == SQLiteParserAS_ {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1455)\n\t\t\t\t\tp.Match(SQLiteParserAS_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1458)\n\t\t\t\tp.Table_alias()\n\t\t\t}\n\n\t\t}\n\t\tp.SetState(1466)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\tswitch p.GetTokenStream().LA(1) {\n\t\tcase SQLiteParserINDEXED_:\n\t\t\t{\n\t\t\t\tp.SetState(1461)\n\t\t\t\tp.Match(SQLiteParserINDEXED_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1462)\n\t\t\t\tp.Match(SQLiteParserBY_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1463)\n\t\t\t\tp.Index_name()\n\t\t\t}\n\n\t\tcase SQLiteParserNOT_:\n\t\t\t{\n\t\t\t\tp.SetState(1464)\n\t\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1465)\n\t\t\t\tp.Match(SQLiteParserINDEXED_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase SQLiteParserEOF, SQLiteParserSCOL, SQLiteParserCLOSE_PAR, SQLiteParserCOMMA, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserATTACH_, SQLiteParserBEGIN_, SQLiteParserCOMMIT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserDELETE_, SQLiteParserDETACH_, SQLiteParserDROP_, SQLiteParserEND_, SQLiteParserEXCEPT_, SQLiteParserEXPLAIN_, SQLiteParserFULL_, SQLiteParserGROUP_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINTERSECT_, SQLiteParserJOIN_, SQLiteParserLEFT_, SQLiteParserLIMIT_, SQLiteParserNATURAL_, SQLiteParserON_, SQLiteParserORDER_, SQLiteParserPRAGMA_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserREPLACE_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserUNION_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWINDOW_:\n\n\t\tdefault:\n\t\t}\n\n\tcase 2:\n\t\tp.EnterOuterAlt(localctx, 2)\n\t\tp.SetState(1471)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 206, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(1468)\n\t\t\t\tp.Schema_name()\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1469)\n\t\t\t\tp.Match(SQLiteParserDOT)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(1473)\n\t\t\tp.Table_function_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(1474)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1475)\n\t\t\tp.expr(0)\n\t\t}\n\t\tp.SetState(1480)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(1476)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1477)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t\tp.SetState(1482)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(1483)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1488)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserAS_ || _la == SQLiteParserIDENTIFIER || _la == SQLiteParserSTRING_LITERAL {\n\t\t\tp.SetState(1485)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif _la == SQLiteParserAS_ {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1484)\n\t\t\t\t\tp.Match(SQLiteParserAS_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1487)\n\t\t\t\tp.Table_alias()\n\t\t\t}\n\n\t\t}\n\n\tcase 3:\n\t\tp.EnterOuterAlt(localctx, 3)\n\t\t{\n\t\t\tp.SetState(1490)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1500)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 211, p.GetParserRuleContext()) {\n\t\tcase 1:\n\t\t\t{\n\t\t\t\tp.SetState(1491)\n\t\t\t\tp.Table_or_subquery()\n\t\t\t}\n\t\t\tp.SetState(1496)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1492)\n\t\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1493)\n\t\t\t\t\tp.Table_or_subquery()\n\t\t\t\t}\n\n\t\t\t\tp.SetState(1498)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t\t}\n\n\t\tcase 2:\n\t\t\t{\n\t\t\t\tp.SetState(1499)\n\t\t\t\tp.Join_clause()\n\t\t\t}\n\n\t\tcase antlr.ATNInvalidAltNumber:\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(1502)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 4:\n\t\tp.EnterOuterAlt(localctx, 4)\n\t\t{\n\t\t\tp.SetState(1504)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1505)\n\t\t\tp.Select_stmt()\n\t\t}\n\t\t{\n\t\t\tp.SetState(1506)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1511)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserAS_ || _la == SQLiteParserIDENTIFIER || _la == SQLiteParserSTRING_LITERAL {\n\t\t\tp.SetState(1508)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif _la == SQLiteParserAS_ {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1507)\n\t\t\t\t\tp.Match(SQLiteParserAS_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1510)\n\t\t\t\tp.Table_alias()\n\t\t\t}\n\n\t\t}\n\n\tcase 5:\n\t\tp.EnterOuterAlt(localctx, 5)\n\t\tp.SetState(1516)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 214, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(1513)\n\t\t\t\tp.Schema_name()\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1514)\n\t\t\t\tp.Match(SQLiteParserDOT)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(1518)\n\t\t\tp.Table_name()\n\t\t}\n\t\tp.SetState(1523)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 216, p.GetParserRuleContext()) == 1 {\n\t\t\tp.SetState(1520)\n\t\t\tp.GetErrorHandler().Sync(p)\n\n\t\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 215, p.GetParserRuleContext()) == 1 {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1519)\n\t\t\t\t\tp.Match(SQLiteParserAS_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t} else if p.HasError() { // JIM\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1522)\n\t\t\t\tp.Table_alias_fallback()\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\tp.SetState(1530)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\tswitch p.GetTokenStream().LA(1) {\n\t\tcase SQLiteParserINDEXED_:\n\t\t\t{\n\t\t\t\tp.SetState(1525)\n\t\t\t\tp.Match(SQLiteParserINDEXED_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1526)\n\t\t\t\tp.Match(SQLiteParserBY_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1527)\n\t\t\t\tp.Index_name()\n\t\t\t}\n\n\t\tcase SQLiteParserNOT_:\n\t\t\t{\n\t\t\t\tp.SetState(1528)\n\t\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1529)\n\t\t\t\tp.Match(SQLiteParserINDEXED_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase SQLiteParserEOF, SQLiteParserSCOL, SQLiteParserCLOSE_PAR, SQLiteParserCOMMA, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserATTACH_, SQLiteParserBEGIN_, SQLiteParserCOMMIT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserDELETE_, SQLiteParserDETACH_, SQLiteParserDROP_, SQLiteParserEND_, SQLiteParserEXCEPT_, SQLiteParserEXPLAIN_, SQLiteParserFULL_, SQLiteParserGROUP_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINTERSECT_, SQLiteParserJOIN_, SQLiteParserLEFT_, SQLiteParserLIMIT_, SQLiteParserNATURAL_, SQLiteParserON_, SQLiteParserORDER_, SQLiteParserPRAGMA_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserREPLACE_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserUNION_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWINDOW_:\n\n\t\tdefault:\n\t\t}\n\n\tcase 6:\n\t\tp.EnterOuterAlt(localctx, 6)\n\t\tp.SetState(1535)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 218, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(1532)\n\t\t\t\tp.Schema_name()\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1533)\n\t\t\t\tp.Match(SQLiteParserDOT)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(1537)\n\t\t\tp.Table_function_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(1538)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1539)\n\t\t\tp.expr(0)\n\t\t}\n\t\tp.SetState(1544)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(1540)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1541)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t\tp.SetState(1546)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(1547)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1552)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 221, p.GetParserRuleContext()) == 1 {\n\t\t\tp.SetState(1549)\n\t\t\tp.GetErrorHandler().Sync(p)\n\n\t\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 220, p.GetParserRuleContext()) == 1 {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1548)\n\t\t\t\t\tp.Match(SQLiteParserAS_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t} else if p.HasError() { // JIM\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1551)\n\t\t\t\tp.Table_alias_fallback()\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\n\tcase 7:\n\t\tp.EnterOuterAlt(localctx, 7)\n\t\t{\n\t\t\tp.SetState(1554)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1564)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 223, p.GetParserRuleContext()) {\n\t\tcase 1:\n\t\t\t{\n\t\t\t\tp.SetState(1555)\n\t\t\t\tp.Table_or_subquery()\n\t\t\t}\n\t\t\tp.SetState(1560)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1556)\n\t\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1557)\n\t\t\t\t\tp.Table_or_subquery()\n\t\t\t\t}\n\n\t\t\t\tp.SetState(1562)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t\t}\n\n\t\tcase 2:\n\t\t\t{\n\t\t\t\tp.SetState(1563)\n\t\t\t\tp.Join_clause()\n\t\t\t}\n\n\t\tcase antlr.ATNInvalidAltNumber:\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(1566)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 8:\n\t\tp.EnterOuterAlt(localctx, 8)\n\t\t{\n\t\t\tp.SetState(1568)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1569)\n\t\t\tp.Select_stmt()\n\t\t}\n\t\t{\n\t\t\tp.SetState(1570)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1575)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 225, p.GetParserRuleContext()) == 1 {\n\t\t\tp.SetState(1572)\n\t\t\tp.GetErrorHandler().Sync(p)\n\n\t\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 224, p.GetParserRuleContext()) == 1 {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1571)\n\t\t\t\t\tp.Match(SQLiteParserAS_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t} else if p.HasError() { // JIM\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1574)\n\t\t\t\tp.Table_alias_fallback()\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IResult_columnContext is an interface to support dynamic dispatch.\ntype IResult_columnContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tSTAR() antlr.TerminalNode\n\tTable_name() ITable_nameContext\n\tDOT() antlr.TerminalNode\n\tExpr() IExprContext\n\tColumn_alias() IColumn_aliasContext\n\tAS_() antlr.TerminalNode\n\n\t// IsResult_columnContext differentiates from other interfaces.\n\tIsResult_columnContext()\n}\n\ntype Result_columnContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyResult_columnContext() *Result_columnContext {\n\tvar p = new(Result_columnContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_result_column\n\treturn p\n}\n\nfunc InitEmptyResult_columnContext(p *Result_columnContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_result_column\n}\n\nfunc (*Result_columnContext) IsResult_columnContext() {}\n\nfunc NewResult_columnContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Result_columnContext {\n\tvar p = new(Result_columnContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_result_column\n\n\treturn p\n}\n\nfunc (s *Result_columnContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Result_columnContext) STAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTAR, 0)\n}\n\nfunc (s *Result_columnContext) Table_name() ITable_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_nameContext)\n}\n\nfunc (s *Result_columnContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Result_columnContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Result_columnContext) Column_alias() IColumn_aliasContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_aliasContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_aliasContext)\n}\n\nfunc (s *Result_columnContext) AS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAS_, 0)\n}\n\nfunc (s *Result_columnContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Result_columnContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Result_columnContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterResult_column(s)\n\t}\n}\n\nfunc (s *Result_columnContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitResult_column(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Result_column() (localctx IResult_columnContext) {\n\tlocalctx = NewResult_columnContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 98, SQLiteParserRULE_result_column)\n\tvar _la int\n\n\tp.SetState(1591)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 229, p.GetParserRuleContext()) {\n\tcase 1:\n\t\tp.EnterOuterAlt(localctx, 1)\n\t\t{\n\t\t\tp.SetState(1579)\n\t\t\tp.Match(SQLiteParserSTAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 2:\n\t\tp.EnterOuterAlt(localctx, 2)\n\t\t{\n\t\t\tp.SetState(1580)\n\t\t\tp.Table_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(1581)\n\t\t\tp.Match(SQLiteParserDOT)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1582)\n\t\t\tp.Match(SQLiteParserSTAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 3:\n\t\tp.EnterOuterAlt(localctx, 3)\n\t\t{\n\t\t\tp.SetState(1584)\n\t\t\tp.expr(0)\n\t\t}\n\t\tp.SetState(1589)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserAS_ || _la == SQLiteParserIDENTIFIER || _la == SQLiteParserSTRING_LITERAL {\n\t\t\tp.SetState(1586)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif _la == SQLiteParserAS_ {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1585)\n\t\t\t\t\tp.Match(SQLiteParserAS_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1588)\n\t\t\t\tp.Column_alias()\n\t\t\t}\n\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IJoin_operatorContext is an interface to support dynamic dispatch.\ntype IJoin_operatorContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tCOMMA() antlr.TerminalNode\n\tJOIN_() antlr.TerminalNode\n\tNATURAL_() antlr.TerminalNode\n\tINNER_() antlr.TerminalNode\n\tLEFT_() antlr.TerminalNode\n\tRIGHT_() antlr.TerminalNode\n\tFULL_() antlr.TerminalNode\n\tOUTER_() antlr.TerminalNode\n\tCROSS_() antlr.TerminalNode\n\n\t// IsJoin_operatorContext differentiates from other interfaces.\n\tIsJoin_operatorContext()\n}\n\ntype Join_operatorContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyJoin_operatorContext() *Join_operatorContext {\n\tvar p = new(Join_operatorContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_join_operator\n\treturn p\n}\n\nfunc InitEmptyJoin_operatorContext(p *Join_operatorContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_join_operator\n}\n\nfunc (*Join_operatorContext) IsJoin_operatorContext() {}\n\nfunc NewJoin_operatorContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Join_operatorContext {\n\tvar p = new(Join_operatorContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_join_operator\n\n\treturn p\n}\n\nfunc (s *Join_operatorContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Join_operatorContext) COMMA() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, 0)\n}\n\nfunc (s *Join_operatorContext) JOIN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserJOIN_, 0)\n}\n\nfunc (s *Join_operatorContext) NATURAL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNATURAL_, 0)\n}\n\nfunc (s *Join_operatorContext) INNER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINNER_, 0)\n}\n\nfunc (s *Join_operatorContext) LEFT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLEFT_, 0)\n}\n\nfunc (s *Join_operatorContext) RIGHT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRIGHT_, 0)\n}\n\nfunc (s *Join_operatorContext) FULL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFULL_, 0)\n}\n\nfunc (s *Join_operatorContext) OUTER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOUTER_, 0)\n}\n\nfunc (s *Join_operatorContext) CROSS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCROSS_, 0)\n}\n\nfunc (s *Join_operatorContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Join_operatorContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Join_operatorContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterJoin_operator(s)\n\t}\n}\n\nfunc (s *Join_operatorContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitJoin_operator(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Join_operator() (localctx IJoin_operatorContext) {\n\tlocalctx = NewJoin_operatorContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 100, SQLiteParserRULE_join_operator)\n\tvar _la int\n\n\tp.SetState(1607)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserCOMMA:\n\t\tp.EnterOuterAlt(localctx, 1)\n\t\t{\n\t\t\tp.SetState(1593)\n\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserFULL_, SQLiteParserINNER_, SQLiteParserJOIN_, SQLiteParserLEFT_, SQLiteParserNATURAL_, SQLiteParserRIGHT_:\n\t\tp.EnterOuterAlt(localctx, 2)\n\t\tp.SetState(1595)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserNATURAL_ {\n\t\t\t{\n\t\t\t\tp.SetState(1594)\n\t\t\t\tp.Match(SQLiteParserNATURAL_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\t\tp.SetState(1602)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\tswitch p.GetTokenStream().LA(1) {\n\t\tcase SQLiteParserFULL_, SQLiteParserLEFT_, SQLiteParserRIGHT_:\n\t\t\t{\n\t\t\t\tp.SetState(1597)\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\t\tif !((int64((_la-78)) & ^0x3f) == 0 && ((int64(1)<<(_la-78))&562949954469889) != 0) {\n\t\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t\t} else {\n\t\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\t\tp.Consume()\n\t\t\t\t}\n\t\t\t}\n\t\t\tp.SetState(1599)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif _la == SQLiteParserOUTER_ {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1598)\n\t\t\t\t\tp.Match(SQLiteParserOUTER_)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t}\n\n\t\tcase SQLiteParserINNER_:\n\t\t\t{\n\t\t\t\tp.SetState(1601)\n\t\t\t\tp.Match(SQLiteParserINNER_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\tcase SQLiteParserJOIN_:\n\n\t\tdefault:\n\t\t}\n\t\t{\n\t\t\tp.SetState(1604)\n\t\t\tp.Match(SQLiteParserJOIN_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserCROSS_:\n\t\tp.EnterOuterAlt(localctx, 3)\n\t\t{\n\t\t\tp.SetState(1605)\n\t\t\tp.Match(SQLiteParserCROSS_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1606)\n\t\t\tp.Match(SQLiteParserJOIN_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tdefault:\n\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IJoin_constraintContext is an interface to support dynamic dispatch.\ntype IJoin_constraintContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tON_() antlr.TerminalNode\n\tExpr() IExprContext\n\tUSING_() antlr.TerminalNode\n\tOPEN_PAR() antlr.TerminalNode\n\tAllColumn_name() []IColumn_nameContext\n\tColumn_name(i int) IColumn_nameContext\n\tCLOSE_PAR() antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsJoin_constraintContext differentiates from other interfaces.\n\tIsJoin_constraintContext()\n}\n\ntype Join_constraintContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyJoin_constraintContext() *Join_constraintContext {\n\tvar p = new(Join_constraintContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_join_constraint\n\treturn p\n}\n\nfunc InitEmptyJoin_constraintContext(p *Join_constraintContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_join_constraint\n}\n\nfunc (*Join_constraintContext) IsJoin_constraintContext() {}\n\nfunc NewJoin_constraintContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Join_constraintContext {\n\tvar p = new(Join_constraintContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_join_constraint\n\n\treturn p\n}\n\nfunc (s *Join_constraintContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Join_constraintContext) ON_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserON_, 0)\n}\n\nfunc (s *Join_constraintContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Join_constraintContext) USING_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUSING_, 0)\n}\n\nfunc (s *Join_constraintContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Join_constraintContext) AllColumn_name() []IColumn_nameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_nameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_nameContext); ok {\n\t\t\ttst[i] = t.(IColumn_nameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Join_constraintContext) Column_name(i int) IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Join_constraintContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Join_constraintContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Join_constraintContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Join_constraintContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Join_constraintContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Join_constraintContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterJoin_constraint(s)\n\t}\n}\n\nfunc (s *Join_constraintContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitJoin_constraint(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Join_constraint() (localctx IJoin_constraintContext) {\n\tlocalctx = NewJoin_constraintContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 102, SQLiteParserRULE_join_constraint)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(1623)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 235, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(1609)\n\t\t\tp.Match(SQLiteParserON_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1610)\n\t\t\tp.expr(0)\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t} else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 235, p.GetParserRuleContext()) == 2 {\n\t\t{\n\t\t\tp.SetState(1611)\n\t\t\tp.Match(SQLiteParserUSING_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1612)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1613)\n\t\t\tp.Column_name()\n\t\t}\n\t\tp.SetState(1618)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(1614)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1615)\n\t\t\t\tp.Column_name()\n\t\t\t}\n\n\t\t\tp.SetState(1620)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\t\t{\n\t\t\tp.SetState(1621)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ICompound_operatorContext is an interface to support dynamic dispatch.\ntype ICompound_operatorContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tUNION_() antlr.TerminalNode\n\tALL_() antlr.TerminalNode\n\tINTERSECT_() antlr.TerminalNode\n\tEXCEPT_() antlr.TerminalNode\n\n\t// IsCompound_operatorContext differentiates from other interfaces.\n\tIsCompound_operatorContext()\n}\n\ntype Compound_operatorContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyCompound_operatorContext() *Compound_operatorContext {\n\tvar p = new(Compound_operatorContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_compound_operator\n\treturn p\n}\n\nfunc InitEmptyCompound_operatorContext(p *Compound_operatorContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_compound_operator\n}\n\nfunc (*Compound_operatorContext) IsCompound_operatorContext() {}\n\nfunc NewCompound_operatorContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Compound_operatorContext {\n\tvar p = new(Compound_operatorContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_compound_operator\n\n\treturn p\n}\n\nfunc (s *Compound_operatorContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Compound_operatorContext) UNION_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUNION_, 0)\n}\n\nfunc (s *Compound_operatorContext) ALL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserALL_, 0)\n}\n\nfunc (s *Compound_operatorContext) INTERSECT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINTERSECT_, 0)\n}\n\nfunc (s *Compound_operatorContext) EXCEPT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXCEPT_, 0)\n}\n\nfunc (s *Compound_operatorContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Compound_operatorContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Compound_operatorContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterCompound_operator(s)\n\t}\n}\n\nfunc (s *Compound_operatorContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitCompound_operator(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Compound_operator() (localctx ICompound_operatorContext) {\n\tlocalctx = NewCompound_operatorContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 104, SQLiteParserRULE_compound_operator)\n\tvar _la int\n\n\tp.SetState(1631)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserUNION_:\n\t\tp.EnterOuterAlt(localctx, 1)\n\t\t{\n\t\t\tp.SetState(1625)\n\t\t\tp.Match(SQLiteParserUNION_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1627)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserALL_ {\n\t\t\t{\n\t\t\t\tp.SetState(1626)\n\t\t\t\tp.Match(SQLiteParserALL_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\tcase SQLiteParserINTERSECT_:\n\t\tp.EnterOuterAlt(localctx, 2)\n\t\t{\n\t\t\tp.SetState(1629)\n\t\t\tp.Match(SQLiteParserINTERSECT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserEXCEPT_:\n\t\tp.EnterOuterAlt(localctx, 3)\n\t\t{\n\t\t\tp.SetState(1630)\n\t\t\tp.Match(SQLiteParserEXCEPT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tdefault:\n\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IUpdate_stmtContext is an interface to support dynamic dispatch.\ntype IUpdate_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tUPDATE_() antlr.TerminalNode\n\tQualified_table_name() IQualified_table_nameContext\n\tSET_() antlr.TerminalNode\n\tAllASSIGN() []antlr.TerminalNode\n\tASSIGN(i int) antlr.TerminalNode\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\tAllColumn_name() []IColumn_nameContext\n\tColumn_name(i int) IColumn_nameContext\n\tAllColumn_name_list() []IColumn_name_listContext\n\tColumn_name_list(i int) IColumn_name_listContext\n\tWith_clause() IWith_clauseContext\n\tOR_() antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\tWHERE_() antlr.TerminalNode\n\tReturning_clause() IReturning_clauseContext\n\tROLLBACK_() antlr.TerminalNode\n\tABORT_() antlr.TerminalNode\n\tREPLACE_() antlr.TerminalNode\n\tFAIL_() antlr.TerminalNode\n\tIGNORE_() antlr.TerminalNode\n\n\t// IsUpdate_stmtContext differentiates from other interfaces.\n\tIsUpdate_stmtContext()\n}\n\ntype Update_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyUpdate_stmtContext() *Update_stmtContext {\n\tvar p = new(Update_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_update_stmt\n\treturn p\n}\n\nfunc InitEmptyUpdate_stmtContext(p *Update_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_update_stmt\n}\n\nfunc (*Update_stmtContext) IsUpdate_stmtContext() {}\n\nfunc NewUpdate_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Update_stmtContext {\n\tvar p = new(Update_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_update_stmt\n\n\treturn p\n}\n\nfunc (s *Update_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Update_stmtContext) UPDATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUPDATE_, 0)\n}\n\nfunc (s *Update_stmtContext) Qualified_table_name() IQualified_table_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IQualified_table_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IQualified_table_nameContext)\n}\n\nfunc (s *Update_stmtContext) SET_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSET_, 0)\n}\n\nfunc (s *Update_stmtContext) AllASSIGN() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserASSIGN)\n}\n\nfunc (s *Update_stmtContext) ASSIGN(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserASSIGN, i)\n}\n\nfunc (s *Update_stmtContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Update_stmtContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Update_stmtContext) AllColumn_name() []IColumn_nameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_nameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_nameContext); ok {\n\t\t\ttst[i] = t.(IColumn_nameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Update_stmtContext) Column_name(i int) IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Update_stmtContext) AllColumn_name_list() []IColumn_name_listContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_name_listContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_name_listContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_name_listContext); ok {\n\t\t\ttst[i] = t.(IColumn_name_listContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Update_stmtContext) Column_name_list(i int) IColumn_name_listContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_name_listContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_name_listContext)\n}\n\nfunc (s *Update_stmtContext) With_clause() IWith_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IWith_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IWith_clauseContext)\n}\n\nfunc (s *Update_stmtContext) OR_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOR_, 0)\n}\n\nfunc (s *Update_stmtContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Update_stmtContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Update_stmtContext) WHERE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWHERE_, 0)\n}\n\nfunc (s *Update_stmtContext) Returning_clause() IReturning_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IReturning_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IReturning_clauseContext)\n}\n\nfunc (s *Update_stmtContext) ROLLBACK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROLLBACK_, 0)\n}\n\nfunc (s *Update_stmtContext) ABORT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserABORT_, 0)\n}\n\nfunc (s *Update_stmtContext) REPLACE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserREPLACE_, 0)\n}\n\nfunc (s *Update_stmtContext) FAIL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFAIL_, 0)\n}\n\nfunc (s *Update_stmtContext) IGNORE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIGNORE_, 0)\n}\n\nfunc (s *Update_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Update_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Update_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterUpdate_stmt(s)\n\t}\n}\n\nfunc (s *Update_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitUpdate_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Update_stmt() (localctx IUpdate_stmtContext) {\n\tlocalctx = NewUpdate_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 106, SQLiteParserRULE_update_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(1634)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserWITH_ {\n\t\t{\n\t\t\tp.SetState(1633)\n\t\t\tp.With_clause()\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(1636)\n\t\tp.Match(SQLiteParserUPDATE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1639)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 239, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(1637)\n\t\t\tp.Match(SQLiteParserOR_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1638)\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif !(_la == SQLiteParserABORT_ || ((int64((_la-74)) & ^0x3f) == 0 && ((int64(1)<<(_la-74))&19140298416325121) != 0)) {\n\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t} else {\n\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\tp.Consume()\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(1641)\n\t\tp.Qualified_table_name()\n\t}\n\t{\n\t\tp.SetState(1642)\n\t\tp.Match(SQLiteParserSET_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1645)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 240, p.GetParserRuleContext()) {\n\tcase 1:\n\t\t{\n\t\t\tp.SetState(1643)\n\t\t\tp.Column_name()\n\t\t}\n\n\tcase 2:\n\t\t{\n\t\t\tp.SetState(1644)\n\t\t\tp.Column_name_list()\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(1647)\n\t\tp.Match(SQLiteParserASSIGN)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(1648)\n\t\tp.expr(0)\n\t}\n\tp.SetState(1659)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor _la == SQLiteParserCOMMA {\n\t\t{\n\t\t\tp.SetState(1649)\n\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1652)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 241, p.GetParserRuleContext()) {\n\t\tcase 1:\n\t\t\t{\n\t\t\t\tp.SetState(1650)\n\t\t\t\tp.Column_name()\n\t\t\t}\n\n\t\tcase 2:\n\t\t\t{\n\t\t\t\tp.SetState(1651)\n\t\t\t\tp.Column_name_list()\n\t\t\t}\n\n\t\tcase antlr.ATNInvalidAltNumber:\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(1654)\n\t\t\tp.Match(SQLiteParserASSIGN)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1655)\n\t\t\tp.expr(0)\n\t\t}\n\n\t\tp.SetState(1661)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\tp.SetState(1664)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserWHERE_ {\n\t\t{\n\t\t\tp.SetState(1662)\n\t\t\tp.Match(SQLiteParserWHERE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1663)\n\t\t\tp.expr(0)\n\t\t}\n\n\t}\n\tp.SetState(1667)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserRETURNING_ {\n\t\t{\n\t\t\tp.SetState(1666)\n\t\t\tp.Returning_clause()\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IColumn_name_listContext is an interface to support dynamic dispatch.\ntype IColumn_name_listContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tOPEN_PAR() antlr.TerminalNode\n\tAllColumn_name() []IColumn_nameContext\n\tColumn_name(i int) IColumn_nameContext\n\tCLOSE_PAR() antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsColumn_name_listContext differentiates from other interfaces.\n\tIsColumn_name_listContext()\n}\n\ntype Column_name_listContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyColumn_name_listContext() *Column_name_listContext {\n\tvar p = new(Column_name_listContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_column_name_list\n\treturn p\n}\n\nfunc InitEmptyColumn_name_listContext(p *Column_name_listContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_column_name_list\n}\n\nfunc (*Column_name_listContext) IsColumn_name_listContext() {}\n\nfunc NewColumn_name_listContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Column_name_listContext {\n\tvar p = new(Column_name_listContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_column_name_list\n\n\treturn p\n}\n\nfunc (s *Column_name_listContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Column_name_listContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Column_name_listContext) AllColumn_name() []IColumn_nameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_nameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_nameContext); ok {\n\t\t\ttst[i] = t.(IColumn_nameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Column_name_listContext) Column_name(i int) IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Column_name_listContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Column_name_listContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Column_name_listContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Column_name_listContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Column_name_listContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Column_name_listContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterColumn_name_list(s)\n\t}\n}\n\nfunc (s *Column_name_listContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitColumn_name_list(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Column_name_list() (localctx IColumn_name_listContext) {\n\tlocalctx = NewColumn_name_listContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 108, SQLiteParserRULE_column_name_list)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1669)\n\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(1670)\n\t\tp.Column_name()\n\t}\n\tp.SetState(1675)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor _la == SQLiteParserCOMMA {\n\t\t{\n\t\t\tp.SetState(1671)\n\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1672)\n\t\t\tp.Column_name()\n\t\t}\n\n\t\tp.SetState(1677)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\t{\n\t\tp.SetState(1678)\n\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IUpdate_stmt_limitedContext is an interface to support dynamic dispatch.\ntype IUpdate_stmt_limitedContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tUPDATE_() antlr.TerminalNode\n\tQualified_table_name() IQualified_table_nameContext\n\tSET_() antlr.TerminalNode\n\tAllASSIGN() []antlr.TerminalNode\n\tASSIGN(i int) antlr.TerminalNode\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\tAllColumn_name() []IColumn_nameContext\n\tColumn_name(i int) IColumn_nameContext\n\tAllColumn_name_list() []IColumn_name_listContext\n\tColumn_name_list(i int) IColumn_name_listContext\n\tWith_clause() IWith_clauseContext\n\tOR_() antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\tWHERE_() antlr.TerminalNode\n\tLimit_stmt() ILimit_stmtContext\n\tROLLBACK_() antlr.TerminalNode\n\tABORT_() antlr.TerminalNode\n\tREPLACE_() antlr.TerminalNode\n\tFAIL_() antlr.TerminalNode\n\tIGNORE_() antlr.TerminalNode\n\tOrder_by_stmt() IOrder_by_stmtContext\n\n\t// IsUpdate_stmt_limitedContext differentiates from other interfaces.\n\tIsUpdate_stmt_limitedContext()\n}\n\ntype Update_stmt_limitedContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyUpdate_stmt_limitedContext() *Update_stmt_limitedContext {\n\tvar p = new(Update_stmt_limitedContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_update_stmt_limited\n\treturn p\n}\n\nfunc InitEmptyUpdate_stmt_limitedContext(p *Update_stmt_limitedContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_update_stmt_limited\n}\n\nfunc (*Update_stmt_limitedContext) IsUpdate_stmt_limitedContext() {}\n\nfunc NewUpdate_stmt_limitedContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Update_stmt_limitedContext {\n\tvar p = new(Update_stmt_limitedContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_update_stmt_limited\n\n\treturn p\n}\n\nfunc (s *Update_stmt_limitedContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Update_stmt_limitedContext) UPDATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUPDATE_, 0)\n}\n\nfunc (s *Update_stmt_limitedContext) Qualified_table_name() IQualified_table_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IQualified_table_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IQualified_table_nameContext)\n}\n\nfunc (s *Update_stmt_limitedContext) SET_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSET_, 0)\n}\n\nfunc (s *Update_stmt_limitedContext) AllASSIGN() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserASSIGN)\n}\n\nfunc (s *Update_stmt_limitedContext) ASSIGN(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserASSIGN, i)\n}\n\nfunc (s *Update_stmt_limitedContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Update_stmt_limitedContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Update_stmt_limitedContext) AllColumn_name() []IColumn_nameContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_nameContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_nameContext); ok {\n\t\t\ttst[i] = t.(IColumn_nameContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Update_stmt_limitedContext) Column_name(i int) IColumn_nameContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_nameContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_nameContext)\n}\n\nfunc (s *Update_stmt_limitedContext) AllColumn_name_list() []IColumn_name_listContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IColumn_name_listContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IColumn_name_listContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IColumn_name_listContext); ok {\n\t\t\ttst[i] = t.(IColumn_name_listContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Update_stmt_limitedContext) Column_name_list(i int) IColumn_name_listContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_name_listContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_name_listContext)\n}\n\nfunc (s *Update_stmt_limitedContext) With_clause() IWith_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IWith_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IWith_clauseContext)\n}\n\nfunc (s *Update_stmt_limitedContext) OR_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOR_, 0)\n}\n\nfunc (s *Update_stmt_limitedContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Update_stmt_limitedContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Update_stmt_limitedContext) WHERE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWHERE_, 0)\n}\n\nfunc (s *Update_stmt_limitedContext) Limit_stmt() ILimit_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ILimit_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ILimit_stmtContext)\n}\n\nfunc (s *Update_stmt_limitedContext) ROLLBACK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROLLBACK_, 0)\n}\n\nfunc (s *Update_stmt_limitedContext) ABORT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserABORT_, 0)\n}\n\nfunc (s *Update_stmt_limitedContext) REPLACE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserREPLACE_, 0)\n}\n\nfunc (s *Update_stmt_limitedContext) FAIL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFAIL_, 0)\n}\n\nfunc (s *Update_stmt_limitedContext) IGNORE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIGNORE_, 0)\n}\n\nfunc (s *Update_stmt_limitedContext) Order_by_stmt() IOrder_by_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IOrder_by_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IOrder_by_stmtContext)\n}\n\nfunc (s *Update_stmt_limitedContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Update_stmt_limitedContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Update_stmt_limitedContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterUpdate_stmt_limited(s)\n\t}\n}\n\nfunc (s *Update_stmt_limitedContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitUpdate_stmt_limited(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Update_stmt_limited() (localctx IUpdate_stmt_limitedContext) {\n\tlocalctx = NewUpdate_stmt_limitedContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 110, SQLiteParserRULE_update_stmt_limited)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(1681)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserWITH_ {\n\t\t{\n\t\t\tp.SetState(1680)\n\t\t\tp.With_clause()\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(1683)\n\t\tp.Match(SQLiteParserUPDATE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1686)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 247, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(1684)\n\t\t\tp.Match(SQLiteParserOR_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1685)\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif !(_la == SQLiteParserABORT_ || ((int64((_la-74)) & ^0x3f) == 0 && ((int64(1)<<(_la-74))&19140298416325121) != 0)) {\n\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t} else {\n\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\tp.Consume()\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(1688)\n\t\tp.Qualified_table_name()\n\t}\n\t{\n\t\tp.SetState(1689)\n\t\tp.Match(SQLiteParserSET_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1692)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 248, p.GetParserRuleContext()) {\n\tcase 1:\n\t\t{\n\t\t\tp.SetState(1690)\n\t\t\tp.Column_name()\n\t\t}\n\n\tcase 2:\n\t\t{\n\t\t\tp.SetState(1691)\n\t\t\tp.Column_name_list()\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(1694)\n\t\tp.Match(SQLiteParserASSIGN)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(1695)\n\t\tp.expr(0)\n\t}\n\tp.SetState(1706)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor _la == SQLiteParserCOMMA {\n\t\t{\n\t\t\tp.SetState(1696)\n\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1699)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 249, p.GetParserRuleContext()) {\n\t\tcase 1:\n\t\t\t{\n\t\t\t\tp.SetState(1697)\n\t\t\t\tp.Column_name()\n\t\t\t}\n\n\t\tcase 2:\n\t\t\t{\n\t\t\t\tp.SetState(1698)\n\t\t\t\tp.Column_name_list()\n\t\t\t}\n\n\t\tcase antlr.ATNInvalidAltNumber:\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(1701)\n\t\t\tp.Match(SQLiteParserASSIGN)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1702)\n\t\t\tp.expr(0)\n\t\t}\n\n\t\tp.SetState(1708)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\tp.SetState(1711)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserWHERE_ {\n\t\t{\n\t\t\tp.SetState(1709)\n\t\t\tp.Match(SQLiteParserWHERE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1710)\n\t\t\tp.expr(0)\n\t\t}\n\n\t}\n\tp.SetState(1717)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserLIMIT_ || _la == SQLiteParserORDER_ {\n\t\tp.SetState(1714)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserORDER_ {\n\t\t\t{\n\t\t\t\tp.SetState(1713)\n\t\t\t\tp.Order_by_stmt()\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(1716)\n\t\t\tp.Limit_stmt()\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IQualified_table_nameContext is an interface to support dynamic dispatch.\ntype IQualified_table_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tTable_name() ITable_nameContext\n\tSchema_name() ISchema_nameContext\n\tDOT() antlr.TerminalNode\n\tAS_() antlr.TerminalNode\n\tAlias() IAliasContext\n\tINDEXED_() antlr.TerminalNode\n\tBY_() antlr.TerminalNode\n\tIndex_name() IIndex_nameContext\n\tNOT_() antlr.TerminalNode\n\n\t// IsQualified_table_nameContext differentiates from other interfaces.\n\tIsQualified_table_nameContext()\n}\n\ntype Qualified_table_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyQualified_table_nameContext() *Qualified_table_nameContext {\n\tvar p = new(Qualified_table_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_qualified_table_name\n\treturn p\n}\n\nfunc InitEmptyQualified_table_nameContext(p *Qualified_table_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_qualified_table_name\n}\n\nfunc (*Qualified_table_nameContext) IsQualified_table_nameContext() {}\n\nfunc NewQualified_table_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Qualified_table_nameContext {\n\tvar p = new(Qualified_table_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_qualified_table_name\n\n\treturn p\n}\n\nfunc (s *Qualified_table_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Qualified_table_nameContext) Table_name() ITable_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ITable_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ITable_nameContext)\n}\n\nfunc (s *Qualified_table_nameContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Qualified_table_nameContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Qualified_table_nameContext) AS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAS_, 0)\n}\n\nfunc (s *Qualified_table_nameContext) Alias() IAliasContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAliasContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAliasContext)\n}\n\nfunc (s *Qualified_table_nameContext) INDEXED_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINDEXED_, 0)\n}\n\nfunc (s *Qualified_table_nameContext) BY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBY_, 0)\n}\n\nfunc (s *Qualified_table_nameContext) Index_name() IIndex_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IIndex_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IIndex_nameContext)\n}\n\nfunc (s *Qualified_table_nameContext) NOT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_, 0)\n}\n\nfunc (s *Qualified_table_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Qualified_table_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Qualified_table_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterQualified_table_name(s)\n\t}\n}\n\nfunc (s *Qualified_table_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitQualified_table_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Qualified_table_name() (localctx IQualified_table_nameContext) {\n\tlocalctx = NewQualified_table_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 112, SQLiteParserRULE_qualified_table_name)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(1722)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 254, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(1719)\n\t\t\tp.Schema_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(1720)\n\t\t\tp.Match(SQLiteParserDOT)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(1724)\n\t\tp.Table_name()\n\t}\n\tp.SetState(1727)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserAS_ {\n\t\t{\n\t\t\tp.SetState(1725)\n\t\t\tp.Match(SQLiteParserAS_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1726)\n\t\t\tp.Alias()\n\t\t}\n\n\t}\n\tp.SetState(1734)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserINDEXED_:\n\t\t{\n\t\t\tp.SetState(1729)\n\t\t\tp.Match(SQLiteParserINDEXED_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1730)\n\t\t\tp.Match(SQLiteParserBY_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1731)\n\t\t\tp.Index_name()\n\t\t}\n\n\tcase SQLiteParserNOT_:\n\t\t{\n\t\t\tp.SetState(1732)\n\t\t\tp.Match(SQLiteParserNOT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1733)\n\t\t\tp.Match(SQLiteParserINDEXED_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserEOF, SQLiteParserSCOL, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserATTACH_, SQLiteParserBEGIN_, SQLiteParserCOMMIT_, SQLiteParserCREATE_, SQLiteParserDELETE_, SQLiteParserDETACH_, SQLiteParserDROP_, SQLiteParserEND_, SQLiteParserEXPLAIN_, SQLiteParserINSERT_, SQLiteParserLIMIT_, SQLiteParserORDER_, SQLiteParserPRAGMA_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserREPLACE_, SQLiteParserRETURNING_, SQLiteParserROLLBACK_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserSET_, SQLiteParserUPDATE_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserWHERE_, SQLiteParserWITH_:\n\n\tdefault:\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IVacuum_stmtContext is an interface to support dynamic dispatch.\ntype IVacuum_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tVACUUM_() antlr.TerminalNode\n\tSchema_name() ISchema_nameContext\n\tINTO_() antlr.TerminalNode\n\tFilename() IFilenameContext\n\n\t// IsVacuum_stmtContext differentiates from other interfaces.\n\tIsVacuum_stmtContext()\n}\n\ntype Vacuum_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyVacuum_stmtContext() *Vacuum_stmtContext {\n\tvar p = new(Vacuum_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_vacuum_stmt\n\treturn p\n}\n\nfunc InitEmptyVacuum_stmtContext(p *Vacuum_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_vacuum_stmt\n}\n\nfunc (*Vacuum_stmtContext) IsVacuum_stmtContext() {}\n\nfunc NewVacuum_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Vacuum_stmtContext {\n\tvar p = new(Vacuum_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_vacuum_stmt\n\n\treturn p\n}\n\nfunc (s *Vacuum_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Vacuum_stmtContext) VACUUM_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserVACUUM_, 0)\n}\n\nfunc (s *Vacuum_stmtContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Vacuum_stmtContext) INTO_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINTO_, 0)\n}\n\nfunc (s *Vacuum_stmtContext) Filename() IFilenameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IFilenameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IFilenameContext)\n}\n\nfunc (s *Vacuum_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Vacuum_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Vacuum_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterVacuum_stmt(s)\n\t}\n}\n\nfunc (s *Vacuum_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitVacuum_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Vacuum_stmt() (localctx IVacuum_stmtContext) {\n\tlocalctx = NewVacuum_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 114, SQLiteParserRULE_vacuum_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1736)\n\t\tp.Match(SQLiteParserVACUUM_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1738)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 257, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(1737)\n\t\t\tp.Schema_name()\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\tp.SetState(1742)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserINTO_ {\n\t\t{\n\t\t\tp.SetState(1740)\n\t\t\tp.Match(SQLiteParserINTO_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1741)\n\t\t\tp.Filename()\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IFilter_clauseContext is an interface to support dynamic dispatch.\ntype IFilter_clauseContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tFILTER_() antlr.TerminalNode\n\tOPEN_PAR() antlr.TerminalNode\n\tWHERE_() antlr.TerminalNode\n\tExpr() IExprContext\n\tCLOSE_PAR() antlr.TerminalNode\n\n\t// IsFilter_clauseContext differentiates from other interfaces.\n\tIsFilter_clauseContext()\n}\n\ntype Filter_clauseContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyFilter_clauseContext() *Filter_clauseContext {\n\tvar p = new(Filter_clauseContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_filter_clause\n\treturn p\n}\n\nfunc InitEmptyFilter_clauseContext(p *Filter_clauseContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_filter_clause\n}\n\nfunc (*Filter_clauseContext) IsFilter_clauseContext() {}\n\nfunc NewFilter_clauseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Filter_clauseContext {\n\tvar p = new(Filter_clauseContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_filter_clause\n\n\treturn p\n}\n\nfunc (s *Filter_clauseContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Filter_clauseContext) FILTER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFILTER_, 0)\n}\n\nfunc (s *Filter_clauseContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Filter_clauseContext) WHERE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWHERE_, 0)\n}\n\nfunc (s *Filter_clauseContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Filter_clauseContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Filter_clauseContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Filter_clauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Filter_clauseContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterFilter_clause(s)\n\t}\n}\n\nfunc (s *Filter_clauseContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitFilter_clause(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Filter_clause() (localctx IFilter_clauseContext) {\n\tlocalctx = NewFilter_clauseContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 116, SQLiteParserRULE_filter_clause)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1744)\n\t\tp.Match(SQLiteParserFILTER_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(1745)\n\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(1746)\n\t\tp.Match(SQLiteParserWHERE_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(1747)\n\t\tp.expr(0)\n\t}\n\t{\n\t\tp.SetState(1748)\n\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IWindow_defnContext is an interface to support dynamic dispatch.\ntype IWindow_defnContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tOPEN_PAR() antlr.TerminalNode\n\tCLOSE_PAR() antlr.TerminalNode\n\tORDER_() antlr.TerminalNode\n\tAllBY_() []antlr.TerminalNode\n\tBY_(i int) antlr.TerminalNode\n\tAllOrdering_term() []IOrdering_termContext\n\tOrdering_term(i int) IOrdering_termContext\n\tBase_window_name() IBase_window_nameContext\n\tPARTITION_() antlr.TerminalNode\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\tFrame_spec() IFrame_specContext\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsWindow_defnContext differentiates from other interfaces.\n\tIsWindow_defnContext()\n}\n\ntype Window_defnContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyWindow_defnContext() *Window_defnContext {\n\tvar p = new(Window_defnContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_window_defn\n\treturn p\n}\n\nfunc InitEmptyWindow_defnContext(p *Window_defnContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_window_defn\n}\n\nfunc (*Window_defnContext) IsWindow_defnContext() {}\n\nfunc NewWindow_defnContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Window_defnContext {\n\tvar p = new(Window_defnContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_window_defn\n\n\treturn p\n}\n\nfunc (s *Window_defnContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Window_defnContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Window_defnContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Window_defnContext) ORDER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserORDER_, 0)\n}\n\nfunc (s *Window_defnContext) AllBY_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserBY_)\n}\n\nfunc (s *Window_defnContext) BY_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBY_, i)\n}\n\nfunc (s *Window_defnContext) AllOrdering_term() []IOrdering_termContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IOrdering_termContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IOrdering_termContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IOrdering_termContext); ok {\n\t\t\ttst[i] = t.(IOrdering_termContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Window_defnContext) Ordering_term(i int) IOrdering_termContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IOrdering_termContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IOrdering_termContext)\n}\n\nfunc (s *Window_defnContext) Base_window_name() IBase_window_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IBase_window_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IBase_window_nameContext)\n}\n\nfunc (s *Window_defnContext) PARTITION_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPARTITION_, 0)\n}\n\nfunc (s *Window_defnContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Window_defnContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Window_defnContext) Frame_spec() IFrame_specContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IFrame_specContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IFrame_specContext)\n}\n\nfunc (s *Window_defnContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Window_defnContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Window_defnContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Window_defnContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Window_defnContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterWindow_defn(s)\n\t}\n}\n\nfunc (s *Window_defnContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitWindow_defn(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Window_defn() (localctx IWindow_defnContext) {\n\tlocalctx = NewWindow_defnContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 118, SQLiteParserRULE_window_defn)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1750)\n\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1752)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 259, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(1751)\n\t\t\tp.Base_window_name()\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\tp.SetState(1764)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserPARTITION_ {\n\t\t{\n\t\t\tp.SetState(1754)\n\t\t\tp.Match(SQLiteParserPARTITION_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1755)\n\t\t\tp.Match(SQLiteParserBY_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1756)\n\t\t\tp.expr(0)\n\t\t}\n\t\tp.SetState(1761)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(1757)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1758)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t\tp.SetState(1763)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\n\t}\n\n\t{\n\t\tp.SetState(1766)\n\t\tp.Match(SQLiteParserORDER_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(1767)\n\t\tp.Match(SQLiteParserBY_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(1768)\n\t\tp.Ordering_term()\n\t}\n\tp.SetState(1773)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor _la == SQLiteParserCOMMA {\n\t\t{\n\t\t\tp.SetState(1769)\n\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1770)\n\t\t\tp.Ordering_term()\n\t\t}\n\n\t\tp.SetState(1775)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\n\tp.SetState(1777)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif (int64((_la-130)) & ^0x3f) == 0 && ((int64(1)<<(_la-130))&4503599761588225) != 0 {\n\t\t{\n\t\t\tp.SetState(1776)\n\t\t\tp.Frame_spec()\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(1779)\n\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IOver_clauseContext is an interface to support dynamic dispatch.\ntype IOver_clauseContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tOVER_() antlr.TerminalNode\n\tWindow_name() IWindow_nameContext\n\tOPEN_PAR() antlr.TerminalNode\n\tCLOSE_PAR() antlr.TerminalNode\n\tBase_window_name() IBase_window_nameContext\n\tPARTITION_() antlr.TerminalNode\n\tAllBY_() []antlr.TerminalNode\n\tBY_(i int) antlr.TerminalNode\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\tORDER_() antlr.TerminalNode\n\tAllOrdering_term() []IOrdering_termContext\n\tOrdering_term(i int) IOrdering_termContext\n\tFrame_spec() IFrame_specContext\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsOver_clauseContext differentiates from other interfaces.\n\tIsOver_clauseContext()\n}\n\ntype Over_clauseContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyOver_clauseContext() *Over_clauseContext {\n\tvar p = new(Over_clauseContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_over_clause\n\treturn p\n}\n\nfunc InitEmptyOver_clauseContext(p *Over_clauseContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_over_clause\n}\n\nfunc (*Over_clauseContext) IsOver_clauseContext() {}\n\nfunc NewOver_clauseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Over_clauseContext {\n\tvar p = new(Over_clauseContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_over_clause\n\n\treturn p\n}\n\nfunc (s *Over_clauseContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Over_clauseContext) OVER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOVER_, 0)\n}\n\nfunc (s *Over_clauseContext) Window_name() IWindow_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IWindow_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IWindow_nameContext)\n}\n\nfunc (s *Over_clauseContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Over_clauseContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Over_clauseContext) Base_window_name() IBase_window_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IBase_window_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IBase_window_nameContext)\n}\n\nfunc (s *Over_clauseContext) PARTITION_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPARTITION_, 0)\n}\n\nfunc (s *Over_clauseContext) AllBY_() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserBY_)\n}\n\nfunc (s *Over_clauseContext) BY_(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBY_, i)\n}\n\nfunc (s *Over_clauseContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Over_clauseContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Over_clauseContext) ORDER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserORDER_, 0)\n}\n\nfunc (s *Over_clauseContext) AllOrdering_term() []IOrdering_termContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IOrdering_termContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IOrdering_termContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IOrdering_termContext); ok {\n\t\t\ttst[i] = t.(IOrdering_termContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Over_clauseContext) Ordering_term(i int) IOrdering_termContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IOrdering_termContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IOrdering_termContext)\n}\n\nfunc (s *Over_clauseContext) Frame_spec() IFrame_specContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IFrame_specContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IFrame_specContext)\n}\n\nfunc (s *Over_clauseContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Over_clauseContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Over_clauseContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Over_clauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Over_clauseContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterOver_clause(s)\n\t}\n}\n\nfunc (s *Over_clauseContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitOver_clause(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Over_clause() (localctx IOver_clauseContext) {\n\tlocalctx = NewOver_clauseContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 120, SQLiteParserRULE_over_clause)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1781)\n\t\tp.Match(SQLiteParserOVER_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1815)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 270, p.GetParserRuleContext()) {\n\tcase 1:\n\t\t{\n\t\t\tp.SetState(1782)\n\t\t\tp.Window_name()\n\t\t}\n\n\tcase 2:\n\t\t{\n\t\t\tp.SetState(1783)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1785)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 264, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(1784)\n\t\t\t\tp.Base_window_name()\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\tp.SetState(1797)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserPARTITION_ {\n\t\t\t{\n\t\t\t\tp.SetState(1787)\n\t\t\t\tp.Match(SQLiteParserPARTITION_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1788)\n\t\t\t\tp.Match(SQLiteParserBY_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1789)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\t\t\tp.SetState(1794)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1790)\n\t\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1791)\n\t\t\t\t\tp.expr(0)\n\t\t\t\t}\n\n\t\t\t\tp.SetState(1796)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t\t}\n\n\t\t}\n\t\tp.SetState(1809)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserORDER_ {\n\t\t\t{\n\t\t\t\tp.SetState(1799)\n\t\t\t\tp.Match(SQLiteParserORDER_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1800)\n\t\t\t\tp.Match(SQLiteParserBY_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1801)\n\t\t\t\tp.Ordering_term()\n\t\t\t}\n\t\t\tp.SetState(1806)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1802)\n\t\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\t\tif p.HasError() {\n\t\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\t\tgoto errorExit\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t{\n\t\t\t\t\tp.SetState(1803)\n\t\t\t\t\tp.Ordering_term()\n\t\t\t\t}\n\n\t\t\t\tp.SetState(1808)\n\t\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t\t}\n\n\t\t}\n\t\tp.SetState(1812)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif (int64((_la-130)) & ^0x3f) == 0 && ((int64(1)<<(_la-130))&4503599761588225) != 0 {\n\t\t\t{\n\t\t\t\tp.SetState(1811)\n\t\t\t\tp.Frame_spec()\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(1814)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IFrame_specContext is an interface to support dynamic dispatch.\ntype IFrame_specContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tFrame_clause() IFrame_clauseContext\n\tEXCLUDE_() antlr.TerminalNode\n\tCURRENT_() antlr.TerminalNode\n\tROW_() antlr.TerminalNode\n\tGROUP_() antlr.TerminalNode\n\tTIES_() antlr.TerminalNode\n\tNO_() antlr.TerminalNode\n\tOTHERS_() antlr.TerminalNode\n\n\t// IsFrame_specContext differentiates from other interfaces.\n\tIsFrame_specContext()\n}\n\ntype Frame_specContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyFrame_specContext() *Frame_specContext {\n\tvar p = new(Frame_specContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_frame_spec\n\treturn p\n}\n\nfunc InitEmptyFrame_specContext(p *Frame_specContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_frame_spec\n}\n\nfunc (*Frame_specContext) IsFrame_specContext() {}\n\nfunc NewFrame_specContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Frame_specContext {\n\tvar p = new(Frame_specContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_frame_spec\n\n\treturn p\n}\n\nfunc (s *Frame_specContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Frame_specContext) Frame_clause() IFrame_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IFrame_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IFrame_clauseContext)\n}\n\nfunc (s *Frame_specContext) EXCLUDE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXCLUDE_, 0)\n}\n\nfunc (s *Frame_specContext) CURRENT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCURRENT_, 0)\n}\n\nfunc (s *Frame_specContext) ROW_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROW_, 0)\n}\n\nfunc (s *Frame_specContext) GROUP_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserGROUP_, 0)\n}\n\nfunc (s *Frame_specContext) TIES_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTIES_, 0)\n}\n\nfunc (s *Frame_specContext) NO_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNO_, 0)\n}\n\nfunc (s *Frame_specContext) OTHERS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOTHERS_, 0)\n}\n\nfunc (s *Frame_specContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Frame_specContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Frame_specContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterFrame_spec(s)\n\t}\n}\n\nfunc (s *Frame_specContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitFrame_spec(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Frame_spec() (localctx IFrame_specContext) {\n\tlocalctx = NewFrame_specContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 122, SQLiteParserRULE_frame_spec)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1817)\n\t\tp.Frame_clause()\n\t}\n\tp.SetState(1825)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserEXCLUDE_:\n\t\t{\n\t\t\tp.SetState(1818)\n\t\t\tp.Match(SQLiteParserEXCLUDE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t\t{\n\t\t\tp.SetState(1819)\n\t\t\tp.Match(SQLiteParserNO_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1820)\n\t\t\tp.Match(SQLiteParserOTHERS_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserCURRENT_:\n\t\t{\n\t\t\tp.SetState(1821)\n\t\t\tp.Match(SQLiteParserCURRENT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1822)\n\t\t\tp.Match(SQLiteParserROW_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserGROUP_:\n\t\t{\n\t\t\tp.SetState(1823)\n\t\t\tp.Match(SQLiteParserGROUP_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserTIES_:\n\t\t{\n\t\t\tp.SetState(1824)\n\t\t\tp.Match(SQLiteParserTIES_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserCLOSE_PAR:\n\n\tdefault:\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IFrame_clauseContext is an interface to support dynamic dispatch.\ntype IFrame_clauseContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tRANGE_() antlr.TerminalNode\n\tROWS_() antlr.TerminalNode\n\tGROUPS_() antlr.TerminalNode\n\tFrame_single() IFrame_singleContext\n\tBETWEEN_() antlr.TerminalNode\n\tFrame_left() IFrame_leftContext\n\tAND_() antlr.TerminalNode\n\tFrame_right() IFrame_rightContext\n\n\t// IsFrame_clauseContext differentiates from other interfaces.\n\tIsFrame_clauseContext()\n}\n\ntype Frame_clauseContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyFrame_clauseContext() *Frame_clauseContext {\n\tvar p = new(Frame_clauseContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_frame_clause\n\treturn p\n}\n\nfunc InitEmptyFrame_clauseContext(p *Frame_clauseContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_frame_clause\n}\n\nfunc (*Frame_clauseContext) IsFrame_clauseContext() {}\n\nfunc NewFrame_clauseContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Frame_clauseContext {\n\tvar p = new(Frame_clauseContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_frame_clause\n\n\treturn p\n}\n\nfunc (s *Frame_clauseContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Frame_clauseContext) RANGE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRANGE_, 0)\n}\n\nfunc (s *Frame_clauseContext) ROWS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROWS_, 0)\n}\n\nfunc (s *Frame_clauseContext) GROUPS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserGROUPS_, 0)\n}\n\nfunc (s *Frame_clauseContext) Frame_single() IFrame_singleContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IFrame_singleContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IFrame_singleContext)\n}\n\nfunc (s *Frame_clauseContext) BETWEEN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBETWEEN_, 0)\n}\n\nfunc (s *Frame_clauseContext) Frame_left() IFrame_leftContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IFrame_leftContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IFrame_leftContext)\n}\n\nfunc (s *Frame_clauseContext) AND_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAND_, 0)\n}\n\nfunc (s *Frame_clauseContext) Frame_right() IFrame_rightContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IFrame_rightContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IFrame_rightContext)\n}\n\nfunc (s *Frame_clauseContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Frame_clauseContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Frame_clauseContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterFrame_clause(s)\n\t}\n}\n\nfunc (s *Frame_clauseContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitFrame_clause(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Frame_clause() (localctx IFrame_clauseContext) {\n\tlocalctx = NewFrame_clauseContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 124, SQLiteParserRULE_frame_clause)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1827)\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif !((int64((_la-130)) & ^0x3f) == 0 && ((int64(1)<<(_la-130))&4503599761588225) != 0) {\n\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t} else {\n\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\tp.Consume()\n\t\t}\n\t}\n\tp.SetState(1834)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 272, p.GetParserRuleContext()) {\n\tcase 1:\n\t\t{\n\t\t\tp.SetState(1828)\n\t\t\tp.Frame_single()\n\t\t}\n\n\tcase 2:\n\t\t{\n\t\t\tp.SetState(1829)\n\t\t\tp.Match(SQLiteParserBETWEEN_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1830)\n\t\t\tp.Frame_left()\n\t\t}\n\t\t{\n\t\t\tp.SetState(1831)\n\t\t\tp.Match(SQLiteParserAND_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1832)\n\t\t\tp.Frame_right()\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ISimple_function_invocationContext is an interface to support dynamic dispatch.\ntype ISimple_function_invocationContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tSimple_func() ISimple_funcContext\n\tOPEN_PAR() antlr.TerminalNode\n\tCLOSE_PAR() antlr.TerminalNode\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\tSTAR() antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsSimple_function_invocationContext differentiates from other interfaces.\n\tIsSimple_function_invocationContext()\n}\n\ntype Simple_function_invocationContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptySimple_function_invocationContext() *Simple_function_invocationContext {\n\tvar p = new(Simple_function_invocationContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_simple_function_invocation\n\treturn p\n}\n\nfunc InitEmptySimple_function_invocationContext(p *Simple_function_invocationContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_simple_function_invocation\n}\n\nfunc (*Simple_function_invocationContext) IsSimple_function_invocationContext() {}\n\nfunc NewSimple_function_invocationContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Simple_function_invocationContext {\n\tvar p = new(Simple_function_invocationContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_simple_function_invocation\n\n\treturn p\n}\n\nfunc (s *Simple_function_invocationContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Simple_function_invocationContext) Simple_func() ISimple_funcContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISimple_funcContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISimple_funcContext)\n}\n\nfunc (s *Simple_function_invocationContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Simple_function_invocationContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Simple_function_invocationContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Simple_function_invocationContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Simple_function_invocationContext) STAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTAR, 0)\n}\n\nfunc (s *Simple_function_invocationContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Simple_function_invocationContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Simple_function_invocationContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Simple_function_invocationContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Simple_function_invocationContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterSimple_function_invocation(s)\n\t}\n}\n\nfunc (s *Simple_function_invocationContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitSimple_function_invocation(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Simple_function_invocation() (localctx ISimple_function_invocationContext) {\n\tlocalctx = NewSimple_function_invocationContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 126, SQLiteParserRULE_simple_function_invocation)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1836)\n\t\tp.Simple_func()\n\t}\n\t{\n\t\tp.SetState(1837)\n\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1847)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserOPEN_PAR, SQLiteParserPLUS, SQLiteParserMINUS, SQLiteParserTILDE, SQLiteParserABORT_, SQLiteParserACTION_, SQLiteParserADD_, SQLiteParserAFTER_, SQLiteParserALL_, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserAND_, SQLiteParserAS_, SQLiteParserASC_, SQLiteParserATTACH_, SQLiteParserAUTOINCREMENT_, SQLiteParserBEFORE_, SQLiteParserBEGIN_, SQLiteParserBETWEEN_, SQLiteParserBY_, SQLiteParserCASCADE_, SQLiteParserCASE_, SQLiteParserCAST_, SQLiteParserCHECK_, SQLiteParserCOLLATE_, SQLiteParserCOLUMN_, SQLiteParserCOMMIT_, SQLiteParserCONFLICT_, SQLiteParserCONSTRAINT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserCURRENT_DATE_, SQLiteParserCURRENT_TIME_, SQLiteParserCURRENT_TIMESTAMP_, SQLiteParserDATABASE_, SQLiteParserDEFAULT_, SQLiteParserDEFERRABLE_, SQLiteParserDEFERRED_, SQLiteParserDELETE_, SQLiteParserDESC_, SQLiteParserDETACH_, SQLiteParserDISTINCT_, SQLiteParserDROP_, SQLiteParserEACH_, SQLiteParserELSE_, SQLiteParserEND_, SQLiteParserESCAPE_, SQLiteParserEXCEPT_, SQLiteParserEXCLUSIVE_, SQLiteParserEXISTS_, SQLiteParserEXPLAIN_, SQLiteParserFAIL_, SQLiteParserFOR_, SQLiteParserFOREIGN_, SQLiteParserFROM_, SQLiteParserFULL_, SQLiteParserGLOB_, SQLiteParserGROUP_, SQLiteParserHAVING_, SQLiteParserIF_, SQLiteParserIGNORE_, SQLiteParserIMMEDIATE_, SQLiteParserIN_, SQLiteParserINDEX_, SQLiteParserINDEXED_, SQLiteParserINITIALLY_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINSTEAD_, SQLiteParserINTERSECT_, SQLiteParserINTO_, SQLiteParserIS_, SQLiteParserISNULL_, SQLiteParserJOIN_, SQLiteParserKEY_, SQLiteParserLEFT_, SQLiteParserLIKE_, SQLiteParserLIMIT_, SQLiteParserMATCH_, SQLiteParserNATURAL_, SQLiteParserNO_, SQLiteParserNOT_, SQLiteParserNOTNULL_, SQLiteParserNULL_, SQLiteParserOF_, SQLiteParserOFFSET_, SQLiteParserON_, SQLiteParserOR_, SQLiteParserORDER_, SQLiteParserOUTER_, SQLiteParserPLAN_, SQLiteParserPRAGMA_, SQLiteParserPRIMARY_, SQLiteParserQUERY_, SQLiteParserRAISE_, SQLiteParserRECURSIVE_, SQLiteParserREFERENCES_, SQLiteParserREGEXP_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserRENAME_, SQLiteParserREPLACE_, SQLiteParserRESTRICT_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserROW_, SQLiteParserROWS_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserSET_, SQLiteParserSTRICT_, SQLiteParserTABLE_, SQLiteParserTEMP_, SQLiteParserTEMPORARY_, SQLiteParserTHEN_, SQLiteParserTO_, SQLiteParserTRANSACTION_, SQLiteParserTRIGGER_, SQLiteParserUNION_, SQLiteParserUNIQUE_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserVIEW_, SQLiteParserVIRTUAL_, SQLiteParserWHEN_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWITHOUT_, SQLiteParserFIRST_VALUE_, SQLiteParserOVER_, SQLiteParserPARTITION_, SQLiteParserRANGE_, SQLiteParserPRECEDING_, SQLiteParserUNBOUNDED_, SQLiteParserCURRENT_, SQLiteParserFOLLOWING_, SQLiteParserCUME_DIST_, SQLiteParserDENSE_RANK_, SQLiteParserLAG_, SQLiteParserLAST_VALUE_, SQLiteParserLEAD_, SQLiteParserNTH_VALUE_, SQLiteParserNTILE_, SQLiteParserPERCENT_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_, SQLiteParserGENERATED_, SQLiteParserALWAYS_, SQLiteParserSTORED_, SQLiteParserTRUE_, SQLiteParserFALSE_, SQLiteParserWINDOW_, SQLiteParserNULLS_, SQLiteParserFIRST_, SQLiteParserLAST_, SQLiteParserFILTER_, SQLiteParserGROUPS_, SQLiteParserEXCLUDE_, SQLiteParserIDENTIFIER, SQLiteParserNUMERIC_LITERAL, SQLiteParserNUMBERED_BIND_PARAMETER, SQLiteParserNAMED_BIND_PARAMETER, SQLiteParserSTRING_LITERAL, SQLiteParserBLOB_LITERAL:\n\t\t{\n\t\t\tp.SetState(1838)\n\t\t\tp.expr(0)\n\t\t}\n\t\tp.SetState(1843)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(1839)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1840)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t\tp.SetState(1845)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\n\tcase SQLiteParserSTAR:\n\t\t{\n\t\t\tp.SetState(1846)\n\t\t\tp.Match(SQLiteParserSTAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tdefault:\n\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(1849)\n\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IAggregate_function_invocationContext is an interface to support dynamic dispatch.\ntype IAggregate_function_invocationContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAggregate_func() IAggregate_funcContext\n\tOPEN_PAR() antlr.TerminalNode\n\tCLOSE_PAR() antlr.TerminalNode\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\tSTAR() antlr.TerminalNode\n\tFilter_clause() IFilter_clauseContext\n\tDISTINCT_() antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsAggregate_function_invocationContext differentiates from other interfaces.\n\tIsAggregate_function_invocationContext()\n}\n\ntype Aggregate_function_invocationContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyAggregate_function_invocationContext() *Aggregate_function_invocationContext {\n\tvar p = new(Aggregate_function_invocationContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_aggregate_function_invocation\n\treturn p\n}\n\nfunc InitEmptyAggregate_function_invocationContext(p *Aggregate_function_invocationContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_aggregate_function_invocation\n}\n\nfunc (*Aggregate_function_invocationContext) IsAggregate_function_invocationContext() {}\n\nfunc NewAggregate_function_invocationContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Aggregate_function_invocationContext {\n\tvar p = new(Aggregate_function_invocationContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_aggregate_function_invocation\n\n\treturn p\n}\n\nfunc (s *Aggregate_function_invocationContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Aggregate_function_invocationContext) Aggregate_func() IAggregate_funcContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAggregate_funcContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAggregate_funcContext)\n}\n\nfunc (s *Aggregate_function_invocationContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Aggregate_function_invocationContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Aggregate_function_invocationContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Aggregate_function_invocationContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Aggregate_function_invocationContext) STAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTAR, 0)\n}\n\nfunc (s *Aggregate_function_invocationContext) Filter_clause() IFilter_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IFilter_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IFilter_clauseContext)\n}\n\nfunc (s *Aggregate_function_invocationContext) DISTINCT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDISTINCT_, 0)\n}\n\nfunc (s *Aggregate_function_invocationContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Aggregate_function_invocationContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Aggregate_function_invocationContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Aggregate_function_invocationContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Aggregate_function_invocationContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterAggregate_function_invocation(s)\n\t}\n}\n\nfunc (s *Aggregate_function_invocationContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitAggregate_function_invocation(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Aggregate_function_invocation() (localctx IAggregate_function_invocationContext) {\n\tlocalctx = NewAggregate_function_invocationContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 128, SQLiteParserRULE_aggregate_function_invocation)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1851)\n\t\tp.Aggregate_func()\n\t}\n\t{\n\t\tp.SetState(1852)\n\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1865)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserOPEN_PAR, SQLiteParserPLUS, SQLiteParserMINUS, SQLiteParserTILDE, SQLiteParserABORT_, SQLiteParserACTION_, SQLiteParserADD_, SQLiteParserAFTER_, SQLiteParserALL_, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserAND_, SQLiteParserAS_, SQLiteParserASC_, SQLiteParserATTACH_, SQLiteParserAUTOINCREMENT_, SQLiteParserBEFORE_, SQLiteParserBEGIN_, SQLiteParserBETWEEN_, SQLiteParserBY_, SQLiteParserCASCADE_, SQLiteParserCASE_, SQLiteParserCAST_, SQLiteParserCHECK_, SQLiteParserCOLLATE_, SQLiteParserCOLUMN_, SQLiteParserCOMMIT_, SQLiteParserCONFLICT_, SQLiteParserCONSTRAINT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserCURRENT_DATE_, SQLiteParserCURRENT_TIME_, SQLiteParserCURRENT_TIMESTAMP_, SQLiteParserDATABASE_, SQLiteParserDEFAULT_, SQLiteParserDEFERRABLE_, SQLiteParserDEFERRED_, SQLiteParserDELETE_, SQLiteParserDESC_, SQLiteParserDETACH_, SQLiteParserDISTINCT_, SQLiteParserDROP_, SQLiteParserEACH_, SQLiteParserELSE_, SQLiteParserEND_, SQLiteParserESCAPE_, SQLiteParserEXCEPT_, SQLiteParserEXCLUSIVE_, SQLiteParserEXISTS_, SQLiteParserEXPLAIN_, SQLiteParserFAIL_, SQLiteParserFOR_, SQLiteParserFOREIGN_, SQLiteParserFROM_, SQLiteParserFULL_, SQLiteParserGLOB_, SQLiteParserGROUP_, SQLiteParserHAVING_, SQLiteParserIF_, SQLiteParserIGNORE_, SQLiteParserIMMEDIATE_, SQLiteParserIN_, SQLiteParserINDEX_, SQLiteParserINDEXED_, SQLiteParserINITIALLY_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINSTEAD_, SQLiteParserINTERSECT_, SQLiteParserINTO_, SQLiteParserIS_, SQLiteParserISNULL_, SQLiteParserJOIN_, SQLiteParserKEY_, SQLiteParserLEFT_, SQLiteParserLIKE_, SQLiteParserLIMIT_, SQLiteParserMATCH_, SQLiteParserNATURAL_, SQLiteParserNO_, SQLiteParserNOT_, SQLiteParserNOTNULL_, SQLiteParserNULL_, SQLiteParserOF_, SQLiteParserOFFSET_, SQLiteParserON_, SQLiteParserOR_, SQLiteParserORDER_, SQLiteParserOUTER_, SQLiteParserPLAN_, SQLiteParserPRAGMA_, SQLiteParserPRIMARY_, SQLiteParserQUERY_, SQLiteParserRAISE_, SQLiteParserRECURSIVE_, SQLiteParserREFERENCES_, SQLiteParserREGEXP_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserRENAME_, SQLiteParserREPLACE_, SQLiteParserRESTRICT_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserROW_, SQLiteParserROWS_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserSET_, SQLiteParserSTRICT_, SQLiteParserTABLE_, SQLiteParserTEMP_, SQLiteParserTEMPORARY_, SQLiteParserTHEN_, SQLiteParserTO_, SQLiteParserTRANSACTION_, SQLiteParserTRIGGER_, SQLiteParserUNION_, SQLiteParserUNIQUE_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserVIEW_, SQLiteParserVIRTUAL_, SQLiteParserWHEN_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWITHOUT_, SQLiteParserFIRST_VALUE_, SQLiteParserOVER_, SQLiteParserPARTITION_, SQLiteParserRANGE_, SQLiteParserPRECEDING_, SQLiteParserUNBOUNDED_, SQLiteParserCURRENT_, SQLiteParserFOLLOWING_, SQLiteParserCUME_DIST_, SQLiteParserDENSE_RANK_, SQLiteParserLAG_, SQLiteParserLAST_VALUE_, SQLiteParserLEAD_, SQLiteParserNTH_VALUE_, SQLiteParserNTILE_, SQLiteParserPERCENT_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_, SQLiteParserGENERATED_, SQLiteParserALWAYS_, SQLiteParserSTORED_, SQLiteParserTRUE_, SQLiteParserFALSE_, SQLiteParserWINDOW_, SQLiteParserNULLS_, SQLiteParserFIRST_, SQLiteParserLAST_, SQLiteParserFILTER_, SQLiteParserGROUPS_, SQLiteParserEXCLUDE_, SQLiteParserIDENTIFIER, SQLiteParserNUMERIC_LITERAL, SQLiteParserNUMBERED_BIND_PARAMETER, SQLiteParserNAMED_BIND_PARAMETER, SQLiteParserSTRING_LITERAL, SQLiteParserBLOB_LITERAL:\n\t\tp.SetState(1854)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 275, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(1853)\n\t\t\t\tp.Match(SQLiteParserDISTINCT_)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\t{\n\t\t\tp.SetState(1856)\n\t\t\tp.expr(0)\n\t\t}\n\t\tp.SetState(1861)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(1857)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1858)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t\tp.SetState(1863)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\n\tcase SQLiteParserSTAR:\n\t\t{\n\t\t\tp.SetState(1864)\n\t\t\tp.Match(SQLiteParserSTAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserCLOSE_PAR:\n\n\tdefault:\n\t}\n\t{\n\t\tp.SetState(1867)\n\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1869)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserFILTER_ {\n\t\t{\n\t\t\tp.SetState(1868)\n\t\t\tp.Filter_clause()\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IWindow_function_invocationContext is an interface to support dynamic dispatch.\ntype IWindow_function_invocationContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tWindow_function() IWindow_functionContext\n\tOPEN_PAR() antlr.TerminalNode\n\tCLOSE_PAR() antlr.TerminalNode\n\tOVER_() antlr.TerminalNode\n\tWindow_defn() IWindow_defnContext\n\tWindow_name() IWindow_nameContext\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\tSTAR() antlr.TerminalNode\n\tFilter_clause() IFilter_clauseContext\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsWindow_function_invocationContext differentiates from other interfaces.\n\tIsWindow_function_invocationContext()\n}\n\ntype Window_function_invocationContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyWindow_function_invocationContext() *Window_function_invocationContext {\n\tvar p = new(Window_function_invocationContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_window_function_invocation\n\treturn p\n}\n\nfunc InitEmptyWindow_function_invocationContext(p *Window_function_invocationContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_window_function_invocation\n}\n\nfunc (*Window_function_invocationContext) IsWindow_function_invocationContext() {}\n\nfunc NewWindow_function_invocationContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Window_function_invocationContext {\n\tvar p = new(Window_function_invocationContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_window_function_invocation\n\n\treturn p\n}\n\nfunc (s *Window_function_invocationContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Window_function_invocationContext) Window_function() IWindow_functionContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IWindow_functionContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IWindow_functionContext)\n}\n\nfunc (s *Window_function_invocationContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Window_function_invocationContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Window_function_invocationContext) OVER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOVER_, 0)\n}\n\nfunc (s *Window_function_invocationContext) Window_defn() IWindow_defnContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IWindow_defnContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IWindow_defnContext)\n}\n\nfunc (s *Window_function_invocationContext) Window_name() IWindow_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IWindow_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IWindow_nameContext)\n}\n\nfunc (s *Window_function_invocationContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Window_function_invocationContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Window_function_invocationContext) STAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTAR, 0)\n}\n\nfunc (s *Window_function_invocationContext) Filter_clause() IFilter_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IFilter_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IFilter_clauseContext)\n}\n\nfunc (s *Window_function_invocationContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Window_function_invocationContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Window_function_invocationContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Window_function_invocationContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Window_function_invocationContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterWindow_function_invocation(s)\n\t}\n}\n\nfunc (s *Window_function_invocationContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitWindow_function_invocation(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Window_function_invocation() (localctx IWindow_function_invocationContext) {\n\tlocalctx = NewWindow_function_invocationContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 130, SQLiteParserRULE_window_function_invocation)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1871)\n\t\tp.Window_function()\n\t}\n\t{\n\t\tp.SetState(1872)\n\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1882)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserOPEN_PAR, SQLiteParserPLUS, SQLiteParserMINUS, SQLiteParserTILDE, SQLiteParserABORT_, SQLiteParserACTION_, SQLiteParserADD_, SQLiteParserAFTER_, SQLiteParserALL_, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserAND_, SQLiteParserAS_, SQLiteParserASC_, SQLiteParserATTACH_, SQLiteParserAUTOINCREMENT_, SQLiteParserBEFORE_, SQLiteParserBEGIN_, SQLiteParserBETWEEN_, SQLiteParserBY_, SQLiteParserCASCADE_, SQLiteParserCASE_, SQLiteParserCAST_, SQLiteParserCHECK_, SQLiteParserCOLLATE_, SQLiteParserCOLUMN_, SQLiteParserCOMMIT_, SQLiteParserCONFLICT_, SQLiteParserCONSTRAINT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserCURRENT_DATE_, SQLiteParserCURRENT_TIME_, SQLiteParserCURRENT_TIMESTAMP_, SQLiteParserDATABASE_, SQLiteParserDEFAULT_, SQLiteParserDEFERRABLE_, SQLiteParserDEFERRED_, SQLiteParserDELETE_, SQLiteParserDESC_, SQLiteParserDETACH_, SQLiteParserDISTINCT_, SQLiteParserDROP_, SQLiteParserEACH_, SQLiteParserELSE_, SQLiteParserEND_, SQLiteParserESCAPE_, SQLiteParserEXCEPT_, SQLiteParserEXCLUSIVE_, SQLiteParserEXISTS_, SQLiteParserEXPLAIN_, SQLiteParserFAIL_, SQLiteParserFOR_, SQLiteParserFOREIGN_, SQLiteParserFROM_, SQLiteParserFULL_, SQLiteParserGLOB_, SQLiteParserGROUP_, SQLiteParserHAVING_, SQLiteParserIF_, SQLiteParserIGNORE_, SQLiteParserIMMEDIATE_, SQLiteParserIN_, SQLiteParserINDEX_, SQLiteParserINDEXED_, SQLiteParserINITIALLY_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINSTEAD_, SQLiteParserINTERSECT_, SQLiteParserINTO_, SQLiteParserIS_, SQLiteParserISNULL_, SQLiteParserJOIN_, SQLiteParserKEY_, SQLiteParserLEFT_, SQLiteParserLIKE_, SQLiteParserLIMIT_, SQLiteParserMATCH_, SQLiteParserNATURAL_, SQLiteParserNO_, SQLiteParserNOT_, SQLiteParserNOTNULL_, SQLiteParserNULL_, SQLiteParserOF_, SQLiteParserOFFSET_, SQLiteParserON_, SQLiteParserOR_, SQLiteParserORDER_, SQLiteParserOUTER_, SQLiteParserPLAN_, SQLiteParserPRAGMA_, SQLiteParserPRIMARY_, SQLiteParserQUERY_, SQLiteParserRAISE_, SQLiteParserRECURSIVE_, SQLiteParserREFERENCES_, SQLiteParserREGEXP_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserRENAME_, SQLiteParserREPLACE_, SQLiteParserRESTRICT_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserROW_, SQLiteParserROWS_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserSET_, SQLiteParserSTRICT_, SQLiteParserTABLE_, SQLiteParserTEMP_, SQLiteParserTEMPORARY_, SQLiteParserTHEN_, SQLiteParserTO_, SQLiteParserTRANSACTION_, SQLiteParserTRIGGER_, SQLiteParserUNION_, SQLiteParserUNIQUE_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserVIEW_, SQLiteParserVIRTUAL_, SQLiteParserWHEN_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWITHOUT_, SQLiteParserFIRST_VALUE_, SQLiteParserOVER_, SQLiteParserPARTITION_, SQLiteParserRANGE_, SQLiteParserPRECEDING_, SQLiteParserUNBOUNDED_, SQLiteParserCURRENT_, SQLiteParserFOLLOWING_, SQLiteParserCUME_DIST_, SQLiteParserDENSE_RANK_, SQLiteParserLAG_, SQLiteParserLAST_VALUE_, SQLiteParserLEAD_, SQLiteParserNTH_VALUE_, SQLiteParserNTILE_, SQLiteParserPERCENT_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_, SQLiteParserGENERATED_, SQLiteParserALWAYS_, SQLiteParserSTORED_, SQLiteParserTRUE_, SQLiteParserFALSE_, SQLiteParserWINDOW_, SQLiteParserNULLS_, SQLiteParserFIRST_, SQLiteParserLAST_, SQLiteParserFILTER_, SQLiteParserGROUPS_, SQLiteParserEXCLUDE_, SQLiteParserIDENTIFIER, SQLiteParserNUMERIC_LITERAL, SQLiteParserNUMBERED_BIND_PARAMETER, SQLiteParserNAMED_BIND_PARAMETER, SQLiteParserSTRING_LITERAL, SQLiteParserBLOB_LITERAL:\n\t\t{\n\t\t\tp.SetState(1873)\n\t\t\tp.expr(0)\n\t\t}\n\t\tp.SetState(1878)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tfor _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(1874)\n\t\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\t\tif p.HasError() {\n\t\t\t\t\t// Recognition error - abort rule\n\t\t\t\t\tgoto errorExit\n\t\t\t\t}\n\t\t\t}\n\t\t\t{\n\t\t\t\tp.SetState(1875)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\t\tp.SetState(1880)\n\t\t\tp.GetErrorHandler().Sync(p)\n\t\t\tif p.HasError() {\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t\t_la = p.GetTokenStream().LA(1)\n\t\t}\n\n\tcase SQLiteParserSTAR:\n\t\t{\n\t\t\tp.SetState(1881)\n\t\t\tp.Match(SQLiteParserSTAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserCLOSE_PAR:\n\n\tdefault:\n\t}\n\t{\n\t\tp.SetState(1884)\n\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1886)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserFILTER_ {\n\t\t{\n\t\t\tp.SetState(1885)\n\t\t\tp.Filter_clause()\n\t\t}\n\n\t}\n\t{\n\t\tp.SetState(1888)\n\t\tp.Match(SQLiteParserOVER_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1891)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 282, p.GetParserRuleContext()) {\n\tcase 1:\n\t\t{\n\t\t\tp.SetState(1889)\n\t\t\tp.Window_defn()\n\t\t}\n\n\tcase 2:\n\t\t{\n\t\t\tp.SetState(1890)\n\t\t\tp.Window_name()\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ICommon_table_stmtContext is an interface to support dynamic dispatch.\ntype ICommon_table_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tWITH_() antlr.TerminalNode\n\tAllCommon_table_expression() []ICommon_table_expressionContext\n\tCommon_table_expression(i int) ICommon_table_expressionContext\n\tRECURSIVE_() antlr.TerminalNode\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsCommon_table_stmtContext differentiates from other interfaces.\n\tIsCommon_table_stmtContext()\n}\n\ntype Common_table_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyCommon_table_stmtContext() *Common_table_stmtContext {\n\tvar p = new(Common_table_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_common_table_stmt\n\treturn p\n}\n\nfunc InitEmptyCommon_table_stmtContext(p *Common_table_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_common_table_stmt\n}\n\nfunc (*Common_table_stmtContext) IsCommon_table_stmtContext() {}\n\nfunc NewCommon_table_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Common_table_stmtContext {\n\tvar p = new(Common_table_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_common_table_stmt\n\n\treturn p\n}\n\nfunc (s *Common_table_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Common_table_stmtContext) WITH_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWITH_, 0)\n}\n\nfunc (s *Common_table_stmtContext) AllCommon_table_expression() []ICommon_table_expressionContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(ICommon_table_expressionContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]ICommon_table_expressionContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(ICommon_table_expressionContext); ok {\n\t\t\ttst[i] = t.(ICommon_table_expressionContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Common_table_stmtContext) Common_table_expression(i int) ICommon_table_expressionContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICommon_table_expressionContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICommon_table_expressionContext)\n}\n\nfunc (s *Common_table_stmtContext) RECURSIVE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRECURSIVE_, 0)\n}\n\nfunc (s *Common_table_stmtContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Common_table_stmtContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Common_table_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Common_table_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Common_table_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterCommon_table_stmt(s)\n\t}\n}\n\nfunc (s *Common_table_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitCommon_table_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Common_table_stmt() (localctx ICommon_table_stmtContext) {\n\tlocalctx = NewCommon_table_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 132, SQLiteParserRULE_common_table_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1893)\n\t\tp.Match(SQLiteParserWITH_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(1895)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 283, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(1894)\n\t\t\tp.Match(SQLiteParserRECURSIVE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(1897)\n\t\tp.Common_table_expression()\n\t}\n\tp.SetState(1902)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor _la == SQLiteParserCOMMA {\n\t\t{\n\t\t\tp.SetState(1898)\n\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1899)\n\t\t\tp.Common_table_expression()\n\t\t}\n\n\t\tp.SetState(1904)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IOrder_by_stmtContext is an interface to support dynamic dispatch.\ntype IOrder_by_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tORDER_() antlr.TerminalNode\n\tBY_() antlr.TerminalNode\n\tAllOrdering_term() []IOrdering_termContext\n\tOrdering_term(i int) IOrdering_termContext\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsOrder_by_stmtContext differentiates from other interfaces.\n\tIsOrder_by_stmtContext()\n}\n\ntype Order_by_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyOrder_by_stmtContext() *Order_by_stmtContext {\n\tvar p = new(Order_by_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_order_by_stmt\n\treturn p\n}\n\nfunc InitEmptyOrder_by_stmtContext(p *Order_by_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_order_by_stmt\n}\n\nfunc (*Order_by_stmtContext) IsOrder_by_stmtContext() {}\n\nfunc NewOrder_by_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Order_by_stmtContext {\n\tvar p = new(Order_by_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_order_by_stmt\n\n\treturn p\n}\n\nfunc (s *Order_by_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Order_by_stmtContext) ORDER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserORDER_, 0)\n}\n\nfunc (s *Order_by_stmtContext) BY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBY_, 0)\n}\n\nfunc (s *Order_by_stmtContext) AllOrdering_term() []IOrdering_termContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IOrdering_termContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IOrdering_termContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IOrdering_termContext); ok {\n\t\t\ttst[i] = t.(IOrdering_termContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Order_by_stmtContext) Ordering_term(i int) IOrdering_termContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IOrdering_termContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IOrdering_termContext)\n}\n\nfunc (s *Order_by_stmtContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Order_by_stmtContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Order_by_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Order_by_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Order_by_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterOrder_by_stmt(s)\n\t}\n}\n\nfunc (s *Order_by_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitOrder_by_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Order_by_stmt() (localctx IOrder_by_stmtContext) {\n\tlocalctx = NewOrder_by_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 134, SQLiteParserRULE_order_by_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1905)\n\t\tp.Match(SQLiteParserORDER_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(1906)\n\t\tp.Match(SQLiteParserBY_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(1907)\n\t\tp.Ordering_term()\n\t}\n\tp.SetState(1912)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor _la == SQLiteParserCOMMA {\n\t\t{\n\t\t\tp.SetState(1908)\n\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1909)\n\t\t\tp.Ordering_term()\n\t\t}\n\n\t\tp.SetState(1914)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ILimit_stmtContext is an interface to support dynamic dispatch.\ntype ILimit_stmtContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tLIMIT_() antlr.TerminalNode\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\tOFFSET_() antlr.TerminalNode\n\tCOMMA() antlr.TerminalNode\n\n\t// IsLimit_stmtContext differentiates from other interfaces.\n\tIsLimit_stmtContext()\n}\n\ntype Limit_stmtContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyLimit_stmtContext() *Limit_stmtContext {\n\tvar p = new(Limit_stmtContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_limit_stmt\n\treturn p\n}\n\nfunc InitEmptyLimit_stmtContext(p *Limit_stmtContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_limit_stmt\n}\n\nfunc (*Limit_stmtContext) IsLimit_stmtContext() {}\n\nfunc NewLimit_stmtContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Limit_stmtContext {\n\tvar p = new(Limit_stmtContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_limit_stmt\n\n\treturn p\n}\n\nfunc (s *Limit_stmtContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Limit_stmtContext) LIMIT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLIMIT_, 0)\n}\n\nfunc (s *Limit_stmtContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Limit_stmtContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Limit_stmtContext) OFFSET_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOFFSET_, 0)\n}\n\nfunc (s *Limit_stmtContext) COMMA() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, 0)\n}\n\nfunc (s *Limit_stmtContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Limit_stmtContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Limit_stmtContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterLimit_stmt(s)\n\t}\n}\n\nfunc (s *Limit_stmtContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitLimit_stmt(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Limit_stmt() (localctx ILimit_stmtContext) {\n\tlocalctx = NewLimit_stmtContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 136, SQLiteParserRULE_limit_stmt)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1915)\n\t\tp.Match(SQLiteParserLIMIT_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(1916)\n\t\tp.expr(0)\n\t}\n\tp.SetState(1919)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserCOMMA || _la == SQLiteParserOFFSET_ {\n\t\t{\n\t\t\tp.SetState(1917)\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif !(_la == SQLiteParserCOMMA || _la == SQLiteParserOFFSET_) {\n\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t} else {\n\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\tp.Consume()\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1918)\n\t\t\tp.expr(0)\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IOrdering_termContext is an interface to support dynamic dispatch.\ntype IOrdering_termContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tExpr() IExprContext\n\tCOLLATE_() antlr.TerminalNode\n\tCollation_name() ICollation_nameContext\n\tAsc_desc() IAsc_descContext\n\tNULLS_() antlr.TerminalNode\n\tFIRST_() antlr.TerminalNode\n\tLAST_() antlr.TerminalNode\n\n\t// IsOrdering_termContext differentiates from other interfaces.\n\tIsOrdering_termContext()\n}\n\ntype Ordering_termContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyOrdering_termContext() *Ordering_termContext {\n\tvar p = new(Ordering_termContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_ordering_term\n\treturn p\n}\n\nfunc InitEmptyOrdering_termContext(p *Ordering_termContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_ordering_term\n}\n\nfunc (*Ordering_termContext) IsOrdering_termContext() {}\n\nfunc NewOrdering_termContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Ordering_termContext {\n\tvar p = new(Ordering_termContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_ordering_term\n\n\treturn p\n}\n\nfunc (s *Ordering_termContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Ordering_termContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Ordering_termContext) COLLATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOLLATE_, 0)\n}\n\nfunc (s *Ordering_termContext) Collation_name() ICollation_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ICollation_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ICollation_nameContext)\n}\n\nfunc (s *Ordering_termContext) Asc_desc() IAsc_descContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAsc_descContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAsc_descContext)\n}\n\nfunc (s *Ordering_termContext) NULLS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNULLS_, 0)\n}\n\nfunc (s *Ordering_termContext) FIRST_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFIRST_, 0)\n}\n\nfunc (s *Ordering_termContext) LAST_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLAST_, 0)\n}\n\nfunc (s *Ordering_termContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Ordering_termContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Ordering_termContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterOrdering_term(s)\n\t}\n}\n\nfunc (s *Ordering_termContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitOrdering_term(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Ordering_term() (localctx IOrdering_termContext) {\n\tlocalctx = NewOrdering_termContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 138, SQLiteParserRULE_ordering_term)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1921)\n\t\tp.expr(0)\n\t}\n\tp.SetState(1924)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserCOLLATE_ {\n\t\t{\n\t\t\tp.SetState(1922)\n\t\t\tp.Match(SQLiteParserCOLLATE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1923)\n\t\t\tp.Collation_name()\n\t\t}\n\n\t}\n\tp.SetState(1927)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserASC_ || _la == SQLiteParserDESC_ {\n\t\t{\n\t\t\tp.SetState(1926)\n\t\t\tp.Asc_desc()\n\t\t}\n\n\t}\n\tp.SetState(1931)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserNULLS_ {\n\t\t{\n\t\t\tp.SetState(1929)\n\t\t\tp.Match(SQLiteParserNULLS_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1930)\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif !(_la == SQLiteParserFIRST_ || _la == SQLiteParserLAST_) {\n\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t} else {\n\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\tp.Consume()\n\t\t\t}\n\t\t}\n\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IAsc_descContext is an interface to support dynamic dispatch.\ntype IAsc_descContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tASC_() antlr.TerminalNode\n\tDESC_() antlr.TerminalNode\n\n\t// IsAsc_descContext differentiates from other interfaces.\n\tIsAsc_descContext()\n}\n\ntype Asc_descContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyAsc_descContext() *Asc_descContext {\n\tvar p = new(Asc_descContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_asc_desc\n\treturn p\n}\n\nfunc InitEmptyAsc_descContext(p *Asc_descContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_asc_desc\n}\n\nfunc (*Asc_descContext) IsAsc_descContext() {}\n\nfunc NewAsc_descContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Asc_descContext {\n\tvar p = new(Asc_descContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_asc_desc\n\n\treturn p\n}\n\nfunc (s *Asc_descContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Asc_descContext) ASC_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserASC_, 0)\n}\n\nfunc (s *Asc_descContext) DESC_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDESC_, 0)\n}\n\nfunc (s *Asc_descContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Asc_descContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Asc_descContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterAsc_desc(s)\n\t}\n}\n\nfunc (s *Asc_descContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitAsc_desc(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Asc_desc() (localctx IAsc_descContext) {\n\tlocalctx = NewAsc_descContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 140, SQLiteParserRULE_asc_desc)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(1933)\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif !(_la == SQLiteParserASC_ || _la == SQLiteParserDESC_) {\n\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t} else {\n\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\tp.Consume()\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IFrame_leftContext is an interface to support dynamic dispatch.\ntype IFrame_leftContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tExpr() IExprContext\n\tPRECEDING_() antlr.TerminalNode\n\tFOLLOWING_() antlr.TerminalNode\n\tCURRENT_() antlr.TerminalNode\n\tROW_() antlr.TerminalNode\n\tUNBOUNDED_() antlr.TerminalNode\n\n\t// IsFrame_leftContext differentiates from other interfaces.\n\tIsFrame_leftContext()\n}\n\ntype Frame_leftContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyFrame_leftContext() *Frame_leftContext {\n\tvar p = new(Frame_leftContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_frame_left\n\treturn p\n}\n\nfunc InitEmptyFrame_leftContext(p *Frame_leftContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_frame_left\n}\n\nfunc (*Frame_leftContext) IsFrame_leftContext() {}\n\nfunc NewFrame_leftContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Frame_leftContext {\n\tvar p = new(Frame_leftContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_frame_left\n\n\treturn p\n}\n\nfunc (s *Frame_leftContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Frame_leftContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Frame_leftContext) PRECEDING_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPRECEDING_, 0)\n}\n\nfunc (s *Frame_leftContext) FOLLOWING_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFOLLOWING_, 0)\n}\n\nfunc (s *Frame_leftContext) CURRENT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCURRENT_, 0)\n}\n\nfunc (s *Frame_leftContext) ROW_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROW_, 0)\n}\n\nfunc (s *Frame_leftContext) UNBOUNDED_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUNBOUNDED_, 0)\n}\n\nfunc (s *Frame_leftContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Frame_leftContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Frame_leftContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterFrame_left(s)\n\t}\n}\n\nfunc (s *Frame_leftContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitFrame_left(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Frame_left() (localctx IFrame_leftContext) {\n\tlocalctx = NewFrame_leftContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 142, SQLiteParserRULE_frame_left)\n\tp.SetState(1945)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 290, p.GetParserRuleContext()) {\n\tcase 1:\n\t\tp.EnterOuterAlt(localctx, 1)\n\t\t{\n\t\t\tp.SetState(1935)\n\t\t\tp.expr(0)\n\t\t}\n\t\t{\n\t\t\tp.SetState(1936)\n\t\t\tp.Match(SQLiteParserPRECEDING_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 2:\n\t\tp.EnterOuterAlt(localctx, 2)\n\t\t{\n\t\t\tp.SetState(1938)\n\t\t\tp.expr(0)\n\t\t}\n\t\t{\n\t\t\tp.SetState(1939)\n\t\t\tp.Match(SQLiteParserFOLLOWING_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 3:\n\t\tp.EnterOuterAlt(localctx, 3)\n\t\t{\n\t\t\tp.SetState(1941)\n\t\t\tp.Match(SQLiteParserCURRENT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1942)\n\t\t\tp.Match(SQLiteParserROW_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 4:\n\t\tp.EnterOuterAlt(localctx, 4)\n\t\t{\n\t\t\tp.SetState(1943)\n\t\t\tp.Match(SQLiteParserUNBOUNDED_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1944)\n\t\t\tp.Match(SQLiteParserPRECEDING_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IFrame_rightContext is an interface to support dynamic dispatch.\ntype IFrame_rightContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tExpr() IExprContext\n\tPRECEDING_() antlr.TerminalNode\n\tFOLLOWING_() antlr.TerminalNode\n\tCURRENT_() antlr.TerminalNode\n\tROW_() antlr.TerminalNode\n\tUNBOUNDED_() antlr.TerminalNode\n\n\t// IsFrame_rightContext differentiates from other interfaces.\n\tIsFrame_rightContext()\n}\n\ntype Frame_rightContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyFrame_rightContext() *Frame_rightContext {\n\tvar p = new(Frame_rightContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_frame_right\n\treturn p\n}\n\nfunc InitEmptyFrame_rightContext(p *Frame_rightContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_frame_right\n}\n\nfunc (*Frame_rightContext) IsFrame_rightContext() {}\n\nfunc NewFrame_rightContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Frame_rightContext {\n\tvar p = new(Frame_rightContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_frame_right\n\n\treturn p\n}\n\nfunc (s *Frame_rightContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Frame_rightContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Frame_rightContext) PRECEDING_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPRECEDING_, 0)\n}\n\nfunc (s *Frame_rightContext) FOLLOWING_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFOLLOWING_, 0)\n}\n\nfunc (s *Frame_rightContext) CURRENT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCURRENT_, 0)\n}\n\nfunc (s *Frame_rightContext) ROW_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROW_, 0)\n}\n\nfunc (s *Frame_rightContext) UNBOUNDED_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUNBOUNDED_, 0)\n}\n\nfunc (s *Frame_rightContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Frame_rightContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Frame_rightContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterFrame_right(s)\n\t}\n}\n\nfunc (s *Frame_rightContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitFrame_right(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Frame_right() (localctx IFrame_rightContext) {\n\tlocalctx = NewFrame_rightContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 144, SQLiteParserRULE_frame_right)\n\tp.SetState(1957)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 291, p.GetParserRuleContext()) {\n\tcase 1:\n\t\tp.EnterOuterAlt(localctx, 1)\n\t\t{\n\t\t\tp.SetState(1947)\n\t\t\tp.expr(0)\n\t\t}\n\t\t{\n\t\t\tp.SetState(1948)\n\t\t\tp.Match(SQLiteParserPRECEDING_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 2:\n\t\tp.EnterOuterAlt(localctx, 2)\n\t\t{\n\t\t\tp.SetState(1950)\n\t\t\tp.expr(0)\n\t\t}\n\t\t{\n\t\t\tp.SetState(1951)\n\t\t\tp.Match(SQLiteParserFOLLOWING_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 3:\n\t\tp.EnterOuterAlt(localctx, 3)\n\t\t{\n\t\t\tp.SetState(1953)\n\t\t\tp.Match(SQLiteParserCURRENT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1954)\n\t\t\tp.Match(SQLiteParserROW_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 4:\n\t\tp.EnterOuterAlt(localctx, 4)\n\t\t{\n\t\t\tp.SetState(1955)\n\t\t\tp.Match(SQLiteParserUNBOUNDED_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1956)\n\t\t\tp.Match(SQLiteParserFOLLOWING_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IFrame_singleContext is an interface to support dynamic dispatch.\ntype IFrame_singleContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tExpr() IExprContext\n\tPRECEDING_() antlr.TerminalNode\n\tUNBOUNDED_() antlr.TerminalNode\n\tCURRENT_() antlr.TerminalNode\n\tROW_() antlr.TerminalNode\n\n\t// IsFrame_singleContext differentiates from other interfaces.\n\tIsFrame_singleContext()\n}\n\ntype Frame_singleContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyFrame_singleContext() *Frame_singleContext {\n\tvar p = new(Frame_singleContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_frame_single\n\treturn p\n}\n\nfunc InitEmptyFrame_singleContext(p *Frame_singleContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_frame_single\n}\n\nfunc (*Frame_singleContext) IsFrame_singleContext() {}\n\nfunc NewFrame_singleContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Frame_singleContext {\n\tvar p = new(Frame_singleContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_frame_single\n\n\treturn p\n}\n\nfunc (s *Frame_singleContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Frame_singleContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Frame_singleContext) PRECEDING_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPRECEDING_, 0)\n}\n\nfunc (s *Frame_singleContext) UNBOUNDED_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUNBOUNDED_, 0)\n}\n\nfunc (s *Frame_singleContext) CURRENT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCURRENT_, 0)\n}\n\nfunc (s *Frame_singleContext) ROW_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROW_, 0)\n}\n\nfunc (s *Frame_singleContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Frame_singleContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Frame_singleContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterFrame_single(s)\n\t}\n}\n\nfunc (s *Frame_singleContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitFrame_single(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Frame_single() (localctx IFrame_singleContext) {\n\tlocalctx = NewFrame_singleContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 146, SQLiteParserRULE_frame_single)\n\tp.SetState(1966)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 292, p.GetParserRuleContext()) {\n\tcase 1:\n\t\tp.EnterOuterAlt(localctx, 1)\n\t\t{\n\t\t\tp.SetState(1959)\n\t\t\tp.expr(0)\n\t\t}\n\t\t{\n\t\t\tp.SetState(1960)\n\t\t\tp.Match(SQLiteParserPRECEDING_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 2:\n\t\tp.EnterOuterAlt(localctx, 2)\n\t\t{\n\t\t\tp.SetState(1962)\n\t\t\tp.Match(SQLiteParserUNBOUNDED_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1963)\n\t\t\tp.Match(SQLiteParserPRECEDING_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase 3:\n\t\tp.EnterOuterAlt(localctx, 3)\n\t\t{\n\t\t\tp.SetState(1964)\n\t\t\tp.Match(SQLiteParserCURRENT_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1965)\n\t\t\tp.Match(SQLiteParserROW_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IWindow_functionContext is an interface to support dynamic dispatch.\ntype IWindow_functionContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAllOPEN_PAR() []antlr.TerminalNode\n\tOPEN_PAR(i int) antlr.TerminalNode\n\tExpr() IExprContext\n\tAllCLOSE_PAR() []antlr.TerminalNode\n\tCLOSE_PAR(i int) antlr.TerminalNode\n\tOVER_() antlr.TerminalNode\n\tOrder_by_expr_asc_desc() IOrder_by_expr_asc_descContext\n\tFIRST_VALUE_() antlr.TerminalNode\n\tLAST_VALUE_() antlr.TerminalNode\n\tPartition_by() IPartition_byContext\n\tFrame_clause() IFrame_clauseContext\n\tCUME_DIST_() antlr.TerminalNode\n\tPERCENT_RANK_() antlr.TerminalNode\n\tOrder_by_expr() IOrder_by_exprContext\n\tDENSE_RANK_() antlr.TerminalNode\n\tRANK_() antlr.TerminalNode\n\tROW_NUMBER_() antlr.TerminalNode\n\tLAG_() antlr.TerminalNode\n\tLEAD_() antlr.TerminalNode\n\tOf_OF_fset() IOf_OF_fsetContext\n\tDefault_DEFAULT__value() IDefault_DEFAULT__valueContext\n\tNTH_VALUE_() antlr.TerminalNode\n\tCOMMA() antlr.TerminalNode\n\tSigned_number() ISigned_numberContext\n\tNTILE_() antlr.TerminalNode\n\n\t// IsWindow_functionContext differentiates from other interfaces.\n\tIsWindow_functionContext()\n}\n\ntype Window_functionContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyWindow_functionContext() *Window_functionContext {\n\tvar p = new(Window_functionContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_window_function\n\treturn p\n}\n\nfunc InitEmptyWindow_functionContext(p *Window_functionContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_window_function\n}\n\nfunc (*Window_functionContext) IsWindow_functionContext() {}\n\nfunc NewWindow_functionContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Window_functionContext {\n\tvar p = new(Window_functionContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_window_function\n\n\treturn p\n}\n\nfunc (s *Window_functionContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Window_functionContext) AllOPEN_PAR() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserOPEN_PAR)\n}\n\nfunc (s *Window_functionContext) OPEN_PAR(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, i)\n}\n\nfunc (s *Window_functionContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Window_functionContext) AllCLOSE_PAR() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCLOSE_PAR)\n}\n\nfunc (s *Window_functionContext) CLOSE_PAR(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, i)\n}\n\nfunc (s *Window_functionContext) OVER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOVER_, 0)\n}\n\nfunc (s *Window_functionContext) Order_by_expr_asc_desc() IOrder_by_expr_asc_descContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IOrder_by_expr_asc_descContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IOrder_by_expr_asc_descContext)\n}\n\nfunc (s *Window_functionContext) FIRST_VALUE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFIRST_VALUE_, 0)\n}\n\nfunc (s *Window_functionContext) LAST_VALUE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLAST_VALUE_, 0)\n}\n\nfunc (s *Window_functionContext) Partition_by() IPartition_byContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IPartition_byContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IPartition_byContext)\n}\n\nfunc (s *Window_functionContext) Frame_clause() IFrame_clauseContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IFrame_clauseContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IFrame_clauseContext)\n}\n\nfunc (s *Window_functionContext) CUME_DIST_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCUME_DIST_, 0)\n}\n\nfunc (s *Window_functionContext) PERCENT_RANK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPERCENT_RANK_, 0)\n}\n\nfunc (s *Window_functionContext) Order_by_expr() IOrder_by_exprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IOrder_by_exprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IOrder_by_exprContext)\n}\n\nfunc (s *Window_functionContext) DENSE_RANK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDENSE_RANK_, 0)\n}\n\nfunc (s *Window_functionContext) RANK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRANK_, 0)\n}\n\nfunc (s *Window_functionContext) ROW_NUMBER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROW_NUMBER_, 0)\n}\n\nfunc (s *Window_functionContext) LAG_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLAG_, 0)\n}\n\nfunc (s *Window_functionContext) LEAD_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLEAD_, 0)\n}\n\nfunc (s *Window_functionContext) Of_OF_fset() IOf_OF_fsetContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IOf_OF_fsetContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IOf_OF_fsetContext)\n}\n\nfunc (s *Window_functionContext) Default_DEFAULT__value() IDefault_DEFAULT__valueContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IDefault_DEFAULT__valueContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IDefault_DEFAULT__valueContext)\n}\n\nfunc (s *Window_functionContext) NTH_VALUE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNTH_VALUE_, 0)\n}\n\nfunc (s *Window_functionContext) COMMA() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, 0)\n}\n\nfunc (s *Window_functionContext) Signed_number() ISigned_numberContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISigned_numberContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISigned_numberContext)\n}\n\nfunc (s *Window_functionContext) NTILE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNTILE_, 0)\n}\n\nfunc (s *Window_functionContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Window_functionContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Window_functionContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterWindow_function(s)\n\t}\n}\n\nfunc (s *Window_functionContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitWindow_function(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Window_function() (localctx IWindow_functionContext) {\n\tlocalctx = NewWindow_functionContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 148, SQLiteParserRULE_window_function)\n\tvar _la int\n\n\tp.SetState(2053)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserFIRST_VALUE_, SQLiteParserLAST_VALUE_:\n\t\tp.EnterOuterAlt(localctx, 1)\n\t\t{\n\t\t\tp.SetState(1968)\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif !(_la == SQLiteParserFIRST_VALUE_ || _la == SQLiteParserLAST_VALUE_) {\n\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t} else {\n\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\tp.Consume()\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1969)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1970)\n\t\t\tp.expr(0)\n\t\t}\n\t\t{\n\t\t\tp.SetState(1971)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1972)\n\t\t\tp.Match(SQLiteParserOVER_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1973)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1975)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserPARTITION_ {\n\t\t\t{\n\t\t\t\tp.SetState(1974)\n\t\t\t\tp.Partition_by()\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(1977)\n\t\t\tp.Order_by_expr_asc_desc()\n\t\t}\n\t\tp.SetState(1979)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif (int64((_la-130)) & ^0x3f) == 0 && ((int64(1)<<(_la-130))&4503599761588225) != 0 {\n\t\t\t{\n\t\t\t\tp.SetState(1978)\n\t\t\t\tp.Frame_clause()\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(1981)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserCUME_DIST_, SQLiteParserPERCENT_RANK_:\n\t\tp.EnterOuterAlt(localctx, 2)\n\t\t{\n\t\t\tp.SetState(1983)\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif !(_la == SQLiteParserCUME_DIST_ || _la == SQLiteParserPERCENT_RANK_) {\n\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t} else {\n\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\tp.Consume()\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1984)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1985)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1986)\n\t\t\tp.Match(SQLiteParserOVER_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1987)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(1989)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserPARTITION_ {\n\t\t\t{\n\t\t\t\tp.SetState(1988)\n\t\t\t\tp.Partition_by()\n\t\t\t}\n\n\t\t}\n\t\tp.SetState(1992)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserORDER_ {\n\t\t\t{\n\t\t\t\tp.SetState(1991)\n\t\t\t\tp.Order_by_expr()\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(1994)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserDENSE_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_:\n\t\tp.EnterOuterAlt(localctx, 3)\n\t\t{\n\t\t\tp.SetState(1995)\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif !((int64((_la-163)) & ^0x3f) == 0 && ((int64(1)<<(_la-163))&385) != 0) {\n\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t} else {\n\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\tp.Consume()\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1996)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1997)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1998)\n\t\t\tp.Match(SQLiteParserOVER_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(1999)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(2001)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserPARTITION_ {\n\t\t\t{\n\t\t\t\tp.SetState(2000)\n\t\t\t\tp.Partition_by()\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(2003)\n\t\t\tp.Order_by_expr_asc_desc()\n\t\t}\n\t\t{\n\t\t\tp.SetState(2004)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserLAG_, SQLiteParserLEAD_:\n\t\tp.EnterOuterAlt(localctx, 4)\n\t\t{\n\t\t\tp.SetState(2006)\n\t\t\t_la = p.GetTokenStream().LA(1)\n\n\t\t\tif !(_la == SQLiteParserLAG_ || _la == SQLiteParserLEAD_) {\n\t\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t\t} else {\n\t\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\t\tp.Consume()\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(2007)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(2008)\n\t\t\tp.expr(0)\n\t\t}\n\t\tp.SetState(2010)\n\t\tp.GetErrorHandler().Sync(p)\n\n\t\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 298, p.GetParserRuleContext()) == 1 {\n\t\t\t{\n\t\t\t\tp.SetState(2009)\n\t\t\t\tp.Of_OF_fset()\n\t\t\t}\n\n\t\t} else if p.HasError() { // JIM\n\t\t\tgoto errorExit\n\t\t}\n\t\tp.SetState(2013)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserCOMMA {\n\t\t\t{\n\t\t\t\tp.SetState(2012)\n\t\t\t\tp.Default_DEFAULT__value()\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(2015)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(2016)\n\t\t\tp.Match(SQLiteParserOVER_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(2017)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(2019)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserPARTITION_ {\n\t\t\t{\n\t\t\t\tp.SetState(2018)\n\t\t\t\tp.Partition_by()\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(2021)\n\t\t\tp.Order_by_expr_asc_desc()\n\t\t}\n\t\t{\n\t\t\tp.SetState(2022)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserNTH_VALUE_:\n\t\tp.EnterOuterAlt(localctx, 5)\n\t\t{\n\t\t\tp.SetState(2024)\n\t\t\tp.Match(SQLiteParserNTH_VALUE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(2025)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(2026)\n\t\t\tp.expr(0)\n\t\t}\n\t\t{\n\t\t\tp.SetState(2027)\n\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(2028)\n\t\t\tp.Signed_number()\n\t\t}\n\t\t{\n\t\t\tp.SetState(2029)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(2030)\n\t\t\tp.Match(SQLiteParserOVER_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(2031)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(2033)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserPARTITION_ {\n\t\t\t{\n\t\t\t\tp.SetState(2032)\n\t\t\t\tp.Partition_by()\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(2035)\n\t\t\tp.Order_by_expr_asc_desc()\n\t\t}\n\t\tp.SetState(2037)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif (int64((_la-130)) & ^0x3f) == 0 && ((int64(1)<<(_la-130))&4503599761588225) != 0 {\n\t\t\t{\n\t\t\t\tp.SetState(2036)\n\t\t\t\tp.Frame_clause()\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(2039)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserNTILE_:\n\t\tp.EnterOuterAlt(localctx, 6)\n\t\t{\n\t\t\tp.SetState(2041)\n\t\t\tp.Match(SQLiteParserNTILE_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(2042)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(2043)\n\t\t\tp.expr(0)\n\t\t}\n\t\t{\n\t\t\tp.SetState(2044)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(2045)\n\t\t\tp.Match(SQLiteParserOVER_)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(2046)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\tp.SetState(2048)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserPARTITION_ {\n\t\t\t{\n\t\t\t\tp.SetState(2047)\n\t\t\t\tp.Partition_by()\n\t\t\t}\n\n\t\t}\n\t\t{\n\t\t\tp.SetState(2050)\n\t\t\tp.Order_by_expr_asc_desc()\n\t\t}\n\t\t{\n\t\t\tp.SetState(2051)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tdefault:\n\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IOf_OF_fsetContext is an interface to support dynamic dispatch.\ntype IOf_OF_fsetContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tCOMMA() antlr.TerminalNode\n\tSigned_number() ISigned_numberContext\n\n\t// IsOf_OF_fsetContext differentiates from other interfaces.\n\tIsOf_OF_fsetContext()\n}\n\ntype Of_OF_fsetContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyOf_OF_fsetContext() *Of_OF_fsetContext {\n\tvar p = new(Of_OF_fsetContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_of_OF_fset\n\treturn p\n}\n\nfunc InitEmptyOf_OF_fsetContext(p *Of_OF_fsetContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_of_OF_fset\n}\n\nfunc (*Of_OF_fsetContext) IsOf_OF_fsetContext() {}\n\nfunc NewOf_OF_fsetContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Of_OF_fsetContext {\n\tvar p = new(Of_OF_fsetContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_of_OF_fset\n\n\treturn p\n}\n\nfunc (s *Of_OF_fsetContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Of_OF_fsetContext) COMMA() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, 0)\n}\n\nfunc (s *Of_OF_fsetContext) Signed_number() ISigned_numberContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISigned_numberContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISigned_numberContext)\n}\n\nfunc (s *Of_OF_fsetContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Of_OF_fsetContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Of_OF_fsetContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterOf_OF_fset(s)\n\t}\n}\n\nfunc (s *Of_OF_fsetContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitOf_OF_fset(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Of_OF_fset() (localctx IOf_OF_fsetContext) {\n\tlocalctx = NewOf_OF_fsetContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 150, SQLiteParserRULE_of_OF_fset)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2055)\n\t\tp.Match(SQLiteParserCOMMA)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(2056)\n\t\tp.Signed_number()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IDefault_DEFAULT__valueContext is an interface to support dynamic dispatch.\ntype IDefault_DEFAULT__valueContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tCOMMA() antlr.TerminalNode\n\tSigned_number() ISigned_numberContext\n\n\t// IsDefault_DEFAULT__valueContext differentiates from other interfaces.\n\tIsDefault_DEFAULT__valueContext()\n}\n\ntype Default_DEFAULT__valueContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyDefault_DEFAULT__valueContext() *Default_DEFAULT__valueContext {\n\tvar p = new(Default_DEFAULT__valueContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_default_DEFAULT__value\n\treturn p\n}\n\nfunc InitEmptyDefault_DEFAULT__valueContext(p *Default_DEFAULT__valueContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_default_DEFAULT__value\n}\n\nfunc (*Default_DEFAULT__valueContext) IsDefault_DEFAULT__valueContext() {}\n\nfunc NewDefault_DEFAULT__valueContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Default_DEFAULT__valueContext {\n\tvar p = new(Default_DEFAULT__valueContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_default_DEFAULT__value\n\n\treturn p\n}\n\nfunc (s *Default_DEFAULT__valueContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Default_DEFAULT__valueContext) COMMA() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, 0)\n}\n\nfunc (s *Default_DEFAULT__valueContext) Signed_number() ISigned_numberContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISigned_numberContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISigned_numberContext)\n}\n\nfunc (s *Default_DEFAULT__valueContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Default_DEFAULT__valueContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Default_DEFAULT__valueContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterDefault_DEFAULT__value(s)\n\t}\n}\n\nfunc (s *Default_DEFAULT__valueContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitDefault_DEFAULT__value(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Default_DEFAULT__value() (localctx IDefault_DEFAULT__valueContext) {\n\tlocalctx = NewDefault_DEFAULT__valueContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 152, SQLiteParserRULE_default_DEFAULT__value)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2058)\n\t\tp.Match(SQLiteParserCOMMA)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(2059)\n\t\tp.Signed_number()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IPartition_byContext is an interface to support dynamic dispatch.\ntype IPartition_byContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tPARTITION_() antlr.TerminalNode\n\tBY_() antlr.TerminalNode\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\n\t// IsPartition_byContext differentiates from other interfaces.\n\tIsPartition_byContext()\n}\n\ntype Partition_byContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyPartition_byContext() *Partition_byContext {\n\tvar p = new(Partition_byContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_partition_by\n\treturn p\n}\n\nfunc InitEmptyPartition_byContext(p *Partition_byContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_partition_by\n}\n\nfunc (*Partition_byContext) IsPartition_byContext() {}\n\nfunc NewPartition_byContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Partition_byContext {\n\tvar p = new(Partition_byContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_partition_by\n\n\treturn p\n}\n\nfunc (s *Partition_byContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Partition_byContext) PARTITION_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPARTITION_, 0)\n}\n\nfunc (s *Partition_byContext) BY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBY_, 0)\n}\n\nfunc (s *Partition_byContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Partition_byContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Partition_byContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Partition_byContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Partition_byContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterPartition_by(s)\n\t}\n}\n\nfunc (s *Partition_byContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitPartition_by(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Partition_by() (localctx IPartition_byContext) {\n\tlocalctx = NewPartition_byContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 154, SQLiteParserRULE_partition_by)\n\tvar _alt int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2061)\n\t\tp.Match(SQLiteParserPARTITION_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(2062)\n\t\tp.Match(SQLiteParserBY_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(2064)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_alt = 1\n\tfor ok := true; ok; ok = _alt != 2 && _alt != antlr.ATNInvalidAltNumber {\n\t\tswitch _alt {\n\t\tcase 1:\n\t\t\t{\n\t\t\t\tp.SetState(2063)\n\t\t\t\tp.expr(0)\n\t\t\t}\n\n\t\tdefault:\n\t\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\t\tgoto errorExit\n\t\t}\n\n\t\tp.SetState(2066)\n\t\tp.GetErrorHandler().Sync(p)\n\t\t_alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 305, p.GetParserRuleContext())\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IOrder_by_exprContext is an interface to support dynamic dispatch.\ntype IOrder_by_exprContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tORDER_() antlr.TerminalNode\n\tBY_() antlr.TerminalNode\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\n\t// IsOrder_by_exprContext differentiates from other interfaces.\n\tIsOrder_by_exprContext()\n}\n\ntype Order_by_exprContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyOrder_by_exprContext() *Order_by_exprContext {\n\tvar p = new(Order_by_exprContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_order_by_expr\n\treturn p\n}\n\nfunc InitEmptyOrder_by_exprContext(p *Order_by_exprContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_order_by_expr\n}\n\nfunc (*Order_by_exprContext) IsOrder_by_exprContext() {}\n\nfunc NewOrder_by_exprContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Order_by_exprContext {\n\tvar p = new(Order_by_exprContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_order_by_expr\n\n\treturn p\n}\n\nfunc (s *Order_by_exprContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Order_by_exprContext) ORDER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserORDER_, 0)\n}\n\nfunc (s *Order_by_exprContext) BY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBY_, 0)\n}\n\nfunc (s *Order_by_exprContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Order_by_exprContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Order_by_exprContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Order_by_exprContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Order_by_exprContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterOrder_by_expr(s)\n\t}\n}\n\nfunc (s *Order_by_exprContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitOrder_by_expr(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Order_by_expr() (localctx IOrder_by_exprContext) {\n\tlocalctx = NewOrder_by_exprContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 156, SQLiteParserRULE_order_by_expr)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2068)\n\t\tp.Match(SQLiteParserORDER_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(2069)\n\t\tp.Match(SQLiteParserBY_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\tp.SetState(2071)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor ok := true; ok; ok = ((int64((_la-3)) & ^0x3f) == 0 && ((int64(1)<<(_la-3))&-16776415) != 0) || ((int64((_la-67)) & ^0x3f) == 0 && ((int64(1)<<(_la-67))&-1) != 0) || ((int64((_la-131)) & ^0x3f) == 0 && ((int64(1)<<(_la-131))&9088264048033660927) != 0) {\n\t\t{\n\t\t\tp.SetState(2070)\n\t\t\tp.expr(0)\n\t\t}\n\n\t\tp.SetState(2073)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IOrder_by_expr_asc_descContext is an interface to support dynamic dispatch.\ntype IOrder_by_expr_asc_descContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tORDER_() antlr.TerminalNode\n\tBY_() antlr.TerminalNode\n\tOrder_by_expr_asc_desc() IOrder_by_expr_asc_descContext\n\n\t// IsOrder_by_expr_asc_descContext differentiates from other interfaces.\n\tIsOrder_by_expr_asc_descContext()\n}\n\ntype Order_by_expr_asc_descContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyOrder_by_expr_asc_descContext() *Order_by_expr_asc_descContext {\n\tvar p = new(Order_by_expr_asc_descContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_order_by_expr_asc_desc\n\treturn p\n}\n\nfunc InitEmptyOrder_by_expr_asc_descContext(p *Order_by_expr_asc_descContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_order_by_expr_asc_desc\n}\n\nfunc (*Order_by_expr_asc_descContext) IsOrder_by_expr_asc_descContext() {}\n\nfunc NewOrder_by_expr_asc_descContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Order_by_expr_asc_descContext {\n\tvar p = new(Order_by_expr_asc_descContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_order_by_expr_asc_desc\n\n\treturn p\n}\n\nfunc (s *Order_by_expr_asc_descContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Order_by_expr_asc_descContext) ORDER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserORDER_, 0)\n}\n\nfunc (s *Order_by_expr_asc_descContext) BY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBY_, 0)\n}\n\nfunc (s *Order_by_expr_asc_descContext) Order_by_expr_asc_desc() IOrder_by_expr_asc_descContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IOrder_by_expr_asc_descContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IOrder_by_expr_asc_descContext)\n}\n\nfunc (s *Order_by_expr_asc_descContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Order_by_expr_asc_descContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Order_by_expr_asc_descContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterOrder_by_expr_asc_desc(s)\n\t}\n}\n\nfunc (s *Order_by_expr_asc_descContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitOrder_by_expr_asc_desc(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Order_by_expr_asc_desc() (localctx IOrder_by_expr_asc_descContext) {\n\tlocalctx = NewOrder_by_expr_asc_descContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 158, SQLiteParserRULE_order_by_expr_asc_desc)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2075)\n\t\tp.Match(SQLiteParserORDER_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(2076)\n\t\tp.Match(SQLiteParserBY_)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\t{\n\t\tp.SetState(2077)\n\t\tp.Order_by_expr_asc_desc()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IExpr_asc_descContext is an interface to support dynamic dispatch.\ntype IExpr_asc_descContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAllExpr() []IExprContext\n\tExpr(i int) IExprContext\n\tAllAsc_desc() []IAsc_descContext\n\tAsc_desc(i int) IAsc_descContext\n\tAllCOMMA() []antlr.TerminalNode\n\tCOMMA(i int) antlr.TerminalNode\n\n\t// IsExpr_asc_descContext differentiates from other interfaces.\n\tIsExpr_asc_descContext()\n}\n\ntype Expr_asc_descContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyExpr_asc_descContext() *Expr_asc_descContext {\n\tvar p = new(Expr_asc_descContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_expr_asc_desc\n\treturn p\n}\n\nfunc InitEmptyExpr_asc_descContext(p *Expr_asc_descContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_expr_asc_desc\n}\n\nfunc (*Expr_asc_descContext) IsExpr_asc_descContext() {}\n\nfunc NewExpr_asc_descContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Expr_asc_descContext {\n\tvar p = new(Expr_asc_descContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_expr_asc_desc\n\n\treturn p\n}\n\nfunc (s *Expr_asc_descContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Expr_asc_descContext) AllExpr() []IExprContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IExprContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IExprContext); ok {\n\t\t\ttst[i] = t.(IExprContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Expr_asc_descContext) Expr(i int) IExprContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Expr_asc_descContext) AllAsc_desc() []IAsc_descContext {\n\tchildren := s.GetChildren()\n\tlen := 0\n\tfor _, ctx := range children {\n\t\tif _, ok := ctx.(IAsc_descContext); ok {\n\t\t\tlen++\n\t\t}\n\t}\n\n\ttst := make([]IAsc_descContext, len)\n\ti := 0\n\tfor _, ctx := range children {\n\t\tif t, ok := ctx.(IAsc_descContext); ok {\n\t\t\ttst[i] = t.(IAsc_descContext)\n\t\t\ti++\n\t\t}\n\t}\n\n\treturn tst\n}\n\nfunc (s *Expr_asc_descContext) Asc_desc(i int) IAsc_descContext {\n\tvar t antlr.RuleContext\n\tj := 0\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAsc_descContext); ok {\n\t\t\tif j == i {\n\t\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tj++\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAsc_descContext)\n}\n\nfunc (s *Expr_asc_descContext) AllCOMMA() []antlr.TerminalNode {\n\treturn s.GetTokens(SQLiteParserCOMMA)\n}\n\nfunc (s *Expr_asc_descContext) COMMA(i int) antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMA, i)\n}\n\nfunc (s *Expr_asc_descContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Expr_asc_descContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Expr_asc_descContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterExpr_asc_desc(s)\n\t}\n}\n\nfunc (s *Expr_asc_descContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitExpr_asc_desc(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Expr_asc_desc() (localctx IExpr_asc_descContext) {\n\tlocalctx = NewExpr_asc_descContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 160, SQLiteParserRULE_expr_asc_desc)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2079)\n\t\tp.expr(0)\n\t}\n\tp.SetState(2081)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tif _la == SQLiteParserASC_ || _la == SQLiteParserDESC_ {\n\t\t{\n\t\t\tp.SetState(2080)\n\t\t\tp.Asc_desc()\n\t\t}\n\n\t}\n\tp.SetState(2090)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\t_la = p.GetTokenStream().LA(1)\n\n\tfor _la == SQLiteParserCOMMA {\n\t\t{\n\t\t\tp.SetState(2083)\n\t\t\tp.Match(SQLiteParserCOMMA)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(2084)\n\t\t\tp.expr(0)\n\t\t}\n\t\tp.SetState(2086)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif _la == SQLiteParserASC_ || _la == SQLiteParserDESC_ {\n\t\t\t{\n\t\t\t\tp.SetState(2085)\n\t\t\t\tp.Asc_desc()\n\t\t\t}\n\n\t\t}\n\n\t\tp.SetState(2092)\n\t\tp.GetErrorHandler().Sync(p)\n\t\tif p.HasError() {\n\t\t\tgoto errorExit\n\t\t}\n\t\t_la = p.GetTokenStream().LA(1)\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IInitial_selectContext is an interface to support dynamic dispatch.\ntype IInitial_selectContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tSelect_stmt() ISelect_stmtContext\n\n\t// IsInitial_selectContext differentiates from other interfaces.\n\tIsInitial_selectContext()\n}\n\ntype Initial_selectContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyInitial_selectContext() *Initial_selectContext {\n\tvar p = new(Initial_selectContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_initial_select\n\treturn p\n}\n\nfunc InitEmptyInitial_selectContext(p *Initial_selectContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_initial_select\n}\n\nfunc (*Initial_selectContext) IsInitial_selectContext() {}\n\nfunc NewInitial_selectContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Initial_selectContext {\n\tvar p = new(Initial_selectContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_initial_select\n\n\treturn p\n}\n\nfunc (s *Initial_selectContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Initial_selectContext) Select_stmt() ISelect_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISelect_stmtContext)\n}\n\nfunc (s *Initial_selectContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Initial_selectContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Initial_selectContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterInitial_select(s)\n\t}\n}\n\nfunc (s *Initial_selectContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitInitial_select(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Initial_select() (localctx IInitial_selectContext) {\n\tlocalctx = NewInitial_selectContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 162, SQLiteParserRULE_initial_select)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2093)\n\t\tp.Select_stmt()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IRecursive__selectContext is an interface to support dynamic dispatch.\ntype IRecursive__selectContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tSelect_stmt() ISelect_stmtContext\n\n\t// IsRecursive__selectContext differentiates from other interfaces.\n\tIsRecursive__selectContext()\n}\n\ntype Recursive__selectContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyRecursive__selectContext() *Recursive__selectContext {\n\tvar p = new(Recursive__selectContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_recursive__select\n\treturn p\n}\n\nfunc InitEmptyRecursive__selectContext(p *Recursive__selectContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_recursive__select\n}\n\nfunc (*Recursive__selectContext) IsRecursive__selectContext() {}\n\nfunc NewRecursive__selectContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Recursive__selectContext {\n\tvar p = new(Recursive__selectContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_recursive__select\n\n\treturn p\n}\n\nfunc (s *Recursive__selectContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Recursive__selectContext) Select_stmt() ISelect_stmtContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISelect_stmtContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISelect_stmtContext)\n}\n\nfunc (s *Recursive__selectContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Recursive__selectContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Recursive__selectContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterRecursive__select(s)\n\t}\n}\n\nfunc (s *Recursive__selectContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitRecursive__select(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Recursive__select() (localctx IRecursive__selectContext) {\n\tlocalctx = NewRecursive__selectContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 164, SQLiteParserRULE_recursive__select)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2095)\n\t\tp.Select_stmt()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IUnary_operatorContext is an interface to support dynamic dispatch.\ntype IUnary_operatorContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tMINUS() antlr.TerminalNode\n\tPLUS() antlr.TerminalNode\n\tTILDE() antlr.TerminalNode\n\tNOT_() antlr.TerminalNode\n\n\t// IsUnary_operatorContext differentiates from other interfaces.\n\tIsUnary_operatorContext()\n}\n\ntype Unary_operatorContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyUnary_operatorContext() *Unary_operatorContext {\n\tvar p = new(Unary_operatorContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_unary_operator\n\treturn p\n}\n\nfunc InitEmptyUnary_operatorContext(p *Unary_operatorContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_unary_operator\n}\n\nfunc (*Unary_operatorContext) IsUnary_operatorContext() {}\n\nfunc NewUnary_operatorContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Unary_operatorContext {\n\tvar p = new(Unary_operatorContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_unary_operator\n\n\treturn p\n}\n\nfunc (s *Unary_operatorContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Unary_operatorContext) MINUS() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserMINUS, 0)\n}\n\nfunc (s *Unary_operatorContext) PLUS() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPLUS, 0)\n}\n\nfunc (s *Unary_operatorContext) TILDE() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTILDE, 0)\n}\n\nfunc (s *Unary_operatorContext) NOT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_, 0)\n}\n\nfunc (s *Unary_operatorContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Unary_operatorContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Unary_operatorContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterUnary_operator(s)\n\t}\n}\n\nfunc (s *Unary_operatorContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitUnary_operator(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Unary_operator() (localctx IUnary_operatorContext) {\n\tlocalctx = NewUnary_operatorContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 166, SQLiteParserRULE_unary_operator)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2097)\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif !(((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&6400) != 0) || _la == SQLiteParserNOT_) {\n\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t} else {\n\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\tp.Consume()\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IError_messageContext is an interface to support dynamic dispatch.\ntype IError_messageContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tSTRING_LITERAL() antlr.TerminalNode\n\n\t// IsError_messageContext differentiates from other interfaces.\n\tIsError_messageContext()\n}\n\ntype Error_messageContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyError_messageContext() *Error_messageContext {\n\tvar p = new(Error_messageContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_error_message\n\treturn p\n}\n\nfunc InitEmptyError_messageContext(p *Error_messageContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_error_message\n}\n\nfunc (*Error_messageContext) IsError_messageContext() {}\n\nfunc NewError_messageContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Error_messageContext {\n\tvar p = new(Error_messageContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_error_message\n\n\treturn p\n}\n\nfunc (s *Error_messageContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Error_messageContext) STRING_LITERAL() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTRING_LITERAL, 0)\n}\n\nfunc (s *Error_messageContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Error_messageContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Error_messageContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterError_message(s)\n\t}\n}\n\nfunc (s *Error_messageContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitError_message(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Error_message() (localctx IError_messageContext) {\n\tlocalctx = NewError_messageContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 168, SQLiteParserRULE_error_message)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2099)\n\t\tp.Match(SQLiteParserSTRING_LITERAL)\n\t\tif p.HasError() {\n\t\t\t// Recognition error - abort rule\n\t\t\tgoto errorExit\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IModule_argumentContext is an interface to support dynamic dispatch.\ntype IModule_argumentContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tExpr() IExprContext\n\tColumn_def() IColumn_defContext\n\n\t// IsModule_argumentContext differentiates from other interfaces.\n\tIsModule_argumentContext()\n}\n\ntype Module_argumentContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyModule_argumentContext() *Module_argumentContext {\n\tvar p = new(Module_argumentContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_module_argument\n\treturn p\n}\n\nfunc InitEmptyModule_argumentContext(p *Module_argumentContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_module_argument\n}\n\nfunc (*Module_argumentContext) IsModule_argumentContext() {}\n\nfunc NewModule_argumentContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Module_argumentContext {\n\tvar p = new(Module_argumentContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_module_argument\n\n\treturn p\n}\n\nfunc (s *Module_argumentContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Module_argumentContext) Expr() IExprContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IExprContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IExprContext)\n}\n\nfunc (s *Module_argumentContext) Column_def() IColumn_defContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IColumn_defContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IColumn_defContext)\n}\n\nfunc (s *Module_argumentContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Module_argumentContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Module_argumentContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterModule_argument(s)\n\t}\n}\n\nfunc (s *Module_argumentContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitModule_argument(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Module_argument() (localctx IModule_argumentContext) {\n\tlocalctx = NewModule_argumentContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 170, SQLiteParserRULE_module_argument)\n\tp.SetState(2103)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 310, p.GetParserRuleContext()) {\n\tcase 1:\n\t\tp.EnterOuterAlt(localctx, 1)\n\t\t{\n\t\t\tp.SetState(2101)\n\t\t\tp.expr(0)\n\t\t}\n\n\tcase 2:\n\t\tp.EnterOuterAlt(localctx, 2)\n\t\t{\n\t\t\tp.SetState(2102)\n\t\t\tp.Column_def()\n\t\t}\n\n\tcase antlr.ATNInvalidAltNumber:\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IColumn_aliasContext is an interface to support dynamic dispatch.\ntype IColumn_aliasContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tIDENTIFIER() antlr.TerminalNode\n\tSTRING_LITERAL() antlr.TerminalNode\n\n\t// IsColumn_aliasContext differentiates from other interfaces.\n\tIsColumn_aliasContext()\n}\n\ntype Column_aliasContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyColumn_aliasContext() *Column_aliasContext {\n\tvar p = new(Column_aliasContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_column_alias\n\treturn p\n}\n\nfunc InitEmptyColumn_aliasContext(p *Column_aliasContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_column_alias\n}\n\nfunc (*Column_aliasContext) IsColumn_aliasContext() {}\n\nfunc NewColumn_aliasContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Column_aliasContext {\n\tvar p = new(Column_aliasContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_column_alias\n\n\treturn p\n}\n\nfunc (s *Column_aliasContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Column_aliasContext) IDENTIFIER() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIDENTIFIER, 0)\n}\n\nfunc (s *Column_aliasContext) STRING_LITERAL() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTRING_LITERAL, 0)\n}\n\nfunc (s *Column_aliasContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Column_aliasContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Column_aliasContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterColumn_alias(s)\n\t}\n}\n\nfunc (s *Column_aliasContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitColumn_alias(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Column_alias() (localctx IColumn_aliasContext) {\n\tlocalctx = NewColumn_aliasContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 172, SQLiteParserRULE_column_alias)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2105)\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif !(_la == SQLiteParserIDENTIFIER || _la == SQLiteParserSTRING_LITERAL) {\n\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t} else {\n\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\tp.Consume()\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IKeywordContext is an interface to support dynamic dispatch.\ntype IKeywordContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tABORT_() antlr.TerminalNode\n\tACTION_() antlr.TerminalNode\n\tADD_() antlr.TerminalNode\n\tAFTER_() antlr.TerminalNode\n\tALL_() antlr.TerminalNode\n\tALTER_() antlr.TerminalNode\n\tANALYZE_() antlr.TerminalNode\n\tAND_() antlr.TerminalNode\n\tAS_() antlr.TerminalNode\n\tASC_() antlr.TerminalNode\n\tATTACH_() antlr.TerminalNode\n\tAUTOINCREMENT_() antlr.TerminalNode\n\tBEFORE_() antlr.TerminalNode\n\tBEGIN_() antlr.TerminalNode\n\tBETWEEN_() antlr.TerminalNode\n\tBY_() antlr.TerminalNode\n\tCASCADE_() antlr.TerminalNode\n\tCASE_() antlr.TerminalNode\n\tCAST_() antlr.TerminalNode\n\tCHECK_() antlr.TerminalNode\n\tCOLLATE_() antlr.TerminalNode\n\tCOLUMN_() antlr.TerminalNode\n\tCOMMIT_() antlr.TerminalNode\n\tCONFLICT_() antlr.TerminalNode\n\tCONSTRAINT_() antlr.TerminalNode\n\tCREATE_() antlr.TerminalNode\n\tCROSS_() antlr.TerminalNode\n\tCURRENT_DATE_() antlr.TerminalNode\n\tCURRENT_TIME_() antlr.TerminalNode\n\tCURRENT_TIMESTAMP_() antlr.TerminalNode\n\tDATABASE_() antlr.TerminalNode\n\tDEFAULT_() antlr.TerminalNode\n\tDEFERRABLE_() antlr.TerminalNode\n\tDEFERRED_() antlr.TerminalNode\n\tDELETE_() antlr.TerminalNode\n\tDESC_() antlr.TerminalNode\n\tDETACH_() antlr.TerminalNode\n\tDISTINCT_() antlr.TerminalNode\n\tDROP_() antlr.TerminalNode\n\tEACH_() antlr.TerminalNode\n\tELSE_() antlr.TerminalNode\n\tEND_() antlr.TerminalNode\n\tESCAPE_() antlr.TerminalNode\n\tEXCEPT_() antlr.TerminalNode\n\tEXCLUSIVE_() antlr.TerminalNode\n\tEXISTS_() antlr.TerminalNode\n\tEXPLAIN_() antlr.TerminalNode\n\tFAIL_() antlr.TerminalNode\n\tFOR_() antlr.TerminalNode\n\tFOREIGN_() antlr.TerminalNode\n\tFROM_() antlr.TerminalNode\n\tFULL_() antlr.TerminalNode\n\tGLOB_() antlr.TerminalNode\n\tGROUP_() antlr.TerminalNode\n\tHAVING_() antlr.TerminalNode\n\tIF_() antlr.TerminalNode\n\tIGNORE_() antlr.TerminalNode\n\tIMMEDIATE_() antlr.TerminalNode\n\tIN_() antlr.TerminalNode\n\tINDEX_() antlr.TerminalNode\n\tINDEXED_() antlr.TerminalNode\n\tINITIALLY_() antlr.TerminalNode\n\tINNER_() antlr.TerminalNode\n\tINSERT_() antlr.TerminalNode\n\tINSTEAD_() antlr.TerminalNode\n\tINTERSECT_() antlr.TerminalNode\n\tINTO_() antlr.TerminalNode\n\tIS_() antlr.TerminalNode\n\tISNULL_() antlr.TerminalNode\n\tJOIN_() antlr.TerminalNode\n\tKEY_() antlr.TerminalNode\n\tLEFT_() antlr.TerminalNode\n\tLIKE_() antlr.TerminalNode\n\tLIMIT_() antlr.TerminalNode\n\tMATCH_() antlr.TerminalNode\n\tNATURAL_() antlr.TerminalNode\n\tNO_() antlr.TerminalNode\n\tNOT_() antlr.TerminalNode\n\tNOTNULL_() antlr.TerminalNode\n\tNULL_() antlr.TerminalNode\n\tOF_() antlr.TerminalNode\n\tOFFSET_() antlr.TerminalNode\n\tON_() antlr.TerminalNode\n\tOR_() antlr.TerminalNode\n\tORDER_() antlr.TerminalNode\n\tOUTER_() antlr.TerminalNode\n\tPLAN_() antlr.TerminalNode\n\tPRAGMA_() antlr.TerminalNode\n\tPRIMARY_() antlr.TerminalNode\n\tQUERY_() antlr.TerminalNode\n\tRAISE_() antlr.TerminalNode\n\tRECURSIVE_() antlr.TerminalNode\n\tREFERENCES_() antlr.TerminalNode\n\tREGEXP_() antlr.TerminalNode\n\tREINDEX_() antlr.TerminalNode\n\tRELEASE_() antlr.TerminalNode\n\tRENAME_() antlr.TerminalNode\n\tREPLACE_() antlr.TerminalNode\n\tRESTRICT_() antlr.TerminalNode\n\tRETURNING_() antlr.TerminalNode\n\tRIGHT_() antlr.TerminalNode\n\tROLLBACK_() antlr.TerminalNode\n\tROW_() antlr.TerminalNode\n\tROWS_() antlr.TerminalNode\n\tSAVEPOINT_() antlr.TerminalNode\n\tSELECT_() antlr.TerminalNode\n\tSET_() antlr.TerminalNode\n\tSTRICT_() antlr.TerminalNode\n\tTABLE_() antlr.TerminalNode\n\tTEMP_() antlr.TerminalNode\n\tTEMPORARY_() antlr.TerminalNode\n\tTHEN_() antlr.TerminalNode\n\tTO_() antlr.TerminalNode\n\tTRANSACTION_() antlr.TerminalNode\n\tTRIGGER_() antlr.TerminalNode\n\tUNION_() antlr.TerminalNode\n\tUNIQUE_() antlr.TerminalNode\n\tUPDATE_() antlr.TerminalNode\n\tUSING_() antlr.TerminalNode\n\tVACUUM_() antlr.TerminalNode\n\tVALUES_() antlr.TerminalNode\n\tVIEW_() antlr.TerminalNode\n\tVIRTUAL_() antlr.TerminalNode\n\tWHEN_() antlr.TerminalNode\n\tWHERE_() antlr.TerminalNode\n\tWITH_() antlr.TerminalNode\n\tWITHOUT_() antlr.TerminalNode\n\tFIRST_VALUE_() antlr.TerminalNode\n\tOVER_() antlr.TerminalNode\n\tPARTITION_() antlr.TerminalNode\n\tRANGE_() antlr.TerminalNode\n\tPRECEDING_() antlr.TerminalNode\n\tUNBOUNDED_() antlr.TerminalNode\n\tCURRENT_() antlr.TerminalNode\n\tFOLLOWING_() antlr.TerminalNode\n\tCUME_DIST_() antlr.TerminalNode\n\tDENSE_RANK_() antlr.TerminalNode\n\tLAG_() antlr.TerminalNode\n\tLAST_VALUE_() antlr.TerminalNode\n\tLEAD_() antlr.TerminalNode\n\tNTH_VALUE_() antlr.TerminalNode\n\tNTILE_() antlr.TerminalNode\n\tPERCENT_RANK_() antlr.TerminalNode\n\tRANK_() antlr.TerminalNode\n\tROW_NUMBER_() antlr.TerminalNode\n\tGENERATED_() antlr.TerminalNode\n\tALWAYS_() antlr.TerminalNode\n\tSTORED_() antlr.TerminalNode\n\tTRUE_() antlr.TerminalNode\n\tFALSE_() antlr.TerminalNode\n\tWINDOW_() antlr.TerminalNode\n\tNULLS_() antlr.TerminalNode\n\tFIRST_() antlr.TerminalNode\n\tLAST_() antlr.TerminalNode\n\tFILTER_() antlr.TerminalNode\n\tGROUPS_() antlr.TerminalNode\n\tEXCLUDE_() antlr.TerminalNode\n\n\t// IsKeywordContext differentiates from other interfaces.\n\tIsKeywordContext()\n}\n\ntype KeywordContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyKeywordContext() *KeywordContext {\n\tvar p = new(KeywordContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_keyword\n\treturn p\n}\n\nfunc InitEmptyKeywordContext(p *KeywordContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_keyword\n}\n\nfunc (*KeywordContext) IsKeywordContext() {}\n\nfunc NewKeywordContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *KeywordContext {\n\tvar p = new(KeywordContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_keyword\n\n\treturn p\n}\n\nfunc (s *KeywordContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *KeywordContext) ABORT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserABORT_, 0)\n}\n\nfunc (s *KeywordContext) ACTION_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserACTION_, 0)\n}\n\nfunc (s *KeywordContext) ADD_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserADD_, 0)\n}\n\nfunc (s *KeywordContext) AFTER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAFTER_, 0)\n}\n\nfunc (s *KeywordContext) ALL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserALL_, 0)\n}\n\nfunc (s *KeywordContext) ALTER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserALTER_, 0)\n}\n\nfunc (s *KeywordContext) ANALYZE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserANALYZE_, 0)\n}\n\nfunc (s *KeywordContext) AND_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAND_, 0)\n}\n\nfunc (s *KeywordContext) AS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAS_, 0)\n}\n\nfunc (s *KeywordContext) ASC_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserASC_, 0)\n}\n\nfunc (s *KeywordContext) ATTACH_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserATTACH_, 0)\n}\n\nfunc (s *KeywordContext) AUTOINCREMENT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserAUTOINCREMENT_, 0)\n}\n\nfunc (s *KeywordContext) BEFORE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBEFORE_, 0)\n}\n\nfunc (s *KeywordContext) BEGIN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBEGIN_, 0)\n}\n\nfunc (s *KeywordContext) BETWEEN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBETWEEN_, 0)\n}\n\nfunc (s *KeywordContext) BY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserBY_, 0)\n}\n\nfunc (s *KeywordContext) CASCADE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCASCADE_, 0)\n}\n\nfunc (s *KeywordContext) CASE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCASE_, 0)\n}\n\nfunc (s *KeywordContext) CAST_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCAST_, 0)\n}\n\nfunc (s *KeywordContext) CHECK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCHECK_, 0)\n}\n\nfunc (s *KeywordContext) COLLATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOLLATE_, 0)\n}\n\nfunc (s *KeywordContext) COLUMN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOLUMN_, 0)\n}\n\nfunc (s *KeywordContext) COMMIT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCOMMIT_, 0)\n}\n\nfunc (s *KeywordContext) CONFLICT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCONFLICT_, 0)\n}\n\nfunc (s *KeywordContext) CONSTRAINT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCONSTRAINT_, 0)\n}\n\nfunc (s *KeywordContext) CREATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCREATE_, 0)\n}\n\nfunc (s *KeywordContext) CROSS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCROSS_, 0)\n}\n\nfunc (s *KeywordContext) CURRENT_DATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCURRENT_DATE_, 0)\n}\n\nfunc (s *KeywordContext) CURRENT_TIME_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCURRENT_TIME_, 0)\n}\n\nfunc (s *KeywordContext) CURRENT_TIMESTAMP_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCURRENT_TIMESTAMP_, 0)\n}\n\nfunc (s *KeywordContext) DATABASE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDATABASE_, 0)\n}\n\nfunc (s *KeywordContext) DEFAULT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDEFAULT_, 0)\n}\n\nfunc (s *KeywordContext) DEFERRABLE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDEFERRABLE_, 0)\n}\n\nfunc (s *KeywordContext) DEFERRED_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDEFERRED_, 0)\n}\n\nfunc (s *KeywordContext) DELETE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDELETE_, 0)\n}\n\nfunc (s *KeywordContext) DESC_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDESC_, 0)\n}\n\nfunc (s *KeywordContext) DETACH_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDETACH_, 0)\n}\n\nfunc (s *KeywordContext) DISTINCT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDISTINCT_, 0)\n}\n\nfunc (s *KeywordContext) DROP_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDROP_, 0)\n}\n\nfunc (s *KeywordContext) EACH_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEACH_, 0)\n}\n\nfunc (s *KeywordContext) ELSE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserELSE_, 0)\n}\n\nfunc (s *KeywordContext) END_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEND_, 0)\n}\n\nfunc (s *KeywordContext) ESCAPE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserESCAPE_, 0)\n}\n\nfunc (s *KeywordContext) EXCEPT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXCEPT_, 0)\n}\n\nfunc (s *KeywordContext) EXCLUSIVE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXCLUSIVE_, 0)\n}\n\nfunc (s *KeywordContext) EXISTS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXISTS_, 0)\n}\n\nfunc (s *KeywordContext) EXPLAIN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXPLAIN_, 0)\n}\n\nfunc (s *KeywordContext) FAIL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFAIL_, 0)\n}\n\nfunc (s *KeywordContext) FOR_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFOR_, 0)\n}\n\nfunc (s *KeywordContext) FOREIGN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFOREIGN_, 0)\n}\n\nfunc (s *KeywordContext) FROM_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFROM_, 0)\n}\n\nfunc (s *KeywordContext) FULL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFULL_, 0)\n}\n\nfunc (s *KeywordContext) GLOB_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserGLOB_, 0)\n}\n\nfunc (s *KeywordContext) GROUP_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserGROUP_, 0)\n}\n\nfunc (s *KeywordContext) HAVING_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserHAVING_, 0)\n}\n\nfunc (s *KeywordContext) IF_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIF_, 0)\n}\n\nfunc (s *KeywordContext) IGNORE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIGNORE_, 0)\n}\n\nfunc (s *KeywordContext) IMMEDIATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIMMEDIATE_, 0)\n}\n\nfunc (s *KeywordContext) IN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIN_, 0)\n}\n\nfunc (s *KeywordContext) INDEX_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINDEX_, 0)\n}\n\nfunc (s *KeywordContext) INDEXED_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINDEXED_, 0)\n}\n\nfunc (s *KeywordContext) INITIALLY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINITIALLY_, 0)\n}\n\nfunc (s *KeywordContext) INNER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINNER_, 0)\n}\n\nfunc (s *KeywordContext) INSERT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINSERT_, 0)\n}\n\nfunc (s *KeywordContext) INSTEAD_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINSTEAD_, 0)\n}\n\nfunc (s *KeywordContext) INTERSECT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINTERSECT_, 0)\n}\n\nfunc (s *KeywordContext) INTO_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserINTO_, 0)\n}\n\nfunc (s *KeywordContext) IS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIS_, 0)\n}\n\nfunc (s *KeywordContext) ISNULL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserISNULL_, 0)\n}\n\nfunc (s *KeywordContext) JOIN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserJOIN_, 0)\n}\n\nfunc (s *KeywordContext) KEY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserKEY_, 0)\n}\n\nfunc (s *KeywordContext) LEFT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLEFT_, 0)\n}\n\nfunc (s *KeywordContext) LIKE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLIKE_, 0)\n}\n\nfunc (s *KeywordContext) LIMIT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLIMIT_, 0)\n}\n\nfunc (s *KeywordContext) MATCH_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserMATCH_, 0)\n}\n\nfunc (s *KeywordContext) NATURAL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNATURAL_, 0)\n}\n\nfunc (s *KeywordContext) NO_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNO_, 0)\n}\n\nfunc (s *KeywordContext) NOT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOT_, 0)\n}\n\nfunc (s *KeywordContext) NOTNULL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNOTNULL_, 0)\n}\n\nfunc (s *KeywordContext) NULL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNULL_, 0)\n}\n\nfunc (s *KeywordContext) OF_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOF_, 0)\n}\n\nfunc (s *KeywordContext) OFFSET_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOFFSET_, 0)\n}\n\nfunc (s *KeywordContext) ON_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserON_, 0)\n}\n\nfunc (s *KeywordContext) OR_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOR_, 0)\n}\n\nfunc (s *KeywordContext) ORDER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserORDER_, 0)\n}\n\nfunc (s *KeywordContext) OUTER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOUTER_, 0)\n}\n\nfunc (s *KeywordContext) PLAN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPLAN_, 0)\n}\n\nfunc (s *KeywordContext) PRAGMA_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPRAGMA_, 0)\n}\n\nfunc (s *KeywordContext) PRIMARY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPRIMARY_, 0)\n}\n\nfunc (s *KeywordContext) QUERY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserQUERY_, 0)\n}\n\nfunc (s *KeywordContext) RAISE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRAISE_, 0)\n}\n\nfunc (s *KeywordContext) RECURSIVE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRECURSIVE_, 0)\n}\n\nfunc (s *KeywordContext) REFERENCES_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserREFERENCES_, 0)\n}\n\nfunc (s *KeywordContext) REGEXP_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserREGEXP_, 0)\n}\n\nfunc (s *KeywordContext) REINDEX_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserREINDEX_, 0)\n}\n\nfunc (s *KeywordContext) RELEASE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRELEASE_, 0)\n}\n\nfunc (s *KeywordContext) RENAME_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRENAME_, 0)\n}\n\nfunc (s *KeywordContext) REPLACE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserREPLACE_, 0)\n}\n\nfunc (s *KeywordContext) RESTRICT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRESTRICT_, 0)\n}\n\nfunc (s *KeywordContext) RETURNING_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRETURNING_, 0)\n}\n\nfunc (s *KeywordContext) RIGHT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRIGHT_, 0)\n}\n\nfunc (s *KeywordContext) ROLLBACK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROLLBACK_, 0)\n}\n\nfunc (s *KeywordContext) ROW_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROW_, 0)\n}\n\nfunc (s *KeywordContext) ROWS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROWS_, 0)\n}\n\nfunc (s *KeywordContext) SAVEPOINT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSAVEPOINT_, 0)\n}\n\nfunc (s *KeywordContext) SELECT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSELECT_, 0)\n}\n\nfunc (s *KeywordContext) SET_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSET_, 0)\n}\n\nfunc (s *KeywordContext) STRICT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTRICT_, 0)\n}\n\nfunc (s *KeywordContext) TABLE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTABLE_, 0)\n}\n\nfunc (s *KeywordContext) TEMP_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTEMP_, 0)\n}\n\nfunc (s *KeywordContext) TEMPORARY_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTEMPORARY_, 0)\n}\n\nfunc (s *KeywordContext) THEN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTHEN_, 0)\n}\n\nfunc (s *KeywordContext) TO_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTO_, 0)\n}\n\nfunc (s *KeywordContext) TRANSACTION_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTRANSACTION_, 0)\n}\n\nfunc (s *KeywordContext) TRIGGER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTRIGGER_, 0)\n}\n\nfunc (s *KeywordContext) UNION_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUNION_, 0)\n}\n\nfunc (s *KeywordContext) UNIQUE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUNIQUE_, 0)\n}\n\nfunc (s *KeywordContext) UPDATE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUPDATE_, 0)\n}\n\nfunc (s *KeywordContext) USING_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUSING_, 0)\n}\n\nfunc (s *KeywordContext) VACUUM_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserVACUUM_, 0)\n}\n\nfunc (s *KeywordContext) VALUES_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserVALUES_, 0)\n}\n\nfunc (s *KeywordContext) VIEW_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserVIEW_, 0)\n}\n\nfunc (s *KeywordContext) VIRTUAL_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserVIRTUAL_, 0)\n}\n\nfunc (s *KeywordContext) WHEN_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWHEN_, 0)\n}\n\nfunc (s *KeywordContext) WHERE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWHERE_, 0)\n}\n\nfunc (s *KeywordContext) WITH_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWITH_, 0)\n}\n\nfunc (s *KeywordContext) WITHOUT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWITHOUT_, 0)\n}\n\nfunc (s *KeywordContext) FIRST_VALUE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFIRST_VALUE_, 0)\n}\n\nfunc (s *KeywordContext) OVER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOVER_, 0)\n}\n\nfunc (s *KeywordContext) PARTITION_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPARTITION_, 0)\n}\n\nfunc (s *KeywordContext) RANGE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRANGE_, 0)\n}\n\nfunc (s *KeywordContext) PRECEDING_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPRECEDING_, 0)\n}\n\nfunc (s *KeywordContext) UNBOUNDED_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserUNBOUNDED_, 0)\n}\n\nfunc (s *KeywordContext) CURRENT_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCURRENT_, 0)\n}\n\nfunc (s *KeywordContext) FOLLOWING_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFOLLOWING_, 0)\n}\n\nfunc (s *KeywordContext) CUME_DIST_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCUME_DIST_, 0)\n}\n\nfunc (s *KeywordContext) DENSE_RANK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDENSE_RANK_, 0)\n}\n\nfunc (s *KeywordContext) LAG_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLAG_, 0)\n}\n\nfunc (s *KeywordContext) LAST_VALUE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLAST_VALUE_, 0)\n}\n\nfunc (s *KeywordContext) LEAD_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLEAD_, 0)\n}\n\nfunc (s *KeywordContext) NTH_VALUE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNTH_VALUE_, 0)\n}\n\nfunc (s *KeywordContext) NTILE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNTILE_, 0)\n}\n\nfunc (s *KeywordContext) PERCENT_RANK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserPERCENT_RANK_, 0)\n}\n\nfunc (s *KeywordContext) RANK_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserRANK_, 0)\n}\n\nfunc (s *KeywordContext) ROW_NUMBER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserROW_NUMBER_, 0)\n}\n\nfunc (s *KeywordContext) GENERATED_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserGENERATED_, 0)\n}\n\nfunc (s *KeywordContext) ALWAYS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserALWAYS_, 0)\n}\n\nfunc (s *KeywordContext) STORED_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTORED_, 0)\n}\n\nfunc (s *KeywordContext) TRUE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserTRUE_, 0)\n}\n\nfunc (s *KeywordContext) FALSE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFALSE_, 0)\n}\n\nfunc (s *KeywordContext) WINDOW_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserWINDOW_, 0)\n}\n\nfunc (s *KeywordContext) NULLS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserNULLS_, 0)\n}\n\nfunc (s *KeywordContext) FIRST_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFIRST_, 0)\n}\n\nfunc (s *KeywordContext) LAST_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserLAST_, 0)\n}\n\nfunc (s *KeywordContext) FILTER_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserFILTER_, 0)\n}\n\nfunc (s *KeywordContext) GROUPS_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserGROUPS_, 0)\n}\n\nfunc (s *KeywordContext) EXCLUDE_() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserEXCLUDE_, 0)\n}\n\nfunc (s *KeywordContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *KeywordContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *KeywordContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterKeyword(s)\n\t}\n}\n\nfunc (s *KeywordContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitKeyword(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Keyword() (localctx IKeywordContext) {\n\tlocalctx = NewKeywordContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 174, SQLiteParserRULE_keyword)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2107)\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif !(((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&-134217728) != 0) || ((int64((_la-64)) & ^0x3f) == 0 && ((int64(1)<<(_la-64))&-1) != 0) || ((int64((_la-128)) & ^0x3f) == 0 && ((int64(1)<<(_la-128))&72057594037927935) != 0)) {\n\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t} else {\n\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\tp.Consume()\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// INameContext is an interface to support dynamic dispatch.\ntype INameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsNameContext differentiates from other interfaces.\n\tIsNameContext()\n}\n\ntype NameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyNameContext() *NameContext {\n\tvar p = new(NameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_name\n\treturn p\n}\n\nfunc InitEmptyNameContext(p *NameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_name\n}\n\nfunc (*NameContext) IsNameContext() {}\n\nfunc NewNameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *NameContext {\n\tvar p = new(NameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_name\n\n\treturn p\n}\n\nfunc (s *NameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *NameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *NameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *NameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *NameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterName(s)\n\t}\n}\n\nfunc (s *NameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitName(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Name() (localctx INameContext) {\n\tlocalctx = NewNameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 176, SQLiteParserRULE_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2109)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IFunction_nameContext is an interface to support dynamic dispatch.\ntype IFunction_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsFunction_nameContext differentiates from other interfaces.\n\tIsFunction_nameContext()\n}\n\ntype Function_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyFunction_nameContext() *Function_nameContext {\n\tvar p = new(Function_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_function_name\n\treturn p\n}\n\nfunc InitEmptyFunction_nameContext(p *Function_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_function_name\n}\n\nfunc (*Function_nameContext) IsFunction_nameContext() {}\n\nfunc NewFunction_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Function_nameContext {\n\tvar p = new(Function_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_function_name\n\n\treturn p\n}\n\nfunc (s *Function_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Function_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Function_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Function_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Function_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterFunction_name(s)\n\t}\n}\n\nfunc (s *Function_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitFunction_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Function_name() (localctx IFunction_nameContext) {\n\tlocalctx = NewFunction_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 178, SQLiteParserRULE_function_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2111)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IQualified_function_nameContext is an interface to support dynamic dispatch.\ntype IQualified_function_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tFunction_name() IFunction_nameContext\n\tSchema_name() ISchema_nameContext\n\tDOT() antlr.TerminalNode\n\n\t// IsQualified_function_nameContext differentiates from other interfaces.\n\tIsQualified_function_nameContext()\n}\n\ntype Qualified_function_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyQualified_function_nameContext() *Qualified_function_nameContext {\n\tvar p = new(Qualified_function_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_qualified_function_name\n\treturn p\n}\n\nfunc InitEmptyQualified_function_nameContext(p *Qualified_function_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_qualified_function_name\n}\n\nfunc (*Qualified_function_nameContext) IsQualified_function_nameContext() {}\n\nfunc NewQualified_function_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Qualified_function_nameContext {\n\tvar p = new(Qualified_function_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_qualified_function_name\n\n\treturn p\n}\n\nfunc (s *Qualified_function_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Qualified_function_nameContext) Function_name() IFunction_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IFunction_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IFunction_nameContext)\n}\n\nfunc (s *Qualified_function_nameContext) Schema_name() ISchema_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(ISchema_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(ISchema_nameContext)\n}\n\nfunc (s *Qualified_function_nameContext) DOT() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserDOT, 0)\n}\n\nfunc (s *Qualified_function_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Qualified_function_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Qualified_function_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterQualified_function_name(s)\n\t}\n}\n\nfunc (s *Qualified_function_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitQualified_function_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Qualified_function_name() (localctx IQualified_function_nameContext) {\n\tlocalctx = NewQualified_function_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 180, SQLiteParserRULE_qualified_function_name)\n\tp.EnterOuterAlt(localctx, 1)\n\tp.SetState(2116)\n\tp.GetErrorHandler().Sync(p)\n\n\tif p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 311, p.GetParserRuleContext()) == 1 {\n\t\t{\n\t\t\tp.SetState(2113)\n\t\t\tp.Schema_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(2114)\n\t\t\tp.Match(SQLiteParserDOT)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\t} else if p.HasError() { // JIM\n\t\tgoto errorExit\n\t}\n\t{\n\t\tp.SetState(2118)\n\t\tp.Function_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ISchema_nameContext is an interface to support dynamic dispatch.\ntype ISchema_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsSchema_nameContext differentiates from other interfaces.\n\tIsSchema_nameContext()\n}\n\ntype Schema_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptySchema_nameContext() *Schema_nameContext {\n\tvar p = new(Schema_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_schema_name\n\treturn p\n}\n\nfunc InitEmptySchema_nameContext(p *Schema_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_schema_name\n}\n\nfunc (*Schema_nameContext) IsSchema_nameContext() {}\n\nfunc NewSchema_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Schema_nameContext {\n\tvar p = new(Schema_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_schema_name\n\n\treturn p\n}\n\nfunc (s *Schema_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Schema_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Schema_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Schema_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Schema_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterSchema_name(s)\n\t}\n}\n\nfunc (s *Schema_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitSchema_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Schema_name() (localctx ISchema_nameContext) {\n\tlocalctx = NewSchema_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 182, SQLiteParserRULE_schema_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2120)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ITable_nameContext is an interface to support dynamic dispatch.\ntype ITable_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsTable_nameContext differentiates from other interfaces.\n\tIsTable_nameContext()\n}\n\ntype Table_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyTable_nameContext() *Table_nameContext {\n\tvar p = new(Table_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_name\n\treturn p\n}\n\nfunc InitEmptyTable_nameContext(p *Table_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_name\n}\n\nfunc (*Table_nameContext) IsTable_nameContext() {}\n\nfunc NewTable_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Table_nameContext {\n\tvar p = new(Table_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_table_name\n\n\treturn p\n}\n\nfunc (s *Table_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Table_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Table_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Table_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Table_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterTable_name(s)\n\t}\n}\n\nfunc (s *Table_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitTable_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Table_name() (localctx ITable_nameContext) {\n\tlocalctx = NewTable_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 184, SQLiteParserRULE_table_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2122)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ITable_or_index_nameContext is an interface to support dynamic dispatch.\ntype ITable_or_index_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsTable_or_index_nameContext differentiates from other interfaces.\n\tIsTable_or_index_nameContext()\n}\n\ntype Table_or_index_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyTable_or_index_nameContext() *Table_or_index_nameContext {\n\tvar p = new(Table_or_index_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_or_index_name\n\treturn p\n}\n\nfunc InitEmptyTable_or_index_nameContext(p *Table_or_index_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_or_index_name\n}\n\nfunc (*Table_or_index_nameContext) IsTable_or_index_nameContext() {}\n\nfunc NewTable_or_index_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Table_or_index_nameContext {\n\tvar p = new(Table_or_index_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_table_or_index_name\n\n\treturn p\n}\n\nfunc (s *Table_or_index_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Table_or_index_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Table_or_index_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Table_or_index_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Table_or_index_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterTable_or_index_name(s)\n\t}\n}\n\nfunc (s *Table_or_index_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitTable_or_index_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Table_or_index_name() (localctx ITable_or_index_nameContext) {\n\tlocalctx = NewTable_or_index_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 186, SQLiteParserRULE_table_or_index_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2124)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// INew_table_nameContext is an interface to support dynamic dispatch.\ntype INew_table_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsNew_table_nameContext differentiates from other interfaces.\n\tIsNew_table_nameContext()\n}\n\ntype New_table_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyNew_table_nameContext() *New_table_nameContext {\n\tvar p = new(New_table_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_new_table_name\n\treturn p\n}\n\nfunc InitEmptyNew_table_nameContext(p *New_table_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_new_table_name\n}\n\nfunc (*New_table_nameContext) IsNew_table_nameContext() {}\n\nfunc NewNew_table_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *New_table_nameContext {\n\tvar p = new(New_table_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_new_table_name\n\n\treturn p\n}\n\nfunc (s *New_table_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *New_table_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *New_table_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *New_table_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *New_table_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterNew_table_name(s)\n\t}\n}\n\nfunc (s *New_table_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitNew_table_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) New_table_name() (localctx INew_table_nameContext) {\n\tlocalctx = NewNew_table_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 188, SQLiteParserRULE_new_table_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2126)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IColumn_nameContext is an interface to support dynamic dispatch.\ntype IColumn_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsColumn_nameContext differentiates from other interfaces.\n\tIsColumn_nameContext()\n}\n\ntype Column_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyColumn_nameContext() *Column_nameContext {\n\tvar p = new(Column_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_column_name\n\treturn p\n}\n\nfunc InitEmptyColumn_nameContext(p *Column_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_column_name\n}\n\nfunc (*Column_nameContext) IsColumn_nameContext() {}\n\nfunc NewColumn_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Column_nameContext {\n\tvar p = new(Column_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_column_name\n\n\treturn p\n}\n\nfunc (s *Column_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Column_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Column_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Column_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Column_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterColumn_name(s)\n\t}\n}\n\nfunc (s *Column_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitColumn_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Column_name() (localctx IColumn_nameContext) {\n\tlocalctx = NewColumn_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 190, SQLiteParserRULE_column_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2128)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ICollation_nameContext is an interface to support dynamic dispatch.\ntype ICollation_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsCollation_nameContext differentiates from other interfaces.\n\tIsCollation_nameContext()\n}\n\ntype Collation_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyCollation_nameContext() *Collation_nameContext {\n\tvar p = new(Collation_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_collation_name\n\treturn p\n}\n\nfunc InitEmptyCollation_nameContext(p *Collation_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_collation_name\n}\n\nfunc (*Collation_nameContext) IsCollation_nameContext() {}\n\nfunc NewCollation_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Collation_nameContext {\n\tvar p = new(Collation_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_collation_name\n\n\treturn p\n}\n\nfunc (s *Collation_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Collation_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Collation_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Collation_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Collation_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterCollation_name(s)\n\t}\n}\n\nfunc (s *Collation_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitCollation_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Collation_name() (localctx ICollation_nameContext) {\n\tlocalctx = NewCollation_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 192, SQLiteParserRULE_collation_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2130)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IForeign_tableContext is an interface to support dynamic dispatch.\ntype IForeign_tableContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsForeign_tableContext differentiates from other interfaces.\n\tIsForeign_tableContext()\n}\n\ntype Foreign_tableContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyForeign_tableContext() *Foreign_tableContext {\n\tvar p = new(Foreign_tableContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_foreign_table\n\treturn p\n}\n\nfunc InitEmptyForeign_tableContext(p *Foreign_tableContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_foreign_table\n}\n\nfunc (*Foreign_tableContext) IsForeign_tableContext() {}\n\nfunc NewForeign_tableContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Foreign_tableContext {\n\tvar p = new(Foreign_tableContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_foreign_table\n\n\treturn p\n}\n\nfunc (s *Foreign_tableContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Foreign_tableContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Foreign_tableContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Foreign_tableContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Foreign_tableContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterForeign_table(s)\n\t}\n}\n\nfunc (s *Foreign_tableContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitForeign_table(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Foreign_table() (localctx IForeign_tableContext) {\n\tlocalctx = NewForeign_tableContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 194, SQLiteParserRULE_foreign_table)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2132)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IIndex_nameContext is an interface to support dynamic dispatch.\ntype IIndex_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsIndex_nameContext differentiates from other interfaces.\n\tIsIndex_nameContext()\n}\n\ntype Index_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyIndex_nameContext() *Index_nameContext {\n\tvar p = new(Index_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_index_name\n\treturn p\n}\n\nfunc InitEmptyIndex_nameContext(p *Index_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_index_name\n}\n\nfunc (*Index_nameContext) IsIndex_nameContext() {}\n\nfunc NewIndex_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Index_nameContext {\n\tvar p = new(Index_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_index_name\n\n\treturn p\n}\n\nfunc (s *Index_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Index_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Index_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Index_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Index_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterIndex_name(s)\n\t}\n}\n\nfunc (s *Index_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitIndex_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Index_name() (localctx IIndex_nameContext) {\n\tlocalctx = NewIndex_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 196, SQLiteParserRULE_index_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2134)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ITrigger_nameContext is an interface to support dynamic dispatch.\ntype ITrigger_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsTrigger_nameContext differentiates from other interfaces.\n\tIsTrigger_nameContext()\n}\n\ntype Trigger_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyTrigger_nameContext() *Trigger_nameContext {\n\tvar p = new(Trigger_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_trigger_name\n\treturn p\n}\n\nfunc InitEmptyTrigger_nameContext(p *Trigger_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_trigger_name\n}\n\nfunc (*Trigger_nameContext) IsTrigger_nameContext() {}\n\nfunc NewTrigger_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Trigger_nameContext {\n\tvar p = new(Trigger_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_trigger_name\n\n\treturn p\n}\n\nfunc (s *Trigger_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Trigger_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Trigger_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Trigger_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Trigger_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterTrigger_name(s)\n\t}\n}\n\nfunc (s *Trigger_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitTrigger_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Trigger_name() (localctx ITrigger_nameContext) {\n\tlocalctx = NewTrigger_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 198, SQLiteParserRULE_trigger_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2136)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IView_nameContext is an interface to support dynamic dispatch.\ntype IView_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsView_nameContext differentiates from other interfaces.\n\tIsView_nameContext()\n}\n\ntype View_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyView_nameContext() *View_nameContext {\n\tvar p = new(View_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_view_name\n\treturn p\n}\n\nfunc InitEmptyView_nameContext(p *View_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_view_name\n}\n\nfunc (*View_nameContext) IsView_nameContext() {}\n\nfunc NewView_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *View_nameContext {\n\tvar p = new(View_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_view_name\n\n\treturn p\n}\n\nfunc (s *View_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *View_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *View_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *View_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *View_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterView_name(s)\n\t}\n}\n\nfunc (s *View_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitView_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) View_name() (localctx IView_nameContext) {\n\tlocalctx = NewView_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 200, SQLiteParserRULE_view_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2138)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IModule_nameContext is an interface to support dynamic dispatch.\ntype IModule_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsModule_nameContext differentiates from other interfaces.\n\tIsModule_nameContext()\n}\n\ntype Module_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyModule_nameContext() *Module_nameContext {\n\tvar p = new(Module_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_module_name\n\treturn p\n}\n\nfunc InitEmptyModule_nameContext(p *Module_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_module_name\n}\n\nfunc (*Module_nameContext) IsModule_nameContext() {}\n\nfunc NewModule_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Module_nameContext {\n\tvar p = new(Module_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_module_name\n\n\treturn p\n}\n\nfunc (s *Module_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Module_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Module_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Module_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Module_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterModule_name(s)\n\t}\n}\n\nfunc (s *Module_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitModule_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Module_name() (localctx IModule_nameContext) {\n\tlocalctx = NewModule_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 202, SQLiteParserRULE_module_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2140)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IPragma_nameContext is an interface to support dynamic dispatch.\ntype IPragma_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsPragma_nameContext differentiates from other interfaces.\n\tIsPragma_nameContext()\n}\n\ntype Pragma_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyPragma_nameContext() *Pragma_nameContext {\n\tvar p = new(Pragma_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_pragma_name\n\treturn p\n}\n\nfunc InitEmptyPragma_nameContext(p *Pragma_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_pragma_name\n}\n\nfunc (*Pragma_nameContext) IsPragma_nameContext() {}\n\nfunc NewPragma_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Pragma_nameContext {\n\tvar p = new(Pragma_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_pragma_name\n\n\treturn p\n}\n\nfunc (s *Pragma_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Pragma_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Pragma_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Pragma_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Pragma_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterPragma_name(s)\n\t}\n}\n\nfunc (s *Pragma_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitPragma_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Pragma_name() (localctx IPragma_nameContext) {\n\tlocalctx = NewPragma_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 204, SQLiteParserRULE_pragma_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2142)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ISavepoint_nameContext is an interface to support dynamic dispatch.\ntype ISavepoint_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsSavepoint_nameContext differentiates from other interfaces.\n\tIsSavepoint_nameContext()\n}\n\ntype Savepoint_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptySavepoint_nameContext() *Savepoint_nameContext {\n\tvar p = new(Savepoint_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_savepoint_name\n\treturn p\n}\n\nfunc InitEmptySavepoint_nameContext(p *Savepoint_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_savepoint_name\n}\n\nfunc (*Savepoint_nameContext) IsSavepoint_nameContext() {}\n\nfunc NewSavepoint_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Savepoint_nameContext {\n\tvar p = new(Savepoint_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_savepoint_name\n\n\treturn p\n}\n\nfunc (s *Savepoint_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Savepoint_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Savepoint_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Savepoint_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Savepoint_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterSavepoint_name(s)\n\t}\n}\n\nfunc (s *Savepoint_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitSavepoint_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Savepoint_name() (localctx ISavepoint_nameContext) {\n\tlocalctx = NewSavepoint_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 206, SQLiteParserRULE_savepoint_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2144)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ITable_aliasContext is an interface to support dynamic dispatch.\ntype ITable_aliasContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tIDENTIFIER() antlr.TerminalNode\n\tSTRING_LITERAL() antlr.TerminalNode\n\n\t// IsTable_aliasContext differentiates from other interfaces.\n\tIsTable_aliasContext()\n}\n\ntype Table_aliasContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyTable_aliasContext() *Table_aliasContext {\n\tvar p = new(Table_aliasContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_alias\n\treturn p\n}\n\nfunc InitEmptyTable_aliasContext(p *Table_aliasContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_alias\n}\n\nfunc (*Table_aliasContext) IsTable_aliasContext() {}\n\nfunc NewTable_aliasContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Table_aliasContext {\n\tvar p = new(Table_aliasContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_table_alias\n\n\treturn p\n}\n\nfunc (s *Table_aliasContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Table_aliasContext) IDENTIFIER() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIDENTIFIER, 0)\n}\n\nfunc (s *Table_aliasContext) STRING_LITERAL() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTRING_LITERAL, 0)\n}\n\nfunc (s *Table_aliasContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Table_aliasContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Table_aliasContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterTable_alias(s)\n\t}\n}\n\nfunc (s *Table_aliasContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitTable_alias(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Table_alias() (localctx ITable_aliasContext) {\n\tlocalctx = NewTable_aliasContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 208, SQLiteParserRULE_table_alias)\n\tvar _la int\n\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2146)\n\t\t_la = p.GetTokenStream().LA(1)\n\n\t\tif !(_la == SQLiteParserIDENTIFIER || _la == SQLiteParserSTRING_LITERAL) {\n\t\t\tp.GetErrorHandler().RecoverInline(p)\n\t\t} else {\n\t\t\tp.GetErrorHandler().ReportMatch(p)\n\t\t\tp.Consume()\n\t\t}\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ITable_alias_fallbackContext is an interface to support dynamic dispatch.\ntype ITable_alias_fallbackContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsTable_alias_fallbackContext differentiates from other interfaces.\n\tIsTable_alias_fallbackContext()\n}\n\ntype Table_alias_fallbackContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyTable_alias_fallbackContext() *Table_alias_fallbackContext {\n\tvar p = new(Table_alias_fallbackContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_alias_fallback\n\treturn p\n}\n\nfunc InitEmptyTable_alias_fallbackContext(p *Table_alias_fallbackContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_alias_fallback\n}\n\nfunc (*Table_alias_fallbackContext) IsTable_alias_fallbackContext() {}\n\nfunc NewTable_alias_fallbackContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Table_alias_fallbackContext {\n\tvar p = new(Table_alias_fallbackContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_table_alias_fallback\n\n\treturn p\n}\n\nfunc (s *Table_alias_fallbackContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Table_alias_fallbackContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Table_alias_fallbackContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Table_alias_fallbackContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Table_alias_fallbackContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterTable_alias_fallback(s)\n\t}\n}\n\nfunc (s *Table_alias_fallbackContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitTable_alias_fallback(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Table_alias_fallback() (localctx ITable_alias_fallbackContext) {\n\tlocalctx = NewTable_alias_fallbackContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 210, SQLiteParserRULE_table_alias_fallback)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2148)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ITransaction_nameContext is an interface to support dynamic dispatch.\ntype ITransaction_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsTransaction_nameContext differentiates from other interfaces.\n\tIsTransaction_nameContext()\n}\n\ntype Transaction_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyTransaction_nameContext() *Transaction_nameContext {\n\tvar p = new(Transaction_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_transaction_name\n\treturn p\n}\n\nfunc InitEmptyTransaction_nameContext(p *Transaction_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_transaction_name\n}\n\nfunc (*Transaction_nameContext) IsTransaction_nameContext() {}\n\nfunc NewTransaction_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Transaction_nameContext {\n\tvar p = new(Transaction_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_transaction_name\n\n\treturn p\n}\n\nfunc (s *Transaction_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Transaction_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Transaction_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Transaction_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Transaction_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterTransaction_name(s)\n\t}\n}\n\nfunc (s *Transaction_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitTransaction_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Transaction_name() (localctx ITransaction_nameContext) {\n\tlocalctx = NewTransaction_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 212, SQLiteParserRULE_transaction_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2150)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IWindow_nameContext is an interface to support dynamic dispatch.\ntype IWindow_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsWindow_nameContext differentiates from other interfaces.\n\tIsWindow_nameContext()\n}\n\ntype Window_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyWindow_nameContext() *Window_nameContext {\n\tvar p = new(Window_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_window_name\n\treturn p\n}\n\nfunc InitEmptyWindow_nameContext(p *Window_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_window_name\n}\n\nfunc (*Window_nameContext) IsWindow_nameContext() {}\n\nfunc NewWindow_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Window_nameContext {\n\tvar p = new(Window_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_window_name\n\n\treturn p\n}\n\nfunc (s *Window_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Window_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Window_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Window_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Window_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterWindow_name(s)\n\t}\n}\n\nfunc (s *Window_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitWindow_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Window_name() (localctx IWindow_nameContext) {\n\tlocalctx = NewWindow_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 214, SQLiteParserRULE_window_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2152)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IAliasContext is an interface to support dynamic dispatch.\ntype IAliasContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsAliasContext differentiates from other interfaces.\n\tIsAliasContext()\n}\n\ntype AliasContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyAliasContext() *AliasContext {\n\tvar p = new(AliasContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_alias\n\treturn p\n}\n\nfunc InitEmptyAliasContext(p *AliasContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_alias\n}\n\nfunc (*AliasContext) IsAliasContext() {}\n\nfunc NewAliasContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *AliasContext {\n\tvar p = new(AliasContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_alias\n\n\treturn p\n}\n\nfunc (s *AliasContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *AliasContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *AliasContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *AliasContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *AliasContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterAlias(s)\n\t}\n}\n\nfunc (s *AliasContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitAlias(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Alias() (localctx IAliasContext) {\n\tlocalctx = NewAliasContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 216, SQLiteParserRULE_alias)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2154)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IFilenameContext is an interface to support dynamic dispatch.\ntype IFilenameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsFilenameContext differentiates from other interfaces.\n\tIsFilenameContext()\n}\n\ntype FilenameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyFilenameContext() *FilenameContext {\n\tvar p = new(FilenameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_filename\n\treturn p\n}\n\nfunc InitEmptyFilenameContext(p *FilenameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_filename\n}\n\nfunc (*FilenameContext) IsFilenameContext() {}\n\nfunc NewFilenameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *FilenameContext {\n\tvar p = new(FilenameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_filename\n\n\treturn p\n}\n\nfunc (s *FilenameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *FilenameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *FilenameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *FilenameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *FilenameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterFilename(s)\n\t}\n}\n\nfunc (s *FilenameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitFilename(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Filename() (localctx IFilenameContext) {\n\tlocalctx = NewFilenameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 218, SQLiteParserRULE_filename)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2156)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IBase_window_nameContext is an interface to support dynamic dispatch.\ntype IBase_window_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsBase_window_nameContext differentiates from other interfaces.\n\tIsBase_window_nameContext()\n}\n\ntype Base_window_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyBase_window_nameContext() *Base_window_nameContext {\n\tvar p = new(Base_window_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_base_window_name\n\treturn p\n}\n\nfunc InitEmptyBase_window_nameContext(p *Base_window_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_base_window_name\n}\n\nfunc (*Base_window_nameContext) IsBase_window_nameContext() {}\n\nfunc NewBase_window_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Base_window_nameContext {\n\tvar p = new(Base_window_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_base_window_name\n\n\treturn p\n}\n\nfunc (s *Base_window_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Base_window_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Base_window_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Base_window_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Base_window_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterBase_window_name(s)\n\t}\n}\n\nfunc (s *Base_window_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitBase_window_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Base_window_name() (localctx IBase_window_nameContext) {\n\tlocalctx = NewBase_window_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 220, SQLiteParserRULE_base_window_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2158)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ISimple_funcContext is an interface to support dynamic dispatch.\ntype ISimple_funcContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsSimple_funcContext differentiates from other interfaces.\n\tIsSimple_funcContext()\n}\n\ntype Simple_funcContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptySimple_funcContext() *Simple_funcContext {\n\tvar p = new(Simple_funcContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_simple_func\n\treturn p\n}\n\nfunc InitEmptySimple_funcContext(p *Simple_funcContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_simple_func\n}\n\nfunc (*Simple_funcContext) IsSimple_funcContext() {}\n\nfunc NewSimple_funcContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Simple_funcContext {\n\tvar p = new(Simple_funcContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_simple_func\n\n\treturn p\n}\n\nfunc (s *Simple_funcContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Simple_funcContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Simple_funcContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Simple_funcContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Simple_funcContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterSimple_func(s)\n\t}\n}\n\nfunc (s *Simple_funcContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitSimple_func(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Simple_func() (localctx ISimple_funcContext) {\n\tlocalctx = NewSimple_funcContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 222, SQLiteParserRULE_simple_func)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2160)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IAggregate_funcContext is an interface to support dynamic dispatch.\ntype IAggregate_funcContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsAggregate_funcContext differentiates from other interfaces.\n\tIsAggregate_funcContext()\n}\n\ntype Aggregate_funcContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyAggregate_funcContext() *Aggregate_funcContext {\n\tvar p = new(Aggregate_funcContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_aggregate_func\n\treturn p\n}\n\nfunc InitEmptyAggregate_funcContext(p *Aggregate_funcContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_aggregate_func\n}\n\nfunc (*Aggregate_funcContext) IsAggregate_funcContext() {}\n\nfunc NewAggregate_funcContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Aggregate_funcContext {\n\tvar p = new(Aggregate_funcContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_aggregate_func\n\n\treturn p\n}\n\nfunc (s *Aggregate_funcContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Aggregate_funcContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Aggregate_funcContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Aggregate_funcContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Aggregate_funcContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterAggregate_func(s)\n\t}\n}\n\nfunc (s *Aggregate_funcContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitAggregate_func(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Aggregate_func() (localctx IAggregate_funcContext) {\n\tlocalctx = NewAggregate_funcContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 224, SQLiteParserRULE_aggregate_func)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2162)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// ITable_function_nameContext is an interface to support dynamic dispatch.\ntype ITable_function_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tAny_name() IAny_nameContext\n\n\t// IsTable_function_nameContext differentiates from other interfaces.\n\tIsTable_function_nameContext()\n}\n\ntype Table_function_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyTable_function_nameContext() *Table_function_nameContext {\n\tvar p = new(Table_function_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_function_name\n\treturn p\n}\n\nfunc InitEmptyTable_function_nameContext(p *Table_function_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_table_function_name\n}\n\nfunc (*Table_function_nameContext) IsTable_function_nameContext() {}\n\nfunc NewTable_function_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Table_function_nameContext {\n\tvar p = new(Table_function_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_table_function_name\n\n\treturn p\n}\n\nfunc (s *Table_function_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Table_function_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Table_function_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Table_function_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Table_function_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterTable_function_name(s)\n\t}\n}\n\nfunc (s *Table_function_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitTable_function_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Table_function_name() (localctx ITable_function_nameContext) {\n\tlocalctx = NewTable_function_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 226, SQLiteParserRULE_table_function_name)\n\tp.EnterOuterAlt(localctx, 1)\n\t{\n\t\tp.SetState(2164)\n\t\tp.Any_name()\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\n// IAny_nameContext is an interface to support dynamic dispatch.\ntype IAny_nameContext interface {\n\tantlr.ParserRuleContext\n\n\t// GetParser returns the parser.\n\tGetParser() antlr.Parser\n\n\t// Getter signatures\n\tIDENTIFIER() antlr.TerminalNode\n\tKeyword() IKeywordContext\n\tSTRING_LITERAL() antlr.TerminalNode\n\tOPEN_PAR() antlr.TerminalNode\n\tAny_name() IAny_nameContext\n\tCLOSE_PAR() antlr.TerminalNode\n\n\t// IsAny_nameContext differentiates from other interfaces.\n\tIsAny_nameContext()\n}\n\ntype Any_nameContext struct {\n\tantlr.BaseParserRuleContext\n\tparser antlr.Parser\n}\n\nfunc NewEmptyAny_nameContext() *Any_nameContext {\n\tvar p = new(Any_nameContext)\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_any_name\n\treturn p\n}\n\nfunc InitEmptyAny_nameContext(p *Any_nameContext) {\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1)\n\tp.RuleIndex = SQLiteParserRULE_any_name\n}\n\nfunc (*Any_nameContext) IsAny_nameContext() {}\n\nfunc NewAny_nameContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Any_nameContext {\n\tvar p = new(Any_nameContext)\n\n\tantlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState)\n\n\tp.parser = parser\n\tp.RuleIndex = SQLiteParserRULE_any_name\n\n\treturn p\n}\n\nfunc (s *Any_nameContext) GetParser() antlr.Parser { return s.parser }\n\nfunc (s *Any_nameContext) IDENTIFIER() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserIDENTIFIER, 0)\n}\n\nfunc (s *Any_nameContext) Keyword() IKeywordContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IKeywordContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IKeywordContext)\n}\n\nfunc (s *Any_nameContext) STRING_LITERAL() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserSTRING_LITERAL, 0)\n}\n\nfunc (s *Any_nameContext) OPEN_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserOPEN_PAR, 0)\n}\n\nfunc (s *Any_nameContext) Any_name() IAny_nameContext {\n\tvar t antlr.RuleContext\n\tfor _, ctx := range s.GetChildren() {\n\t\tif _, ok := ctx.(IAny_nameContext); ok {\n\t\t\tt = ctx.(antlr.RuleContext)\n\t\t\tbreak\n\t\t}\n\t}\n\n\tif t == nil {\n\t\treturn nil\n\t}\n\n\treturn t.(IAny_nameContext)\n}\n\nfunc (s *Any_nameContext) CLOSE_PAR() antlr.TerminalNode {\n\treturn s.GetToken(SQLiteParserCLOSE_PAR, 0)\n}\n\nfunc (s *Any_nameContext) GetRuleContext() antlr.RuleContext {\n\treturn s\n}\n\nfunc (s *Any_nameContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string {\n\treturn antlr.TreesStringTree(s, ruleNames, recog)\n}\n\nfunc (s *Any_nameContext) EnterRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.EnterAny_name(s)\n\t}\n}\n\nfunc (s *Any_nameContext) ExitRule(listener antlr.ParseTreeListener) {\n\tif listenerT, ok := listener.(SQLiteParserListener); ok {\n\t\tlistenerT.ExitAny_name(s)\n\t}\n}\n\nfunc (p *SQLiteParser) Any_name() (localctx IAny_nameContext) {\n\tlocalctx = NewAny_nameContext(p, p.GetParserRuleContext(), p.GetState())\n\tp.EnterRule(localctx, 228, SQLiteParserRULE_any_name)\n\tp.SetState(2173)\n\tp.GetErrorHandler().Sync(p)\n\tif p.HasError() {\n\t\tgoto errorExit\n\t}\n\n\tswitch p.GetTokenStream().LA(1) {\n\tcase SQLiteParserIDENTIFIER:\n\t\tp.EnterOuterAlt(localctx, 1)\n\t\t{\n\t\t\tp.SetState(2166)\n\t\t\tp.Match(SQLiteParserIDENTIFIER)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserABORT_, SQLiteParserACTION_, SQLiteParserADD_, SQLiteParserAFTER_, SQLiteParserALL_, SQLiteParserALTER_, SQLiteParserANALYZE_, SQLiteParserAND_, SQLiteParserAS_, SQLiteParserASC_, SQLiteParserATTACH_, SQLiteParserAUTOINCREMENT_, SQLiteParserBEFORE_, SQLiteParserBEGIN_, SQLiteParserBETWEEN_, SQLiteParserBY_, SQLiteParserCASCADE_, SQLiteParserCASE_, SQLiteParserCAST_, SQLiteParserCHECK_, SQLiteParserCOLLATE_, SQLiteParserCOLUMN_, SQLiteParserCOMMIT_, SQLiteParserCONFLICT_, SQLiteParserCONSTRAINT_, SQLiteParserCREATE_, SQLiteParserCROSS_, SQLiteParserCURRENT_DATE_, SQLiteParserCURRENT_TIME_, SQLiteParserCURRENT_TIMESTAMP_, SQLiteParserDATABASE_, SQLiteParserDEFAULT_, SQLiteParserDEFERRABLE_, SQLiteParserDEFERRED_, SQLiteParserDELETE_, SQLiteParserDESC_, SQLiteParserDETACH_, SQLiteParserDISTINCT_, SQLiteParserDROP_, SQLiteParserEACH_, SQLiteParserELSE_, SQLiteParserEND_, SQLiteParserESCAPE_, SQLiteParserEXCEPT_, SQLiteParserEXCLUSIVE_, SQLiteParserEXISTS_, SQLiteParserEXPLAIN_, SQLiteParserFAIL_, SQLiteParserFOR_, SQLiteParserFOREIGN_, SQLiteParserFROM_, SQLiteParserFULL_, SQLiteParserGLOB_, SQLiteParserGROUP_, SQLiteParserHAVING_, SQLiteParserIF_, SQLiteParserIGNORE_, SQLiteParserIMMEDIATE_, SQLiteParserIN_, SQLiteParserINDEX_, SQLiteParserINDEXED_, SQLiteParserINITIALLY_, SQLiteParserINNER_, SQLiteParserINSERT_, SQLiteParserINSTEAD_, SQLiteParserINTERSECT_, SQLiteParserINTO_, SQLiteParserIS_, SQLiteParserISNULL_, SQLiteParserJOIN_, SQLiteParserKEY_, SQLiteParserLEFT_, SQLiteParserLIKE_, SQLiteParserLIMIT_, SQLiteParserMATCH_, SQLiteParserNATURAL_, SQLiteParserNO_, SQLiteParserNOT_, SQLiteParserNOTNULL_, SQLiteParserNULL_, SQLiteParserOF_, SQLiteParserOFFSET_, SQLiteParserON_, SQLiteParserOR_, SQLiteParserORDER_, SQLiteParserOUTER_, SQLiteParserPLAN_, SQLiteParserPRAGMA_, SQLiteParserPRIMARY_, SQLiteParserQUERY_, SQLiteParserRAISE_, SQLiteParserRECURSIVE_, SQLiteParserREFERENCES_, SQLiteParserREGEXP_, SQLiteParserREINDEX_, SQLiteParserRELEASE_, SQLiteParserRENAME_, SQLiteParserREPLACE_, SQLiteParserRESTRICT_, SQLiteParserRETURNING_, SQLiteParserRIGHT_, SQLiteParserROLLBACK_, SQLiteParserROW_, SQLiteParserROWS_, SQLiteParserSAVEPOINT_, SQLiteParserSELECT_, SQLiteParserSET_, SQLiteParserSTRICT_, SQLiteParserTABLE_, SQLiteParserTEMP_, SQLiteParserTEMPORARY_, SQLiteParserTHEN_, SQLiteParserTO_, SQLiteParserTRANSACTION_, SQLiteParserTRIGGER_, SQLiteParserUNION_, SQLiteParserUNIQUE_, SQLiteParserUPDATE_, SQLiteParserUSING_, SQLiteParserVACUUM_, SQLiteParserVALUES_, SQLiteParserVIEW_, SQLiteParserVIRTUAL_, SQLiteParserWHEN_, SQLiteParserWHERE_, SQLiteParserWITH_, SQLiteParserWITHOUT_, SQLiteParserFIRST_VALUE_, SQLiteParserOVER_, SQLiteParserPARTITION_, SQLiteParserRANGE_, SQLiteParserPRECEDING_, SQLiteParserUNBOUNDED_, SQLiteParserCURRENT_, SQLiteParserFOLLOWING_, SQLiteParserCUME_DIST_, SQLiteParserDENSE_RANK_, SQLiteParserLAG_, SQLiteParserLAST_VALUE_, SQLiteParserLEAD_, SQLiteParserNTH_VALUE_, SQLiteParserNTILE_, SQLiteParserPERCENT_RANK_, SQLiteParserRANK_, SQLiteParserROW_NUMBER_, SQLiteParserGENERATED_, SQLiteParserALWAYS_, SQLiteParserSTORED_, SQLiteParserTRUE_, SQLiteParserFALSE_, SQLiteParserWINDOW_, SQLiteParserNULLS_, SQLiteParserFIRST_, SQLiteParserLAST_, SQLiteParserFILTER_, SQLiteParserGROUPS_, SQLiteParserEXCLUDE_:\n\t\tp.EnterOuterAlt(localctx, 2)\n\t\t{\n\t\t\tp.SetState(2167)\n\t\t\tp.Keyword()\n\t\t}\n\n\tcase SQLiteParserSTRING_LITERAL:\n\t\tp.EnterOuterAlt(localctx, 3)\n\t\t{\n\t\t\tp.SetState(2168)\n\t\t\tp.Match(SQLiteParserSTRING_LITERAL)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tcase SQLiteParserOPEN_PAR:\n\t\tp.EnterOuterAlt(localctx, 4)\n\t\t{\n\t\t\tp.SetState(2169)\n\t\t\tp.Match(SQLiteParserOPEN_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\t\t{\n\t\t\tp.SetState(2170)\n\t\t\tp.Any_name()\n\t\t}\n\t\t{\n\t\t\tp.SetState(2171)\n\t\t\tp.Match(SQLiteParserCLOSE_PAR)\n\t\t\tif p.HasError() {\n\t\t\t\t// Recognition error - abort rule\n\t\t\t\tgoto errorExit\n\t\t\t}\n\t\t}\n\n\tdefault:\n\t\tp.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil))\n\t\tgoto errorExit\n\t}\n\nerrorExit:\n\tif p.HasError() {\n\t\tv := p.GetError()\n\t\tlocalctx.SetException(v)\n\t\tp.GetErrorHandler().ReportError(p, v)\n\t\tp.GetErrorHandler().Recover(p, v)\n\t\tp.SetError(nil)\n\t}\n\tp.ExitRule()\n\treturn localctx\n\tgoto errorExit // Trick to prevent compiler error if the label is not used\n}\n\nfunc (p *SQLiteParser) Sempred(localctx antlr.RuleContext, ruleIndex, predIndex int) bool {\n\tswitch ruleIndex {\n\tcase 34:\n\t\tvar t *ExprContext = nil\n\t\tif localctx != nil {\n\t\t\tt = localctx.(*ExprContext)\n\t\t}\n\t\treturn p.Expr_Sempred(t, predIndex)\n\n\tdefault:\n\t\tpanic(\"No predicate with index: \" + fmt.Sprint(ruleIndex))\n\t}\n}\n\nfunc (p *SQLiteParser) Expr_Sempred(localctx antlr.RuleContext, predIndex int) bool {\n\tswitch predIndex {\n\tcase 0:\n\t\treturn p.Precpred(p.GetParserRuleContext(), 20)\n\n\tcase 1:\n\t\treturn p.Precpred(p.GetParserRuleContext(), 19)\n\n\tcase 2:\n\t\treturn p.Precpred(p.GetParserRuleContext(), 18)\n\n\tcase 3:\n\t\treturn p.Precpred(p.GetParserRuleContext(), 17)\n\n\tcase 4:\n\t\treturn p.Precpred(p.GetParserRuleContext(), 16)\n\n\tcase 5:\n\t\treturn p.Precpred(p.GetParserRuleContext(), 15)\n\n\tcase 6:\n\t\treturn p.Precpred(p.GetParserRuleContext(), 14)\n\n\tcase 7:\n\t\treturn p.Precpred(p.GetParserRuleContext(), 12)\n\n\tcase 8:\n\t\treturn p.Precpred(p.GetParserRuleContext(), 11)\n\n\tcase 9:\n\t\treturn p.Precpred(p.GetParserRuleContext(), 4)\n\n\tcase 10:\n\t\treturn p.Precpred(p.GetParserRuleContext(), 13)\n\n\tcase 11:\n\t\treturn p.Precpred(p.GetParserRuleContext(), 7)\n\n\tcase 12:\n\t\treturn p.Precpred(p.GetParserRuleContext(), 6)\n\n\tcase 13:\n\t\treturn p.Precpred(p.GetParserRuleContext(), 5)\n\n\tdefault:\n\t\tpanic(\"No predicate with index: \" + fmt.Sprint(predIndex))\n\t}\n}\n"
  },
  {
    "path": "internal/engine/sqlite/parser/sqliteparser_base_listener.go",
    "content": "// Code generated from SQLiteParser.g4 by ANTLR 4.13.1. DO NOT EDIT.\n\npackage parser // SQLiteParser\n\nimport \"github.com/antlr4-go/antlr/v4\"\n\n// BaseSQLiteParserListener is a complete listener for a parse tree produced by SQLiteParser.\ntype BaseSQLiteParserListener struct{}\n\nvar _ SQLiteParserListener = &BaseSQLiteParserListener{}\n\n// VisitTerminal is called when a terminal node is visited.\nfunc (s *BaseSQLiteParserListener) VisitTerminal(node antlr.TerminalNode) {}\n\n// VisitErrorNode is called when an error node is visited.\nfunc (s *BaseSQLiteParserListener) VisitErrorNode(node antlr.ErrorNode) {}\n\n// EnterEveryRule is called when any rule is entered.\nfunc (s *BaseSQLiteParserListener) EnterEveryRule(ctx antlr.ParserRuleContext) {}\n\n// ExitEveryRule is called when any rule is exited.\nfunc (s *BaseSQLiteParserListener) ExitEveryRule(ctx antlr.ParserRuleContext) {}\n\n// EnterParse is called when production parse is entered.\nfunc (s *BaseSQLiteParserListener) EnterParse(ctx *ParseContext) {}\n\n// ExitParse is called when production parse is exited.\nfunc (s *BaseSQLiteParserListener) ExitParse(ctx *ParseContext) {}\n\n// EnterSql_stmt_list is called when production sql_stmt_list is entered.\nfunc (s *BaseSQLiteParserListener) EnterSql_stmt_list(ctx *Sql_stmt_listContext) {}\n\n// ExitSql_stmt_list is called when production sql_stmt_list is exited.\nfunc (s *BaseSQLiteParserListener) ExitSql_stmt_list(ctx *Sql_stmt_listContext) {}\n\n// EnterSql_stmt is called when production sql_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterSql_stmt(ctx *Sql_stmtContext) {}\n\n// ExitSql_stmt is called when production sql_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitSql_stmt(ctx *Sql_stmtContext) {}\n\n// EnterAlter_table_stmt is called when production alter_table_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterAlter_table_stmt(ctx *Alter_table_stmtContext) {}\n\n// ExitAlter_table_stmt is called when production alter_table_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitAlter_table_stmt(ctx *Alter_table_stmtContext) {}\n\n// EnterAnalyze_stmt is called when production analyze_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterAnalyze_stmt(ctx *Analyze_stmtContext) {}\n\n// ExitAnalyze_stmt is called when production analyze_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitAnalyze_stmt(ctx *Analyze_stmtContext) {}\n\n// EnterAttach_stmt is called when production attach_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterAttach_stmt(ctx *Attach_stmtContext) {}\n\n// ExitAttach_stmt is called when production attach_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitAttach_stmt(ctx *Attach_stmtContext) {}\n\n// EnterBegin_stmt is called when production begin_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterBegin_stmt(ctx *Begin_stmtContext) {}\n\n// ExitBegin_stmt is called when production begin_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitBegin_stmt(ctx *Begin_stmtContext) {}\n\n// EnterCommit_stmt is called when production commit_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterCommit_stmt(ctx *Commit_stmtContext) {}\n\n// ExitCommit_stmt is called when production commit_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitCommit_stmt(ctx *Commit_stmtContext) {}\n\n// EnterRollback_stmt is called when production rollback_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterRollback_stmt(ctx *Rollback_stmtContext) {}\n\n// ExitRollback_stmt is called when production rollback_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitRollback_stmt(ctx *Rollback_stmtContext) {}\n\n// EnterSavepoint_stmt is called when production savepoint_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterSavepoint_stmt(ctx *Savepoint_stmtContext) {}\n\n// ExitSavepoint_stmt is called when production savepoint_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitSavepoint_stmt(ctx *Savepoint_stmtContext) {}\n\n// EnterRelease_stmt is called when production release_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterRelease_stmt(ctx *Release_stmtContext) {}\n\n// ExitRelease_stmt is called when production release_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitRelease_stmt(ctx *Release_stmtContext) {}\n\n// EnterCreate_index_stmt is called when production create_index_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterCreate_index_stmt(ctx *Create_index_stmtContext) {}\n\n// ExitCreate_index_stmt is called when production create_index_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitCreate_index_stmt(ctx *Create_index_stmtContext) {}\n\n// EnterIndexed_column is called when production indexed_column is entered.\nfunc (s *BaseSQLiteParserListener) EnterIndexed_column(ctx *Indexed_columnContext) {}\n\n// ExitIndexed_column is called when production indexed_column is exited.\nfunc (s *BaseSQLiteParserListener) ExitIndexed_column(ctx *Indexed_columnContext) {}\n\n// EnterTable_option is called when production table_option is entered.\nfunc (s *BaseSQLiteParserListener) EnterTable_option(ctx *Table_optionContext) {}\n\n// ExitTable_option is called when production table_option is exited.\nfunc (s *BaseSQLiteParserListener) ExitTable_option(ctx *Table_optionContext) {}\n\n// EnterCreate_table_stmt is called when production create_table_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterCreate_table_stmt(ctx *Create_table_stmtContext) {}\n\n// ExitCreate_table_stmt is called when production create_table_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitCreate_table_stmt(ctx *Create_table_stmtContext) {}\n\n// EnterColumn_def is called when production column_def is entered.\nfunc (s *BaseSQLiteParserListener) EnterColumn_def(ctx *Column_defContext) {}\n\n// ExitColumn_def is called when production column_def is exited.\nfunc (s *BaseSQLiteParserListener) ExitColumn_def(ctx *Column_defContext) {}\n\n// EnterType_name is called when production type_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterType_name(ctx *Type_nameContext) {}\n\n// ExitType_name is called when production type_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitType_name(ctx *Type_nameContext) {}\n\n// EnterColumn_constraint is called when production column_constraint is entered.\nfunc (s *BaseSQLiteParserListener) EnterColumn_constraint(ctx *Column_constraintContext) {}\n\n// ExitColumn_constraint is called when production column_constraint is exited.\nfunc (s *BaseSQLiteParserListener) ExitColumn_constraint(ctx *Column_constraintContext) {}\n\n// EnterSigned_number is called when production signed_number is entered.\nfunc (s *BaseSQLiteParserListener) EnterSigned_number(ctx *Signed_numberContext) {}\n\n// ExitSigned_number is called when production signed_number is exited.\nfunc (s *BaseSQLiteParserListener) ExitSigned_number(ctx *Signed_numberContext) {}\n\n// EnterTable_constraint is called when production table_constraint is entered.\nfunc (s *BaseSQLiteParserListener) EnterTable_constraint(ctx *Table_constraintContext) {}\n\n// ExitTable_constraint is called when production table_constraint is exited.\nfunc (s *BaseSQLiteParserListener) ExitTable_constraint(ctx *Table_constraintContext) {}\n\n// EnterForeign_key_clause is called when production foreign_key_clause is entered.\nfunc (s *BaseSQLiteParserListener) EnterForeign_key_clause(ctx *Foreign_key_clauseContext) {}\n\n// ExitForeign_key_clause is called when production foreign_key_clause is exited.\nfunc (s *BaseSQLiteParserListener) ExitForeign_key_clause(ctx *Foreign_key_clauseContext) {}\n\n// EnterConflict_clause is called when production conflict_clause is entered.\nfunc (s *BaseSQLiteParserListener) EnterConflict_clause(ctx *Conflict_clauseContext) {}\n\n// ExitConflict_clause is called when production conflict_clause is exited.\nfunc (s *BaseSQLiteParserListener) ExitConflict_clause(ctx *Conflict_clauseContext) {}\n\n// EnterCreate_trigger_stmt is called when production create_trigger_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterCreate_trigger_stmt(ctx *Create_trigger_stmtContext) {}\n\n// ExitCreate_trigger_stmt is called when production create_trigger_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitCreate_trigger_stmt(ctx *Create_trigger_stmtContext) {}\n\n// EnterCreate_view_stmt is called when production create_view_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterCreate_view_stmt(ctx *Create_view_stmtContext) {}\n\n// ExitCreate_view_stmt is called when production create_view_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitCreate_view_stmt(ctx *Create_view_stmtContext) {}\n\n// EnterCreate_virtual_table_stmt is called when production create_virtual_table_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterCreate_virtual_table_stmt(ctx *Create_virtual_table_stmtContext) {\n}\n\n// ExitCreate_virtual_table_stmt is called when production create_virtual_table_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitCreate_virtual_table_stmt(ctx *Create_virtual_table_stmtContext) {\n}\n\n// EnterWith_clause is called when production with_clause is entered.\nfunc (s *BaseSQLiteParserListener) EnterWith_clause(ctx *With_clauseContext) {}\n\n// ExitWith_clause is called when production with_clause is exited.\nfunc (s *BaseSQLiteParserListener) ExitWith_clause(ctx *With_clauseContext) {}\n\n// EnterCte_table_name is called when production cte_table_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterCte_table_name(ctx *Cte_table_nameContext) {}\n\n// ExitCte_table_name is called when production cte_table_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitCte_table_name(ctx *Cte_table_nameContext) {}\n\n// EnterRecursive_cte is called when production recursive_cte is entered.\nfunc (s *BaseSQLiteParserListener) EnterRecursive_cte(ctx *Recursive_cteContext) {}\n\n// ExitRecursive_cte is called when production recursive_cte is exited.\nfunc (s *BaseSQLiteParserListener) ExitRecursive_cte(ctx *Recursive_cteContext) {}\n\n// EnterCommon_table_expression is called when production common_table_expression is entered.\nfunc (s *BaseSQLiteParserListener) EnterCommon_table_expression(ctx *Common_table_expressionContext) {\n}\n\n// ExitCommon_table_expression is called when production common_table_expression is exited.\nfunc (s *BaseSQLiteParserListener) ExitCommon_table_expression(ctx *Common_table_expressionContext) {}\n\n// EnterReturning_clause is called when production returning_clause is entered.\nfunc (s *BaseSQLiteParserListener) EnterReturning_clause(ctx *Returning_clauseContext) {}\n\n// ExitReturning_clause is called when production returning_clause is exited.\nfunc (s *BaseSQLiteParserListener) ExitReturning_clause(ctx *Returning_clauseContext) {}\n\n// EnterDelete_stmt is called when production delete_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterDelete_stmt(ctx *Delete_stmtContext) {}\n\n// ExitDelete_stmt is called when production delete_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitDelete_stmt(ctx *Delete_stmtContext) {}\n\n// EnterDelete_stmt_limited is called when production delete_stmt_limited is entered.\nfunc (s *BaseSQLiteParserListener) EnterDelete_stmt_limited(ctx *Delete_stmt_limitedContext) {}\n\n// ExitDelete_stmt_limited is called when production delete_stmt_limited is exited.\nfunc (s *BaseSQLiteParserListener) ExitDelete_stmt_limited(ctx *Delete_stmt_limitedContext) {}\n\n// EnterDetach_stmt is called when production detach_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterDetach_stmt(ctx *Detach_stmtContext) {}\n\n// ExitDetach_stmt is called when production detach_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitDetach_stmt(ctx *Detach_stmtContext) {}\n\n// EnterDrop_stmt is called when production drop_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterDrop_stmt(ctx *Drop_stmtContext) {}\n\n// ExitDrop_stmt is called when production drop_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitDrop_stmt(ctx *Drop_stmtContext) {}\n\n// EnterExpr_case is called when production expr_case is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_case(ctx *Expr_caseContext) {}\n\n// ExitExpr_case is called when production expr_case is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_case(ctx *Expr_caseContext) {}\n\n// EnterExpr_raise is called when production expr_raise is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_raise(ctx *Expr_raiseContext) {}\n\n// ExitExpr_raise is called when production expr_raise is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_raise(ctx *Expr_raiseContext) {}\n\n// EnterExpr_function is called when production expr_function is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_function(ctx *Expr_functionContext) {}\n\n// ExitExpr_function is called when production expr_function is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_function(ctx *Expr_functionContext) {}\n\n// EnterExpr_comparison is called when production expr_comparison is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_comparison(ctx *Expr_comparisonContext) {}\n\n// ExitExpr_comparison is called when production expr_comparison is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_comparison(ctx *Expr_comparisonContext) {}\n\n// EnterExpr_bool is called when production expr_bool is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_bool(ctx *Expr_boolContext) {}\n\n// ExitExpr_bool is called when production expr_bool is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_bool(ctx *Expr_boolContext) {}\n\n// EnterExpr_binary is called when production expr_binary is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_binary(ctx *Expr_binaryContext) {}\n\n// ExitExpr_binary is called when production expr_binary is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_binary(ctx *Expr_binaryContext) {}\n\n// EnterExpr_literal is called when production expr_literal is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_literal(ctx *Expr_literalContext) {}\n\n// ExitExpr_literal is called when production expr_literal is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_literal(ctx *Expr_literalContext) {}\n\n// EnterExpr_cast is called when production expr_cast is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_cast(ctx *Expr_castContext) {}\n\n// ExitExpr_cast is called when production expr_cast is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_cast(ctx *Expr_castContext) {}\n\n// EnterExpr_in_select is called when production expr_in_select is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_in_select(ctx *Expr_in_selectContext) {}\n\n// ExitExpr_in_select is called when production expr_in_select is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_in_select(ctx *Expr_in_selectContext) {}\n\n// EnterExpr_list is called when production expr_list is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_list(ctx *Expr_listContext) {}\n\n// ExitExpr_list is called when production expr_list is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_list(ctx *Expr_listContext) {}\n\n// EnterExpr_between is called when production expr_between is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_between(ctx *Expr_betweenContext) {}\n\n// ExitExpr_between is called when production expr_between is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_between(ctx *Expr_betweenContext) {}\n\n// EnterExpr_collate is called when production expr_collate is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_collate(ctx *Expr_collateContext) {}\n\n// ExitExpr_collate is called when production expr_collate is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_collate(ctx *Expr_collateContext) {}\n\n// EnterExpr_qualified_column_name is called when production expr_qualified_column_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_qualified_column_name(ctx *Expr_qualified_column_nameContext) {\n}\n\n// ExitExpr_qualified_column_name is called when production expr_qualified_column_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_qualified_column_name(ctx *Expr_qualified_column_nameContext) {\n}\n\n// EnterExpr_unary is called when production expr_unary is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_unary(ctx *Expr_unaryContext) {}\n\n// ExitExpr_unary is called when production expr_unary is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_unary(ctx *Expr_unaryContext) {}\n\n// EnterExpr_null_comp is called when production expr_null_comp is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_null_comp(ctx *Expr_null_compContext) {}\n\n// ExitExpr_null_comp is called when production expr_null_comp is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_null_comp(ctx *Expr_null_compContext) {}\n\n// EnterExpr_bind is called when production expr_bind is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_bind(ctx *Expr_bindContext) {}\n\n// ExitExpr_bind is called when production expr_bind is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_bind(ctx *Expr_bindContext) {}\n\n// EnterRaise_function is called when production raise_function is entered.\nfunc (s *BaseSQLiteParserListener) EnterRaise_function(ctx *Raise_functionContext) {}\n\n// ExitRaise_function is called when production raise_function is exited.\nfunc (s *BaseSQLiteParserListener) ExitRaise_function(ctx *Raise_functionContext) {}\n\n// EnterLiteral_value is called when production literal_value is entered.\nfunc (s *BaseSQLiteParserListener) EnterLiteral_value(ctx *Literal_valueContext) {}\n\n// ExitLiteral_value is called when production literal_value is exited.\nfunc (s *BaseSQLiteParserListener) ExitLiteral_value(ctx *Literal_valueContext) {}\n\n// EnterInsert_stmt is called when production insert_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterInsert_stmt(ctx *Insert_stmtContext) {}\n\n// ExitInsert_stmt is called when production insert_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitInsert_stmt(ctx *Insert_stmtContext) {}\n\n// EnterUpsert_clause is called when production upsert_clause is entered.\nfunc (s *BaseSQLiteParserListener) EnterUpsert_clause(ctx *Upsert_clauseContext) {}\n\n// ExitUpsert_clause is called when production upsert_clause is exited.\nfunc (s *BaseSQLiteParserListener) ExitUpsert_clause(ctx *Upsert_clauseContext) {}\n\n// EnterPragma_stmt is called when production pragma_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterPragma_stmt(ctx *Pragma_stmtContext) {}\n\n// ExitPragma_stmt is called when production pragma_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitPragma_stmt(ctx *Pragma_stmtContext) {}\n\n// EnterPragma_value is called when production pragma_value is entered.\nfunc (s *BaseSQLiteParserListener) EnterPragma_value(ctx *Pragma_valueContext) {}\n\n// ExitPragma_value is called when production pragma_value is exited.\nfunc (s *BaseSQLiteParserListener) ExitPragma_value(ctx *Pragma_valueContext) {}\n\n// EnterReindex_stmt is called when production reindex_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterReindex_stmt(ctx *Reindex_stmtContext) {}\n\n// ExitReindex_stmt is called when production reindex_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitReindex_stmt(ctx *Reindex_stmtContext) {}\n\n// EnterSelect_stmt is called when production select_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterSelect_stmt(ctx *Select_stmtContext) {}\n\n// ExitSelect_stmt is called when production select_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitSelect_stmt(ctx *Select_stmtContext) {}\n\n// EnterJoin_clause is called when production join_clause is entered.\nfunc (s *BaseSQLiteParserListener) EnterJoin_clause(ctx *Join_clauseContext) {}\n\n// ExitJoin_clause is called when production join_clause is exited.\nfunc (s *BaseSQLiteParserListener) ExitJoin_clause(ctx *Join_clauseContext) {}\n\n// EnterSelect_core is called when production select_core is entered.\nfunc (s *BaseSQLiteParserListener) EnterSelect_core(ctx *Select_coreContext) {}\n\n// ExitSelect_core is called when production select_core is exited.\nfunc (s *BaseSQLiteParserListener) ExitSelect_core(ctx *Select_coreContext) {}\n\n// EnterFactored_select_stmt is called when production factored_select_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterFactored_select_stmt(ctx *Factored_select_stmtContext) {}\n\n// ExitFactored_select_stmt is called when production factored_select_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitFactored_select_stmt(ctx *Factored_select_stmtContext) {}\n\n// EnterSimple_select_stmt is called when production simple_select_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterSimple_select_stmt(ctx *Simple_select_stmtContext) {}\n\n// ExitSimple_select_stmt is called when production simple_select_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitSimple_select_stmt(ctx *Simple_select_stmtContext) {}\n\n// EnterCompound_select_stmt is called when production compound_select_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterCompound_select_stmt(ctx *Compound_select_stmtContext) {}\n\n// ExitCompound_select_stmt is called when production compound_select_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitCompound_select_stmt(ctx *Compound_select_stmtContext) {}\n\n// EnterTable_or_subquery is called when production table_or_subquery is entered.\nfunc (s *BaseSQLiteParserListener) EnterTable_or_subquery(ctx *Table_or_subqueryContext) {}\n\n// ExitTable_or_subquery is called when production table_or_subquery is exited.\nfunc (s *BaseSQLiteParserListener) ExitTable_or_subquery(ctx *Table_or_subqueryContext) {}\n\n// EnterResult_column is called when production result_column is entered.\nfunc (s *BaseSQLiteParserListener) EnterResult_column(ctx *Result_columnContext) {}\n\n// ExitResult_column is called when production result_column is exited.\nfunc (s *BaseSQLiteParserListener) ExitResult_column(ctx *Result_columnContext) {}\n\n// EnterJoin_operator is called when production join_operator is entered.\nfunc (s *BaseSQLiteParserListener) EnterJoin_operator(ctx *Join_operatorContext) {}\n\n// ExitJoin_operator is called when production join_operator is exited.\nfunc (s *BaseSQLiteParserListener) ExitJoin_operator(ctx *Join_operatorContext) {}\n\n// EnterJoin_constraint is called when production join_constraint is entered.\nfunc (s *BaseSQLiteParserListener) EnterJoin_constraint(ctx *Join_constraintContext) {}\n\n// ExitJoin_constraint is called when production join_constraint is exited.\nfunc (s *BaseSQLiteParserListener) ExitJoin_constraint(ctx *Join_constraintContext) {}\n\n// EnterCompound_operator is called when production compound_operator is entered.\nfunc (s *BaseSQLiteParserListener) EnterCompound_operator(ctx *Compound_operatorContext) {}\n\n// ExitCompound_operator is called when production compound_operator is exited.\nfunc (s *BaseSQLiteParserListener) ExitCompound_operator(ctx *Compound_operatorContext) {}\n\n// EnterUpdate_stmt is called when production update_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterUpdate_stmt(ctx *Update_stmtContext) {}\n\n// ExitUpdate_stmt is called when production update_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitUpdate_stmt(ctx *Update_stmtContext) {}\n\n// EnterColumn_name_list is called when production column_name_list is entered.\nfunc (s *BaseSQLiteParserListener) EnterColumn_name_list(ctx *Column_name_listContext) {}\n\n// ExitColumn_name_list is called when production column_name_list is exited.\nfunc (s *BaseSQLiteParserListener) ExitColumn_name_list(ctx *Column_name_listContext) {}\n\n// EnterUpdate_stmt_limited is called when production update_stmt_limited is entered.\nfunc (s *BaseSQLiteParserListener) EnterUpdate_stmt_limited(ctx *Update_stmt_limitedContext) {}\n\n// ExitUpdate_stmt_limited is called when production update_stmt_limited is exited.\nfunc (s *BaseSQLiteParserListener) ExitUpdate_stmt_limited(ctx *Update_stmt_limitedContext) {}\n\n// EnterQualified_table_name is called when production qualified_table_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterQualified_table_name(ctx *Qualified_table_nameContext) {}\n\n// ExitQualified_table_name is called when production qualified_table_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitQualified_table_name(ctx *Qualified_table_nameContext) {}\n\n// EnterVacuum_stmt is called when production vacuum_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterVacuum_stmt(ctx *Vacuum_stmtContext) {}\n\n// ExitVacuum_stmt is called when production vacuum_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitVacuum_stmt(ctx *Vacuum_stmtContext) {}\n\n// EnterFilter_clause is called when production filter_clause is entered.\nfunc (s *BaseSQLiteParserListener) EnterFilter_clause(ctx *Filter_clauseContext) {}\n\n// ExitFilter_clause is called when production filter_clause is exited.\nfunc (s *BaseSQLiteParserListener) ExitFilter_clause(ctx *Filter_clauseContext) {}\n\n// EnterWindow_defn is called when production window_defn is entered.\nfunc (s *BaseSQLiteParserListener) EnterWindow_defn(ctx *Window_defnContext) {}\n\n// ExitWindow_defn is called when production window_defn is exited.\nfunc (s *BaseSQLiteParserListener) ExitWindow_defn(ctx *Window_defnContext) {}\n\n// EnterOver_clause is called when production over_clause is entered.\nfunc (s *BaseSQLiteParserListener) EnterOver_clause(ctx *Over_clauseContext) {}\n\n// ExitOver_clause is called when production over_clause is exited.\nfunc (s *BaseSQLiteParserListener) ExitOver_clause(ctx *Over_clauseContext) {}\n\n// EnterFrame_spec is called when production frame_spec is entered.\nfunc (s *BaseSQLiteParserListener) EnterFrame_spec(ctx *Frame_specContext) {}\n\n// ExitFrame_spec is called when production frame_spec is exited.\nfunc (s *BaseSQLiteParserListener) ExitFrame_spec(ctx *Frame_specContext) {}\n\n// EnterFrame_clause is called when production frame_clause is entered.\nfunc (s *BaseSQLiteParserListener) EnterFrame_clause(ctx *Frame_clauseContext) {}\n\n// ExitFrame_clause is called when production frame_clause is exited.\nfunc (s *BaseSQLiteParserListener) ExitFrame_clause(ctx *Frame_clauseContext) {}\n\n// EnterSimple_function_invocation is called when production simple_function_invocation is entered.\nfunc (s *BaseSQLiteParserListener) EnterSimple_function_invocation(ctx *Simple_function_invocationContext) {\n}\n\n// ExitSimple_function_invocation is called when production simple_function_invocation is exited.\nfunc (s *BaseSQLiteParserListener) ExitSimple_function_invocation(ctx *Simple_function_invocationContext) {\n}\n\n// EnterAggregate_function_invocation is called when production aggregate_function_invocation is entered.\nfunc (s *BaseSQLiteParserListener) EnterAggregate_function_invocation(ctx *Aggregate_function_invocationContext) {\n}\n\n// ExitAggregate_function_invocation is called when production aggregate_function_invocation is exited.\nfunc (s *BaseSQLiteParserListener) ExitAggregate_function_invocation(ctx *Aggregate_function_invocationContext) {\n}\n\n// EnterWindow_function_invocation is called when production window_function_invocation is entered.\nfunc (s *BaseSQLiteParserListener) EnterWindow_function_invocation(ctx *Window_function_invocationContext) {\n}\n\n// ExitWindow_function_invocation is called when production window_function_invocation is exited.\nfunc (s *BaseSQLiteParserListener) ExitWindow_function_invocation(ctx *Window_function_invocationContext) {\n}\n\n// EnterCommon_table_stmt is called when production common_table_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterCommon_table_stmt(ctx *Common_table_stmtContext) {}\n\n// ExitCommon_table_stmt is called when production common_table_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitCommon_table_stmt(ctx *Common_table_stmtContext) {}\n\n// EnterOrder_by_stmt is called when production order_by_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterOrder_by_stmt(ctx *Order_by_stmtContext) {}\n\n// ExitOrder_by_stmt is called when production order_by_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitOrder_by_stmt(ctx *Order_by_stmtContext) {}\n\n// EnterLimit_stmt is called when production limit_stmt is entered.\nfunc (s *BaseSQLiteParserListener) EnterLimit_stmt(ctx *Limit_stmtContext) {}\n\n// ExitLimit_stmt is called when production limit_stmt is exited.\nfunc (s *BaseSQLiteParserListener) ExitLimit_stmt(ctx *Limit_stmtContext) {}\n\n// EnterOrdering_term is called when production ordering_term is entered.\nfunc (s *BaseSQLiteParserListener) EnterOrdering_term(ctx *Ordering_termContext) {}\n\n// ExitOrdering_term is called when production ordering_term is exited.\nfunc (s *BaseSQLiteParserListener) ExitOrdering_term(ctx *Ordering_termContext) {}\n\n// EnterAsc_desc is called when production asc_desc is entered.\nfunc (s *BaseSQLiteParserListener) EnterAsc_desc(ctx *Asc_descContext) {}\n\n// ExitAsc_desc is called when production asc_desc is exited.\nfunc (s *BaseSQLiteParserListener) ExitAsc_desc(ctx *Asc_descContext) {}\n\n// EnterFrame_left is called when production frame_left is entered.\nfunc (s *BaseSQLiteParserListener) EnterFrame_left(ctx *Frame_leftContext) {}\n\n// ExitFrame_left is called when production frame_left is exited.\nfunc (s *BaseSQLiteParserListener) ExitFrame_left(ctx *Frame_leftContext) {}\n\n// EnterFrame_right is called when production frame_right is entered.\nfunc (s *BaseSQLiteParserListener) EnterFrame_right(ctx *Frame_rightContext) {}\n\n// ExitFrame_right is called when production frame_right is exited.\nfunc (s *BaseSQLiteParserListener) ExitFrame_right(ctx *Frame_rightContext) {}\n\n// EnterFrame_single is called when production frame_single is entered.\nfunc (s *BaseSQLiteParserListener) EnterFrame_single(ctx *Frame_singleContext) {}\n\n// ExitFrame_single is called when production frame_single is exited.\nfunc (s *BaseSQLiteParserListener) ExitFrame_single(ctx *Frame_singleContext) {}\n\n// EnterWindow_function is called when production window_function is entered.\nfunc (s *BaseSQLiteParserListener) EnterWindow_function(ctx *Window_functionContext) {}\n\n// ExitWindow_function is called when production window_function is exited.\nfunc (s *BaseSQLiteParserListener) ExitWindow_function(ctx *Window_functionContext) {}\n\n// EnterOf_OF_fset is called when production of_OF_fset is entered.\nfunc (s *BaseSQLiteParserListener) EnterOf_OF_fset(ctx *Of_OF_fsetContext) {}\n\n// ExitOf_OF_fset is called when production of_OF_fset is exited.\nfunc (s *BaseSQLiteParserListener) ExitOf_OF_fset(ctx *Of_OF_fsetContext) {}\n\n// EnterDefault_DEFAULT__value is called when production default_DEFAULT__value is entered.\nfunc (s *BaseSQLiteParserListener) EnterDefault_DEFAULT__value(ctx *Default_DEFAULT__valueContext) {}\n\n// ExitDefault_DEFAULT__value is called when production default_DEFAULT__value is exited.\nfunc (s *BaseSQLiteParserListener) ExitDefault_DEFAULT__value(ctx *Default_DEFAULT__valueContext) {}\n\n// EnterPartition_by is called when production partition_by is entered.\nfunc (s *BaseSQLiteParserListener) EnterPartition_by(ctx *Partition_byContext) {}\n\n// ExitPartition_by is called when production partition_by is exited.\nfunc (s *BaseSQLiteParserListener) ExitPartition_by(ctx *Partition_byContext) {}\n\n// EnterOrder_by_expr is called when production order_by_expr is entered.\nfunc (s *BaseSQLiteParserListener) EnterOrder_by_expr(ctx *Order_by_exprContext) {}\n\n// ExitOrder_by_expr is called when production order_by_expr is exited.\nfunc (s *BaseSQLiteParserListener) ExitOrder_by_expr(ctx *Order_by_exprContext) {}\n\n// EnterOrder_by_expr_asc_desc is called when production order_by_expr_asc_desc is entered.\nfunc (s *BaseSQLiteParserListener) EnterOrder_by_expr_asc_desc(ctx *Order_by_expr_asc_descContext) {}\n\n// ExitOrder_by_expr_asc_desc is called when production order_by_expr_asc_desc is exited.\nfunc (s *BaseSQLiteParserListener) ExitOrder_by_expr_asc_desc(ctx *Order_by_expr_asc_descContext) {}\n\n// EnterExpr_asc_desc is called when production expr_asc_desc is entered.\nfunc (s *BaseSQLiteParserListener) EnterExpr_asc_desc(ctx *Expr_asc_descContext) {}\n\n// ExitExpr_asc_desc is called when production expr_asc_desc is exited.\nfunc (s *BaseSQLiteParserListener) ExitExpr_asc_desc(ctx *Expr_asc_descContext) {}\n\n// EnterInitial_select is called when production initial_select is entered.\nfunc (s *BaseSQLiteParserListener) EnterInitial_select(ctx *Initial_selectContext) {}\n\n// ExitInitial_select is called when production initial_select is exited.\nfunc (s *BaseSQLiteParserListener) ExitInitial_select(ctx *Initial_selectContext) {}\n\n// EnterRecursive__select is called when production recursive__select is entered.\nfunc (s *BaseSQLiteParserListener) EnterRecursive__select(ctx *Recursive__selectContext) {}\n\n// ExitRecursive__select is called when production recursive__select is exited.\nfunc (s *BaseSQLiteParserListener) ExitRecursive__select(ctx *Recursive__selectContext) {}\n\n// EnterUnary_operator is called when production unary_operator is entered.\nfunc (s *BaseSQLiteParserListener) EnterUnary_operator(ctx *Unary_operatorContext) {}\n\n// ExitUnary_operator is called when production unary_operator is exited.\nfunc (s *BaseSQLiteParserListener) ExitUnary_operator(ctx *Unary_operatorContext) {}\n\n// EnterError_message is called when production error_message is entered.\nfunc (s *BaseSQLiteParserListener) EnterError_message(ctx *Error_messageContext) {}\n\n// ExitError_message is called when production error_message is exited.\nfunc (s *BaseSQLiteParserListener) ExitError_message(ctx *Error_messageContext) {}\n\n// EnterModule_argument is called when production module_argument is entered.\nfunc (s *BaseSQLiteParserListener) EnterModule_argument(ctx *Module_argumentContext) {}\n\n// ExitModule_argument is called when production module_argument is exited.\nfunc (s *BaseSQLiteParserListener) ExitModule_argument(ctx *Module_argumentContext) {}\n\n// EnterColumn_alias is called when production column_alias is entered.\nfunc (s *BaseSQLiteParserListener) EnterColumn_alias(ctx *Column_aliasContext) {}\n\n// ExitColumn_alias is called when production column_alias is exited.\nfunc (s *BaseSQLiteParserListener) ExitColumn_alias(ctx *Column_aliasContext) {}\n\n// EnterKeyword is called when production keyword is entered.\nfunc (s *BaseSQLiteParserListener) EnterKeyword(ctx *KeywordContext) {}\n\n// ExitKeyword is called when production keyword is exited.\nfunc (s *BaseSQLiteParserListener) ExitKeyword(ctx *KeywordContext) {}\n\n// EnterName is called when production name is entered.\nfunc (s *BaseSQLiteParserListener) EnterName(ctx *NameContext) {}\n\n// ExitName is called when production name is exited.\nfunc (s *BaseSQLiteParserListener) ExitName(ctx *NameContext) {}\n\n// EnterFunction_name is called when production function_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterFunction_name(ctx *Function_nameContext) {}\n\n// ExitFunction_name is called when production function_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitFunction_name(ctx *Function_nameContext) {}\n\n// EnterQualified_function_name is called when production qualified_function_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterQualified_function_name(ctx *Qualified_function_nameContext) {\n}\n\n// ExitQualified_function_name is called when production qualified_function_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitQualified_function_name(ctx *Qualified_function_nameContext) {}\n\n// EnterSchema_name is called when production schema_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterSchema_name(ctx *Schema_nameContext) {}\n\n// ExitSchema_name is called when production schema_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitSchema_name(ctx *Schema_nameContext) {}\n\n// EnterTable_name is called when production table_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterTable_name(ctx *Table_nameContext) {}\n\n// ExitTable_name is called when production table_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitTable_name(ctx *Table_nameContext) {}\n\n// EnterTable_or_index_name is called when production table_or_index_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterTable_or_index_name(ctx *Table_or_index_nameContext) {}\n\n// ExitTable_or_index_name is called when production table_or_index_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitTable_or_index_name(ctx *Table_or_index_nameContext) {}\n\n// EnterNew_table_name is called when production new_table_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterNew_table_name(ctx *New_table_nameContext) {}\n\n// ExitNew_table_name is called when production new_table_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitNew_table_name(ctx *New_table_nameContext) {}\n\n// EnterColumn_name is called when production column_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterColumn_name(ctx *Column_nameContext) {}\n\n// ExitColumn_name is called when production column_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitColumn_name(ctx *Column_nameContext) {}\n\n// EnterCollation_name is called when production collation_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterCollation_name(ctx *Collation_nameContext) {}\n\n// ExitCollation_name is called when production collation_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitCollation_name(ctx *Collation_nameContext) {}\n\n// EnterForeign_table is called when production foreign_table is entered.\nfunc (s *BaseSQLiteParserListener) EnterForeign_table(ctx *Foreign_tableContext) {}\n\n// ExitForeign_table is called when production foreign_table is exited.\nfunc (s *BaseSQLiteParserListener) ExitForeign_table(ctx *Foreign_tableContext) {}\n\n// EnterIndex_name is called when production index_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterIndex_name(ctx *Index_nameContext) {}\n\n// ExitIndex_name is called when production index_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitIndex_name(ctx *Index_nameContext) {}\n\n// EnterTrigger_name is called when production trigger_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterTrigger_name(ctx *Trigger_nameContext) {}\n\n// ExitTrigger_name is called when production trigger_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitTrigger_name(ctx *Trigger_nameContext) {}\n\n// EnterView_name is called when production view_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterView_name(ctx *View_nameContext) {}\n\n// ExitView_name is called when production view_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitView_name(ctx *View_nameContext) {}\n\n// EnterModule_name is called when production module_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterModule_name(ctx *Module_nameContext) {}\n\n// ExitModule_name is called when production module_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitModule_name(ctx *Module_nameContext) {}\n\n// EnterPragma_name is called when production pragma_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterPragma_name(ctx *Pragma_nameContext) {}\n\n// ExitPragma_name is called when production pragma_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitPragma_name(ctx *Pragma_nameContext) {}\n\n// EnterSavepoint_name is called when production savepoint_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterSavepoint_name(ctx *Savepoint_nameContext) {}\n\n// ExitSavepoint_name is called when production savepoint_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitSavepoint_name(ctx *Savepoint_nameContext) {}\n\n// EnterTable_alias is called when production table_alias is entered.\nfunc (s *BaseSQLiteParserListener) EnterTable_alias(ctx *Table_aliasContext) {}\n\n// ExitTable_alias is called when production table_alias is exited.\nfunc (s *BaseSQLiteParserListener) ExitTable_alias(ctx *Table_aliasContext) {}\n\n// EnterTable_alias_fallback is called when production table_alias_fallback is entered.\nfunc (s *BaseSQLiteParserListener) EnterTable_alias_fallback(ctx *Table_alias_fallbackContext) {}\n\n// ExitTable_alias_fallback is called when production table_alias_fallback is exited.\nfunc (s *BaseSQLiteParserListener) ExitTable_alias_fallback(ctx *Table_alias_fallbackContext) {}\n\n// EnterTransaction_name is called when production transaction_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterTransaction_name(ctx *Transaction_nameContext) {}\n\n// ExitTransaction_name is called when production transaction_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitTransaction_name(ctx *Transaction_nameContext) {}\n\n// EnterWindow_name is called when production window_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterWindow_name(ctx *Window_nameContext) {}\n\n// ExitWindow_name is called when production window_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitWindow_name(ctx *Window_nameContext) {}\n\n// EnterAlias is called when production alias is entered.\nfunc (s *BaseSQLiteParserListener) EnterAlias(ctx *AliasContext) {}\n\n// ExitAlias is called when production alias is exited.\nfunc (s *BaseSQLiteParserListener) ExitAlias(ctx *AliasContext) {}\n\n// EnterFilename is called when production filename is entered.\nfunc (s *BaseSQLiteParserListener) EnterFilename(ctx *FilenameContext) {}\n\n// ExitFilename is called when production filename is exited.\nfunc (s *BaseSQLiteParserListener) ExitFilename(ctx *FilenameContext) {}\n\n// EnterBase_window_name is called when production base_window_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterBase_window_name(ctx *Base_window_nameContext) {}\n\n// ExitBase_window_name is called when production base_window_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitBase_window_name(ctx *Base_window_nameContext) {}\n\n// EnterSimple_func is called when production simple_func is entered.\nfunc (s *BaseSQLiteParserListener) EnterSimple_func(ctx *Simple_funcContext) {}\n\n// ExitSimple_func is called when production simple_func is exited.\nfunc (s *BaseSQLiteParserListener) ExitSimple_func(ctx *Simple_funcContext) {}\n\n// EnterAggregate_func is called when production aggregate_func is entered.\nfunc (s *BaseSQLiteParserListener) EnterAggregate_func(ctx *Aggregate_funcContext) {}\n\n// ExitAggregate_func is called when production aggregate_func is exited.\nfunc (s *BaseSQLiteParserListener) ExitAggregate_func(ctx *Aggregate_funcContext) {}\n\n// EnterTable_function_name is called when production table_function_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterTable_function_name(ctx *Table_function_nameContext) {}\n\n// ExitTable_function_name is called when production table_function_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitTable_function_name(ctx *Table_function_nameContext) {}\n\n// EnterAny_name is called when production any_name is entered.\nfunc (s *BaseSQLiteParserListener) EnterAny_name(ctx *Any_nameContext) {}\n\n// ExitAny_name is called when production any_name is exited.\nfunc (s *BaseSQLiteParserListener) ExitAny_name(ctx *Any_nameContext) {}\n"
  },
  {
    "path": "internal/engine/sqlite/parser/sqliteparser_listener.go",
    "content": "// Code generated from SQLiteParser.g4 by ANTLR 4.13.1. DO NOT EDIT.\n\npackage parser // SQLiteParser\n\nimport \"github.com/antlr4-go/antlr/v4\"\n\n// SQLiteParserListener is a complete listener for a parse tree produced by SQLiteParser.\ntype SQLiteParserListener interface {\n\tantlr.ParseTreeListener\n\n\t// EnterParse is called when entering the parse production.\n\tEnterParse(c *ParseContext)\n\n\t// EnterSql_stmt_list is called when entering the sql_stmt_list production.\n\tEnterSql_stmt_list(c *Sql_stmt_listContext)\n\n\t// EnterSql_stmt is called when entering the sql_stmt production.\n\tEnterSql_stmt(c *Sql_stmtContext)\n\n\t// EnterAlter_table_stmt is called when entering the alter_table_stmt production.\n\tEnterAlter_table_stmt(c *Alter_table_stmtContext)\n\n\t// EnterAnalyze_stmt is called when entering the analyze_stmt production.\n\tEnterAnalyze_stmt(c *Analyze_stmtContext)\n\n\t// EnterAttach_stmt is called when entering the attach_stmt production.\n\tEnterAttach_stmt(c *Attach_stmtContext)\n\n\t// EnterBegin_stmt is called when entering the begin_stmt production.\n\tEnterBegin_stmt(c *Begin_stmtContext)\n\n\t// EnterCommit_stmt is called when entering the commit_stmt production.\n\tEnterCommit_stmt(c *Commit_stmtContext)\n\n\t// EnterRollback_stmt is called when entering the rollback_stmt production.\n\tEnterRollback_stmt(c *Rollback_stmtContext)\n\n\t// EnterSavepoint_stmt is called when entering the savepoint_stmt production.\n\tEnterSavepoint_stmt(c *Savepoint_stmtContext)\n\n\t// EnterRelease_stmt is called when entering the release_stmt production.\n\tEnterRelease_stmt(c *Release_stmtContext)\n\n\t// EnterCreate_index_stmt is called when entering the create_index_stmt production.\n\tEnterCreate_index_stmt(c *Create_index_stmtContext)\n\n\t// EnterIndexed_column is called when entering the indexed_column production.\n\tEnterIndexed_column(c *Indexed_columnContext)\n\n\t// EnterTable_option is called when entering the table_option production.\n\tEnterTable_option(c *Table_optionContext)\n\n\t// EnterCreate_table_stmt is called when entering the create_table_stmt production.\n\tEnterCreate_table_stmt(c *Create_table_stmtContext)\n\n\t// EnterColumn_def is called when entering the column_def production.\n\tEnterColumn_def(c *Column_defContext)\n\n\t// EnterType_name is called when entering the type_name production.\n\tEnterType_name(c *Type_nameContext)\n\n\t// EnterColumn_constraint is called when entering the column_constraint production.\n\tEnterColumn_constraint(c *Column_constraintContext)\n\n\t// EnterSigned_number is called when entering the signed_number production.\n\tEnterSigned_number(c *Signed_numberContext)\n\n\t// EnterTable_constraint is called when entering the table_constraint production.\n\tEnterTable_constraint(c *Table_constraintContext)\n\n\t// EnterForeign_key_clause is called when entering the foreign_key_clause production.\n\tEnterForeign_key_clause(c *Foreign_key_clauseContext)\n\n\t// EnterConflict_clause is called when entering the conflict_clause production.\n\tEnterConflict_clause(c *Conflict_clauseContext)\n\n\t// EnterCreate_trigger_stmt is called when entering the create_trigger_stmt production.\n\tEnterCreate_trigger_stmt(c *Create_trigger_stmtContext)\n\n\t// EnterCreate_view_stmt is called when entering the create_view_stmt production.\n\tEnterCreate_view_stmt(c *Create_view_stmtContext)\n\n\t// EnterCreate_virtual_table_stmt is called when entering the create_virtual_table_stmt production.\n\tEnterCreate_virtual_table_stmt(c *Create_virtual_table_stmtContext)\n\n\t// EnterWith_clause is called when entering the with_clause production.\n\tEnterWith_clause(c *With_clauseContext)\n\n\t// EnterCte_table_name is called when entering the cte_table_name production.\n\tEnterCte_table_name(c *Cte_table_nameContext)\n\n\t// EnterRecursive_cte is called when entering the recursive_cte production.\n\tEnterRecursive_cte(c *Recursive_cteContext)\n\n\t// EnterCommon_table_expression is called when entering the common_table_expression production.\n\tEnterCommon_table_expression(c *Common_table_expressionContext)\n\n\t// EnterReturning_clause is called when entering the returning_clause production.\n\tEnterReturning_clause(c *Returning_clauseContext)\n\n\t// EnterDelete_stmt is called when entering the delete_stmt production.\n\tEnterDelete_stmt(c *Delete_stmtContext)\n\n\t// EnterDelete_stmt_limited is called when entering the delete_stmt_limited production.\n\tEnterDelete_stmt_limited(c *Delete_stmt_limitedContext)\n\n\t// EnterDetach_stmt is called when entering the detach_stmt production.\n\tEnterDetach_stmt(c *Detach_stmtContext)\n\n\t// EnterDrop_stmt is called when entering the drop_stmt production.\n\tEnterDrop_stmt(c *Drop_stmtContext)\n\n\t// EnterExpr_case is called when entering the expr_case production.\n\tEnterExpr_case(c *Expr_caseContext)\n\n\t// EnterExpr_raise is called when entering the expr_raise production.\n\tEnterExpr_raise(c *Expr_raiseContext)\n\n\t// EnterExpr_function is called when entering the expr_function production.\n\tEnterExpr_function(c *Expr_functionContext)\n\n\t// EnterExpr_comparison is called when entering the expr_comparison production.\n\tEnterExpr_comparison(c *Expr_comparisonContext)\n\n\t// EnterExpr_bool is called when entering the expr_bool production.\n\tEnterExpr_bool(c *Expr_boolContext)\n\n\t// EnterExpr_binary is called when entering the expr_binary production.\n\tEnterExpr_binary(c *Expr_binaryContext)\n\n\t// EnterExpr_literal is called when entering the expr_literal production.\n\tEnterExpr_literal(c *Expr_literalContext)\n\n\t// EnterExpr_cast is called when entering the expr_cast production.\n\tEnterExpr_cast(c *Expr_castContext)\n\n\t// EnterExpr_in_select is called when entering the expr_in_select production.\n\tEnterExpr_in_select(c *Expr_in_selectContext)\n\n\t// EnterExpr_list is called when entering the expr_list production.\n\tEnterExpr_list(c *Expr_listContext)\n\n\t// EnterExpr_between is called when entering the expr_between production.\n\tEnterExpr_between(c *Expr_betweenContext)\n\n\t// EnterExpr_collate is called when entering the expr_collate production.\n\tEnterExpr_collate(c *Expr_collateContext)\n\n\t// EnterExpr_qualified_column_name is called when entering the expr_qualified_column_name production.\n\tEnterExpr_qualified_column_name(c *Expr_qualified_column_nameContext)\n\n\t// EnterExpr_unary is called when entering the expr_unary production.\n\tEnterExpr_unary(c *Expr_unaryContext)\n\n\t// EnterExpr_null_comp is called when entering the expr_null_comp production.\n\tEnterExpr_null_comp(c *Expr_null_compContext)\n\n\t// EnterExpr_bind is called when entering the expr_bind production.\n\tEnterExpr_bind(c *Expr_bindContext)\n\n\t// EnterRaise_function is called when entering the raise_function production.\n\tEnterRaise_function(c *Raise_functionContext)\n\n\t// EnterLiteral_value is called when entering the literal_value production.\n\tEnterLiteral_value(c *Literal_valueContext)\n\n\t// EnterInsert_stmt is called when entering the insert_stmt production.\n\tEnterInsert_stmt(c *Insert_stmtContext)\n\n\t// EnterUpsert_clause is called when entering the upsert_clause production.\n\tEnterUpsert_clause(c *Upsert_clauseContext)\n\n\t// EnterPragma_stmt is called when entering the pragma_stmt production.\n\tEnterPragma_stmt(c *Pragma_stmtContext)\n\n\t// EnterPragma_value is called when entering the pragma_value production.\n\tEnterPragma_value(c *Pragma_valueContext)\n\n\t// EnterReindex_stmt is called when entering the reindex_stmt production.\n\tEnterReindex_stmt(c *Reindex_stmtContext)\n\n\t// EnterSelect_stmt is called when entering the select_stmt production.\n\tEnterSelect_stmt(c *Select_stmtContext)\n\n\t// EnterJoin_clause is called when entering the join_clause production.\n\tEnterJoin_clause(c *Join_clauseContext)\n\n\t// EnterSelect_core is called when entering the select_core production.\n\tEnterSelect_core(c *Select_coreContext)\n\n\t// EnterFactored_select_stmt is called when entering the factored_select_stmt production.\n\tEnterFactored_select_stmt(c *Factored_select_stmtContext)\n\n\t// EnterSimple_select_stmt is called when entering the simple_select_stmt production.\n\tEnterSimple_select_stmt(c *Simple_select_stmtContext)\n\n\t// EnterCompound_select_stmt is called when entering the compound_select_stmt production.\n\tEnterCompound_select_stmt(c *Compound_select_stmtContext)\n\n\t// EnterTable_or_subquery is called when entering the table_or_subquery production.\n\tEnterTable_or_subquery(c *Table_or_subqueryContext)\n\n\t// EnterResult_column is called when entering the result_column production.\n\tEnterResult_column(c *Result_columnContext)\n\n\t// EnterJoin_operator is called when entering the join_operator production.\n\tEnterJoin_operator(c *Join_operatorContext)\n\n\t// EnterJoin_constraint is called when entering the join_constraint production.\n\tEnterJoin_constraint(c *Join_constraintContext)\n\n\t// EnterCompound_operator is called when entering the compound_operator production.\n\tEnterCompound_operator(c *Compound_operatorContext)\n\n\t// EnterUpdate_stmt is called when entering the update_stmt production.\n\tEnterUpdate_stmt(c *Update_stmtContext)\n\n\t// EnterColumn_name_list is called when entering the column_name_list production.\n\tEnterColumn_name_list(c *Column_name_listContext)\n\n\t// EnterUpdate_stmt_limited is called when entering the update_stmt_limited production.\n\tEnterUpdate_stmt_limited(c *Update_stmt_limitedContext)\n\n\t// EnterQualified_table_name is called when entering the qualified_table_name production.\n\tEnterQualified_table_name(c *Qualified_table_nameContext)\n\n\t// EnterVacuum_stmt is called when entering the vacuum_stmt production.\n\tEnterVacuum_stmt(c *Vacuum_stmtContext)\n\n\t// EnterFilter_clause is called when entering the filter_clause production.\n\tEnterFilter_clause(c *Filter_clauseContext)\n\n\t// EnterWindow_defn is called when entering the window_defn production.\n\tEnterWindow_defn(c *Window_defnContext)\n\n\t// EnterOver_clause is called when entering the over_clause production.\n\tEnterOver_clause(c *Over_clauseContext)\n\n\t// EnterFrame_spec is called when entering the frame_spec production.\n\tEnterFrame_spec(c *Frame_specContext)\n\n\t// EnterFrame_clause is called when entering the frame_clause production.\n\tEnterFrame_clause(c *Frame_clauseContext)\n\n\t// EnterSimple_function_invocation is called when entering the simple_function_invocation production.\n\tEnterSimple_function_invocation(c *Simple_function_invocationContext)\n\n\t// EnterAggregate_function_invocation is called when entering the aggregate_function_invocation production.\n\tEnterAggregate_function_invocation(c *Aggregate_function_invocationContext)\n\n\t// EnterWindow_function_invocation is called when entering the window_function_invocation production.\n\tEnterWindow_function_invocation(c *Window_function_invocationContext)\n\n\t// EnterCommon_table_stmt is called when entering the common_table_stmt production.\n\tEnterCommon_table_stmt(c *Common_table_stmtContext)\n\n\t// EnterOrder_by_stmt is called when entering the order_by_stmt production.\n\tEnterOrder_by_stmt(c *Order_by_stmtContext)\n\n\t// EnterLimit_stmt is called when entering the limit_stmt production.\n\tEnterLimit_stmt(c *Limit_stmtContext)\n\n\t// EnterOrdering_term is called when entering the ordering_term production.\n\tEnterOrdering_term(c *Ordering_termContext)\n\n\t// EnterAsc_desc is called when entering the asc_desc production.\n\tEnterAsc_desc(c *Asc_descContext)\n\n\t// EnterFrame_left is called when entering the frame_left production.\n\tEnterFrame_left(c *Frame_leftContext)\n\n\t// EnterFrame_right is called when entering the frame_right production.\n\tEnterFrame_right(c *Frame_rightContext)\n\n\t// EnterFrame_single is called when entering the frame_single production.\n\tEnterFrame_single(c *Frame_singleContext)\n\n\t// EnterWindow_function is called when entering the window_function production.\n\tEnterWindow_function(c *Window_functionContext)\n\n\t// EnterOf_OF_fset is called when entering the of_OF_fset production.\n\tEnterOf_OF_fset(c *Of_OF_fsetContext)\n\n\t// EnterDefault_DEFAULT__value is called when entering the default_DEFAULT__value production.\n\tEnterDefault_DEFAULT__value(c *Default_DEFAULT__valueContext)\n\n\t// EnterPartition_by is called when entering the partition_by production.\n\tEnterPartition_by(c *Partition_byContext)\n\n\t// EnterOrder_by_expr is called when entering the order_by_expr production.\n\tEnterOrder_by_expr(c *Order_by_exprContext)\n\n\t// EnterOrder_by_expr_asc_desc is called when entering the order_by_expr_asc_desc production.\n\tEnterOrder_by_expr_asc_desc(c *Order_by_expr_asc_descContext)\n\n\t// EnterExpr_asc_desc is called when entering the expr_asc_desc production.\n\tEnterExpr_asc_desc(c *Expr_asc_descContext)\n\n\t// EnterInitial_select is called when entering the initial_select production.\n\tEnterInitial_select(c *Initial_selectContext)\n\n\t// EnterRecursive__select is called when entering the recursive__select production.\n\tEnterRecursive__select(c *Recursive__selectContext)\n\n\t// EnterUnary_operator is called when entering the unary_operator production.\n\tEnterUnary_operator(c *Unary_operatorContext)\n\n\t// EnterError_message is called when entering the error_message production.\n\tEnterError_message(c *Error_messageContext)\n\n\t// EnterModule_argument is called when entering the module_argument production.\n\tEnterModule_argument(c *Module_argumentContext)\n\n\t// EnterColumn_alias is called when entering the column_alias production.\n\tEnterColumn_alias(c *Column_aliasContext)\n\n\t// EnterKeyword is called when entering the keyword production.\n\tEnterKeyword(c *KeywordContext)\n\n\t// EnterName is called when entering the name production.\n\tEnterName(c *NameContext)\n\n\t// EnterFunction_name is called when entering the function_name production.\n\tEnterFunction_name(c *Function_nameContext)\n\n\t// EnterQualified_function_name is called when entering the qualified_function_name production.\n\tEnterQualified_function_name(c *Qualified_function_nameContext)\n\n\t// EnterSchema_name is called when entering the schema_name production.\n\tEnterSchema_name(c *Schema_nameContext)\n\n\t// EnterTable_name is called when entering the table_name production.\n\tEnterTable_name(c *Table_nameContext)\n\n\t// EnterTable_or_index_name is called when entering the table_or_index_name production.\n\tEnterTable_or_index_name(c *Table_or_index_nameContext)\n\n\t// EnterNew_table_name is called when entering the new_table_name production.\n\tEnterNew_table_name(c *New_table_nameContext)\n\n\t// EnterColumn_name is called when entering the column_name production.\n\tEnterColumn_name(c *Column_nameContext)\n\n\t// EnterCollation_name is called when entering the collation_name production.\n\tEnterCollation_name(c *Collation_nameContext)\n\n\t// EnterForeign_table is called when entering the foreign_table production.\n\tEnterForeign_table(c *Foreign_tableContext)\n\n\t// EnterIndex_name is called when entering the index_name production.\n\tEnterIndex_name(c *Index_nameContext)\n\n\t// EnterTrigger_name is called when entering the trigger_name production.\n\tEnterTrigger_name(c *Trigger_nameContext)\n\n\t// EnterView_name is called when entering the view_name production.\n\tEnterView_name(c *View_nameContext)\n\n\t// EnterModule_name is called when entering the module_name production.\n\tEnterModule_name(c *Module_nameContext)\n\n\t// EnterPragma_name is called when entering the pragma_name production.\n\tEnterPragma_name(c *Pragma_nameContext)\n\n\t// EnterSavepoint_name is called when entering the savepoint_name production.\n\tEnterSavepoint_name(c *Savepoint_nameContext)\n\n\t// EnterTable_alias is called when entering the table_alias production.\n\tEnterTable_alias(c *Table_aliasContext)\n\n\t// EnterTable_alias_fallback is called when entering the table_alias_fallback production.\n\tEnterTable_alias_fallback(c *Table_alias_fallbackContext)\n\n\t// EnterTransaction_name is called when entering the transaction_name production.\n\tEnterTransaction_name(c *Transaction_nameContext)\n\n\t// EnterWindow_name is called when entering the window_name production.\n\tEnterWindow_name(c *Window_nameContext)\n\n\t// EnterAlias is called when entering the alias production.\n\tEnterAlias(c *AliasContext)\n\n\t// EnterFilename is called when entering the filename production.\n\tEnterFilename(c *FilenameContext)\n\n\t// EnterBase_window_name is called when entering the base_window_name production.\n\tEnterBase_window_name(c *Base_window_nameContext)\n\n\t// EnterSimple_func is called when entering the simple_func production.\n\tEnterSimple_func(c *Simple_funcContext)\n\n\t// EnterAggregate_func is called when entering the aggregate_func production.\n\tEnterAggregate_func(c *Aggregate_funcContext)\n\n\t// EnterTable_function_name is called when entering the table_function_name production.\n\tEnterTable_function_name(c *Table_function_nameContext)\n\n\t// EnterAny_name is called when entering the any_name production.\n\tEnterAny_name(c *Any_nameContext)\n\n\t// ExitParse is called when exiting the parse production.\n\tExitParse(c *ParseContext)\n\n\t// ExitSql_stmt_list is called when exiting the sql_stmt_list production.\n\tExitSql_stmt_list(c *Sql_stmt_listContext)\n\n\t// ExitSql_stmt is called when exiting the sql_stmt production.\n\tExitSql_stmt(c *Sql_stmtContext)\n\n\t// ExitAlter_table_stmt is called when exiting the alter_table_stmt production.\n\tExitAlter_table_stmt(c *Alter_table_stmtContext)\n\n\t// ExitAnalyze_stmt is called when exiting the analyze_stmt production.\n\tExitAnalyze_stmt(c *Analyze_stmtContext)\n\n\t// ExitAttach_stmt is called when exiting the attach_stmt production.\n\tExitAttach_stmt(c *Attach_stmtContext)\n\n\t// ExitBegin_stmt is called when exiting the begin_stmt production.\n\tExitBegin_stmt(c *Begin_stmtContext)\n\n\t// ExitCommit_stmt is called when exiting the commit_stmt production.\n\tExitCommit_stmt(c *Commit_stmtContext)\n\n\t// ExitRollback_stmt is called when exiting the rollback_stmt production.\n\tExitRollback_stmt(c *Rollback_stmtContext)\n\n\t// ExitSavepoint_stmt is called when exiting the savepoint_stmt production.\n\tExitSavepoint_stmt(c *Savepoint_stmtContext)\n\n\t// ExitRelease_stmt is called when exiting the release_stmt production.\n\tExitRelease_stmt(c *Release_stmtContext)\n\n\t// ExitCreate_index_stmt is called when exiting the create_index_stmt production.\n\tExitCreate_index_stmt(c *Create_index_stmtContext)\n\n\t// ExitIndexed_column is called when exiting the indexed_column production.\n\tExitIndexed_column(c *Indexed_columnContext)\n\n\t// ExitTable_option is called when exiting the table_option production.\n\tExitTable_option(c *Table_optionContext)\n\n\t// ExitCreate_table_stmt is called when exiting the create_table_stmt production.\n\tExitCreate_table_stmt(c *Create_table_stmtContext)\n\n\t// ExitColumn_def is called when exiting the column_def production.\n\tExitColumn_def(c *Column_defContext)\n\n\t// ExitType_name is called when exiting the type_name production.\n\tExitType_name(c *Type_nameContext)\n\n\t// ExitColumn_constraint is called when exiting the column_constraint production.\n\tExitColumn_constraint(c *Column_constraintContext)\n\n\t// ExitSigned_number is called when exiting the signed_number production.\n\tExitSigned_number(c *Signed_numberContext)\n\n\t// ExitTable_constraint is called when exiting the table_constraint production.\n\tExitTable_constraint(c *Table_constraintContext)\n\n\t// ExitForeign_key_clause is called when exiting the foreign_key_clause production.\n\tExitForeign_key_clause(c *Foreign_key_clauseContext)\n\n\t// ExitConflict_clause is called when exiting the conflict_clause production.\n\tExitConflict_clause(c *Conflict_clauseContext)\n\n\t// ExitCreate_trigger_stmt is called when exiting the create_trigger_stmt production.\n\tExitCreate_trigger_stmt(c *Create_trigger_stmtContext)\n\n\t// ExitCreate_view_stmt is called when exiting the create_view_stmt production.\n\tExitCreate_view_stmt(c *Create_view_stmtContext)\n\n\t// ExitCreate_virtual_table_stmt is called when exiting the create_virtual_table_stmt production.\n\tExitCreate_virtual_table_stmt(c *Create_virtual_table_stmtContext)\n\n\t// ExitWith_clause is called when exiting the with_clause production.\n\tExitWith_clause(c *With_clauseContext)\n\n\t// ExitCte_table_name is called when exiting the cte_table_name production.\n\tExitCte_table_name(c *Cte_table_nameContext)\n\n\t// ExitRecursive_cte is called when exiting the recursive_cte production.\n\tExitRecursive_cte(c *Recursive_cteContext)\n\n\t// ExitCommon_table_expression is called when exiting the common_table_expression production.\n\tExitCommon_table_expression(c *Common_table_expressionContext)\n\n\t// ExitReturning_clause is called when exiting the returning_clause production.\n\tExitReturning_clause(c *Returning_clauseContext)\n\n\t// ExitDelete_stmt is called when exiting the delete_stmt production.\n\tExitDelete_stmt(c *Delete_stmtContext)\n\n\t// ExitDelete_stmt_limited is called when exiting the delete_stmt_limited production.\n\tExitDelete_stmt_limited(c *Delete_stmt_limitedContext)\n\n\t// ExitDetach_stmt is called when exiting the detach_stmt production.\n\tExitDetach_stmt(c *Detach_stmtContext)\n\n\t// ExitDrop_stmt is called when exiting the drop_stmt production.\n\tExitDrop_stmt(c *Drop_stmtContext)\n\n\t// ExitExpr_case is called when exiting the expr_case production.\n\tExitExpr_case(c *Expr_caseContext)\n\n\t// ExitExpr_raise is called when exiting the expr_raise production.\n\tExitExpr_raise(c *Expr_raiseContext)\n\n\t// ExitExpr_function is called when exiting the expr_function production.\n\tExitExpr_function(c *Expr_functionContext)\n\n\t// ExitExpr_comparison is called when exiting the expr_comparison production.\n\tExitExpr_comparison(c *Expr_comparisonContext)\n\n\t// ExitExpr_bool is called when exiting the expr_bool production.\n\tExitExpr_bool(c *Expr_boolContext)\n\n\t// ExitExpr_binary is called when exiting the expr_binary production.\n\tExitExpr_binary(c *Expr_binaryContext)\n\n\t// ExitExpr_literal is called when exiting the expr_literal production.\n\tExitExpr_literal(c *Expr_literalContext)\n\n\t// ExitExpr_cast is called when exiting the expr_cast production.\n\tExitExpr_cast(c *Expr_castContext)\n\n\t// ExitExpr_in_select is called when exiting the expr_in_select production.\n\tExitExpr_in_select(c *Expr_in_selectContext)\n\n\t// ExitExpr_list is called when exiting the expr_list production.\n\tExitExpr_list(c *Expr_listContext)\n\n\t// ExitExpr_between is called when exiting the expr_between production.\n\tExitExpr_between(c *Expr_betweenContext)\n\n\t// ExitExpr_collate is called when exiting the expr_collate production.\n\tExitExpr_collate(c *Expr_collateContext)\n\n\t// ExitExpr_qualified_column_name is called when exiting the expr_qualified_column_name production.\n\tExitExpr_qualified_column_name(c *Expr_qualified_column_nameContext)\n\n\t// ExitExpr_unary is called when exiting the expr_unary production.\n\tExitExpr_unary(c *Expr_unaryContext)\n\n\t// ExitExpr_null_comp is called when exiting the expr_null_comp production.\n\tExitExpr_null_comp(c *Expr_null_compContext)\n\n\t// ExitExpr_bind is called when exiting the expr_bind production.\n\tExitExpr_bind(c *Expr_bindContext)\n\n\t// ExitRaise_function is called when exiting the raise_function production.\n\tExitRaise_function(c *Raise_functionContext)\n\n\t// ExitLiteral_value is called when exiting the literal_value production.\n\tExitLiteral_value(c *Literal_valueContext)\n\n\t// ExitInsert_stmt is called when exiting the insert_stmt production.\n\tExitInsert_stmt(c *Insert_stmtContext)\n\n\t// ExitUpsert_clause is called when exiting the upsert_clause production.\n\tExitUpsert_clause(c *Upsert_clauseContext)\n\n\t// ExitPragma_stmt is called when exiting the pragma_stmt production.\n\tExitPragma_stmt(c *Pragma_stmtContext)\n\n\t// ExitPragma_value is called when exiting the pragma_value production.\n\tExitPragma_value(c *Pragma_valueContext)\n\n\t// ExitReindex_stmt is called when exiting the reindex_stmt production.\n\tExitReindex_stmt(c *Reindex_stmtContext)\n\n\t// ExitSelect_stmt is called when exiting the select_stmt production.\n\tExitSelect_stmt(c *Select_stmtContext)\n\n\t// ExitJoin_clause is called when exiting the join_clause production.\n\tExitJoin_clause(c *Join_clauseContext)\n\n\t// ExitSelect_core is called when exiting the select_core production.\n\tExitSelect_core(c *Select_coreContext)\n\n\t// ExitFactored_select_stmt is called when exiting the factored_select_stmt production.\n\tExitFactored_select_stmt(c *Factored_select_stmtContext)\n\n\t// ExitSimple_select_stmt is called when exiting the simple_select_stmt production.\n\tExitSimple_select_stmt(c *Simple_select_stmtContext)\n\n\t// ExitCompound_select_stmt is called when exiting the compound_select_stmt production.\n\tExitCompound_select_stmt(c *Compound_select_stmtContext)\n\n\t// ExitTable_or_subquery is called when exiting the table_or_subquery production.\n\tExitTable_or_subquery(c *Table_or_subqueryContext)\n\n\t// ExitResult_column is called when exiting the result_column production.\n\tExitResult_column(c *Result_columnContext)\n\n\t// ExitJoin_operator is called when exiting the join_operator production.\n\tExitJoin_operator(c *Join_operatorContext)\n\n\t// ExitJoin_constraint is called when exiting the join_constraint production.\n\tExitJoin_constraint(c *Join_constraintContext)\n\n\t// ExitCompound_operator is called when exiting the compound_operator production.\n\tExitCompound_operator(c *Compound_operatorContext)\n\n\t// ExitUpdate_stmt is called when exiting the update_stmt production.\n\tExitUpdate_stmt(c *Update_stmtContext)\n\n\t// ExitColumn_name_list is called when exiting the column_name_list production.\n\tExitColumn_name_list(c *Column_name_listContext)\n\n\t// ExitUpdate_stmt_limited is called when exiting the update_stmt_limited production.\n\tExitUpdate_stmt_limited(c *Update_stmt_limitedContext)\n\n\t// ExitQualified_table_name is called when exiting the qualified_table_name production.\n\tExitQualified_table_name(c *Qualified_table_nameContext)\n\n\t// ExitVacuum_stmt is called when exiting the vacuum_stmt production.\n\tExitVacuum_stmt(c *Vacuum_stmtContext)\n\n\t// ExitFilter_clause is called when exiting the filter_clause production.\n\tExitFilter_clause(c *Filter_clauseContext)\n\n\t// ExitWindow_defn is called when exiting the window_defn production.\n\tExitWindow_defn(c *Window_defnContext)\n\n\t// ExitOver_clause is called when exiting the over_clause production.\n\tExitOver_clause(c *Over_clauseContext)\n\n\t// ExitFrame_spec is called when exiting the frame_spec production.\n\tExitFrame_spec(c *Frame_specContext)\n\n\t// ExitFrame_clause is called when exiting the frame_clause production.\n\tExitFrame_clause(c *Frame_clauseContext)\n\n\t// ExitSimple_function_invocation is called when exiting the simple_function_invocation production.\n\tExitSimple_function_invocation(c *Simple_function_invocationContext)\n\n\t// ExitAggregate_function_invocation is called when exiting the aggregate_function_invocation production.\n\tExitAggregate_function_invocation(c *Aggregate_function_invocationContext)\n\n\t// ExitWindow_function_invocation is called when exiting the window_function_invocation production.\n\tExitWindow_function_invocation(c *Window_function_invocationContext)\n\n\t// ExitCommon_table_stmt is called when exiting the common_table_stmt production.\n\tExitCommon_table_stmt(c *Common_table_stmtContext)\n\n\t// ExitOrder_by_stmt is called when exiting the order_by_stmt production.\n\tExitOrder_by_stmt(c *Order_by_stmtContext)\n\n\t// ExitLimit_stmt is called when exiting the limit_stmt production.\n\tExitLimit_stmt(c *Limit_stmtContext)\n\n\t// ExitOrdering_term is called when exiting the ordering_term production.\n\tExitOrdering_term(c *Ordering_termContext)\n\n\t// ExitAsc_desc is called when exiting the asc_desc production.\n\tExitAsc_desc(c *Asc_descContext)\n\n\t// ExitFrame_left is called when exiting the frame_left production.\n\tExitFrame_left(c *Frame_leftContext)\n\n\t// ExitFrame_right is called when exiting the frame_right production.\n\tExitFrame_right(c *Frame_rightContext)\n\n\t// ExitFrame_single is called when exiting the frame_single production.\n\tExitFrame_single(c *Frame_singleContext)\n\n\t// ExitWindow_function is called when exiting the window_function production.\n\tExitWindow_function(c *Window_functionContext)\n\n\t// ExitOf_OF_fset is called when exiting the of_OF_fset production.\n\tExitOf_OF_fset(c *Of_OF_fsetContext)\n\n\t// ExitDefault_DEFAULT__value is called when exiting the default_DEFAULT__value production.\n\tExitDefault_DEFAULT__value(c *Default_DEFAULT__valueContext)\n\n\t// ExitPartition_by is called when exiting the partition_by production.\n\tExitPartition_by(c *Partition_byContext)\n\n\t// ExitOrder_by_expr is called when exiting the order_by_expr production.\n\tExitOrder_by_expr(c *Order_by_exprContext)\n\n\t// ExitOrder_by_expr_asc_desc is called when exiting the order_by_expr_asc_desc production.\n\tExitOrder_by_expr_asc_desc(c *Order_by_expr_asc_descContext)\n\n\t// ExitExpr_asc_desc is called when exiting the expr_asc_desc production.\n\tExitExpr_asc_desc(c *Expr_asc_descContext)\n\n\t// ExitInitial_select is called when exiting the initial_select production.\n\tExitInitial_select(c *Initial_selectContext)\n\n\t// ExitRecursive__select is called when exiting the recursive__select production.\n\tExitRecursive__select(c *Recursive__selectContext)\n\n\t// ExitUnary_operator is called when exiting the unary_operator production.\n\tExitUnary_operator(c *Unary_operatorContext)\n\n\t// ExitError_message is called when exiting the error_message production.\n\tExitError_message(c *Error_messageContext)\n\n\t// ExitModule_argument is called when exiting the module_argument production.\n\tExitModule_argument(c *Module_argumentContext)\n\n\t// ExitColumn_alias is called when exiting the column_alias production.\n\tExitColumn_alias(c *Column_aliasContext)\n\n\t// ExitKeyword is called when exiting the keyword production.\n\tExitKeyword(c *KeywordContext)\n\n\t// ExitName is called when exiting the name production.\n\tExitName(c *NameContext)\n\n\t// ExitFunction_name is called when exiting the function_name production.\n\tExitFunction_name(c *Function_nameContext)\n\n\t// ExitQualified_function_name is called when exiting the qualified_function_name production.\n\tExitQualified_function_name(c *Qualified_function_nameContext)\n\n\t// ExitSchema_name is called when exiting the schema_name production.\n\tExitSchema_name(c *Schema_nameContext)\n\n\t// ExitTable_name is called when exiting the table_name production.\n\tExitTable_name(c *Table_nameContext)\n\n\t// ExitTable_or_index_name is called when exiting the table_or_index_name production.\n\tExitTable_or_index_name(c *Table_or_index_nameContext)\n\n\t// ExitNew_table_name is called when exiting the new_table_name production.\n\tExitNew_table_name(c *New_table_nameContext)\n\n\t// ExitColumn_name is called when exiting the column_name production.\n\tExitColumn_name(c *Column_nameContext)\n\n\t// ExitCollation_name is called when exiting the collation_name production.\n\tExitCollation_name(c *Collation_nameContext)\n\n\t// ExitForeign_table is called when exiting the foreign_table production.\n\tExitForeign_table(c *Foreign_tableContext)\n\n\t// ExitIndex_name is called when exiting the index_name production.\n\tExitIndex_name(c *Index_nameContext)\n\n\t// ExitTrigger_name is called when exiting the trigger_name production.\n\tExitTrigger_name(c *Trigger_nameContext)\n\n\t// ExitView_name is called when exiting the view_name production.\n\tExitView_name(c *View_nameContext)\n\n\t// ExitModule_name is called when exiting the module_name production.\n\tExitModule_name(c *Module_nameContext)\n\n\t// ExitPragma_name is called when exiting the pragma_name production.\n\tExitPragma_name(c *Pragma_nameContext)\n\n\t// ExitSavepoint_name is called when exiting the savepoint_name production.\n\tExitSavepoint_name(c *Savepoint_nameContext)\n\n\t// ExitTable_alias is called when exiting the table_alias production.\n\tExitTable_alias(c *Table_aliasContext)\n\n\t// ExitTable_alias_fallback is called when exiting the table_alias_fallback production.\n\tExitTable_alias_fallback(c *Table_alias_fallbackContext)\n\n\t// ExitTransaction_name is called when exiting the transaction_name production.\n\tExitTransaction_name(c *Transaction_nameContext)\n\n\t// ExitWindow_name is called when exiting the window_name production.\n\tExitWindow_name(c *Window_nameContext)\n\n\t// ExitAlias is called when exiting the alias production.\n\tExitAlias(c *AliasContext)\n\n\t// ExitFilename is called when exiting the filename production.\n\tExitFilename(c *FilenameContext)\n\n\t// ExitBase_window_name is called when exiting the base_window_name production.\n\tExitBase_window_name(c *Base_window_nameContext)\n\n\t// ExitSimple_func is called when exiting the simple_func production.\n\tExitSimple_func(c *Simple_funcContext)\n\n\t// ExitAggregate_func is called when exiting the aggregate_func production.\n\tExitAggregate_func(c *Aggregate_funcContext)\n\n\t// ExitTable_function_name is called when exiting the table_function_name production.\n\tExitTable_function_name(c *Table_function_nameContext)\n\n\t// ExitAny_name is called when exiting the any_name production.\n\tExitAny_name(c *Any_nameContext)\n}\n"
  },
  {
    "path": "internal/engine/sqlite/reserved.go",
    "content": "package sqlite\n\nimport \"strings\"\n\n// https://sqlite.org/lang_keywords.html\nfunc (p *Parser) IsReservedKeyword(s string) bool {\n\tswitch strings.ToLower(s) {\n\tcase \"abort\":\n\tcase \"action\":\n\tcase \"add\":\n\tcase \"after\":\n\tcase \"all\":\n\tcase \"alter\":\n\tcase \"always\":\n\tcase \"analyze\":\n\tcase \"and\":\n\tcase \"as\":\n\tcase \"asc\":\n\tcase \"attach\":\n\tcase \"autoincrement\":\n\tcase \"before\":\n\tcase \"begin\":\n\tcase \"between\":\n\tcase \"by\":\n\tcase \"cascade\":\n\tcase \"case\":\n\tcase \"cast\":\n\tcase \"check\":\n\tcase \"collate\":\n\tcase \"column\":\n\tcase \"commit\":\n\tcase \"conflict\":\n\tcase \"constraint\":\n\tcase \"create\":\n\tcase \"cross\":\n\tcase \"current\":\n\tcase \"current_date\":\n\tcase \"current_time\":\n\tcase \"current_timestamp\":\n\tcase \"database\":\n\tcase \"default\":\n\tcase \"deferrable\":\n\tcase \"deferred\":\n\tcase \"delete\":\n\tcase \"desc\":\n\tcase \"detach\":\n\tcase \"distinct\":\n\tcase \"do\":\n\tcase \"drop\":\n\tcase \"each\":\n\tcase \"else\":\n\tcase \"end\":\n\tcase \"escape\":\n\tcase \"except\":\n\tcase \"exclude\":\n\tcase \"exclusive\":\n\tcase \"exists\":\n\tcase \"explain\":\n\tcase \"fail\":\n\tcase \"filter\":\n\tcase \"first\":\n\tcase \"following\":\n\tcase \"for\":\n\tcase \"foreign\":\n\tcase \"from\":\n\tcase \"full\":\n\tcase \"generated\":\n\tcase \"glob\":\n\tcase \"group\":\n\tcase \"groups\":\n\tcase \"having\":\n\tcase \"if\":\n\tcase \"ignore\":\n\tcase \"immediate\":\n\tcase \"in\":\n\tcase \"index\":\n\tcase \"indexed\":\n\tcase \"initially\":\n\tcase \"inner\":\n\tcase \"insert\":\n\tcase \"instead\":\n\tcase \"intersect\":\n\tcase \"into\":\n\tcase \"is\":\n\tcase \"isnull\":\n\tcase \"join\":\n\tcase \"key\":\n\tcase \"last\":\n\tcase \"left\":\n\tcase \"like\":\n\tcase \"limit\":\n\tcase \"match\":\n\tcase \"natural\":\n\tcase \"no\":\n\tcase \"not\":\n\tcase \"nothing\":\n\tcase \"notnull\":\n\tcase \"null\":\n\tcase \"nulls\":\n\tcase \"of\":\n\tcase \"offset\":\n\tcase \"on\":\n\tcase \"or\":\n\tcase \"order\":\n\tcase \"others\":\n\tcase \"outer\":\n\tcase \"over\":\n\tcase \"partition\":\n\tcase \"plan\":\n\tcase \"pragma\":\n\tcase \"preceding\":\n\tcase \"primary\":\n\tcase \"query\":\n\tcase \"raise\":\n\tcase \"range\":\n\tcase \"recursive\":\n\tcase \"references\":\n\tcase \"regexp\":\n\tcase \"reindex\":\n\tcase \"release\":\n\tcase \"rename\":\n\tcase \"replace\":\n\tcase \"restrict\":\n\tcase \"right\":\n\tcase \"rollback\":\n\tcase \"row\":\n\tcase \"rows\":\n\tcase \"savepoint\":\n\tcase \"select\":\n\tcase \"set\":\n\tcase \"table\":\n\tcase \"temp\":\n\tcase \"temporary\":\n\tcase \"then\":\n\tcase \"ties\":\n\tcase \"to\":\n\tcase \"transaction\":\n\tcase \"trigger\":\n\tcase \"unbounded\":\n\tcase \"union\":\n\tcase \"unique\":\n\tcase \"update\":\n\tcase \"using\":\n\tcase \"vacuum\":\n\tcase \"values\":\n\tcase \"view\":\n\tcase \"virtual\":\n\tcase \"when\":\n\tcase \"where\":\n\tcase \"window\":\n\tcase \"with\":\n\tcase \"without\":\n\tdefault:\n\t\treturn false\n\t}\n\treturn true\n}\n"
  },
  {
    "path": "internal/engine/sqlite/stdlib.go",
    "content": "package sqlite\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\n// sqlite functions from:\n// \t\t https://www.sqlite.org/lang_aggfunc.html\n// \t\t https://www.sqlite.org/lang_mathfunc.html\n//\t\t https://www.sqlite.org/lang_corefunc.html\n\nfunc defaultSchema(name string) *catalog.Schema {\n\ts := &catalog.Schema{Name: name}\n\ts.Funcs = []*catalog.Function{\n\t\t// Aggregation Functions\n\t\t{\n\t\t\tName: \"AVG\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"real\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName:       \"COUNT\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t\t},\n\t\t{\n\t\t\tName: \"COUNT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t\t},\n\t\t{\n\t\t\tName: \"GROUP_CONCAT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"GROUP_CONCAT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MAX\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"any\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"MIN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"any\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"SUM\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"real\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"TOTAL\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\n\t\t// Math Functions\n\t\t{\n\t\t\tName: \"ACOS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ACOSH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ASIN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ASINH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ATAN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ATAN2\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ATANH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CEIL\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CEILING\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t\t},\n\t\t{\n\t\t\tName: \"COS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"COSH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"DEGREES\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"EXP\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"FLOOR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LOG\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LOG10\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LOG\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LOG2\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MOD\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"PI\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"POW\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"POWER\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"RADIANS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SIN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SINH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SQRT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TAN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TANH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TRUNC\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t\t},\n\n\t\t// Scalar functions\n\t\t{\n\t\t\tName: \"ABS\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"CHANGES\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t\t},\n\t\t{\n\t\t\tName: \"CHAR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"int\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"COALESCE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"any\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"FORMAT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"text\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"GLOB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t\t},\n\t\t{\n\t\t\tName: \"HEX\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"IFNULL\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"any\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"IIF\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"any\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"INSTR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"integer\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName:       \"LAST_INSERT_ROWID\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LENGTH\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"integer\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"LIKE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LIKE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LIKELIHOOD\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"any\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"LIKELY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"any\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"LOWER\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LTRIM\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"LTRIM\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"MAX\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"any\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"MIN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"any\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"NULLIF\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"any\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"PRINTF\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"text\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"QUOTE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"RAMDOM\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t\t},\n\t\t{\n\t\t\tName: \"RAMDOMBLOB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"blob\"},\n\t\t},\n\t\t{\n\t\t\tName: \"REPLACE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ROUND\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ROUND\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t\t{\n\t\t\tName: \"RTRIM\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"RTRIM\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SIGN\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"integer\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"SOUNDEX\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SQLITE_COMPILEOPTION_GET\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"text\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"SQLITE_COMPILEOPTION_USED\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SQLITE_OFFSET\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"integer\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName:       \"SQLITE_SOURCE_ID\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"SQLITE_VERSION\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SUBSTR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SUBSTR\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SUBSTRING\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SUBSTRING\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName:       \"TOTAL_CHANGES\",\n\t\t\tArgs:       []*catalog.Argument{},\n\t\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TRIM\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TRIM\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"TYPEOF\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"UNICODE\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"integer\"},\n\t\t},\n\t\t{\n\t\t\tName: \"UNLIKELY\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"any\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType:         &ast.TypeName{Name: \"any\"},\n\t\t\tReturnTypeNullable: true,\n\t\t},\n\t\t{\n\t\t\tName: \"UPPER\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"ZEROBLOB\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"blob\"},\n\t\t},\n\t\t// fts5 funcs https://www.sqlite.org/fts5.html#_auxiliary_functions_\n\t\t{\n\t\t\tName: \"HIGHLIGHT\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"SNIPPET\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"integer\"},\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"text\"},\n\t\t},\n\t\t{\n\t\t\tName: \"bm25\",\n\t\t\tArgs: []*catalog.Argument{\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"text\"},\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tType: &ast.TypeName{Name: \"real\"},\n\t\t\t\t\tMode: ast.FuncParamVariadic,\n\t\t\t\t},\n\t\t\t},\n\t\t\tReturnType: &ast.TypeName{Name: \"real\"},\n\t\t},\n\t}\n\treturn s\n}\n"
  },
  {
    "path": "internal/engine/sqlite/utils.go",
    "content": "package sqlite\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/engine/sqlite/parser\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\ntype tableNamer interface {\n\tTable_name() parser.ITable_nameContext\n\tSchema_name() parser.ISchema_nameContext\n}\n\nfunc parseTableName(c tableNamer) *ast.TableName {\n\tname := ast.TableName{\n\t\tName: identifier(c.Table_name().GetText()),\n\t}\n\tif c.Schema_name() != nil {\n\t\tname.Schema = c.Schema_name().GetText()\n\t}\n\treturn &name\n}\n\nfunc hasNotNullConstraint(checks []parser.IColumn_constraintContext) bool {\n\tfor i := range checks {\n\t\tconstraint, ok := checks[i].(*parser.Column_constraintContext)\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\t\tif constraint.PRIMARY_() != nil && constraint.KEY_() != nil {\n\t\t\treturn true\n\t\t}\n\t\tif constraint.NOT_() != nil && constraint.NULL_() != nil {\n\t\t\treturn true\n\t\t}\n\t}\n\treturn false\n}\n"
  },
  {
    "path": "internal/ext/handler.go",
    "content": "package ext\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/status\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\ntype Handler interface {\n\tGenerate(context.Context, *plugin.GenerateRequest) (*plugin.GenerateResponse, error)\n\n\tInvoke(ctx context.Context, method string, args any, reply any, opts ...grpc.CallOption) error\n\tNewStream(ctx context.Context, desc *grpc.StreamDesc, method string, opts ...grpc.CallOption) (grpc.ClientStream, error)\n}\n\ntype wrapper struct {\n\tfn func(context.Context, *plugin.GenerateRequest) (*plugin.GenerateResponse, error)\n}\n\nfunc (w *wrapper) Generate(ctx context.Context, req *plugin.GenerateRequest) (*plugin.GenerateResponse, error) {\n\treturn w.fn(ctx, req)\n}\n\nfunc (w *wrapper) Invoke(ctx context.Context, method string, args any, reply any, opts ...grpc.CallOption) error {\n\treq, ok := args.(*plugin.GenerateRequest)\n\tif !ok {\n\t\treturn fmt.Errorf(\"args isn't a GenerateRequest\")\n\t}\n\tresp, ok := reply.(*plugin.GenerateResponse)\n\tif !ok {\n\t\treturn fmt.Errorf(\"reply isn't a GenerateResponse\")\n\t}\n\tres, err := w.Generate(ctx, req)\n\tif err != nil {\n\t\treturn err\n\t}\n\tresp.Files = res.Files\n\treturn nil\n}\n\nfunc (w *wrapper) NewStream(ctx context.Context, desc *grpc.StreamDesc, method string, opts ...grpc.CallOption) (grpc.ClientStream, error) {\n\treturn nil, status.Error(codes.Unimplemented, \"\")\n}\n\nfunc HandleFunc(fn func(context.Context, *plugin.GenerateRequest) (*plugin.GenerateResponse, error)) Handler {\n\treturn &wrapper{fn}\n}\n"
  },
  {
    "path": "internal/ext/process/gen.go",
    "content": "package process\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"errors\"\n\t\"fmt\"\n\t\"os\"\n\t\"os/exec\"\n\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/status\"\n\t\"google.golang.org/protobuf/encoding/protojson\"\n\t\"google.golang.org/protobuf/proto\"\n\t\"google.golang.org/protobuf/reflect/protoreflect\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/info\"\n)\n\ntype Runner struct {\n\tCmd    string\n\tFormat string\n\tEnv    []string\n}\n\nfunc (r *Runner) Invoke(ctx context.Context, method string, args any, reply any, opts ...grpc.CallOption) error {\n\treq, ok := args.(protoreflect.ProtoMessage)\n\tif !ok {\n\t\treturn fmt.Errorf(\"args isn't a protoreflect.ProtoMessage\")\n\t}\n\n\tvar stdin []byte\n\tvar err error\n\tswitch r.Format {\n\tcase \"json\":\n\t\tm := &protojson.MarshalOptions{\n\t\t\tEmitUnpopulated: true,\n\t\t\tIndent:          \"\",\n\t\t\tUseProtoNames:   true,\n\t\t}\n\t\tstdin, err = m.Marshal(req)\n\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"failed to encode codegen request: %w\", err)\n\t\t}\n\tcase \"\", \"protobuf\":\n\t\tstdin, err = proto.Marshal(req)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"failed to encode codegen request: %w\", err)\n\t\t}\n\tdefault:\n\t\treturn fmt.Errorf(\"unknown plugin format: %s\", r.Format)\n\t}\n\n\t// Check if the output plugin exists\n\tpath, err := exec.LookPath(r.Cmd)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"process: %s not found\", r.Cmd)\n\t}\n\n\tcmd := exec.CommandContext(ctx, path, method)\n\tcmd.Stdin = bytes.NewReader(stdin)\n\tcmd.Env = []string{\n\t\tfmt.Sprintf(\"SQLC_VERSION=%s\", info.Version),\n\t}\n\tfor _, key := range r.Env {\n\t\tif key == \"SQLC_AUTH_TOKEN\" {\n\t\t\tcontinue\n\t\t}\n\t\tcmd.Env = append(cmd.Env, fmt.Sprintf(\"%s=%s\", key, os.Getenv(key)))\n\t}\n\n\tout, err := cmd.Output()\n\tif err != nil {\n\t\tstderr := err.Error()\n\t\tvar exit *exec.ExitError\n\t\tif errors.As(err, &exit) {\n\t\t\tstderr = string(exit.Stderr)\n\t\t}\n\t\treturn fmt.Errorf(\"process: error running command %s\", stderr)\n\t}\n\n\tresp, ok := reply.(protoreflect.ProtoMessage)\n\tif !ok {\n\t\treturn fmt.Errorf(\"reply isn't a protoreflect.ProtoMessage\")\n\t}\n\n\tswitch r.Format {\n\tcase \"json\":\n\t\tif err := protojson.Unmarshal(out, resp); err != nil {\n\t\t\treturn fmt.Errorf(\"process: failed to read codegen resp: %w\", err)\n\t\t}\n\tdefault:\n\t\tif err := proto.Unmarshal(out, resp); err != nil {\n\t\t\treturn fmt.Errorf(\"process: failed to read codegen resp: %w\", err)\n\t\t}\n\t}\n\n\treturn nil\n}\n\nfunc (r *Runner) NewStream(ctx context.Context, desc *grpc.StreamDesc, method string, opts ...grpc.CallOption) (grpc.ClientStream, error) {\n\treturn nil, status.Error(codes.Unimplemented, \"\")\n}\n"
  },
  {
    "path": "internal/ext/wasm/runner.go",
    "content": "package wasm\n\ntype Runner struct {\n\tURL    string\n\tSHA256 string\n\tEnv    []string\n}\n"
  },
  {
    "path": "internal/ext/wasm/wasm.go",
    "content": "package wasm\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"crypto/sha256\"\n\t\"errors\"\n\t\"fmt\"\n\t\"io\"\n\t\"log/slog\"\n\t\"net/http\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"runtime\"\n\t\"strings\"\n\n\t\"github.com/tetratelabs/wazero\"\n\t\"github.com/tetratelabs/wazero/imports/wasi_snapshot_preview1\"\n\t\"github.com/tetratelabs/wazero/sys\"\n\t\"golang.org/x/sync/singleflight\"\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/status\"\n\t\"google.golang.org/protobuf/proto\"\n\t\"google.golang.org/protobuf/reflect/protoreflect\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/cache\"\n\t\"github.com/sqlc-dev/sqlc/internal/info\"\n\t\"github.com/sqlc-dev/sqlc/internal/plugin\"\n)\n\nvar flight singleflight.Group\n\ntype runtimeAndCode struct {\n\trt   wazero.Runtime\n\tcode wazero.CompiledModule\n}\n\n// Verify the provided sha256 is valid.\nfunc (r *Runner) getChecksum(ctx context.Context) (string, error) {\n\tif r.SHA256 != \"\" {\n\t\treturn r.SHA256, nil\n\t}\n\t// TODO: Add a log line here about something\n\t_, sum, err := r.fetch(ctx, r.URL)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tslog.Warn(\"fetching WASM binary to calculate sha256. Set this value in sqlc.yaml to prevent unneeded work\", \"sha256\", sum)\n\treturn sum, nil\n}\n\nfunc (r *Runner) loadAndCompile(ctx context.Context) (*runtimeAndCode, error) {\n\texpected, err := r.getChecksum(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tcacheDir, err := cache.PluginsDir()\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tvalue, err, _ := flight.Do(expected, func() (interface{}, error) {\n\t\treturn r.loadAndCompileWASM(ctx, cacheDir, expected)\n\t})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdata, ok := value.(*runtimeAndCode)\n\tif !ok {\n\t\treturn nil, fmt.Errorf(\"returned value was not a compiled module\")\n\t}\n\treturn data, nil\n}\n\nfunc (r *Runner) fetch(ctx context.Context, uri string) ([]byte, string, error) {\n\tvar body io.ReadCloser\n\n\tswitch {\n\n\tcase strings.HasPrefix(uri, \"file://\"):\n\t\tfile, err := os.Open(strings.TrimPrefix(uri, \"file://\"))\n\t\tif err != nil {\n\t\t\treturn nil, \"\", fmt.Errorf(\"os.Open: %s %w\", uri, err)\n\t\t}\n\t\tbody = file\n\n\tcase strings.HasPrefix(uri, \"https://\"):\n\t\treq, err := http.NewRequestWithContext(ctx, \"GET\", uri, nil)\n\t\tif err != nil {\n\t\t\treturn nil, \"\", fmt.Errorf(\"http.Get: %s %w\", uri, err)\n\t\t}\n\t\treq.Header.Set(\"User-Agent\", fmt.Sprintf(\"sqlc/%s Go/%s (%s %s)\", info.Version, runtime.Version(), runtime.GOOS, runtime.GOARCH))\n\t\tresp, err := http.DefaultClient.Do(req)\n\t\tif err != nil {\n\t\t\treturn nil, \"\", fmt.Errorf(\"http.Get: %s %w\", r.URL, err)\n\t\t}\n\t\tbody = resp.Body\n\n\tdefault:\n\t\treturn nil, \"\", fmt.Errorf(\"unknown scheme: %s\", r.URL)\n\t}\n\n\tdefer body.Close()\n\n\twmod, err := io.ReadAll(body)\n\tif err != nil {\n\t\treturn nil, \"\", fmt.Errorf(\"readall: %w\", err)\n\t}\n\n\tsum := sha256.Sum256(wmod)\n\tactual := fmt.Sprintf(\"%x\", sum)\n\n\treturn wmod, actual, nil\n}\n\nfunc (r *Runner) loadAndCompileWASM(ctx context.Context, cache string, expected string) (*runtimeAndCode, error) {\n\tpluginDir := filepath.Join(cache, expected)\n\tpluginPath := filepath.Join(pluginDir, \"plugin.wasm\")\n\t_, staterr := os.Stat(pluginPath)\n\n\turi := r.URL\n\tif staterr == nil {\n\t\turi = \"file://\" + pluginPath\n\t}\n\n\twmod, actual, err := r.fetch(ctx, uri)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tif expected != actual {\n\t\treturn nil, fmt.Errorf(\"invalid checksum: expected %s, got %s\", expected, actual)\n\t}\n\n\tif staterr != nil {\n\t\terr := os.Mkdir(pluginDir, 0755)\n\t\tif err != nil && !os.IsExist(err) {\n\t\t\treturn nil, fmt.Errorf(\"mkdirall: %w\", err)\n\t\t}\n\t\tif err := os.WriteFile(pluginPath, wmod, 0444); err != nil {\n\t\t\treturn nil, fmt.Errorf(\"cache wasm: %w\", err)\n\t\t}\n\t}\n\n\twazeroCache, err := wazero.NewCompilationCacheWithDir(filepath.Join(cache, \"wazero\"))\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"wazero.NewCompilationCacheWithDir: %w\", err)\n\t}\n\n\tconfig := wazero.NewRuntimeConfig().WithCompilationCache(wazeroCache)\n\trt := wazero.NewRuntimeWithConfig(ctx, config)\n\n\tif _, err := wasi_snapshot_preview1.Instantiate(ctx, rt); err != nil {\n\t\treturn nil, fmt.Errorf(\"wasi_snapshot_preview1 instantiate: %w\", err)\n\t}\n\n\t// Compile the Wasm binary once so that we can skip the entire compilation\n\t// time during instantiation.\n\tcode, err := rt.CompileModule(ctx, wmod)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"compile module: %w\", err)\n\t}\n\n\treturn &runtimeAndCode{rt: rt, code: code}, nil\n}\n\n// removePGCatalog removes the pg_catalog schema from the request. There is a\n// mysterious (reason unknown) bug with wasm plugins when a large amount of\n// tables (like there are in the catalog) are sent.\n// @see https://github.com/sqlc-dev/sqlc/pull/1748\nfunc removePGCatalog(req *plugin.GenerateRequest) {\n\tif req.Catalog == nil || req.Catalog.Schemas == nil {\n\t\treturn\n\t}\n\n\tfiltered := make([]*plugin.Schema, 0, len(req.Catalog.Schemas))\n\tfor _, schema := range req.Catalog.Schemas {\n\t\tif schema.Name == \"pg_catalog\" || schema.Name == \"information_schema\" {\n\t\t\tcontinue\n\t\t}\n\n\t\tfiltered = append(filtered, schema)\n\t}\n\n\treq.Catalog.Schemas = filtered\n}\n\nfunc (r *Runner) Invoke(ctx context.Context, method string, args any, reply any, opts ...grpc.CallOption) error {\n\treq, ok := args.(protoreflect.ProtoMessage)\n\tif !ok {\n\t\treturn status.Error(codes.InvalidArgument, \"args isn't a protoreflect.ProtoMessage\")\n\t}\n\n\t// Remove the pg_catalog schema. Its sheer size causes unknown issues with wasm plugins\n\tgenReq, ok := req.(*plugin.GenerateRequest)\n\tif ok {\n\t\tremovePGCatalog(genReq)\n\t\treq = genReq\n\t}\n\n\tstdinBlob, err := proto.Marshal(req)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"failed to encode codegen request: %w\", err)\n\t}\n\n\truntimeAndCode, err := r.loadAndCompile(ctx)\n\tif err != nil {\n\t\treturn fmt.Errorf(\"loadBytes: %w\", err)\n\t}\n\n\tvar stderr, stdout bytes.Buffer\n\n\tconf := wazero.NewModuleConfig().\n\t\tWithName(\"\").\n\t\tWithArgs(\"plugin.wasm\", method).\n\t\tWithStdin(bytes.NewReader(stdinBlob)).\n\t\tWithStdout(&stdout).\n\t\tWithStderr(&stderr).\n\t\tWithEnv(\"SQLC_VERSION\", info.Version)\n\tfor _, key := range r.Env {\n\t\tconf = conf.WithEnv(key, os.Getenv(key))\n\t}\n\n\tresult, err := runtimeAndCode.rt.InstantiateModule(ctx, runtimeAndCode.code, conf)\n\tif err == nil {\n\t\tdefer result.Close(ctx)\n\t}\n\tif cerr := checkError(err, stderr); cerr != nil {\n\t\treturn cerr\n\t}\n\n\t// Print WASM stdout\n\tstdoutBlob := stdout.Bytes()\n\n\tresp, ok := reply.(protoreflect.ProtoMessage)\n\tif !ok {\n\t\treturn fmt.Errorf(\"reply isn't a GenerateResponse\")\n\t}\n\n\tif err := proto.Unmarshal(stdoutBlob, resp); err != nil {\n\t\treturn err\n\t}\n\n\treturn nil\n}\n\nfunc (r *Runner) NewStream(ctx context.Context, desc *grpc.StreamDesc, method string, opts ...grpc.CallOption) (grpc.ClientStream, error) {\n\treturn nil, status.Error(codes.Unimplemented, \"\")\n}\n\nfunc checkError(err error, stderr bytes.Buffer) error {\n\tif err == nil {\n\t\treturn err\n\t}\n\n\tif exitErr, ok := err.(*sys.ExitError); ok {\n\t\tif exitErr.ExitCode() == 0 {\n\t\t\treturn nil\n\t\t}\n\t}\n\n\t// Print WASM stdout\n\tstderrBlob := stderr.String()\n\tif len(stderrBlob) > 0 {\n\t\treturn errors.New(stderrBlob)\n\t}\n\treturn fmt.Errorf(\"call: %w\", err)\n}\n"
  },
  {
    "path": "internal/inflection/singular.go",
    "content": "package inflection\n\nimport (\n\t\"strings\"\n\n\tupstream \"github.com/jinzhu/inflection\"\n)\n\ntype SingularParams struct {\n\tName       string\n\tExclusions []string\n}\n\nfunc Singular(s SingularParams) string {\n\tfor _, exclusion := range s.Exclusions {\n\t\tif strings.EqualFold(s.Name, exclusion) {\n\t\t\treturn s.Name\n\t\t}\n\t}\n\n\t// Manual fix for incorrect handling of \"campus\"\n\t//\n\t// https://github.com/sqlc-dev/sqlc/issues/430\n\t// https://github.com/jinzhu/inflection/issues/13\n\tif strings.ToLower(s.Name) == \"campus\" {\n\t\treturn s.Name\n\t}\n\t// Manual fix for incorrect handling of \"meta\"\n\t//\n\t// https://github.com/sqlc-dev/sqlc/issues/1217\n\t// https://github.com/jinzhu/inflection/issues/21\n\tif strings.ToLower(s.Name) == \"meta\" {\n\t\treturn s.Name\n\t}\n\t// Manual fix for incorrect handling of \"calories\"\n\t//\n\t// https://github.com/sqlc-dev/sqlc/issues/2017\n\t// https://github.com/jinzhu/inflection/issues/23\n\tif strings.ToLower(s.Name) == \"calories\" {\n\t\treturn \"calorie\"\n\t}\n\t// Manual fix for incorrect handling of \"-ves\" suffix\n\tif strings.ToLower(s.Name) == \"waves\" {\n\t\treturn \"wave\"\n\t}\n\n\tif strings.ToLower(s.Name) == \"metadata\" {\n\t\treturn \"metadata\"\n\t}\n\n\treturn upstream.Singular(s.Name)\n}\n"
  },
  {
    "path": "internal/info/facts.go",
    "content": "package info\n\n// When no version is set, return the next bug fix version\n// after the most recent tag\nconst Version = \"v1.30.0\"\n"
  },
  {
    "path": "internal/metadata/meta.go",
    "content": "package metadata\n\nimport (\n\t\"bufio\"\n\t\"fmt\"\n\t\"github.com/sqlc-dev/sqlc/internal/constants\"\n\t\"strings\"\n\t\"unicode\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/source\"\n)\n\ntype CommentSyntax source.CommentSyntax\n\ntype Metadata struct {\n\tName     string\n\tCmd      string\n\tComments []string\n\tParams   map[string]string\n\tFlags    map[string]bool\n\n\t// RuleSkiplist contains the names of rules to disable vetting for.\n\t// If the map is empty, but the disable vet flag is specified, then all rules are ignored.\n\tRuleSkiplist map[string]struct{}\n\n\tFilename string\n}\n\nconst (\n\tCmdExec       = \":exec\"\n\tCmdExecResult = \":execresult\"\n\tCmdExecRows   = \":execrows\"\n\tCmdExecLastId = \":execlastid\"\n\tCmdMany       = \":many\"\n\tCmdOne        = \":one\"\n\tCmdCopyFrom   = \":copyfrom\"\n\tCmdBatchExec  = \":batchexec\"\n\tCmdBatchMany  = \":batchmany\"\n\tCmdBatchOne   = \":batchone\"\n)\n\n// A query name must be a valid Go identifier\n//\n// https://golang.org/ref/spec#Identifiers\nfunc validateQueryName(name string) error {\n\tif len(name) == 0 {\n\t\treturn fmt.Errorf(\"invalid query name: %q\", name)\n\t}\n\tfor i, c := range name {\n\t\tisLetter := unicode.IsLetter(c) || c == '_'\n\t\tisDigit := unicode.IsDigit(c)\n\t\tif i == 0 && !isLetter {\n\t\t\treturn fmt.Errorf(\"invalid query name %q\", name)\n\t\t} else if !(isLetter || isDigit) {\n\t\t\treturn fmt.Errorf(\"invalid query name %q\", name)\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc ParseQueryNameAndType(t string, commentStyle CommentSyntax) (string, string, error) {\n\tfor _, line := range strings.Split(t, \"\\n\") {\n\t\tvar prefix string\n\t\tif strings.HasPrefix(line, \"--\") {\n\t\t\tif !commentStyle.Dash {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tprefix = \"--\"\n\t\t}\n\t\tif strings.HasPrefix(line, \"/*\") {\n\t\t\tif !commentStyle.SlashStar {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tprefix = \"/*\"\n\t\t}\n\t\tif strings.HasPrefix(line, \"#\") {\n\t\t\tif !commentStyle.Hash {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tprefix = \"#\"\n\t\t}\n\t\tif prefix == \"\" {\n\t\t\tcontinue\n\t\t}\n\t\trest := line[len(prefix):]\n\t\tif !strings.HasPrefix(strings.TrimSpace(rest), \"name\") {\n\t\t\tcontinue\n\t\t}\n\t\tif !strings.Contains(rest, \":\") {\n\t\t\tcontinue\n\t\t}\n\t\tif !strings.HasPrefix(rest, \" name: \") {\n\t\t\treturn \"\", \"\", fmt.Errorf(\"invalid metadata: %s\", line)\n\t\t}\n\n\t\tpart := strings.Split(strings.TrimSpace(line), \" \")\n\t\tif prefix == \"/*\" {\n\t\t\tpart = part[:len(part)-1] // removes the trailing \"*/\" element\n\t\t}\n\t\tif len(part) == 3 {\n\t\t\treturn \"\", \"\", fmt.Errorf(\"missing query type [':one', ':many', ':exec', ':execrows', ':execlastid', ':execresult', ':copyfrom', 'batchexec', 'batchmany', 'batchone']: %s\", line)\n\t\t}\n\t\tif len(part) != 4 {\n\t\t\treturn \"\", \"\", fmt.Errorf(\"invalid query comment: %s\", line)\n\t\t}\n\t\tqueryName := part[2]\n\t\tqueryType := strings.TrimSpace(part[3])\n\t\tswitch queryType {\n\t\tcase CmdOne, CmdMany, CmdExec, CmdExecResult, CmdExecRows, CmdExecLastId, CmdCopyFrom, CmdBatchExec, CmdBatchMany, CmdBatchOne:\n\t\tdefault:\n\t\t\treturn \"\", \"\", fmt.Errorf(\"invalid query type: %s\", queryType)\n\t\t}\n\t\tif err := validateQueryName(queryName); err != nil {\n\t\t\treturn \"\", \"\", err\n\t\t}\n\t\treturn queryName, queryType, nil\n\t}\n\treturn \"\", \"\", nil\n}\n\n// ParseCommentFlags processes the comments provided with queries to determine the metadata params, flags and rules to skip.\n// All flags in query comments are prefixed with `@`, e.g. @param, @@sqlc-vet-disable.\nfunc ParseCommentFlags(comments []string) (map[string]string, map[string]bool, map[string]struct{}, error) {\n\tparams := make(map[string]string)\n\tflags := make(map[string]bool)\n\truleSkiplist := make(map[string]struct{})\n\n\tfor _, line := range comments {\n\t\ts := bufio.NewScanner(strings.NewReader(line))\n\t\ts.Split(bufio.ScanWords)\n\n\t\ts.Scan()\n\t\ttoken := s.Text()\n\n\t\tif !strings.HasPrefix(token, \"@\") {\n\t\t\tcontinue\n\t\t}\n\n\t\tswitch token {\n\t\tcase constants.QueryFlagParam:\n\t\t\ts.Scan()\n\t\t\tname := s.Text()\n\t\t\tvar rest []string\n\t\t\tfor s.Scan() {\n\t\t\t\tparamToken := s.Text()\n\t\t\t\trest = append(rest, paramToken)\n\t\t\t}\n\t\t\tparams[name] = strings.Join(rest, \" \")\n\n\t\tcase constants.QueryFlagSqlcVetDisable:\n\t\t\tflags[token] = true\n\n\t\t\t// Vet rules can all be disabled in the same line or split across lines .i.e.\n\t\t\t// /* @sqlc-vet-disable sqlc/db-prepare delete-without-where */\n\t\t\t// is equivalent to:\n\t\t\t// /* @sqlc-vet-disable sqlc/db-prepare */\n\t\t\t// /* @sqlc-vet-disable delete-without-where */\n\t\t\tfor s.Scan() {\n\t\t\t\truleSkiplist[s.Text()] = struct{}{}\n\t\t\t}\n\n\t\tdefault:\n\t\t\tflags[token] = true\n\t\t}\n\n\t\tif s.Err() != nil {\n\t\t\treturn params, flags, ruleSkiplist, s.Err()\n\t\t}\n\t}\n\n\treturn params, flags, ruleSkiplist, nil\n}\n"
  },
  {
    "path": "internal/metadata/meta_test.go",
    "content": "package metadata\n\nimport (\n\t\"testing\"\n)\n\nfunc TestParseQueryNameAndType(t *testing.T) {\n\n\tfor _, query := range []string{\n\t\t`-- name: CreateFoo, :one`,\n\t\t`-- name: 9Foo_, :one`,\n\t\t`-- name: CreateFoo :two`,\n\t\t`-- name: CreateFoo`,\n\t\t`-- name: CreateFoo :one something`,\n\t\t`-- name: `,\n\t\t`--name: CreateFoo :one`,\n\t\t`--name CreateFoo :one`,\n\t\t`--name: CreateFoo :two`,\n\t\t\"-- name:CreateFoo\",\n\t\t`--name:CreateFoo :two`,\n\t} {\n\t\tif _, _, err := ParseQueryNameAndType(query, CommentSyntax{Dash: true}); err == nil {\n\t\t\tt.Errorf(\"expected invalid metadata: %q\", query)\n\t\t}\n\t}\n\n\tfor _, query := range []string{\n\t\t`-- some comment`,\n\t\t`-- name comment`,\n\t\t`--name comment`,\n\t} {\n\t\tif _, _, err := ParseQueryNameAndType(query, CommentSyntax{Dash: true}); err != nil {\n\t\t\tt.Errorf(\"expected valid comment: %q\", query)\n\t\t}\n\t}\n\n\tfor query, cs := range map[string]CommentSyntax{\n\t\t`-- name: CreateFoo :one`:    {Dash: true},\n\t\t`# name: CreateFoo :one`:     {Hash: true},\n\t\t`/* name: CreateFoo :one */`: {SlashStar: true},\n\t} {\n\t\tqueryName, queryCmd, err := ParseQueryNameAndType(query, cs)\n\t\tif err != nil {\n\t\t\tt.Errorf(\"expected valid metadata: %q\", query)\n\t\t}\n\t\tif queryName != \"CreateFoo\" {\n\t\t\tt.Errorf(\"incorrect queryName parsed: (%q) %q\", queryName, query)\n\t\t}\n\t\tif queryCmd != CmdOne {\n\t\t\tt.Errorf(\"incorrect queryCmd parsed: (%q) %q\", queryCmd, query)\n\t\t}\n\t}\n\n}\n\nfunc TestParseQueryParams(t *testing.T) {\n\tfor _, comments := range [][]string{\n\t\t{\n\t\t\t\" name: CreateFoo :one\",\n\t\t\t\" @param foo_id UUID\",\n\t\t},\n\t\t{\n\t\t\t\" name: CreateFoo :one \",\n\t\t\t\" @param foo_id UUID \",\n\t\t},\n\t\t{\n\t\t\t\" name: CreateFoo :one\",\n\t\t\t\"@param foo_id UUID\",\n\t\t\t\" invalid\",\n\t\t},\n\t\t{\n\t\t\t\" name: CreateFoo :one\",\n\t\t\t\" @invalid\",\n\t\t\t\" @param foo_id UUID\",\n\t\t},\n\t\t{\n\t\t\t\" name: GetFoos :many \",\n\t\t\t\" @param foo_id UUID \",\n\t\t\t\" @param @invalid UUID \",\n\t\t},\n\t} {\n\t\tparams, _, _, err := ParseCommentFlags(comments)\n\t\tif err != nil {\n\t\t\tt.Errorf(\"expected comments to parse, got err: %s\", err)\n\t\t}\n\n\t\tpt, ok := params[\"foo_id\"]\n\t\tif !ok {\n\t\t\tt.Errorf(\"expected param not found\")\n\t\t}\n\n\t\tif pt != \"UUID\" {\n\t\t\tt.Error(\"unexpected param metadata:\", pt)\n\t\t}\n\n\t\t_, ok = params[\"invalid\"]\n\t\tif ok {\n\t\t\tt.Errorf(\"unexpected param found\")\n\t\t}\n\t}\n}\n\nfunc TestParseQueryFlags(t *testing.T) {\n\tfor _, comments := range [][]string{\n\t\t{\n\t\t\t\" name: CreateFoo :one\",\n\t\t\t\" @flag-foo\",\n\t\t},\n\t\t{\n\t\t\t\" name: CreateFoo :one \",\n\t\t\t\"@flag-foo \",\n\t\t},\n\t\t{\n\t\t\t\" name: CreateFoo :one\",\n\t\t\t\" @flag-foo @flag-bar\",\n\t\t},\n\t\t{\n\t\t\t\" name: GetFoos :many\",\n\t\t\t\" @param @flag-bar UUID\",\n\t\t\t\" @flag-foo\",\n\t\t},\n\t\t{\n\t\t\t\" name: GetFoos :many\",\n\t\t\t\" @flag-foo\",\n\t\t\t\" @param @flag-bar UUID\",\n\t\t},\n\t} {\n\t\t_, flags, _, err := ParseCommentFlags(comments)\n\t\tif err != nil {\n\t\t\tt.Errorf(\"expected comments to parse, got err: %s\", err)\n\t\t}\n\n\t\tif !flags[\"@flag-foo\"] {\n\t\t\tt.Errorf(\"expected flag not found\")\n\t\t}\n\n\t\tif flags[\"@flag-bar\"] {\n\t\t\tt.Errorf(\"unexpected flag found\")\n\t\t}\n\t}\n}\n\nfunc TestParseQueryRuleSkiplist(t *testing.T) {\n\tfor _, comments := range [][]string{\n\t\t{\n\t\t\t\" name: CreateFoo :one\",\n\t\t\t\" @sqlc-vet-disable sqlc/db-prepare delete-without-where \",\n\t\t},\n\t\t{\n\t\t\t\" name: CreateFoo :one \",\n\t\t\t\" @sqlc-vet-disable sqlc/db-prepare \",\n\t\t\t\" @sqlc-vet-disable delete-without-where \",\n\t\t},\n\t\t{\n\t\t\t\" name: CreateFoo :one\",\n\t\t\t\" @sqlc-vet-disable sqlc/db-prepare \",\n\t\t\t\" update-without where\",\n\t\t\t\" @sqlc-vet-disable delete-without-where \",\n\t\t},\n\t} {\n\t\t_, flags, ruleSkiplist, err := ParseCommentFlags(comments)\n\t\tif err != nil {\n\t\t\tt.Errorf(\"expected comments to parse, got err: %s\", err)\n\t\t}\n\n\t\tif !flags[\"@sqlc-vet-disable\"] {\n\t\t\tt.Errorf(\"expected @sqlc-vet-disable flag not found\")\n\t\t}\n\n\t\tif _, ok := ruleSkiplist[\"sqlc/db-prepare\"]; !ok {\n\t\t\tt.Errorf(\"expected rule not found in skiplist\")\n\t\t}\n\n\t\tif _, ok := ruleSkiplist[\"delete-without-where\"]; !ok {\n\t\t\tt.Errorf(\"expected rule not found in skiplist\")\n\t\t}\n\n\t\tif _, ok := ruleSkiplist[\"update-without-where\"]; ok {\n\t\t\tt.Errorf(\"unexpected rule found in skiplist\")\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/migrations/migrations.go",
    "content": "package migrations\n\nimport (\n\t\"bufio\"\n\t\"strings\"\n)\n\n// Remove all lines after a rollback comment.\n//\n// goose:       -- +goose Down\n// sql-migrate: -- +migrate Down\n// tern:        ---- create above / drop below ----\n// dbmate:      -- migrate:down\nfunc RemoveRollbackStatements(contents string) string {\n\ts := bufio.NewScanner(strings.NewReader(contents))\n\tvar lines []string\n\tfor s.Scan() {\n\t\tstatement := strings.ToLower(s.Text())\n\t\tif strings.HasPrefix(statement, \"-- +goose down\") {\n\t\t\tbreak\n\t\t}\n\t\tif strings.HasPrefix(statement, \"-- +migrate down\") {\n\t\t\tbreak\n\t\t}\n\t\tif strings.HasPrefix(statement, \"---- create above / drop below ----\") {\n\t\t\tbreak\n\t\t}\n\t\tif strings.HasPrefix(statement, \"-- migrate:down\") {\n\t\t\tbreak\n\t\t}\n\t\tlines = append(lines, s.Text())\n\t}\n\treturn strings.Join(lines, \"\\n\")\n}\n\nfunc IsDown(filename string) bool {\n\t// Remove golang-migrate rollback files.\n\treturn strings.HasSuffix(filename, \".down.sql\")\n}\n"
  },
  {
    "path": "internal/migrations/migrations_test.go",
    "content": "package migrations\n\nimport (\n\t\"testing\"\n\n\t\"github.com/google/go-cmp/cmp\"\n)\n\nconst inputGoose = `\n-- +goose Up\nALTER TABLE archived_jobs ADD COLUMN expires_at TIMESTAMP WITH TIME ZONE;\n\n-- +goose Down\nALTER TABLE archived_jobs DROP COLUMN expires_at;\n`\n\nconst outputGoose = `\n-- +goose Up\nALTER TABLE archived_jobs ADD COLUMN expires_at TIMESTAMP WITH TIME ZONE;\n`\n\nconst inputMigrate = `\n-- +migrate Up\n-- SQL in section 'Up' is executed when this migration is applied\nCREATE TABLE people (id int);\n\n-- +migrate Down\n-- SQL section 'Down' is executed when this migration is rolled back\nDROP TABLE people;\n`\n\nconst outputMigrate = `\n-- +migrate Up\n-- SQL in section 'Up' is executed when this migration is applied\nCREATE TABLE people (id int);\n`\n\nconst inputTern = `\n-- Write your migrate up statements here\nALTER TABLE todo RENAME COLUMN done TO is_done;\n---- create above / drop below ----\nALTER TABLE todo RENAME COLUMN is_done TO done;\n`\n\nconst outputTern = `\n-- Write your migrate up statements here\nALTER TABLE todo RENAME COLUMN done TO is_done;`\n\nconst inputDbmate = `\n-- migrate:up\nCREATE TABLE foo (bar int);\n-- migrate:down\nDROP TABLE foo;`\n\nconst outputDbmate = `\n-- migrate:up\nCREATE TABLE foo (bar int);`\n\nfunc TestRemoveRollback(t *testing.T) {\n\tif diff := cmp.Diff(outputGoose, RemoveRollbackStatements(inputGoose)); diff != \"\" {\n\t\tt.Errorf(\"goose migration mismatch:\\n%s\", diff)\n\t}\n\tif diff := cmp.Diff(outputMigrate, RemoveRollbackStatements(inputMigrate)); diff != \"\" {\n\t\tt.Errorf(\"sql-migrate migration mismatch:\\n%s\", diff)\n\t}\n\tif diff := cmp.Diff(outputTern, RemoveRollbackStatements(inputTern)); diff != \"\" {\n\t\tt.Errorf(\"tern migration mismatch:\\n%s\", diff)\n\t}\n\tif diff := cmp.Diff(outputDbmate, RemoveRollbackStatements(inputDbmate)); diff != \"\" {\n\t\tt.Errorf(\"dbmate migration mismatch:\\n%s\", diff)\n\t}\n}\n\nfunc TestRemoveGolangMigrateRollback(t *testing.T) {\n\tfilenames := map[string]bool{\n\t\t// make sure we let through golang-migrate files that aren't rollbacks\n\t\t\"migrations/1.up.sql\": false,\n\t\t// make sure we let through other sql files\n\t\t\"migrations/2.sql\":      false,\n\t\t\"migrations/foo.sql\":    false,\n\t\t\"migrations/1.down.sql\": true,\n\t}\n\n\tfor filename, want := range filenames {\n\t\tgot := IsDown(filename)\n\t\tif diff := cmp.Diff(want, got); diff != \"\" {\n\t\t\tt.Errorf(\"IsDown mismatch: %s\\n %s\", filename, diff)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/multierr/error.go",
    "content": "package multierr\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/source\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\ntype FileError struct {\n\tFilename string\n\tLine     int\n\tColumn   int\n\tErr      error\n}\n\nfunc (e *FileError) Unwrap() error {\n\treturn e.Err\n}\n\ntype Error struct {\n\terrs []*FileError\n}\n\nfunc (e *Error) Add(filename, in string, loc int, err error) {\n\tline := 1\n\tcolumn := 1\n\tif lerr, ok := err.(*sqlerr.Error); ok {\n\t\tif lerr.Location != 0 {\n\t\t\tloc = lerr.Location\n\t\t} else if lerr.Line != 0 && lerr.Column != 0 {\n\t\t\tline = lerr.Line\n\t\t\tcolumn = lerr.Column\n\t\t}\n\t}\n\tif in != \"\" && loc != 0 {\n\t\tline, column = source.LineNumber(in, loc)\n\t}\n\te.errs = append(e.errs, &FileError{filename, line, column, err})\n}\n\nfunc (e *Error) Errs() []*FileError {\n\treturn e.errs\n}\n\nfunc (e *Error) Error() string {\n\treturn fmt.Sprintf(\"multiple errors: %d errors\", len(e.errs))\n}\n\nfunc New() *Error {\n\treturn &Error{}\n}\n"
  },
  {
    "path": "internal/opts/debug.go",
    "content": "package opts\n\nimport (\n\t\"os\"\n\t\"strings\"\n)\n\n// The SQLCDEBUG variable controls debugging variables within the runtime. It\n// is a comma-separated list of name=val pairs setting these named variables:\n//\n//     dumpast: setting dumpast=1 will print the AST of every SQL statement\n//     dumpcatalog: setting dumpcatalog=1 will print the parsed database schema\n//     trace: setting trace=<path> will output a trace\n//     processplugins: setting processplugins=0 will disable process-based plugins\n//     databases: setting databases=managed will disable connections to databases via URI\n//     dumpvetenv: setting dumpvetenv=1 will print the variables available to\n//         a vet rule during evaluation\n//     dumpexplain: setting dumpexplain=1 will print the JSON-formatted output\n//         from executing EXPLAIN ... on a query during vet rule evaluation\n\ntype Debug struct {\n\tDumpAST              bool\n\tDumpCatalog          bool\n\tTrace                string\n\tProcessPlugins       bool\n\tOnlyManagedDatabases bool\n\tDumpVetEnv           bool\n\tDumpExplain          bool\n}\n\nfunc DebugFromEnv() Debug {\n\treturn DebugFromString(os.Getenv(\"SQLCDEBUG\"))\n}\n\nfunc DebugFromString(val string) Debug {\n\td := Debug{\n\t\tProcessPlugins: true,\n\t}\n\tif val == \"\" {\n\t\treturn d\n\t}\n\tfor _, pair := range strings.Split(val, \",\") {\n\t\tpair = strings.TrimSpace(pair)\n\t\tswitch {\n\t\tcase pair == \"dumpast=1\":\n\t\t\td.DumpAST = true\n\t\tcase pair == \"dumpcatalog=1\":\n\t\t\td.DumpCatalog = true\n\t\tcase strings.HasPrefix(pair, \"trace=\"):\n\t\t\ttraceName := strings.TrimPrefix(pair, \"trace=\")\n\t\t\tif traceName == \"1\" {\n\t\t\t\td.Trace = \"trace.out\"\n\t\t\t} else {\n\t\t\t\td.Trace = traceName\n\t\t\t}\n\t\tcase pair == \"processplugins=0\":\n\t\t\td.ProcessPlugins = false\n\t\tcase pair == \"databases=managed\":\n\t\t\td.OnlyManagedDatabases = true\n\t\tcase pair == \"dumpvetenv=1\":\n\t\t\td.DumpVetEnv = true\n\t\tcase pair == \"dumpexplain=1\":\n\t\t\td.DumpExplain = true\n\t\t}\n\t}\n\treturn d\n}\n"
  },
  {
    "path": "internal/opts/experiment.go",
    "content": "package opts\n\nimport (\n\t\"os\"\n\t\"strings\"\n)\n\n// The SQLCEXPERIMENT variable controls experimental features within sqlc. It\n// is a comma-separated list of experiment names. Experiment names can be\n// prefixed with \"no\" to explicitly disable them.\n//\n// This is modeled after Go's GOEXPERIMENT environment variable. For more\n// information, see https://pkg.go.dev/internal/goexperiment\n//\n// Available experiments:\n//\n//\tanalyzerv2 - enables database-only analyzer mode\n//\n// Example usage:\n//\n//\tSQLCEXPERIMENT=foo,bar      # enable foo and bar experiments\n//\tSQLCEXPERIMENT=nofoo        # explicitly disable foo experiment\n//\tSQLCEXPERIMENT=foo,nobar    # enable foo, disable bar\n\n// Experiment holds the state of all experimental features.\n// Add new experiments as boolean fields to this struct.\ntype Experiment struct {\n\t// AnalyzerV2 enables the database-only analyzer mode (analyzer.database: only)\n\t// which uses the database for all type resolution instead of parsing schema files.\n\tAnalyzerV2 bool\n}\n\n// ExperimentFromEnv returns an Experiment initialized from the SQLCEXPERIMENT\n// environment variable.\nfunc ExperimentFromEnv() Experiment {\n\treturn ExperimentFromString(os.Getenv(\"SQLCEXPERIMENT\"))\n}\n\n// ExperimentFromString parses a comma-separated list of experiment names\n// and returns an Experiment with the appropriate flags set.\n//\n// Experiment names can be prefixed with \"no\" to explicitly disable them.\n// Unknown experiment names are silently ignored.\nfunc ExperimentFromString(val string) Experiment {\n\te := Experiment{}\n\tif val == \"\" {\n\t\treturn e\n\t}\n\n\tfor _, name := range strings.Split(val, \",\") {\n\t\tname = strings.TrimSpace(name)\n\t\tif name == \"\" {\n\t\t\tcontinue\n\t\t}\n\n\t\t// Check if this is a negation (noFoo)\n\t\tenabled := true\n\t\tif strings.HasPrefix(strings.ToLower(name), \"no\") && len(name) > 2 {\n\t\t\t// Could be a negation, check if the rest is a valid experiment\n\t\t\tpossibleExp := name[2:]\n\t\t\tif isKnownExperiment(possibleExp) {\n\t\t\t\tname = possibleExp\n\t\t\t\tenabled = false\n\t\t\t}\n\t\t\t// If not a known experiment, treat \"no...\" as a potential experiment name itself\n\t\t}\n\n\t\tsetExperiment(&e, name, enabled)\n\t}\n\n\treturn e\n}\n\n// isKnownExperiment returns true if the given name (case-insensitive) is a\n// known experiment.\nfunc isKnownExperiment(name string) bool {\n\tswitch strings.ToLower(name) {\n\tcase \"analyzerv2\":\n\t\treturn true\n\tdefault:\n\t\treturn false\n\t}\n}\n\n// setExperiment sets the experiment flag with the given name to the given value.\nfunc setExperiment(e *Experiment, name string, enabled bool) {\n\tswitch strings.ToLower(name) {\n\tcase \"analyzerv2\":\n\t\te.AnalyzerV2 = enabled\n\t}\n}\n\n// Enabled returns a slice of all enabled experiment names.\nfunc (e Experiment) Enabled() []string {\n\tvar enabled []string\n\tif e.AnalyzerV2 {\n\t\tenabled = append(enabled, \"analyzerv2\")\n\t}\n\treturn enabled\n}\n\n// String returns a comma-separated list of enabled experiments.\nfunc (e Experiment) String() string {\n\treturn strings.Join(e.Enabled(), \",\")\n}\n"
  },
  {
    "path": "internal/opts/experiment_test.go",
    "content": "package opts\n\nimport \"testing\"\n\nfunc TestExperimentFromString(t *testing.T) {\n\ttests := []struct {\n\t\tname  string\n\t\tinput string\n\t\twant  Experiment\n\t}{\n\t\t{\n\t\t\tname:  \"empty string\",\n\t\t\tinput: \"\",\n\t\t\twant:  Experiment{},\n\t\t},\n\t\t{\n\t\t\tname:  \"whitespace only\",\n\t\t\tinput: \"   \",\n\t\t\twant:  Experiment{},\n\t\t},\n\t\t{\n\t\t\tname:  \"unknown experiment\",\n\t\t\tinput: \"unknownexperiment\",\n\t\t\twant:  Experiment{},\n\t\t},\n\t\t{\n\t\t\tname:  \"multiple unknown experiments\",\n\t\t\tinput: \"foo,bar,baz\",\n\t\t\twant:  Experiment{},\n\t\t},\n\t\t{\n\t\t\tname:  \"unknown with no prefix\",\n\t\t\tinput: \"nounknown\",\n\t\t\twant:  Experiment{},\n\t\t},\n\t\t{\n\t\t\tname:  \"whitespace around experiments\",\n\t\t\tinput: \" foo , bar , baz \",\n\t\t\twant:  Experiment{},\n\t\t},\n\t\t{\n\t\t\tname:  \"empty items in list\",\n\t\t\tinput: \"foo,,bar\",\n\t\t\twant:  Experiment{},\n\t\t},\n\t\t{\n\t\t\tname:  \"enable analyzerv2\",\n\t\t\tinput: \"analyzerv2\",\n\t\t\twant:  Experiment{AnalyzerV2: true},\n\t\t},\n\t\t{\n\t\t\tname:  \"disable analyzerv2\",\n\t\t\tinput: \"noanalyzerv2\",\n\t\t\twant:  Experiment{AnalyzerV2: false},\n\t\t},\n\t\t{\n\t\t\tname:  \"enable then disable analyzerv2\",\n\t\t\tinput: \"analyzerv2,noanalyzerv2\",\n\t\t\twant:  Experiment{AnalyzerV2: false},\n\t\t},\n\t\t{\n\t\t\tname:  \"analyzerv2 case insensitive\",\n\t\t\tinput: \"AnalyzerV2\",\n\t\t\twant:  Experiment{AnalyzerV2: true},\n\t\t},\n\t}\n\n\tfor _, tt := range tests {\n\t\tt.Run(tt.name, func(t *testing.T) {\n\t\t\tgot := ExperimentFromString(tt.input)\n\t\t\tif got != tt.want {\n\t\t\t\tt.Errorf(\"ExperimentFromString(%q) = %+v, want %+v\", tt.input, got, tt.want)\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc TestExperimentEnabled(t *testing.T) {\n\ttests := []struct {\n\t\tname string\n\t\texp  Experiment\n\t\twant []string\n\t}{\n\t\t{\n\t\t\tname: \"no experiments enabled\",\n\t\t\texp:  Experiment{},\n\t\t\twant: nil,\n\t\t},\n\t\t{\n\t\t\tname: \"analyzerv2 enabled\",\n\t\t\texp:  Experiment{AnalyzerV2: true},\n\t\t\twant: []string{\"analyzerv2\"},\n\t\t},\n\t}\n\n\tfor _, tt := range tests {\n\t\tt.Run(tt.name, func(t *testing.T) {\n\t\t\tgot := tt.exp.Enabled()\n\t\t\tif len(got) != len(tt.want) {\n\t\t\t\tt.Errorf(\"Experiment.Enabled() = %v, want %v\", got, tt.want)\n\t\t\t\treturn\n\t\t\t}\n\t\t\tfor i := range got {\n\t\t\t\tif got[i] != tt.want[i] {\n\t\t\t\t\tt.Errorf(\"Experiment.Enabled()[%d] = %q, want %q\", i, got[i], tt.want[i])\n\t\t\t\t}\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc TestExperimentString(t *testing.T) {\n\ttests := []struct {\n\t\tname string\n\t\texp  Experiment\n\t\twant string\n\t}{\n\t\t{\n\t\t\tname: \"no experiments\",\n\t\t\texp:  Experiment{},\n\t\t\twant: \"\",\n\t\t},\n\t\t{\n\t\t\tname: \"analyzerv2 enabled\",\n\t\t\texp:  Experiment{AnalyzerV2: true},\n\t\t\twant: \"analyzerv2\",\n\t\t},\n\t}\n\n\tfor _, tt := range tests {\n\t\tt.Run(tt.name, func(t *testing.T) {\n\t\t\tgot := tt.exp.String()\n\t\t\tif got != tt.want {\n\t\t\t\tt.Errorf(\"Experiment.String() = %q, want %q\", got, tt.want)\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc TestIsKnownExperiment(t *testing.T) {\n\ttests := []struct {\n\t\tname  string\n\t\tinput string\n\t\twant  bool\n\t}{\n\t\t{\n\t\t\tname:  \"unknown experiment\",\n\t\t\tinput: \"unknown\",\n\t\t\twant:  false,\n\t\t},\n\t\t{\n\t\t\tname:  \"empty string\",\n\t\t\tinput: \"\",\n\t\t\twant:  false,\n\t\t},\n\t\t{\n\t\t\tname:  \"analyzerv2 lowercase\",\n\t\t\tinput: \"analyzerv2\",\n\t\t\twant:  true,\n\t\t},\n\t\t{\n\t\t\tname:  \"analyzerv2 mixed case\",\n\t\t\tinput: \"AnalyzerV2\",\n\t\t\twant:  true,\n\t\t},\n\t}\n\n\tfor _, tt := range tests {\n\t\tt.Run(tt.name, func(t *testing.T) {\n\t\t\tgot := isKnownExperiment(tt.input)\n\t\t\tif got != tt.want {\n\t\t\t\tt.Errorf(\"isKnownExperiment(%q) = %v, want %v\", tt.input, got, tt.want)\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "internal/opts/parser.go",
    "content": "package opts\n\ntype Parser struct {\n\tDebug      Debug\n\tExperiment Experiment\n}\n"
  },
  {
    "path": "internal/pattern/match.go",
    "content": "package pattern\n\nimport (\n\t\"fmt\"\n\t\"regexp\"\n\t\"sync\"\n)\n\n// Match is a wrapper of *regexp.Regexp.\n// It contains the match pattern compiled into a regular expression.\ntype Match struct {\n\t*regexp.Regexp\n}\n\nvar (\n\tmatchCache     = make(map[string]*Match)\n\tmatchCacheLock sync.RWMutex\n)\n\n// Compile takes our match expression as a string, and compiles it into a *Match object.\n// Will return an error on an invalid pattern.\nfunc MatchCompile(pattern string) (*Match, error) {\n\t// check for pattern in cache\n\tmatchCacheLock.RLock()\n\tmatcher, ok := matchCache[pattern]\n\tmatchCacheLock.RUnlock()\n\tif ok {\n\t\treturn matcher, nil\n\t}\n\n\t// pattern isn't in cache, compile it\n\tmatcher, err := matchCompile(pattern)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\t// add it to the cache\n\tmatchCacheLock.Lock()\n\tmatchCache[pattern] = matcher\n\tmatchCacheLock.Unlock()\n\n\treturn matcher, nil\n}\n\nfunc matchCompile(pattern string) (match *Match, err error) {\n\tregex := \"\"\n\tescaped := false\n\tarr := []byte(pattern)\n\n\tfor i := 0; i < len(arr); i++ {\n\t\tif escaped {\n\t\t\tescaped = false\n\t\t\tswitch arr[i] {\n\t\t\tcase '*', '?', '\\\\':\n\t\t\t\tregex += \"\\\\\" + string(arr[i])\n\t\t\tdefault:\n\t\t\t\treturn nil, fmt.Errorf(\"Invalid escaped character '%c'\", arr[i])\n\t\t\t}\n\t\t} else {\n\t\t\tswitch arr[i] {\n\t\t\tcase '\\\\':\n\t\t\t\tescaped = true\n\t\t\tcase '*':\n\t\t\t\tregex += \".*\"\n\t\t\tcase '?':\n\t\t\t\tregex += \".\"\n\t\t\tcase '.', '(', ')', '+', '|', '^', '$', '[', ']', '{', '}':\n\t\t\t\tregex += \"\\\\\" + string(arr[i])\n\t\t\tdefault:\n\t\t\t\tregex += string(arr[i])\n\t\t\t}\n\t\t}\n\t}\n\n\tif escaped {\n\t\treturn nil, fmt.Errorf(\"Unterminated escape at end of pattern\")\n\t}\n\n\tvar r *regexp.Regexp\n\n\tif r, err = regexp.Compile(\"^\" + regex + \"$\"); err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn &Match{r}, nil\n}\n"
  },
  {
    "path": "internal/pgx/poolcache/poolcache.go",
    "content": "package poolcache\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"sync\"\n\n\t\"github.com/jackc/pgx/v5/pgxpool\"\n)\n\ntype Cache struct {\n\tlock   sync.RWMutex\n\tclosed bool\n\tpools  map[string]*pgxpool.Pool\n}\n\nfunc New() *Cache {\n\treturn &Cache{\n\t\tpools: map[string]*pgxpool.Pool{},\n\t}\n}\n\nfunc (c *Cache) Open(ctx context.Context, uri string) (*pgxpool.Pool, error) {\n\tif c.closed {\n\t\treturn nil, fmt.Errorf(\"poolcache is closed\")\n\t}\n\n\tc.lock.RLock()\n\texisting, found := c.pools[uri]\n\tc.lock.RUnlock()\n\n\tif found {\n\t\treturn existing, nil\n\t}\n\n\tpool, err := pgxpool.New(ctx, uri)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tc.lock.Lock()\n\tc.pools[uri] = pool\n\tc.lock.Unlock()\n\n\treturn pool, nil\n}\n\nfunc (c *Cache) Close() error {\n\tc.lock.Lock()\n\tdefer c.lock.Unlock()\n\n\tvar closeErr error\n\tfor _, pool := range c.pools {\n\t\tpool.Close()\n\t}\n\n\tc.closed = true\n\tclear(c.pools)\n\n\treturn closeErr\n}\n"
  },
  {
    "path": "internal/plugin/codegen.pb.go",
    "content": "// Code generated by protoc-gen-go. DO NOT EDIT.\n// versions:\n// \tprotoc-gen-go v1.30.0\n// \tprotoc        (unknown)\n// source: plugin/codegen.proto\n\npackage plugin\n\nimport (\n\tprotoreflect \"google.golang.org/protobuf/reflect/protoreflect\"\n\tprotoimpl \"google.golang.org/protobuf/runtime/protoimpl\"\n\treflect \"reflect\"\n\tsync \"sync\"\n)\n\nconst (\n\t// Verify that this generated code is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)\n\t// Verify that runtime/protoimpl is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)\n)\n\ntype File struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tName     string `protobuf:\"bytes,1,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tContents []byte `protobuf:\"bytes,2,opt,name=contents,proto3\" json:\"contents,omitempty\"`\n}\n\nfunc (x *File) Reset() {\n\t*x = File{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[0]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *File) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*File) ProtoMessage() {}\n\nfunc (x *File) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[0]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use File.ProtoReflect.Descriptor instead.\nfunc (*File) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{0}\n}\n\nfunc (x *File) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *File) GetContents() []byte {\n\tif x != nil {\n\t\treturn x.Contents\n\t}\n\treturn nil\n}\n\ntype Settings struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tVersion string   `protobuf:\"bytes,1,opt,name=version,proto3\" json:\"version,omitempty\"`\n\tEngine  string   `protobuf:\"bytes,2,opt,name=engine,proto3\" json:\"engine,omitempty\"`\n\tSchema  []string `protobuf:\"bytes,3,rep,name=schema,proto3\" json:\"schema,omitempty\"`\n\tQueries []string `protobuf:\"bytes,4,rep,name=queries,proto3\" json:\"queries,omitempty\"`\n\tCodegen *Codegen `protobuf:\"bytes,12,opt,name=codegen,proto3\" json:\"codegen,omitempty\"`\n}\n\nfunc (x *Settings) Reset() {\n\t*x = Settings{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[1]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Settings) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Settings) ProtoMessage() {}\n\nfunc (x *Settings) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[1]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Settings.ProtoReflect.Descriptor instead.\nfunc (*Settings) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{1}\n}\n\nfunc (x *Settings) GetVersion() string {\n\tif x != nil {\n\t\treturn x.Version\n\t}\n\treturn \"\"\n}\n\nfunc (x *Settings) GetEngine() string {\n\tif x != nil {\n\t\treturn x.Engine\n\t}\n\treturn \"\"\n}\n\nfunc (x *Settings) GetSchema() []string {\n\tif x != nil {\n\t\treturn x.Schema\n\t}\n\treturn nil\n}\n\nfunc (x *Settings) GetQueries() []string {\n\tif x != nil {\n\t\treturn x.Queries\n\t}\n\treturn nil\n}\n\nfunc (x *Settings) GetCodegen() *Codegen {\n\tif x != nil {\n\t\treturn x.Codegen\n\t}\n\treturn nil\n}\n\ntype Codegen struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tOut     string           `protobuf:\"bytes,1,opt,name=out,proto3\" json:\"out,omitempty\"`\n\tPlugin  string           `protobuf:\"bytes,2,opt,name=plugin,proto3\" json:\"plugin,omitempty\"`\n\tOptions []byte           `protobuf:\"bytes,3,opt,name=options,proto3\" json:\"options,omitempty\"`\n\tEnv     []string         `protobuf:\"bytes,4,rep,name=env,proto3\" json:\"env,omitempty\"`\n\tProcess *Codegen_Process `protobuf:\"bytes,5,opt,name=process,proto3\" json:\"process,omitempty\"`\n\tWasm    *Codegen_WASM    `protobuf:\"bytes,6,opt,name=wasm,proto3\" json:\"wasm,omitempty\"`\n}\n\nfunc (x *Codegen) Reset() {\n\t*x = Codegen{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[2]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Codegen) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Codegen) ProtoMessage() {}\n\nfunc (x *Codegen) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[2]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Codegen.ProtoReflect.Descriptor instead.\nfunc (*Codegen) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{2}\n}\n\nfunc (x *Codegen) GetOut() string {\n\tif x != nil {\n\t\treturn x.Out\n\t}\n\treturn \"\"\n}\n\nfunc (x *Codegen) GetPlugin() string {\n\tif x != nil {\n\t\treturn x.Plugin\n\t}\n\treturn \"\"\n}\n\nfunc (x *Codegen) GetOptions() []byte {\n\tif x != nil {\n\t\treturn x.Options\n\t}\n\treturn nil\n}\n\nfunc (x *Codegen) GetEnv() []string {\n\tif x != nil {\n\t\treturn x.Env\n\t}\n\treturn nil\n}\n\nfunc (x *Codegen) GetProcess() *Codegen_Process {\n\tif x != nil {\n\t\treturn x.Process\n\t}\n\treturn nil\n}\n\nfunc (x *Codegen) GetWasm() *Codegen_WASM {\n\tif x != nil {\n\t\treturn x.Wasm\n\t}\n\treturn nil\n}\n\ntype Catalog struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tComment       string    `protobuf:\"bytes,1,opt,name=comment,proto3\" json:\"comment,omitempty\"`\n\tDefaultSchema string    `protobuf:\"bytes,2,opt,name=default_schema,json=defaultSchema,proto3\" json:\"default_schema,omitempty\"`\n\tName          string    `protobuf:\"bytes,3,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tSchemas       []*Schema `protobuf:\"bytes,4,rep,name=schemas,proto3\" json:\"schemas,omitempty\"`\n}\n\nfunc (x *Catalog) Reset() {\n\t*x = Catalog{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[3]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Catalog) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Catalog) ProtoMessage() {}\n\nfunc (x *Catalog) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[3]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Catalog.ProtoReflect.Descriptor instead.\nfunc (*Catalog) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{3}\n}\n\nfunc (x *Catalog) GetComment() string {\n\tif x != nil {\n\t\treturn x.Comment\n\t}\n\treturn \"\"\n}\n\nfunc (x *Catalog) GetDefaultSchema() string {\n\tif x != nil {\n\t\treturn x.DefaultSchema\n\t}\n\treturn \"\"\n}\n\nfunc (x *Catalog) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *Catalog) GetSchemas() []*Schema {\n\tif x != nil {\n\t\treturn x.Schemas\n\t}\n\treturn nil\n}\n\ntype Schema struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tComment        string           `protobuf:\"bytes,1,opt,name=comment,proto3\" json:\"comment,omitempty\"`\n\tName           string           `protobuf:\"bytes,2,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tTables         []*Table         `protobuf:\"bytes,3,rep,name=tables,proto3\" json:\"tables,omitempty\"`\n\tEnums          []*Enum          `protobuf:\"bytes,4,rep,name=enums,proto3\" json:\"enums,omitempty\"`\n\tCompositeTypes []*CompositeType `protobuf:\"bytes,5,rep,name=composite_types,json=compositeTypes,proto3\" json:\"composite_types,omitempty\"`\n}\n\nfunc (x *Schema) Reset() {\n\t*x = Schema{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[4]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Schema) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Schema) ProtoMessage() {}\n\nfunc (x *Schema) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[4]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Schema.ProtoReflect.Descriptor instead.\nfunc (*Schema) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{4}\n}\n\nfunc (x *Schema) GetComment() string {\n\tif x != nil {\n\t\treturn x.Comment\n\t}\n\treturn \"\"\n}\n\nfunc (x *Schema) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *Schema) GetTables() []*Table {\n\tif x != nil {\n\t\treturn x.Tables\n\t}\n\treturn nil\n}\n\nfunc (x *Schema) GetEnums() []*Enum {\n\tif x != nil {\n\t\treturn x.Enums\n\t}\n\treturn nil\n}\n\nfunc (x *Schema) GetCompositeTypes() []*CompositeType {\n\tif x != nil {\n\t\treturn x.CompositeTypes\n\t}\n\treturn nil\n}\n\ntype CompositeType struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tName    string `protobuf:\"bytes,1,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tComment string `protobuf:\"bytes,2,opt,name=comment,proto3\" json:\"comment,omitempty\"`\n}\n\nfunc (x *CompositeType) Reset() {\n\t*x = CompositeType{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[5]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CompositeType) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CompositeType) ProtoMessage() {}\n\nfunc (x *CompositeType) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[5]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CompositeType.ProtoReflect.Descriptor instead.\nfunc (*CompositeType) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{5}\n}\n\nfunc (x *CompositeType) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *CompositeType) GetComment() string {\n\tif x != nil {\n\t\treturn x.Comment\n\t}\n\treturn \"\"\n}\n\ntype Enum struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tName    string   `protobuf:\"bytes,1,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tVals    []string `protobuf:\"bytes,2,rep,name=vals,proto3\" json:\"vals,omitempty\"`\n\tComment string   `protobuf:\"bytes,3,opt,name=comment,proto3\" json:\"comment,omitempty\"`\n}\n\nfunc (x *Enum) Reset() {\n\t*x = Enum{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[6]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Enum) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Enum) ProtoMessage() {}\n\nfunc (x *Enum) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[6]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Enum.ProtoReflect.Descriptor instead.\nfunc (*Enum) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{6}\n}\n\nfunc (x *Enum) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *Enum) GetVals() []string {\n\tif x != nil {\n\t\treturn x.Vals\n\t}\n\treturn nil\n}\n\nfunc (x *Enum) GetComment() string {\n\tif x != nil {\n\t\treturn x.Comment\n\t}\n\treturn \"\"\n}\n\ntype Table struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tRel     *Identifier `protobuf:\"bytes,1,opt,name=rel,proto3\" json:\"rel,omitempty\"`\n\tColumns []*Column   `protobuf:\"bytes,2,rep,name=columns,proto3\" json:\"columns,omitempty\"`\n\tComment string      `protobuf:\"bytes,3,opt,name=comment,proto3\" json:\"comment,omitempty\"`\n}\n\nfunc (x *Table) Reset() {\n\t*x = Table{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[7]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Table) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Table) ProtoMessage() {}\n\nfunc (x *Table) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[7]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Table.ProtoReflect.Descriptor instead.\nfunc (*Table) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{7}\n}\n\nfunc (x *Table) GetRel() *Identifier {\n\tif x != nil {\n\t\treturn x.Rel\n\t}\n\treturn nil\n}\n\nfunc (x *Table) GetColumns() []*Column {\n\tif x != nil {\n\t\treturn x.Columns\n\t}\n\treturn nil\n}\n\nfunc (x *Table) GetComment() string {\n\tif x != nil {\n\t\treturn x.Comment\n\t}\n\treturn \"\"\n}\n\ntype Identifier struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tCatalog string `protobuf:\"bytes,1,opt,name=catalog,proto3\" json:\"catalog,omitempty\"`\n\tSchema  string `protobuf:\"bytes,2,opt,name=schema,proto3\" json:\"schema,omitempty\"`\n\tName    string `protobuf:\"bytes,3,opt,name=name,proto3\" json:\"name,omitempty\"`\n}\n\nfunc (x *Identifier) Reset() {\n\t*x = Identifier{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[8]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Identifier) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Identifier) ProtoMessage() {}\n\nfunc (x *Identifier) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[8]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Identifier.ProtoReflect.Descriptor instead.\nfunc (*Identifier) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{8}\n}\n\nfunc (x *Identifier) GetCatalog() string {\n\tif x != nil {\n\t\treturn x.Catalog\n\t}\n\treturn \"\"\n}\n\nfunc (x *Identifier) GetSchema() string {\n\tif x != nil {\n\t\treturn x.Schema\n\t}\n\treturn \"\"\n}\n\nfunc (x *Identifier) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\ntype Column struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tName         string `protobuf:\"bytes,1,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tNotNull      bool   `protobuf:\"varint,3,opt,name=not_null,json=notNull,proto3\" json:\"not_null,omitempty\"`\n\tIsArray      bool   `protobuf:\"varint,4,opt,name=is_array,json=isArray,proto3\" json:\"is_array,omitempty\"`\n\tComment      string `protobuf:\"bytes,5,opt,name=comment,proto3\" json:\"comment,omitempty\"`\n\tLength       int32  `protobuf:\"varint,6,opt,name=length,proto3\" json:\"length,omitempty\"`\n\tIsNamedParam bool   `protobuf:\"varint,7,opt,name=is_named_param,json=isNamedParam,proto3\" json:\"is_named_param,omitempty\"`\n\tIsFuncCall   bool   `protobuf:\"varint,8,opt,name=is_func_call,json=isFuncCall,proto3\" json:\"is_func_call,omitempty\"`\n\t// XXX: Figure out what PostgreSQL calls `foo.id`\n\tScope        string      `protobuf:\"bytes,9,opt,name=scope,proto3\" json:\"scope,omitempty\"`\n\tTable        *Identifier `protobuf:\"bytes,10,opt,name=table,proto3\" json:\"table,omitempty\"`\n\tTableAlias   string      `protobuf:\"bytes,11,opt,name=table_alias,json=tableAlias,proto3\" json:\"table_alias,omitempty\"`\n\tType         *Identifier `protobuf:\"bytes,12,opt,name=type,proto3\" json:\"type,omitempty\"`\n\tIsSqlcSlice  bool        `protobuf:\"varint,13,opt,name=is_sqlc_slice,json=isSqlcSlice,proto3\" json:\"is_sqlc_slice,omitempty\"`\n\tEmbedTable   *Identifier `protobuf:\"bytes,14,opt,name=embed_table,json=embedTable,proto3\" json:\"embed_table,omitempty\"`\n\tOriginalName string      `protobuf:\"bytes,15,opt,name=original_name,json=originalName,proto3\" json:\"original_name,omitempty\"`\n\tUnsigned     bool        `protobuf:\"varint,16,opt,name=unsigned,proto3\" json:\"unsigned,omitempty\"`\n\tArrayDims    int32       `protobuf:\"varint,17,opt,name=array_dims,json=arrayDims,proto3\" json:\"array_dims,omitempty\"`\n}\n\nfunc (x *Column) Reset() {\n\t*x = Column{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[9]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Column) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Column) ProtoMessage() {}\n\nfunc (x *Column) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[9]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Column.ProtoReflect.Descriptor instead.\nfunc (*Column) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{9}\n}\n\nfunc (x *Column) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *Column) GetNotNull() bool {\n\tif x != nil {\n\t\treturn x.NotNull\n\t}\n\treturn false\n}\n\nfunc (x *Column) GetIsArray() bool {\n\tif x != nil {\n\t\treturn x.IsArray\n\t}\n\treturn false\n}\n\nfunc (x *Column) GetComment() string {\n\tif x != nil {\n\t\treturn x.Comment\n\t}\n\treturn \"\"\n}\n\nfunc (x *Column) GetLength() int32 {\n\tif x != nil {\n\t\treturn x.Length\n\t}\n\treturn 0\n}\n\nfunc (x *Column) GetIsNamedParam() bool {\n\tif x != nil {\n\t\treturn x.IsNamedParam\n\t}\n\treturn false\n}\n\nfunc (x *Column) GetIsFuncCall() bool {\n\tif x != nil {\n\t\treturn x.IsFuncCall\n\t}\n\treturn false\n}\n\nfunc (x *Column) GetScope() string {\n\tif x != nil {\n\t\treturn x.Scope\n\t}\n\treturn \"\"\n}\n\nfunc (x *Column) GetTable() *Identifier {\n\tif x != nil {\n\t\treturn x.Table\n\t}\n\treturn nil\n}\n\nfunc (x *Column) GetTableAlias() string {\n\tif x != nil {\n\t\treturn x.TableAlias\n\t}\n\treturn \"\"\n}\n\nfunc (x *Column) GetType() *Identifier {\n\tif x != nil {\n\t\treturn x.Type\n\t}\n\treturn nil\n}\n\nfunc (x *Column) GetIsSqlcSlice() bool {\n\tif x != nil {\n\t\treturn x.IsSqlcSlice\n\t}\n\treturn false\n}\n\nfunc (x *Column) GetEmbedTable() *Identifier {\n\tif x != nil {\n\t\treturn x.EmbedTable\n\t}\n\treturn nil\n}\n\nfunc (x *Column) GetOriginalName() string {\n\tif x != nil {\n\t\treturn x.OriginalName\n\t}\n\treturn \"\"\n}\n\nfunc (x *Column) GetUnsigned() bool {\n\tif x != nil {\n\t\treturn x.Unsigned\n\t}\n\treturn false\n}\n\nfunc (x *Column) GetArrayDims() int32 {\n\tif x != nil {\n\t\treturn x.ArrayDims\n\t}\n\treturn 0\n}\n\ntype Query struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tText            string       `protobuf:\"bytes,1,opt,name=text,proto3\" json:\"text,omitempty\"`\n\tName            string       `protobuf:\"bytes,2,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tCmd             string       `protobuf:\"bytes,3,opt,name=cmd,proto3\" json:\"cmd,omitempty\"`\n\tColumns         []*Column    `protobuf:\"bytes,4,rep,name=columns,proto3\" json:\"columns,omitempty\"`\n\tParams          []*Parameter `protobuf:\"bytes,5,rep,name=params,json=parameters,proto3\" json:\"params,omitempty\"`\n\tComments        []string     `protobuf:\"bytes,6,rep,name=comments,proto3\" json:\"comments,omitempty\"`\n\tFilename        string       `protobuf:\"bytes,7,opt,name=filename,proto3\" json:\"filename,omitempty\"`\n\tInsertIntoTable *Identifier  `protobuf:\"bytes,8,opt,name=insert_into_table,proto3\" json:\"insert_into_table,omitempty\"`\n}\n\nfunc (x *Query) Reset() {\n\t*x = Query{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[10]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Query) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Query) ProtoMessage() {}\n\nfunc (x *Query) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[10]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Query.ProtoReflect.Descriptor instead.\nfunc (*Query) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{10}\n}\n\nfunc (x *Query) GetText() string {\n\tif x != nil {\n\t\treturn x.Text\n\t}\n\treturn \"\"\n}\n\nfunc (x *Query) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *Query) GetCmd() string {\n\tif x != nil {\n\t\treturn x.Cmd\n\t}\n\treturn \"\"\n}\n\nfunc (x *Query) GetColumns() []*Column {\n\tif x != nil {\n\t\treturn x.Columns\n\t}\n\treturn nil\n}\n\nfunc (x *Query) GetParams() []*Parameter {\n\tif x != nil {\n\t\treturn x.Params\n\t}\n\treturn nil\n}\n\nfunc (x *Query) GetComments() []string {\n\tif x != nil {\n\t\treturn x.Comments\n\t}\n\treturn nil\n}\n\nfunc (x *Query) GetFilename() string {\n\tif x != nil {\n\t\treturn x.Filename\n\t}\n\treturn \"\"\n}\n\nfunc (x *Query) GetInsertIntoTable() *Identifier {\n\tif x != nil {\n\t\treturn x.InsertIntoTable\n\t}\n\treturn nil\n}\n\ntype Parameter struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tNumber int32   `protobuf:\"varint,1,opt,name=number,proto3\" json:\"number,omitempty\"`\n\tColumn *Column `protobuf:\"bytes,2,opt,name=column,proto3\" json:\"column,omitempty\"`\n}\n\nfunc (x *Parameter) Reset() {\n\t*x = Parameter{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[11]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Parameter) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Parameter) ProtoMessage() {}\n\nfunc (x *Parameter) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[11]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Parameter.ProtoReflect.Descriptor instead.\nfunc (*Parameter) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{11}\n}\n\nfunc (x *Parameter) GetNumber() int32 {\n\tif x != nil {\n\t\treturn x.Number\n\t}\n\treturn 0\n}\n\nfunc (x *Parameter) GetColumn() *Column {\n\tif x != nil {\n\t\treturn x.Column\n\t}\n\treturn nil\n}\n\ntype GenerateRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tSettings      *Settings `protobuf:\"bytes,1,opt,name=settings,proto3\" json:\"settings,omitempty\"`\n\tCatalog       *Catalog  `protobuf:\"bytes,2,opt,name=catalog,proto3\" json:\"catalog,omitempty\"`\n\tQueries       []*Query  `protobuf:\"bytes,3,rep,name=queries,proto3\" json:\"queries,omitempty\"`\n\tSqlcVersion   string    `protobuf:\"bytes,4,opt,name=sqlc_version,proto3\" json:\"sqlc_version,omitempty\"`\n\tPluginOptions []byte    `protobuf:\"bytes,5,opt,name=plugin_options,proto3\" json:\"plugin_options,omitempty\"`\n\tGlobalOptions []byte    `protobuf:\"bytes,6,opt,name=global_options,proto3\" json:\"global_options,omitempty\"`\n}\n\nfunc (x *GenerateRequest) Reset() {\n\t*x = GenerateRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[12]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GenerateRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GenerateRequest) ProtoMessage() {}\n\nfunc (x *GenerateRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[12]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GenerateRequest.ProtoReflect.Descriptor instead.\nfunc (*GenerateRequest) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{12}\n}\n\nfunc (x *GenerateRequest) GetSettings() *Settings {\n\tif x != nil {\n\t\treturn x.Settings\n\t}\n\treturn nil\n}\n\nfunc (x *GenerateRequest) GetCatalog() *Catalog {\n\tif x != nil {\n\t\treturn x.Catalog\n\t}\n\treturn nil\n}\n\nfunc (x *GenerateRequest) GetQueries() []*Query {\n\tif x != nil {\n\t\treturn x.Queries\n\t}\n\treturn nil\n}\n\nfunc (x *GenerateRequest) GetSqlcVersion() string {\n\tif x != nil {\n\t\treturn x.SqlcVersion\n\t}\n\treturn \"\"\n}\n\nfunc (x *GenerateRequest) GetPluginOptions() []byte {\n\tif x != nil {\n\t\treturn x.PluginOptions\n\t}\n\treturn nil\n}\n\nfunc (x *GenerateRequest) GetGlobalOptions() []byte {\n\tif x != nil {\n\t\treturn x.GlobalOptions\n\t}\n\treturn nil\n}\n\ntype GenerateResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tFiles []*File `protobuf:\"bytes,1,rep,name=files,proto3\" json:\"files,omitempty\"`\n}\n\nfunc (x *GenerateResponse) Reset() {\n\t*x = GenerateResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[13]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GenerateResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GenerateResponse) ProtoMessage() {}\n\nfunc (x *GenerateResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[13]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GenerateResponse.ProtoReflect.Descriptor instead.\nfunc (*GenerateResponse) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{13}\n}\n\nfunc (x *GenerateResponse) GetFiles() []*File {\n\tif x != nil {\n\t\treturn x.Files\n\t}\n\treturn nil\n}\n\ntype Codegen_Process struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tCmd string `protobuf:\"bytes,1,opt,name=cmd,proto3\" json:\"cmd,omitempty\"`\n}\n\nfunc (x *Codegen_Process) Reset() {\n\t*x = Codegen_Process{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[14]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Codegen_Process) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Codegen_Process) ProtoMessage() {}\n\nfunc (x *Codegen_Process) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[14]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Codegen_Process.ProtoReflect.Descriptor instead.\nfunc (*Codegen_Process) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{2, 0}\n}\n\nfunc (x *Codegen_Process) GetCmd() string {\n\tif x != nil {\n\t\treturn x.Cmd\n\t}\n\treturn \"\"\n}\n\ntype Codegen_WASM struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tUrl    string `protobuf:\"bytes,1,opt,name=url,proto3\" json:\"url,omitempty\"`\n\tSha256 string `protobuf:\"bytes,2,opt,name=sha256,proto3\" json:\"sha256,omitempty\"`\n}\n\nfunc (x *Codegen_WASM) Reset() {\n\t*x = Codegen_WASM{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_plugin_codegen_proto_msgTypes[15]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Codegen_WASM) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Codegen_WASM) ProtoMessage() {}\n\nfunc (x *Codegen_WASM) ProtoReflect() protoreflect.Message {\n\tmi := &file_plugin_codegen_proto_msgTypes[15]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Codegen_WASM.ProtoReflect.Descriptor instead.\nfunc (*Codegen_WASM) Descriptor() ([]byte, []int) {\n\treturn file_plugin_codegen_proto_rawDescGZIP(), []int{2, 1}\n}\n\nfunc (x *Codegen_WASM) GetUrl() string {\n\tif x != nil {\n\t\treturn x.Url\n\t}\n\treturn \"\"\n}\n\nfunc (x *Codegen_WASM) GetSha256() string {\n\tif x != nil {\n\t\treturn x.Sha256\n\t}\n\treturn \"\"\n}\n\nvar File_plugin_codegen_proto protoreflect.FileDescriptor\n\nvar file_plugin_codegen_proto_rawDesc = []byte{\n\t0x0a, 0x14, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x67, 0x65, 0x6e,\n\t0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x06, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x22, 0x36,\n\t0x0a, 0x04, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f,\n\t0x6e, 0x74, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x63, 0x6f,\n\t0x6e, 0x74, 0x65, 0x6e, 0x74, 0x73, 0x22, 0xb7, 0x01, 0x0a, 0x08, 0x53, 0x65, 0x74, 0x74, 0x69,\n\t0x6e, 0x67, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a,\n\t0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65,\n\t0x6e, 0x67, 0x69, 0x6e, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18,\n\t0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x18, 0x0a,\n\t0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07,\n\t0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x12, 0x29, 0x0a, 0x07, 0x63, 0x6f, 0x64, 0x65, 0x67,\n\t0x65, 0x6e, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69,\n\t0x6e, 0x2e, 0x43, 0x6f, 0x64, 0x65, 0x67, 0x65, 0x6e, 0x52, 0x07, 0x63, 0x6f, 0x64, 0x65, 0x67,\n\t0x65, 0x6e, 0x4a, 0x04, 0x08, 0x05, 0x10, 0x06, 0x4a, 0x04, 0x08, 0x08, 0x10, 0x09, 0x4a, 0x04,\n\t0x08, 0x09, 0x10, 0x0a, 0x4a, 0x04, 0x08, 0x0a, 0x10, 0x0b, 0x4a, 0x04, 0x08, 0x0b, 0x10, 0x0c,\n\t0x22, 0x8b, 0x02, 0x0a, 0x07, 0x43, 0x6f, 0x64, 0x65, 0x67, 0x65, 0x6e, 0x12, 0x10, 0x0a, 0x03,\n\t0x6f, 0x75, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6f, 0x75, 0x74, 0x12, 0x16,\n\t0x0a, 0x06, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,\n\t0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,\n\t0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,\n\t0x12, 0x10, 0x0a, 0x03, 0x65, 0x6e, 0x76, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x03, 0x65,\n\t0x6e, 0x76, 0x12, 0x31, 0x0a, 0x07, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x18, 0x05, 0x20,\n\t0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x64,\n\t0x65, 0x67, 0x65, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x52, 0x07, 0x70, 0x72,\n\t0x6f, 0x63, 0x65, 0x73, 0x73, 0x12, 0x28, 0x0a, 0x04, 0x77, 0x61, 0x73, 0x6d, 0x18, 0x06, 0x20,\n\t0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x64,\n\t0x65, 0x67, 0x65, 0x6e, 0x2e, 0x57, 0x41, 0x53, 0x4d, 0x52, 0x04, 0x77, 0x61, 0x73, 0x6d, 0x1a,\n\t0x1b, 0x0a, 0x07, 0x50, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x6d,\n\t0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x63, 0x6d, 0x64, 0x1a, 0x30, 0x0a, 0x04,\n\t0x57, 0x41, 0x53, 0x4d, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x68, 0x61, 0x32, 0x35, 0x36,\n\t0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x68, 0x61, 0x32, 0x35, 0x36, 0x22, 0x88,\n\t0x01, 0x0a, 0x07, 0x43, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f,\n\t0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d,\n\t0x6d, 0x65, 0x6e, 0x74, 0x12, 0x25, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f,\n\t0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x64, 0x65,\n\t0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x6e,\n\t0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,\n\t0x28, 0x0a, 0x07, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,\n\t0x32, 0x0e, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,\n\t0x52, 0x07, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x73, 0x22, 0xc1, 0x01, 0x0a, 0x06, 0x53, 0x63,\n\t0x68, 0x65, 0x6d, 0x61, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x18,\n\t0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x12,\n\t0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,\n\t0x6d, 0x65, 0x12, 0x25, 0x0a, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03,\n\t0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x54, 0x61, 0x62, 0x6c,\n\t0x65, 0x52, 0x06, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x12, 0x22, 0x0a, 0x05, 0x65, 0x6e, 0x75,\n\t0x6d, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69,\n\t0x6e, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x05, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x12, 0x3e, 0x0a,\n\t0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73,\n\t0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e,\n\t0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0e, 0x63,\n\t0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x73, 0x22, 0x3d, 0x0a,\n\t0x0d, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12,\n\t0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,\n\t0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0x48, 0x0a, 0x04,\n\t0x45, 0x6e, 0x75, 0x6d, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,\n\t0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x76, 0x61, 0x6c, 0x73,\n\t0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x76, 0x61, 0x6c, 0x73, 0x12, 0x18, 0x0a, 0x07,\n\t0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63,\n\t0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0x71, 0x0a, 0x05, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x12,\n\t0x24, 0x0a, 0x03, 0x72, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x70,\n\t0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72,\n\t0x52, 0x03, 0x72, 0x65, 0x6c, 0x12, 0x28, 0x0a, 0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73,\n\t0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e,\n\t0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12,\n\t0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0x52, 0x0a, 0x0a, 0x49, 0x64, 0x65,\n\t0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x61, 0x74, 0x61, 0x6c,\n\t0x6f, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f,\n\t0x67, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,\n\t0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x8e, 0x04,\n\t0x0a, 0x06, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65,\n\t0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08,\n\t0x6e, 0x6f, 0x74, 0x5f, 0x6e, 0x75, 0x6c, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,\n\t0x6e, 0x6f, 0x74, 0x4e, 0x75, 0x6c, 0x6c, 0x12, 0x19, 0x0a, 0x08, 0x69, 0x73, 0x5f, 0x61, 0x72,\n\t0x72, 0x61, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73, 0x41, 0x72, 0x72,\n\t0x61, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x05, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x16, 0x0a, 0x06,\n\t0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6c, 0x65,\n\t0x6e, 0x67, 0x74, 0x68, 0x12, 0x24, 0x0a, 0x0e, 0x69, 0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x64,\n\t0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69, 0x73,\n\t0x4e, 0x61, 0x6d, 0x65, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x20, 0x0a, 0x0c, 0x69, 0x73,\n\t0x5f, 0x66, 0x75, 0x6e, 0x63, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08,\n\t0x52, 0x0a, 0x69, 0x73, 0x46, 0x75, 0x6e, 0x63, 0x43, 0x61, 0x6c, 0x6c, 0x12, 0x14, 0x0a, 0x05,\n\t0x73, 0x63, 0x6f, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x63, 0x6f,\n\t0x70, 0x65, 0x12, 0x28, 0x0a, 0x05, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,\n\t0x0b, 0x32, 0x12, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74,\n\t0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x05, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1f, 0x0a, 0x0b,\n\t0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x0a, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x6c, 0x69, 0x61, 0x73, 0x12, 0x26, 0x0a,\n\t0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x70, 0x6c,\n\t0x75, 0x67, 0x69, 0x6e, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52,\n\t0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x73, 0x71, 0x6c, 0x63,\n\t0x5f, 0x73, 0x6c, 0x69, 0x63, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73,\n\t0x53, 0x71, 0x6c, 0x63, 0x53, 0x6c, 0x69, 0x63, 0x65, 0x12, 0x33, 0x0a, 0x0b, 0x65, 0x6d, 0x62,\n\t0x65, 0x64, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12,\n\t0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69,\n\t0x65, 0x72, 0x52, 0x0a, 0x65, 0x6d, 0x62, 0x65, 0x64, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x23,\n\t0x0a, 0x0d, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,\n\t0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x4e,\n\t0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x6e, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x18,\n\t0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x75, 0x6e, 0x73, 0x69, 0x67, 0x6e, 0x65, 0x64, 0x12,\n\t0x1d, 0x0a, 0x0a, 0x61, 0x72, 0x72, 0x61, 0x79, 0x5f, 0x64, 0x69, 0x6d, 0x73, 0x18, 0x11, 0x20,\n\t0x01, 0x28, 0x05, 0x52, 0x09, 0x61, 0x72, 0x72, 0x61, 0x79, 0x44, 0x69, 0x6d, 0x73, 0x22, 0x94,\n\t0x02, 0x0a, 0x05, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74,\n\t0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x12, 0x0a, 0x04,\n\t0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,\n\t0x12, 0x10, 0x0a, 0x03, 0x63, 0x6d, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x63,\n\t0x6d, 0x64, 0x12, 0x28, 0x0a, 0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18, 0x04, 0x20,\n\t0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6c,\n\t0x75, 0x6d, 0x6e, 0x52, 0x07, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x12, 0x2d, 0x0a, 0x06,\n\t0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x70,\n\t0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52,\n\t0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x63,\n\t0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x63,\n\t0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e,\n\t0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e,\n\t0x61, 0x6d, 0x65, 0x12, 0x40, 0x0a, 0x11, 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x5f, 0x69, 0x6e,\n\t0x74, 0x6f, 0x5f, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12,\n\t0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69,\n\t0x65, 0x72, 0x52, 0x11, 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x6f, 0x5f,\n\t0x74, 0x61, 0x62, 0x6c, 0x65, 0x22, 0x4b, 0x0a, 0x09, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74,\n\t0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01,\n\t0x28, 0x05, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x26, 0x0a, 0x06, 0x63, 0x6f,\n\t0x6c, 0x75, 0x6d, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x70, 0x6c, 0x75,\n\t0x67, 0x69, 0x6e, 0x2e, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x52, 0x06, 0x63, 0x6f, 0x6c, 0x75,\n\t0x6d, 0x6e, 0x22, 0x87, 0x02, 0x0a, 0x0f, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52,\n\t0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x08, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e,\n\t0x67, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69,\n\t0x6e, 0x2e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x08, 0x73, 0x65, 0x74, 0x74,\n\t0x69, 0x6e, 0x67, 0x73, 0x12, 0x29, 0x0a, 0x07, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x18,\n\t0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x43,\n\t0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x52, 0x07, 0x63, 0x61, 0x74, 0x61, 0x6c, 0x6f, 0x67, 0x12,\n\t0x27, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,\n\t0x32, 0x0d, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,\n\t0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x71, 0x6c, 0x63,\n\t0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,\n\t0x73, 0x71, 0x6c, 0x63, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0e,\n\t0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05,\n\t0x20, 0x01, 0x28, 0x0c, 0x52, 0x0e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x5f, 0x6f, 0x70, 0x74,\n\t0x69, 0x6f, 0x6e, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x5f, 0x6f,\n\t0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0e, 0x67, 0x6c,\n\t0x6f, 0x62, 0x61, 0x6c, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x36, 0x0a, 0x10,\n\t0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,\n\t0x12, 0x22, 0x0a, 0x05, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,\n\t0x0c, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x05, 0x66,\n\t0x69, 0x6c, 0x65, 0x73, 0x32, 0x4f, 0x0a, 0x0e, 0x43, 0x6f, 0x64, 0x65, 0x67, 0x65, 0x6e, 0x53,\n\t0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x3d, 0x0a, 0x08, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61,\n\t0x74, 0x65, 0x12, 0x17, 0x2e, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x47, 0x65, 0x6e, 0x65,\n\t0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x70, 0x6c,\n\t0x75, 0x67, 0x69, 0x6e, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x73,\n\t0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x7c, 0x0a, 0x0a, 0x63, 0x6f, 0x6d, 0x2e, 0x70, 0x6c, 0x75,\n\t0x67, 0x69, 0x6e, 0x42, 0x0c, 0x43, 0x6f, 0x64, 0x65, 0x67, 0x65, 0x6e, 0x50, 0x72, 0x6f, 0x74,\n\t0x6f, 0x50, 0x01, 0x5a, 0x28, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,\n\t0x73, 0x71, 0x6c, 0x63, 0x2d, 0x64, 0x65, 0x76, 0x2f, 0x73, 0x71, 0x6c, 0x63, 0x2f, 0x69, 0x6e,\n\t0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0xa2, 0x02, 0x03,\n\t0x50, 0x58, 0x58, 0xaa, 0x02, 0x06, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0xca, 0x02, 0x06, 0x50,\n\t0x6c, 0x75, 0x67, 0x69, 0x6e, 0xe2, 0x02, 0x12, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x5c, 0x47,\n\t0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x06, 0x50, 0x6c, 0x75,\n\t0x67, 0x69, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,\n}\n\nvar (\n\tfile_plugin_codegen_proto_rawDescOnce sync.Once\n\tfile_plugin_codegen_proto_rawDescData = file_plugin_codegen_proto_rawDesc\n)\n\nfunc file_plugin_codegen_proto_rawDescGZIP() []byte {\n\tfile_plugin_codegen_proto_rawDescOnce.Do(func() {\n\t\tfile_plugin_codegen_proto_rawDescData = protoimpl.X.CompressGZIP(file_plugin_codegen_proto_rawDescData)\n\t})\n\treturn file_plugin_codegen_proto_rawDescData\n}\n\nvar file_plugin_codegen_proto_msgTypes = make([]protoimpl.MessageInfo, 16)\nvar file_plugin_codegen_proto_goTypes = []interface{}{\n\t(*File)(nil),             // 0: plugin.File\n\t(*Settings)(nil),         // 1: plugin.Settings\n\t(*Codegen)(nil),          // 2: plugin.Codegen\n\t(*Catalog)(nil),          // 3: plugin.Catalog\n\t(*Schema)(nil),           // 4: plugin.Schema\n\t(*CompositeType)(nil),    // 5: plugin.CompositeType\n\t(*Enum)(nil),             // 6: plugin.Enum\n\t(*Table)(nil),            // 7: plugin.Table\n\t(*Identifier)(nil),       // 8: plugin.Identifier\n\t(*Column)(nil),           // 9: plugin.Column\n\t(*Query)(nil),            // 10: plugin.Query\n\t(*Parameter)(nil),        // 11: plugin.Parameter\n\t(*GenerateRequest)(nil),  // 12: plugin.GenerateRequest\n\t(*GenerateResponse)(nil), // 13: plugin.GenerateResponse\n\t(*Codegen_Process)(nil),  // 14: plugin.Codegen.Process\n\t(*Codegen_WASM)(nil),     // 15: plugin.Codegen.WASM\n}\nvar file_plugin_codegen_proto_depIdxs = []int32{\n\t2,  // 0: plugin.Settings.codegen:type_name -> plugin.Codegen\n\t14, // 1: plugin.Codegen.process:type_name -> plugin.Codegen.Process\n\t15, // 2: plugin.Codegen.wasm:type_name -> plugin.Codegen.WASM\n\t4,  // 3: plugin.Catalog.schemas:type_name -> plugin.Schema\n\t7,  // 4: plugin.Schema.tables:type_name -> plugin.Table\n\t6,  // 5: plugin.Schema.enums:type_name -> plugin.Enum\n\t5,  // 6: plugin.Schema.composite_types:type_name -> plugin.CompositeType\n\t8,  // 7: plugin.Table.rel:type_name -> plugin.Identifier\n\t9,  // 8: plugin.Table.columns:type_name -> plugin.Column\n\t8,  // 9: plugin.Column.table:type_name -> plugin.Identifier\n\t8,  // 10: plugin.Column.type:type_name -> plugin.Identifier\n\t8,  // 11: plugin.Column.embed_table:type_name -> plugin.Identifier\n\t9,  // 12: plugin.Query.columns:type_name -> plugin.Column\n\t11, // 13: plugin.Query.params:type_name -> plugin.Parameter\n\t8,  // 14: plugin.Query.insert_into_table:type_name -> plugin.Identifier\n\t9,  // 15: plugin.Parameter.column:type_name -> plugin.Column\n\t1,  // 16: plugin.GenerateRequest.settings:type_name -> plugin.Settings\n\t3,  // 17: plugin.GenerateRequest.catalog:type_name -> plugin.Catalog\n\t10, // 18: plugin.GenerateRequest.queries:type_name -> plugin.Query\n\t0,  // 19: plugin.GenerateResponse.files:type_name -> plugin.File\n\t12, // 20: plugin.CodegenService.Generate:input_type -> plugin.GenerateRequest\n\t13, // 21: plugin.CodegenService.Generate:output_type -> plugin.GenerateResponse\n\t21, // [21:22] is the sub-list for method output_type\n\t20, // [20:21] is the sub-list for method input_type\n\t20, // [20:20] is the sub-list for extension type_name\n\t20, // [20:20] is the sub-list for extension extendee\n\t0,  // [0:20] is the sub-list for field type_name\n}\n\nfunc init() { file_plugin_codegen_proto_init() }\nfunc file_plugin_codegen_proto_init() {\n\tif File_plugin_codegen_proto != nil {\n\t\treturn\n\t}\n\tif !protoimpl.UnsafeEnabled {\n\t\tfile_plugin_codegen_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*File); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_plugin_codegen_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Settings); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_plugin_codegen_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Codegen); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_plugin_codegen_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Catalog); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_plugin_codegen_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Schema); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_plugin_codegen_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CompositeType); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_plugin_codegen_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Enum); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_plugin_codegen_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Table); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_plugin_codegen_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Identifier); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_plugin_codegen_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Column); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_plugin_codegen_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Query); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_plugin_codegen_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Parameter); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_plugin_codegen_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GenerateRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_plugin_codegen_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GenerateResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_plugin_codegen_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Codegen_Process); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_plugin_codegen_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Codegen_WASM); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t}\n\ttype x struct{}\n\tout := protoimpl.TypeBuilder{\n\t\tFile: protoimpl.DescBuilder{\n\t\t\tGoPackagePath: reflect.TypeOf(x{}).PkgPath(),\n\t\t\tRawDescriptor: file_plugin_codegen_proto_rawDesc,\n\t\t\tNumEnums:      0,\n\t\t\tNumMessages:   16,\n\t\t\tNumExtensions: 0,\n\t\t\tNumServices:   1,\n\t\t},\n\t\tGoTypes:           file_plugin_codegen_proto_goTypes,\n\t\tDependencyIndexes: file_plugin_codegen_proto_depIdxs,\n\t\tMessageInfos:      file_plugin_codegen_proto_msgTypes,\n\t}.Build()\n\tFile_plugin_codegen_proto = out.File\n\tfile_plugin_codegen_proto_rawDesc = nil\n\tfile_plugin_codegen_proto_goTypes = nil\n\tfile_plugin_codegen_proto_depIdxs = nil\n}\n"
  },
  {
    "path": "internal/plugin/codegen_grpc.pb.go",
    "content": "// Code generated by protoc-gen-go-grpc. DO NOT EDIT.\n// versions:\n// - protoc-gen-go-grpc v1.3.0\n// - protoc             (unknown)\n// source: plugin/codegen.proto\n\npackage plugin\n\nimport (\n\tcontext \"context\"\n\tgrpc \"google.golang.org/grpc\"\n\tcodes \"google.golang.org/grpc/codes\"\n\tstatus \"google.golang.org/grpc/status\"\n)\n\n// This is a compile-time assertion to ensure that this generated file\n// is compatible with the grpc package it is being compiled against.\n// Requires gRPC-Go v1.32.0 or later.\nconst _ = grpc.SupportPackageIsVersion7\n\nconst (\n\tCodegenService_Generate_FullMethodName = \"/plugin.CodegenService/Generate\"\n)\n\n// CodegenServiceClient is the client API for CodegenService service.\n//\n// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.\ntype CodegenServiceClient interface {\n\tGenerate(ctx context.Context, in *GenerateRequest, opts ...grpc.CallOption) (*GenerateResponse, error)\n}\n\ntype codegenServiceClient struct {\n\tcc grpc.ClientConnInterface\n}\n\nfunc NewCodegenServiceClient(cc grpc.ClientConnInterface) CodegenServiceClient {\n\treturn &codegenServiceClient{cc}\n}\n\nfunc (c *codegenServiceClient) Generate(ctx context.Context, in *GenerateRequest, opts ...grpc.CallOption) (*GenerateResponse, error) {\n\tout := new(GenerateResponse)\n\terr := c.cc.Invoke(ctx, CodegenService_Generate_FullMethodName, in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\n// CodegenServiceServer is the server API for CodegenService service.\n// All implementations must embed UnimplementedCodegenServiceServer\n// for forward compatibility\ntype CodegenServiceServer interface {\n\tGenerate(context.Context, *GenerateRequest) (*GenerateResponse, error)\n\tmustEmbedUnimplementedCodegenServiceServer()\n}\n\n// UnimplementedCodegenServiceServer must be embedded to have forward compatible implementations.\ntype UnimplementedCodegenServiceServer struct {\n}\n\nfunc (UnimplementedCodegenServiceServer) Generate(context.Context, *GenerateRequest) (*GenerateResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method Generate not implemented\")\n}\nfunc (UnimplementedCodegenServiceServer) mustEmbedUnimplementedCodegenServiceServer() {}\n\n// UnsafeCodegenServiceServer may be embedded to opt out of forward compatibility for this service.\n// Use of this interface is not recommended, as added methods to CodegenServiceServer will\n// result in compilation errors.\ntype UnsafeCodegenServiceServer interface {\n\tmustEmbedUnimplementedCodegenServiceServer()\n}\n\nfunc RegisterCodegenServiceServer(s grpc.ServiceRegistrar, srv CodegenServiceServer) {\n\ts.RegisterService(&CodegenService_ServiceDesc, srv)\n}\n\nfunc _CodegenService_Generate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(GenerateRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(CodegenServiceServer).Generate(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: CodegenService_Generate_FullMethodName,\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(CodegenServiceServer).Generate(ctx, req.(*GenerateRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\n// CodegenService_ServiceDesc is the grpc.ServiceDesc for CodegenService service.\n// It's only intended for direct use with grpc.RegisterService,\n// and not to be introspected or modified (even as a copy)\nvar CodegenService_ServiceDesc = grpc.ServiceDesc{\n\tServiceName: \"plugin.CodegenService\",\n\tHandlerType: (*CodegenServiceServer)(nil),\n\tMethods: []grpc.MethodDesc{\n\t\t{\n\t\t\tMethodName: \"Generate\",\n\t\t\tHandler:    _CodegenService_Generate_Handler,\n\t\t},\n\t},\n\tStreams:  []grpc.StreamDesc{},\n\tMetadata: \"plugin/codegen.proto\",\n}\n"
  },
  {
    "path": "internal/quickdb/mysql.go",
    "content": "package quickdb\n\nimport (\n\t\"fmt\"\n\t\"net/url\"\n)\n\n// The database URI returned by the QuickDB service isn't understood by the\n// go-mysql-driver\nfunc MySQLReformatURI(original string) (string, error) {\n\tu, err := url.Parse(original)\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\treturn fmt.Sprintf(\"%s@tcp(%s)%s?multiStatements=true&parseTime=true&tls=true\", u.User, u.Host, u.Path), nil\n}\n"
  },
  {
    "path": "internal/quickdb/rpc.go",
    "content": "package quickdb\n\nimport (\n\t\"crypto/tls\"\n\n\t\"github.com/riza-io/grpc-go/credentials/basic\"\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/credentials\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\tpb \"github.com/sqlc-dev/sqlc/internal/quickdb/v1\"\n\t\"github.com/sqlc-dev/sqlc/internal/rpc\"\n)\n\nconst defaultHostname = \"grpc.sqlc.dev\"\n\nfunc NewClientFromConfig(cloudConfig config.Cloud) (pb.QuickClient, error) {\n\tprojectID := cloudConfig.Project\n\treturn NewClient(projectID, cloudConfig.AuthToken, WithHost(cloudConfig.Hostname))\n}\n\ntype options struct {\n\thostname string\n}\n\ntype Option func(*options)\n\nfunc WithHost(host string) Option {\n\treturn func(o *options) {\n\t\to.hostname = host\n\t}\n}\n\nfunc NewClient(project, token string, opts ...Option) (pb.QuickClient, error) {\n\tvar o options\n\tfor _, apply := range opts {\n\t\tapply(&o)\n\t}\n\n\tdialOpts := []grpc.DialOption{\n\t\tgrpc.WithTransportCredentials(credentials.NewTLS(&tls.Config{})),\n\t\tgrpc.WithPerRPCCredentials(basic.NewPerRPCCredentials(project, token)),\n\t\tgrpc.WithUnaryInterceptor(rpc.UnaryInterceptor),\n\t}\n\n\thostname := o.hostname\n\tif hostname == \"\" {\n\t\thostname = defaultHostname\n\t}\n\n\tconn, err := grpc.Dial(hostname+\":443\", dialOpts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn pb.NewQuickClient(conn), nil\n}\n"
  },
  {
    "path": "internal/quickdb/v1/quickdb.pb.go",
    "content": "// Code generated by protoc-gen-go. DO NOT EDIT.\n// versions:\n// \tprotoc-gen-go v1.30.0\n// \tprotoc        (unknown)\n// source: v1/quickdb.proto\n\npackage quickdbv1\n\nimport (\n\tprotoreflect \"google.golang.org/protobuf/reflect/protoreflect\"\n\tprotoimpl \"google.golang.org/protobuf/runtime/protoimpl\"\n\treflect \"reflect\"\n\tsync \"sync\"\n)\n\nconst (\n\t// Verify that this generated code is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)\n\t// Verify that runtime/protoimpl is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)\n)\n\ntype CreateEphemeralDatabaseRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tRegion     string   `protobuf:\"bytes,1,opt,name=region,proto3\" json:\"region,omitempty\"`\n\tEngine     string   `protobuf:\"bytes,2,opt,name=engine,proto3\" json:\"engine,omitempty\"`\n\tServerId   string   `protobuf:\"bytes,3,opt,name=server_id,json=serverId,proto3\" json:\"server_id,omitempty\"`\n\tMigrations []string `protobuf:\"bytes,4,rep,name=migrations,proto3\" json:\"migrations,omitempty\"`\n}\n\nfunc (x *CreateEphemeralDatabaseRequest) Reset() {\n\t*x = CreateEphemeralDatabaseRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_v1_quickdb_proto_msgTypes[0]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CreateEphemeralDatabaseRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CreateEphemeralDatabaseRequest) ProtoMessage() {}\n\nfunc (x *CreateEphemeralDatabaseRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_v1_quickdb_proto_msgTypes[0]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CreateEphemeralDatabaseRequest.ProtoReflect.Descriptor instead.\nfunc (*CreateEphemeralDatabaseRequest) Descriptor() ([]byte, []int) {\n\treturn file_v1_quickdb_proto_rawDescGZIP(), []int{0}\n}\n\nfunc (x *CreateEphemeralDatabaseRequest) GetRegion() string {\n\tif x != nil {\n\t\treturn x.Region\n\t}\n\treturn \"\"\n}\n\nfunc (x *CreateEphemeralDatabaseRequest) GetEngine() string {\n\tif x != nil {\n\t\treturn x.Engine\n\t}\n\treturn \"\"\n}\n\nfunc (x *CreateEphemeralDatabaseRequest) GetServerId() string {\n\tif x != nil {\n\t\treturn x.ServerId\n\t}\n\treturn \"\"\n}\n\nfunc (x *CreateEphemeralDatabaseRequest) GetMigrations() []string {\n\tif x != nil {\n\t\treturn x.Migrations\n\t}\n\treturn nil\n}\n\ntype CreateEphemeralDatabaseResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tDatabaseId string `protobuf:\"bytes,1,opt,name=database_id,json=databaseId,proto3\" json:\"database_id,omitempty\"`\n\tUri        string `protobuf:\"bytes,2,opt,name=uri,proto3\" json:\"uri,omitempty\"`\n}\n\nfunc (x *CreateEphemeralDatabaseResponse) Reset() {\n\t*x = CreateEphemeralDatabaseResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_v1_quickdb_proto_msgTypes[1]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *CreateEphemeralDatabaseResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*CreateEphemeralDatabaseResponse) ProtoMessage() {}\n\nfunc (x *CreateEphemeralDatabaseResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_v1_quickdb_proto_msgTypes[1]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use CreateEphemeralDatabaseResponse.ProtoReflect.Descriptor instead.\nfunc (*CreateEphemeralDatabaseResponse) Descriptor() ([]byte, []int) {\n\treturn file_v1_quickdb_proto_rawDescGZIP(), []int{1}\n}\n\nfunc (x *CreateEphemeralDatabaseResponse) GetDatabaseId() string {\n\tif x != nil {\n\t\treturn x.DatabaseId\n\t}\n\treturn \"\"\n}\n\nfunc (x *CreateEphemeralDatabaseResponse) GetUri() string {\n\tif x != nil {\n\t\treturn x.Uri\n\t}\n\treturn \"\"\n}\n\ntype DropEphemeralDatabaseRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tDatabaseId string `protobuf:\"bytes,1,opt,name=database_id,json=databaseId,proto3\" json:\"database_id,omitempty\"`\n}\n\nfunc (x *DropEphemeralDatabaseRequest) Reset() {\n\t*x = DropEphemeralDatabaseRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_v1_quickdb_proto_msgTypes[2]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *DropEphemeralDatabaseRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*DropEphemeralDatabaseRequest) ProtoMessage() {}\n\nfunc (x *DropEphemeralDatabaseRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_v1_quickdb_proto_msgTypes[2]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use DropEphemeralDatabaseRequest.ProtoReflect.Descriptor instead.\nfunc (*DropEphemeralDatabaseRequest) Descriptor() ([]byte, []int) {\n\treturn file_v1_quickdb_proto_rawDescGZIP(), []int{2}\n}\n\nfunc (x *DropEphemeralDatabaseRequest) GetDatabaseId() string {\n\tif x != nil {\n\t\treturn x.DatabaseId\n\t}\n\treturn \"\"\n}\n\ntype DropEphemeralDatabaseResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n}\n\nfunc (x *DropEphemeralDatabaseResponse) Reset() {\n\t*x = DropEphemeralDatabaseResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_v1_quickdb_proto_msgTypes[3]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *DropEphemeralDatabaseResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*DropEphemeralDatabaseResponse) ProtoMessage() {}\n\nfunc (x *DropEphemeralDatabaseResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_v1_quickdb_proto_msgTypes[3]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use DropEphemeralDatabaseResponse.ProtoReflect.Descriptor instead.\nfunc (*DropEphemeralDatabaseResponse) Descriptor() ([]byte, []int) {\n\treturn file_v1_quickdb_proto_rawDescGZIP(), []int{3}\n}\n\ntype File struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tName     string `protobuf:\"bytes,1,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tContents []byte `protobuf:\"bytes,2,opt,name=contents,proto3\" json:\"contents,omitempty\"`\n}\n\nfunc (x *File) Reset() {\n\t*x = File{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_v1_quickdb_proto_msgTypes[4]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *File) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*File) ProtoMessage() {}\n\nfunc (x *File) ProtoReflect() protoreflect.Message {\n\tmi := &file_v1_quickdb_proto_msgTypes[4]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use File.ProtoReflect.Descriptor instead.\nfunc (*File) Descriptor() ([]byte, []int) {\n\treturn file_v1_quickdb_proto_rawDescGZIP(), []int{4}\n}\n\nfunc (x *File) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *File) GetContents() []byte {\n\tif x != nil {\n\t\treturn x.Contents\n\t}\n\treturn nil\n}\n\ntype QuerySet struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tName           string  `protobuf:\"bytes,1,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tSchema         []*File `protobuf:\"bytes,2,rep,name=schema,proto3\" json:\"schema,omitempty\"`\n\tQueries        []*File `protobuf:\"bytes,3,rep,name=queries,proto3\" json:\"queries,omitempty\"`\n\tCodegenRequest *File   `protobuf:\"bytes,4,opt,name=codegen_request,json=codegenRequest,proto3\" json:\"codegen_request,omitempty\"`\n}\n\nfunc (x *QuerySet) Reset() {\n\t*x = QuerySet{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_v1_quickdb_proto_msgTypes[5]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *QuerySet) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*QuerySet) ProtoMessage() {}\n\nfunc (x *QuerySet) ProtoReflect() protoreflect.Message {\n\tmi := &file_v1_quickdb_proto_msgTypes[5]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use QuerySet.ProtoReflect.Descriptor instead.\nfunc (*QuerySet) Descriptor() ([]byte, []int) {\n\treturn file_v1_quickdb_proto_rawDescGZIP(), []int{5}\n}\n\nfunc (x *QuerySet) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *QuerySet) GetSchema() []*File {\n\tif x != nil {\n\t\treturn x.Schema\n\t}\n\treturn nil\n}\n\nfunc (x *QuerySet) GetQueries() []*File {\n\tif x != nil {\n\t\treturn x.Queries\n\t}\n\treturn nil\n}\n\nfunc (x *QuerySet) GetCodegenRequest() *File {\n\tif x != nil {\n\t\treturn x.CodegenRequest\n\t}\n\treturn nil\n}\n\ntype UploadArchiveRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tSqlcVersion string            `protobuf:\"bytes,1,opt,name=sqlc_version,json=sqlcVersion,proto3\" json:\"sqlc_version,omitempty\"`\n\tInputs      []*File           `protobuf:\"bytes,2,rep,name=inputs,proto3\" json:\"inputs,omitempty\"`   // deprecated\n\tOutputs     []*File           `protobuf:\"bytes,3,rep,name=outputs,proto3\" json:\"outputs,omitempty\"` // deprecated\n\tAnnotations map[string]string `protobuf:\"bytes,4,rep,name=annotations,proto3\" json:\"annotations,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"bytes,2,opt,name=value,proto3\"`\n\tQuerySets   []*QuerySet       `protobuf:\"bytes,5,rep,name=query_sets,json=querySets,proto3\" json:\"query_sets,omitempty\"`\n\tConfig      *File             `protobuf:\"bytes,6,opt,name=config,proto3\" json:\"config,omitempty\"`\n\tTags        []string          `protobuf:\"bytes,7,rep,name=tags,proto3\" json:\"tags,omitempty\"`\n}\n\nfunc (x *UploadArchiveRequest) Reset() {\n\t*x = UploadArchiveRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_v1_quickdb_proto_msgTypes[6]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *UploadArchiveRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*UploadArchiveRequest) ProtoMessage() {}\n\nfunc (x *UploadArchiveRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_v1_quickdb_proto_msgTypes[6]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use UploadArchiveRequest.ProtoReflect.Descriptor instead.\nfunc (*UploadArchiveRequest) Descriptor() ([]byte, []int) {\n\treturn file_v1_quickdb_proto_rawDescGZIP(), []int{6}\n}\n\nfunc (x *UploadArchiveRequest) GetSqlcVersion() string {\n\tif x != nil {\n\t\treturn x.SqlcVersion\n\t}\n\treturn \"\"\n}\n\nfunc (x *UploadArchiveRequest) GetInputs() []*File {\n\tif x != nil {\n\t\treturn x.Inputs\n\t}\n\treturn nil\n}\n\nfunc (x *UploadArchiveRequest) GetOutputs() []*File {\n\tif x != nil {\n\t\treturn x.Outputs\n\t}\n\treturn nil\n}\n\nfunc (x *UploadArchiveRequest) GetAnnotations() map[string]string {\n\tif x != nil {\n\t\treturn x.Annotations\n\t}\n\treturn nil\n}\n\nfunc (x *UploadArchiveRequest) GetQuerySets() []*QuerySet {\n\tif x != nil {\n\t\treturn x.QuerySets\n\t}\n\treturn nil\n}\n\nfunc (x *UploadArchiveRequest) GetConfig() *File {\n\tif x != nil {\n\t\treturn x.Config\n\t}\n\treturn nil\n}\n\nfunc (x *UploadArchiveRequest) GetTags() []string {\n\tif x != nil {\n\t\treturn x.Tags\n\t}\n\treturn nil\n}\n\ntype UploadArchiveResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tChecksum []byte `protobuf:\"bytes,1,opt,name=checksum,proto3\" json:\"checksum,omitempty\"`\n}\n\nfunc (x *UploadArchiveResponse) Reset() {\n\t*x = UploadArchiveResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_v1_quickdb_proto_msgTypes[7]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *UploadArchiveResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*UploadArchiveResponse) ProtoMessage() {}\n\nfunc (x *UploadArchiveResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_v1_quickdb_proto_msgTypes[7]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use UploadArchiveResponse.ProtoReflect.Descriptor instead.\nfunc (*UploadArchiveResponse) Descriptor() ([]byte, []int) {\n\treturn file_v1_quickdb_proto_rawDescGZIP(), []int{7}\n}\n\nfunc (x *UploadArchiveResponse) GetChecksum() []byte {\n\tif x != nil {\n\t\treturn x.Checksum\n\t}\n\treturn nil\n}\n\ntype VerifyQuerySetsRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tSqlcVersion string            `protobuf:\"bytes,1,opt,name=sqlc_version,json=sqlcVersion,proto3\" json:\"sqlc_version,omitempty\"`\n\tQuerySets   []*QuerySet       `protobuf:\"bytes,2,rep,name=query_sets,json=querySets,proto3\" json:\"query_sets,omitempty\"`\n\tConfig      *File             `protobuf:\"bytes,3,opt,name=config,proto3\" json:\"config,omitempty\"`\n\tAnnotations map[string]string `protobuf:\"bytes,4,rep,name=annotations,proto3\" json:\"annotations,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"bytes,2,opt,name=value,proto3\"`\n\tAgainst     string            `protobuf:\"bytes,5,opt,name=against,proto3\" json:\"against,omitempty\"`\n}\n\nfunc (x *VerifyQuerySetsRequest) Reset() {\n\t*x = VerifyQuerySetsRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_v1_quickdb_proto_msgTypes[8]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *VerifyQuerySetsRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*VerifyQuerySetsRequest) ProtoMessage() {}\n\nfunc (x *VerifyQuerySetsRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_v1_quickdb_proto_msgTypes[8]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use VerifyQuerySetsRequest.ProtoReflect.Descriptor instead.\nfunc (*VerifyQuerySetsRequest) Descriptor() ([]byte, []int) {\n\treturn file_v1_quickdb_proto_rawDescGZIP(), []int{8}\n}\n\nfunc (x *VerifyQuerySetsRequest) GetSqlcVersion() string {\n\tif x != nil {\n\t\treturn x.SqlcVersion\n\t}\n\treturn \"\"\n}\n\nfunc (x *VerifyQuerySetsRequest) GetQuerySets() []*QuerySet {\n\tif x != nil {\n\t\treturn x.QuerySets\n\t}\n\treturn nil\n}\n\nfunc (x *VerifyQuerySetsRequest) GetConfig() *File {\n\tif x != nil {\n\t\treturn x.Config\n\t}\n\treturn nil\n}\n\nfunc (x *VerifyQuerySetsRequest) GetAnnotations() map[string]string {\n\tif x != nil {\n\t\treturn x.Annotations\n\t}\n\treturn nil\n}\n\nfunc (x *VerifyQuerySetsRequest) GetAgainst() string {\n\tif x != nil {\n\t\treturn x.Against\n\t}\n\treturn \"\"\n}\n\ntype VerifyQuerySetsResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tErrored bool   `protobuf:\"varint,1,opt,name=errored,proto3\" json:\"errored,omitempty\"`\n\tOutput  string `protobuf:\"bytes,2,opt,name=output,proto3\" json:\"output,omitempty\"`\n\tSummary string `protobuf:\"bytes,3,opt,name=summary,proto3\" json:\"summary,omitempty\"`\n}\n\nfunc (x *VerifyQuerySetsResponse) Reset() {\n\t*x = VerifyQuerySetsResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_v1_quickdb_proto_msgTypes[9]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *VerifyQuerySetsResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*VerifyQuerySetsResponse) ProtoMessage() {}\n\nfunc (x *VerifyQuerySetsResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_v1_quickdb_proto_msgTypes[9]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use VerifyQuerySetsResponse.ProtoReflect.Descriptor instead.\nfunc (*VerifyQuerySetsResponse) Descriptor() ([]byte, []int) {\n\treturn file_v1_quickdb_proto_rawDescGZIP(), []int{9}\n}\n\nfunc (x *VerifyQuerySetsResponse) GetErrored() bool {\n\tif x != nil {\n\t\treturn x.Errored\n\t}\n\treturn false\n}\n\nfunc (x *VerifyQuerySetsResponse) GetOutput() string {\n\tif x != nil {\n\t\treturn x.Output\n\t}\n\treturn \"\"\n}\n\nfunc (x *VerifyQuerySetsResponse) GetSummary() string {\n\tif x != nil {\n\t\treturn x.Summary\n\t}\n\treturn \"\"\n}\n\ntype GetQuerySetsRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tTag string `protobuf:\"bytes,1,opt,name=tag,proto3\" json:\"tag,omitempty\"`\n}\n\nfunc (x *GetQuerySetsRequest) Reset() {\n\t*x = GetQuerySetsRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_v1_quickdb_proto_msgTypes[10]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetQuerySetsRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetQuerySetsRequest) ProtoMessage() {}\n\nfunc (x *GetQuerySetsRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_v1_quickdb_proto_msgTypes[10]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetQuerySetsRequest.ProtoReflect.Descriptor instead.\nfunc (*GetQuerySetsRequest) Descriptor() ([]byte, []int) {\n\treturn file_v1_quickdb_proto_rawDescGZIP(), []int{10}\n}\n\nfunc (x *GetQuerySetsRequest) GetTag() string {\n\tif x != nil {\n\t\treturn x.Tag\n\t}\n\treturn \"\"\n}\n\ntype GetQuerySetsResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tQuerySets []*QuerySet `protobuf:\"bytes,1,rep,name=query_sets,json=querySets,proto3\" json:\"query_sets,omitempty\"`\n}\n\nfunc (x *GetQuerySetsResponse) Reset() {\n\t*x = GetQuerySetsResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_v1_quickdb_proto_msgTypes[11]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GetQuerySetsResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GetQuerySetsResponse) ProtoMessage() {}\n\nfunc (x *GetQuerySetsResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_v1_quickdb_proto_msgTypes[11]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GetQuerySetsResponse.ProtoReflect.Descriptor instead.\nfunc (*GetQuerySetsResponse) Descriptor() ([]byte, []int) {\n\treturn file_v1_quickdb_proto_rawDescGZIP(), []int{11}\n}\n\nfunc (x *GetQuerySetsResponse) GetQuerySets() []*QuerySet {\n\tif x != nil {\n\t\treturn x.QuerySets\n\t}\n\treturn nil\n}\n\nvar File_v1_quickdb_proto protoreflect.FileDescriptor\n\nvar file_v1_quickdb_proto_rawDesc = []byte{\n\t0x0a, 0x10, 0x76, 0x31, 0x2f, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x70, 0x72, 0x6f,\n\t0x74, 0x6f, 0x12, 0x1a, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e,\n\t0x64, 0x65, 0x76, 0x2e, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x22, 0x8d,\n\t0x01, 0x0a, 0x1e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x70, 0x68, 0x65, 0x6d, 0x65, 0x72,\n\t0x61, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x6e, 0x67,\n\t0x69, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e,\n\t0x65, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e,\n\t0x0a, 0x0a, 0x6d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x03,\n\t0x28, 0x09, 0x52, 0x0a, 0x6d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x54,\n\t0x0a, 0x1f, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x70, 0x68, 0x65, 0x6d, 0x65, 0x72, 0x61,\n\t0x6c, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,\n\t0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x69, 0x64,\n\t0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65,\n\t0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x69, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x03, 0x75, 0x72, 0x69, 0x22, 0x3f, 0x0a, 0x1c, 0x44, 0x72, 0x6f, 0x70, 0x45, 0x70, 0x68, 0x65,\n\t0x6d, 0x65, 0x72, 0x61, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x52, 0x65, 0x71,\n\t0x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65,\n\t0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x61, 0x74, 0x61, 0x62,\n\t0x61, 0x73, 0x65, 0x49, 0x64, 0x22, 0x1f, 0x0a, 0x1d, 0x44, 0x72, 0x6f, 0x70, 0x45, 0x70, 0x68,\n\t0x65, 0x6d, 0x65, 0x72, 0x61, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x52, 0x65,\n\t0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x36, 0x0a, 0x04, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x12,\n\t0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,\n\t0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x02,\n\t0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x73, 0x22, 0xdf,\n\t0x01, 0x0a, 0x08, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x6e,\n\t0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12,\n\t0x38, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,\n\t0x20, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65,\n\t0x76, 0x2e, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x69, 0x6c,\n\t0x65, 0x52, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x3a, 0x0a, 0x07, 0x71, 0x75, 0x65,\n\t0x72, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x72, 0x65, 0x6d,\n\t0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71, 0x75, 0x69,\n\t0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x07, 0x71, 0x75,\n\t0x65, 0x72, 0x69, 0x65, 0x73, 0x12, 0x49, 0x0a, 0x0f, 0x63, 0x6f, 0x64, 0x65, 0x67, 0x65, 0x6e,\n\t0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20,\n\t0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76,\n\t0x2e, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x69, 0x6c, 0x65,\n\t0x52, 0x0e, 0x63, 0x6f, 0x64, 0x65, 0x67, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,\n\t0x22, 0xe7, 0x03, 0x0a, 0x14, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x41, 0x72, 0x63, 0x68, 0x69,\n\t0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x71, 0x6c,\n\t0x63, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x0b, 0x73, 0x71, 0x6c, 0x63, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x38, 0x0a, 0x06,\n\t0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x72,\n\t0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71,\n\t0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x06,\n\t0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x12, 0x3a, 0x0a, 0x07, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74,\n\t0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65,\n\t0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x64,\n\t0x62, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x07, 0x6f, 0x75, 0x74, 0x70, 0x75,\n\t0x74, 0x73, 0x12, 0x63, 0x0a, 0x0b, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,\n\t0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x41, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65,\n\t0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x64,\n\t0x62, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x41, 0x72, 0x63, 0x68, 0x69,\n\t0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61,\n\t0x74, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0b, 0x61, 0x6e, 0x6e, 0x6f,\n\t0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x43, 0x0a, 0x0a, 0x71, 0x75, 0x65, 0x72, 0x79,\n\t0x5f, 0x73, 0x65, 0x74, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x72, 0x65,\n\t0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71, 0x75,\n\t0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65,\n\t0x74, 0x52, 0x09, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x74, 0x73, 0x12, 0x38, 0x0a, 0x06,\n\t0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x72,\n\t0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71,\n\t0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x06,\n\t0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x61, 0x67, 0x73, 0x18, 0x07,\n\t0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x74, 0x61, 0x67, 0x73, 0x1a, 0x3e, 0x0a, 0x10, 0x41, 0x6e,\n\t0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,\n\t0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,\n\t0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,\n\t0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x33, 0x0a, 0x15, 0x55, 0x70,\n\t0x6c, 0x6f, 0x61, 0x64, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f,\n\t0x6e, 0x73, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x73, 0x75, 0x6d, 0x18,\n\t0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x73, 0x75, 0x6d, 0x22,\n\t0xfb, 0x02, 0x0a, 0x16, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53,\n\t0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x73, 0x71,\n\t0x6c, 0x63, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x0b, 0x73, 0x71, 0x6c, 0x63, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x43, 0x0a,\n\t0x0a, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x73, 0x65, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28,\n\t0x0b, 0x32, 0x24, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e,\n\t0x64, 0x65, 0x76, 0x2e, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x51,\n\t0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x74, 0x52, 0x09, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65,\n\t0x74, 0x73, 0x12, 0x38, 0x0a, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x03, 0x20, 0x01,\n\t0x28, 0x0b, 0x32, 0x20, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63,\n\t0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e,\n\t0x46, 0x69, 0x6c, 0x65, 0x52, 0x06, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x65, 0x0a, 0x0b,\n\t0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28,\n\t0x0b, 0x32, 0x43, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e,\n\t0x64, 0x65, 0x76, 0x2e, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x56,\n\t0x65, 0x72, 0x69, 0x66, 0x79, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65,\n\t0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,\n\t0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0b, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69,\n\t0x6f, 0x6e, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x67, 0x61, 0x69, 0x6e, 0x73, 0x74, 0x18, 0x05,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x67, 0x61, 0x69, 0x6e, 0x73, 0x74, 0x1a, 0x3e, 0x0a,\n\t0x10, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x74, 0x72,\n\t0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,\n\t0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,\n\t0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x65, 0x0a,\n\t0x17, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x74, 0x73,\n\t0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x72, 0x72, 0x6f,\n\t0x72, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x72, 0x72, 0x6f, 0x72,\n\t0x65, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x02, 0x20, 0x01,\n\t0x28, 0x09, 0x52, 0x06, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75,\n\t0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x6d,\n\t0x6d, 0x61, 0x72, 0x79, 0x22, 0x27, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x51, 0x75, 0x65, 0x72, 0x79,\n\t0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x74,\n\t0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x61, 0x67, 0x22, 0x5b, 0x0a,\n\t0x14, 0x47, 0x65, 0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73,\n\t0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x43, 0x0a, 0x0a, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x73,\n\t0x65, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x72, 0x65, 0x6d, 0x6f,\n\t0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71, 0x75, 0x69, 0x63,\n\t0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x74, 0x52,\n\t0x09, 0x71, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x74, 0x73, 0x32, 0x90, 0x05, 0x0a, 0x05, 0x51,\n\t0x75, 0x69, 0x63, 0x6b, 0x12, 0x92, 0x01, 0x0a, 0x17, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45,\n\t0x70, 0x68, 0x65, 0x6d, 0x65, 0x72, 0x61, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65,\n\t0x12, 0x3a, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64,\n\t0x65, 0x76, 0x2e, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72,\n\t0x65, 0x61, 0x74, 0x65, 0x45, 0x70, 0x68, 0x65, 0x6d, 0x65, 0x72, 0x61, 0x6c, 0x44, 0x61, 0x74,\n\t0x61, 0x62, 0x61, 0x73, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x72,\n\t0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71,\n\t0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,\n\t0x45, 0x70, 0x68, 0x65, 0x6d, 0x65, 0x72, 0x61, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73,\n\t0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x8c, 0x01, 0x0a, 0x15, 0x44, 0x72,\n\t0x6f, 0x70, 0x45, 0x70, 0x68, 0x65, 0x6d, 0x65, 0x72, 0x61, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x62,\n\t0x61, 0x73, 0x65, 0x12, 0x38, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c,\n\t0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31,\n\t0x2e, 0x44, 0x72, 0x6f, 0x70, 0x45, 0x70, 0x68, 0x65, 0x6d, 0x65, 0x72, 0x61, 0x6c, 0x44, 0x61,\n\t0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e,\n\t0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e,\n\t0x71, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x72, 0x6f, 0x70, 0x45,\n\t0x70, 0x68, 0x65, 0x6d, 0x65, 0x72, 0x61, 0x6c, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65,\n\t0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x74, 0x0a, 0x0d, 0x55, 0x70, 0x6c, 0x6f,\n\t0x61, 0x64, 0x41, 0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x12, 0x30, 0x2e, 0x72, 0x65, 0x6d, 0x6f,\n\t0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71, 0x75, 0x69, 0x63,\n\t0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x41, 0x72, 0x63,\n\t0x68, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x72, 0x65,\n\t0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71, 0x75,\n\t0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x41,\n\t0x72, 0x63, 0x68, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x7a,\n\t0x0a, 0x0f, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x74,\n\t0x73, 0x12, 0x32, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e,\n\t0x64, 0x65, 0x76, 0x2e, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x56,\n\t0x65, 0x72, 0x69, 0x66, 0x79, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65,\n\t0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x33, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73,\n\t0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e,\n\t0x76, 0x31, 0x2e, 0x56, 0x65, 0x72, 0x69, 0x66, 0x79, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65,\n\t0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x71, 0x0a, 0x0c, 0x47, 0x65,\n\t0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x53, 0x65, 0x74, 0x73, 0x12, 0x2f, 0x2e, 0x72, 0x65, 0x6d,\n\t0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71, 0x75, 0x69,\n\t0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x51, 0x75, 0x65, 0x72, 0x79,\n\t0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x30, 0x2e, 0x72, 0x65,\n\t0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71, 0x75,\n\t0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x51, 0x75, 0x65, 0x72,\n\t0x79, 0x53, 0x65, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0xeb, 0x01,\n\t0x0a, 0x1e, 0x63, 0x6f, 0x6d, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c,\n\t0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x2e, 0x76, 0x31,\n\t0x42, 0x0c, 0x51, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,\n\t0x5a, 0x2e, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x71, 0x6c,\n\t0x63, 0x2d, 0x64, 0x65, 0x76, 0x2f, 0x73, 0x71, 0x6c, 0x63, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72,\n\t0x6e, 0x61, 0x6c, 0x2f, 0x76, 0x31, 0x3b, 0x71, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x76, 0x31,\n\t0xa2, 0x02, 0x04, 0x52, 0x53, 0x44, 0x51, 0xaa, 0x02, 0x1a, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65,\n\t0x2e, 0x53, 0x71, 0x6c, 0x63, 0x2e, 0x44, 0x65, 0x76, 0x2e, 0x51, 0x75, 0x69, 0x63, 0x6b, 0x64,\n\t0x62, 0x2e, 0x56, 0x31, 0xca, 0x02, 0x1a, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5c, 0x53, 0x71,\n\t0x6c, 0x63, 0x5c, 0x44, 0x65, 0x76, 0x5c, 0x51, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x5c, 0x56,\n\t0x31, 0xe2, 0x02, 0x26, 0x52, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5c, 0x53, 0x71, 0x6c, 0x63, 0x5c,\n\t0x44, 0x65, 0x76, 0x5c, 0x51, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x5c, 0x56, 0x31, 0x5c, 0x47,\n\t0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x1e, 0x52, 0x65, 0x6d,\n\t0x6f, 0x74, 0x65, 0x3a, 0x3a, 0x53, 0x71, 0x6c, 0x63, 0x3a, 0x3a, 0x44, 0x65, 0x76, 0x3a, 0x3a,\n\t0x51, 0x75, 0x69, 0x63, 0x6b, 0x64, 0x62, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f,\n\t0x74, 0x6f, 0x33,\n}\n\nvar (\n\tfile_v1_quickdb_proto_rawDescOnce sync.Once\n\tfile_v1_quickdb_proto_rawDescData = file_v1_quickdb_proto_rawDesc\n)\n\nfunc file_v1_quickdb_proto_rawDescGZIP() []byte {\n\tfile_v1_quickdb_proto_rawDescOnce.Do(func() {\n\t\tfile_v1_quickdb_proto_rawDescData = protoimpl.X.CompressGZIP(file_v1_quickdb_proto_rawDescData)\n\t})\n\treturn file_v1_quickdb_proto_rawDescData\n}\n\nvar file_v1_quickdb_proto_msgTypes = make([]protoimpl.MessageInfo, 14)\nvar file_v1_quickdb_proto_goTypes = []interface{}{\n\t(*CreateEphemeralDatabaseRequest)(nil),  // 0: remote.sqlc.dev.quickdb.v1.CreateEphemeralDatabaseRequest\n\t(*CreateEphemeralDatabaseResponse)(nil), // 1: remote.sqlc.dev.quickdb.v1.CreateEphemeralDatabaseResponse\n\t(*DropEphemeralDatabaseRequest)(nil),    // 2: remote.sqlc.dev.quickdb.v1.DropEphemeralDatabaseRequest\n\t(*DropEphemeralDatabaseResponse)(nil),   // 3: remote.sqlc.dev.quickdb.v1.DropEphemeralDatabaseResponse\n\t(*File)(nil),                            // 4: remote.sqlc.dev.quickdb.v1.File\n\t(*QuerySet)(nil),                        // 5: remote.sqlc.dev.quickdb.v1.QuerySet\n\t(*UploadArchiveRequest)(nil),            // 6: remote.sqlc.dev.quickdb.v1.UploadArchiveRequest\n\t(*UploadArchiveResponse)(nil),           // 7: remote.sqlc.dev.quickdb.v1.UploadArchiveResponse\n\t(*VerifyQuerySetsRequest)(nil),          // 8: remote.sqlc.dev.quickdb.v1.VerifyQuerySetsRequest\n\t(*VerifyQuerySetsResponse)(nil),         // 9: remote.sqlc.dev.quickdb.v1.VerifyQuerySetsResponse\n\t(*GetQuerySetsRequest)(nil),             // 10: remote.sqlc.dev.quickdb.v1.GetQuerySetsRequest\n\t(*GetQuerySetsResponse)(nil),            // 11: remote.sqlc.dev.quickdb.v1.GetQuerySetsResponse\n\tnil,                                     // 12: remote.sqlc.dev.quickdb.v1.UploadArchiveRequest.AnnotationsEntry\n\tnil,                                     // 13: remote.sqlc.dev.quickdb.v1.VerifyQuerySetsRequest.AnnotationsEntry\n}\nvar file_v1_quickdb_proto_depIdxs = []int32{\n\t4,  // 0: remote.sqlc.dev.quickdb.v1.QuerySet.schema:type_name -> remote.sqlc.dev.quickdb.v1.File\n\t4,  // 1: remote.sqlc.dev.quickdb.v1.QuerySet.queries:type_name -> remote.sqlc.dev.quickdb.v1.File\n\t4,  // 2: remote.sqlc.dev.quickdb.v1.QuerySet.codegen_request:type_name -> remote.sqlc.dev.quickdb.v1.File\n\t4,  // 3: remote.sqlc.dev.quickdb.v1.UploadArchiveRequest.inputs:type_name -> remote.sqlc.dev.quickdb.v1.File\n\t4,  // 4: remote.sqlc.dev.quickdb.v1.UploadArchiveRequest.outputs:type_name -> remote.sqlc.dev.quickdb.v1.File\n\t12, // 5: remote.sqlc.dev.quickdb.v1.UploadArchiveRequest.annotations:type_name -> remote.sqlc.dev.quickdb.v1.UploadArchiveRequest.AnnotationsEntry\n\t5,  // 6: remote.sqlc.dev.quickdb.v1.UploadArchiveRequest.query_sets:type_name -> remote.sqlc.dev.quickdb.v1.QuerySet\n\t4,  // 7: remote.sqlc.dev.quickdb.v1.UploadArchiveRequest.config:type_name -> remote.sqlc.dev.quickdb.v1.File\n\t5,  // 8: remote.sqlc.dev.quickdb.v1.VerifyQuerySetsRequest.query_sets:type_name -> remote.sqlc.dev.quickdb.v1.QuerySet\n\t4,  // 9: remote.sqlc.dev.quickdb.v1.VerifyQuerySetsRequest.config:type_name -> remote.sqlc.dev.quickdb.v1.File\n\t13, // 10: remote.sqlc.dev.quickdb.v1.VerifyQuerySetsRequest.annotations:type_name -> remote.sqlc.dev.quickdb.v1.VerifyQuerySetsRequest.AnnotationsEntry\n\t5,  // 11: remote.sqlc.dev.quickdb.v1.GetQuerySetsResponse.query_sets:type_name -> remote.sqlc.dev.quickdb.v1.QuerySet\n\t0,  // 12: remote.sqlc.dev.quickdb.v1.Quick.CreateEphemeralDatabase:input_type -> remote.sqlc.dev.quickdb.v1.CreateEphemeralDatabaseRequest\n\t2,  // 13: remote.sqlc.dev.quickdb.v1.Quick.DropEphemeralDatabase:input_type -> remote.sqlc.dev.quickdb.v1.DropEphemeralDatabaseRequest\n\t6,  // 14: remote.sqlc.dev.quickdb.v1.Quick.UploadArchive:input_type -> remote.sqlc.dev.quickdb.v1.UploadArchiveRequest\n\t8,  // 15: remote.sqlc.dev.quickdb.v1.Quick.VerifyQuerySets:input_type -> remote.sqlc.dev.quickdb.v1.VerifyQuerySetsRequest\n\t10, // 16: remote.sqlc.dev.quickdb.v1.Quick.GetQuerySets:input_type -> remote.sqlc.dev.quickdb.v1.GetQuerySetsRequest\n\t1,  // 17: remote.sqlc.dev.quickdb.v1.Quick.CreateEphemeralDatabase:output_type -> remote.sqlc.dev.quickdb.v1.CreateEphemeralDatabaseResponse\n\t3,  // 18: remote.sqlc.dev.quickdb.v1.Quick.DropEphemeralDatabase:output_type -> remote.sqlc.dev.quickdb.v1.DropEphemeralDatabaseResponse\n\t7,  // 19: remote.sqlc.dev.quickdb.v1.Quick.UploadArchive:output_type -> remote.sqlc.dev.quickdb.v1.UploadArchiveResponse\n\t9,  // 20: remote.sqlc.dev.quickdb.v1.Quick.VerifyQuerySets:output_type -> remote.sqlc.dev.quickdb.v1.VerifyQuerySetsResponse\n\t11, // 21: remote.sqlc.dev.quickdb.v1.Quick.GetQuerySets:output_type -> remote.sqlc.dev.quickdb.v1.GetQuerySetsResponse\n\t17, // [17:22] is the sub-list for method output_type\n\t12, // [12:17] is the sub-list for method input_type\n\t12, // [12:12] is the sub-list for extension type_name\n\t12, // [12:12] is the sub-list for extension extendee\n\t0,  // [0:12] is the sub-list for field type_name\n}\n\nfunc init() { file_v1_quickdb_proto_init() }\nfunc file_v1_quickdb_proto_init() {\n\tif File_v1_quickdb_proto != nil {\n\t\treturn\n\t}\n\tif !protoimpl.UnsafeEnabled {\n\t\tfile_v1_quickdb_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CreateEphemeralDatabaseRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_v1_quickdb_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*CreateEphemeralDatabaseResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_v1_quickdb_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*DropEphemeralDatabaseRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_v1_quickdb_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*DropEphemeralDatabaseResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_v1_quickdb_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*File); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_v1_quickdb_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*QuerySet); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_v1_quickdb_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*UploadArchiveRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_v1_quickdb_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*UploadArchiveResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_v1_quickdb_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*VerifyQuerySetsRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_v1_quickdb_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*VerifyQuerySetsResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_v1_quickdb_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetQuerySetsRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_v1_quickdb_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GetQuerySetsResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t}\n\ttype x struct{}\n\tout := protoimpl.TypeBuilder{\n\t\tFile: protoimpl.DescBuilder{\n\t\t\tGoPackagePath: reflect.TypeOf(x{}).PkgPath(),\n\t\t\tRawDescriptor: file_v1_quickdb_proto_rawDesc,\n\t\t\tNumEnums:      0,\n\t\t\tNumMessages:   14,\n\t\t\tNumExtensions: 0,\n\t\t\tNumServices:   1,\n\t\t},\n\t\tGoTypes:           file_v1_quickdb_proto_goTypes,\n\t\tDependencyIndexes: file_v1_quickdb_proto_depIdxs,\n\t\tMessageInfos:      file_v1_quickdb_proto_msgTypes,\n\t}.Build()\n\tFile_v1_quickdb_proto = out.File\n\tfile_v1_quickdb_proto_rawDesc = nil\n\tfile_v1_quickdb_proto_goTypes = nil\n\tfile_v1_quickdb_proto_depIdxs = nil\n}\n"
  },
  {
    "path": "internal/quickdb/v1/quickdb_grpc.pb.go",
    "content": "// Code generated by protoc-gen-go-grpc. DO NOT EDIT.\n// versions:\n// - protoc-gen-go-grpc v1.3.0\n// - protoc             (unknown)\n// source: v1/quickdb.proto\n\npackage quickdbv1\n\nimport (\n\tcontext \"context\"\n\tgrpc \"google.golang.org/grpc\"\n\tcodes \"google.golang.org/grpc/codes\"\n\tstatus \"google.golang.org/grpc/status\"\n)\n\n// This is a compile-time assertion to ensure that this generated file\n// is compatible with the grpc package it is being compiled against.\n// Requires gRPC-Go v1.32.0 or later.\nconst _ = grpc.SupportPackageIsVersion7\n\nconst (\n\tQuick_CreateEphemeralDatabase_FullMethodName = \"/remote.sqlc.dev.quickdb.v1.Quick/CreateEphemeralDatabase\"\n\tQuick_DropEphemeralDatabase_FullMethodName   = \"/remote.sqlc.dev.quickdb.v1.Quick/DropEphemeralDatabase\"\n\tQuick_UploadArchive_FullMethodName           = \"/remote.sqlc.dev.quickdb.v1.Quick/UploadArchive\"\n\tQuick_VerifyQuerySets_FullMethodName         = \"/remote.sqlc.dev.quickdb.v1.Quick/VerifyQuerySets\"\n\tQuick_GetQuerySets_FullMethodName            = \"/remote.sqlc.dev.quickdb.v1.Quick/GetQuerySets\"\n)\n\n// QuickClient is the client API for Quick service.\n//\n// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.\ntype QuickClient interface {\n\tCreateEphemeralDatabase(ctx context.Context, in *CreateEphemeralDatabaseRequest, opts ...grpc.CallOption) (*CreateEphemeralDatabaseResponse, error)\n\tDropEphemeralDatabase(ctx context.Context, in *DropEphemeralDatabaseRequest, opts ...grpc.CallOption) (*DropEphemeralDatabaseResponse, error)\n\tUploadArchive(ctx context.Context, in *UploadArchiveRequest, opts ...grpc.CallOption) (*UploadArchiveResponse, error)\n\tVerifyQuerySets(ctx context.Context, in *VerifyQuerySetsRequest, opts ...grpc.CallOption) (*VerifyQuerySetsResponse, error)\n\tGetQuerySets(ctx context.Context, in *GetQuerySetsRequest, opts ...grpc.CallOption) (*GetQuerySetsResponse, error)\n}\n\ntype quickClient struct {\n\tcc grpc.ClientConnInterface\n}\n\nfunc NewQuickClient(cc grpc.ClientConnInterface) QuickClient {\n\treturn &quickClient{cc}\n}\n\nfunc (c *quickClient) CreateEphemeralDatabase(ctx context.Context, in *CreateEphemeralDatabaseRequest, opts ...grpc.CallOption) (*CreateEphemeralDatabaseResponse, error) {\n\tout := new(CreateEphemeralDatabaseResponse)\n\terr := c.cc.Invoke(ctx, Quick_CreateEphemeralDatabase_FullMethodName, in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *quickClient) DropEphemeralDatabase(ctx context.Context, in *DropEphemeralDatabaseRequest, opts ...grpc.CallOption) (*DropEphemeralDatabaseResponse, error) {\n\tout := new(DropEphemeralDatabaseResponse)\n\terr := c.cc.Invoke(ctx, Quick_DropEphemeralDatabase_FullMethodName, in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *quickClient) UploadArchive(ctx context.Context, in *UploadArchiveRequest, opts ...grpc.CallOption) (*UploadArchiveResponse, error) {\n\tout := new(UploadArchiveResponse)\n\terr := c.cc.Invoke(ctx, Quick_UploadArchive_FullMethodName, in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *quickClient) VerifyQuerySets(ctx context.Context, in *VerifyQuerySetsRequest, opts ...grpc.CallOption) (*VerifyQuerySetsResponse, error) {\n\tout := new(VerifyQuerySetsResponse)\n\terr := c.cc.Invoke(ctx, Quick_VerifyQuerySets_FullMethodName, in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\nfunc (c *quickClient) GetQuerySets(ctx context.Context, in *GetQuerySetsRequest, opts ...grpc.CallOption) (*GetQuerySetsResponse, error) {\n\tout := new(GetQuerySetsResponse)\n\terr := c.cc.Invoke(ctx, Quick_GetQuerySets_FullMethodName, in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\n// QuickServer is the server API for Quick service.\n// All implementations must embed UnimplementedQuickServer\n// for forward compatibility\ntype QuickServer interface {\n\tCreateEphemeralDatabase(context.Context, *CreateEphemeralDatabaseRequest) (*CreateEphemeralDatabaseResponse, error)\n\tDropEphemeralDatabase(context.Context, *DropEphemeralDatabaseRequest) (*DropEphemeralDatabaseResponse, error)\n\tUploadArchive(context.Context, *UploadArchiveRequest) (*UploadArchiveResponse, error)\n\tVerifyQuerySets(context.Context, *VerifyQuerySetsRequest) (*VerifyQuerySetsResponse, error)\n\tGetQuerySets(context.Context, *GetQuerySetsRequest) (*GetQuerySetsResponse, error)\n\tmustEmbedUnimplementedQuickServer()\n}\n\n// UnimplementedQuickServer must be embedded to have forward compatible implementations.\ntype UnimplementedQuickServer struct {\n}\n\nfunc (UnimplementedQuickServer) CreateEphemeralDatabase(context.Context, *CreateEphemeralDatabaseRequest) (*CreateEphemeralDatabaseResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method CreateEphemeralDatabase not implemented\")\n}\nfunc (UnimplementedQuickServer) DropEphemeralDatabase(context.Context, *DropEphemeralDatabaseRequest) (*DropEphemeralDatabaseResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method DropEphemeralDatabase not implemented\")\n}\nfunc (UnimplementedQuickServer) UploadArchive(context.Context, *UploadArchiveRequest) (*UploadArchiveResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method UploadArchive not implemented\")\n}\nfunc (UnimplementedQuickServer) VerifyQuerySets(context.Context, *VerifyQuerySetsRequest) (*VerifyQuerySetsResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method VerifyQuerySets not implemented\")\n}\nfunc (UnimplementedQuickServer) GetQuerySets(context.Context, *GetQuerySetsRequest) (*GetQuerySetsResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method GetQuerySets not implemented\")\n}\nfunc (UnimplementedQuickServer) mustEmbedUnimplementedQuickServer() {}\n\n// UnsafeQuickServer may be embedded to opt out of forward compatibility for this service.\n// Use of this interface is not recommended, as added methods to QuickServer will\n// result in compilation errors.\ntype UnsafeQuickServer interface {\n\tmustEmbedUnimplementedQuickServer()\n}\n\nfunc RegisterQuickServer(s grpc.ServiceRegistrar, srv QuickServer) {\n\ts.RegisterService(&Quick_ServiceDesc, srv)\n}\n\nfunc _Quick_CreateEphemeralDatabase_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(CreateEphemeralDatabaseRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(QuickServer).CreateEphemeralDatabase(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: Quick_CreateEphemeralDatabase_FullMethodName,\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(QuickServer).CreateEphemeralDatabase(ctx, req.(*CreateEphemeralDatabaseRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _Quick_DropEphemeralDatabase_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(DropEphemeralDatabaseRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(QuickServer).DropEphemeralDatabase(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: Quick_DropEphemeralDatabase_FullMethodName,\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(QuickServer).DropEphemeralDatabase(ctx, req.(*DropEphemeralDatabaseRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _Quick_UploadArchive_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(UploadArchiveRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(QuickServer).UploadArchive(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: Quick_UploadArchive_FullMethodName,\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(QuickServer).UploadArchive(ctx, req.(*UploadArchiveRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _Quick_VerifyQuerySets_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(VerifyQuerySetsRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(QuickServer).VerifyQuerySets(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: Quick_VerifyQuerySets_FullMethodName,\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(QuickServer).VerifyQuerySets(ctx, req.(*VerifyQuerySetsRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\nfunc _Quick_GetQuerySets_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(GetQuerySetsRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(QuickServer).GetQuerySets(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: Quick_GetQuerySets_FullMethodName,\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(QuickServer).GetQuerySets(ctx, req.(*GetQuerySetsRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\n// Quick_ServiceDesc is the grpc.ServiceDesc for Quick service.\n// It's only intended for direct use with grpc.RegisterService,\n// and not to be introspected or modified (even as a copy)\nvar Quick_ServiceDesc = grpc.ServiceDesc{\n\tServiceName: \"remote.sqlc.dev.quickdb.v1.Quick\",\n\tHandlerType: (*QuickServer)(nil),\n\tMethods: []grpc.MethodDesc{\n\t\t{\n\t\t\tMethodName: \"CreateEphemeralDatabase\",\n\t\t\tHandler:    _Quick_CreateEphemeralDatabase_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"DropEphemeralDatabase\",\n\t\t\tHandler:    _Quick_DropEphemeralDatabase_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"UploadArchive\",\n\t\t\tHandler:    _Quick_UploadArchive_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"VerifyQuerySets\",\n\t\t\tHandler:    _Quick_VerifyQuerySets_Handler,\n\t\t},\n\t\t{\n\t\t\tMethodName: \"GetQuerySets\",\n\t\t\tHandler:    _Quick_GetQuerySets_Handler,\n\t\t},\n\t},\n\tStreams:  []grpc.StreamDesc{},\n\tMetadata: \"v1/quickdb.proto\",\n}\n"
  },
  {
    "path": "internal/remote/gen.pb.go",
    "content": "// Code generated by protoc-gen-go. DO NOT EDIT.\n// versions:\n// \tprotoc-gen-go v1.28.0\n// \tprotoc        v3.21.0\n// source: internal/remote/gen.proto\n\npackage remote\n\nimport (\n\tprotoreflect \"google.golang.org/protobuf/reflect/protoreflect\"\n\tprotoimpl \"google.golang.org/protobuf/runtime/protoimpl\"\n\treflect \"reflect\"\n\tsync \"sync\"\n)\n\nconst (\n\t// Verify that this generated code is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)\n\t// Verify that runtime/protoimpl is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)\n)\n\ntype GenerateRequest struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tVersion string  `protobuf:\"bytes,1,opt,name=version,proto3\" json:\"version,omitempty\"`\n\tInputs  []*File `protobuf:\"bytes,2,rep,name=inputs,proto3\" json:\"inputs,omitempty\"`\n}\n\nfunc (x *GenerateRequest) Reset() {\n\t*x = GenerateRequest{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_internal_remote_gen_proto_msgTypes[0]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GenerateRequest) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GenerateRequest) ProtoMessage() {}\n\nfunc (x *GenerateRequest) ProtoReflect() protoreflect.Message {\n\tmi := &file_internal_remote_gen_proto_msgTypes[0]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GenerateRequest.ProtoReflect.Descriptor instead.\nfunc (*GenerateRequest) Descriptor() ([]byte, []int) {\n\treturn file_internal_remote_gen_proto_rawDescGZIP(), []int{0}\n}\n\nfunc (x *GenerateRequest) GetVersion() string {\n\tif x != nil {\n\t\treturn x.Version\n\t}\n\treturn \"\"\n}\n\nfunc (x *GenerateRequest) GetInputs() []*File {\n\tif x != nil {\n\t\treturn x.Inputs\n\t}\n\treturn nil\n}\n\ntype GenerateResponse struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tOutputs  []*File `protobuf:\"bytes,1,rep,name=outputs,proto3\" json:\"outputs,omitempty\"`\n\tExitCode int64   `protobuf:\"varint,2,opt,name=exit_code,json=exitCode,proto3\" json:\"exit_code,omitempty\"`\n\tStdout   []byte  `protobuf:\"bytes,3,opt,name=stdout,proto3\" json:\"stdout,omitempty\"`\n\tStderr   []byte  `protobuf:\"bytes,4,opt,name=stderr,proto3\" json:\"stderr,omitempty\"`\n}\n\nfunc (x *GenerateResponse) Reset() {\n\t*x = GenerateResponse{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_internal_remote_gen_proto_msgTypes[1]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *GenerateResponse) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*GenerateResponse) ProtoMessage() {}\n\nfunc (x *GenerateResponse) ProtoReflect() protoreflect.Message {\n\tmi := &file_internal_remote_gen_proto_msgTypes[1]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use GenerateResponse.ProtoReflect.Descriptor instead.\nfunc (*GenerateResponse) Descriptor() ([]byte, []int) {\n\treturn file_internal_remote_gen_proto_rawDescGZIP(), []int{1}\n}\n\nfunc (x *GenerateResponse) GetOutputs() []*File {\n\tif x != nil {\n\t\treturn x.Outputs\n\t}\n\treturn nil\n}\n\nfunc (x *GenerateResponse) GetExitCode() int64 {\n\tif x != nil {\n\t\treturn x.ExitCode\n\t}\n\treturn 0\n}\n\nfunc (x *GenerateResponse) GetStdout() []byte {\n\tif x != nil {\n\t\treturn x.Stdout\n\t}\n\treturn nil\n}\n\nfunc (x *GenerateResponse) GetStderr() []byte {\n\tif x != nil {\n\t\treturn x.Stderr\n\t}\n\treturn nil\n}\n\ntype File struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tPath        string `protobuf:\"bytes,1,opt,name=path,proto3\" json:\"path,omitempty\"`\n\tContentType string `protobuf:\"bytes,2,opt,name=content_type,json=contentType,proto3\" json:\"content_type,omitempty\"`\n\tBytes       []byte `protobuf:\"bytes,3,opt,name=bytes,proto3\" json:\"bytes,omitempty\"`\n}\n\nfunc (x *File) Reset() {\n\t*x = File{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_internal_remote_gen_proto_msgTypes[2]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *File) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*File) ProtoMessage() {}\n\nfunc (x *File) ProtoReflect() protoreflect.Message {\n\tmi := &file_internal_remote_gen_proto_msgTypes[2]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use File.ProtoReflect.Descriptor instead.\nfunc (*File) Descriptor() ([]byte, []int) {\n\treturn file_internal_remote_gen_proto_rawDescGZIP(), []int{2}\n}\n\nfunc (x *File) GetPath() string {\n\tif x != nil {\n\t\treturn x.Path\n\t}\n\treturn \"\"\n}\n\nfunc (x *File) GetContentType() string {\n\tif x != nil {\n\t\treturn x.ContentType\n\t}\n\treturn \"\"\n}\n\nfunc (x *File) GetBytes() []byte {\n\tif x != nil {\n\t\treturn x.Bytes\n\t}\n\treturn nil\n}\n\nvar File_internal_remote_gen_proto protoreflect.FileDescriptor\n\nvar file_internal_remote_gen_proto_rawDesc = []byte{\n\t0x0a, 0x19, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x72, 0x65, 0x6d, 0x6f, 0x74,\n\t0x65, 0x2f, 0x67, 0x65, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x16, 0x72, 0x65, 0x6d,\n\t0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x47, 0x65, 0x6e,\n\t0x2e, 0x76, 0x31, 0x22, 0x61, 0x0a, 0x0f, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52,\n\t0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,\n\t0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,\n\t0x12, 0x34, 0x0a, 0x06, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b,\n\t0x32, 0x1c, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64,\n\t0x65, 0x76, 0x2e, 0x47, 0x65, 0x6e, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x06,\n\t0x69, 0x6e, 0x70, 0x75, 0x74, 0x73, 0x22, 0x97, 0x01, 0x0a, 0x10, 0x47, 0x65, 0x6e, 0x65, 0x72,\n\t0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x36, 0x0a, 0x07, 0x6f,\n\t0x75, 0x74, 0x70, 0x75, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x72,\n\t0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x47,\n\t0x65, 0x6e, 0x2e, 0x76, 0x31, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x07, 0x6f, 0x75, 0x74, 0x70,\n\t0x75, 0x74, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x78, 0x69, 0x74, 0x5f, 0x63, 0x6f, 0x64, 0x65,\n\t0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x65, 0x78, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65,\n\t0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x64, 0x6f, 0x75, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c,\n\t0x52, 0x06, 0x73, 0x74, 0x64, 0x6f, 0x75, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x64, 0x65,\n\t0x72, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x06, 0x73, 0x74, 0x64, 0x65, 0x72, 0x72,\n\t0x22, 0x53, 0x0a, 0x04, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68,\n\t0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x21, 0x0a, 0x0c,\n\t0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01,\n\t0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,\n\t0x14, 0x0a, 0x05, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05,\n\t0x62, 0x79, 0x74, 0x65, 0x73, 0x32, 0x64, 0x0a, 0x03, 0x47, 0x65, 0x6e, 0x12, 0x5d, 0x0a, 0x08,\n\t0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x12, 0x27, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74,\n\t0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e, 0x64, 0x65, 0x76, 0x2e, 0x47, 0x65, 0x6e, 0x2e, 0x76,\n\t0x31, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,\n\t0x74, 0x1a, 0x28, 0x2e, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x2e, 0x73, 0x71, 0x6c, 0x63, 0x2e,\n\t0x64, 0x65, 0x76, 0x2e, 0x47, 0x65, 0x6e, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72,\n\t0x61, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f,\n\t0x74, 0x6f, 0x33,\n}\n\nvar (\n\tfile_internal_remote_gen_proto_rawDescOnce sync.Once\n\tfile_internal_remote_gen_proto_rawDescData = file_internal_remote_gen_proto_rawDesc\n)\n\nfunc file_internal_remote_gen_proto_rawDescGZIP() []byte {\n\tfile_internal_remote_gen_proto_rawDescOnce.Do(func() {\n\t\tfile_internal_remote_gen_proto_rawDescData = protoimpl.X.CompressGZIP(file_internal_remote_gen_proto_rawDescData)\n\t})\n\treturn file_internal_remote_gen_proto_rawDescData\n}\n\nvar file_internal_remote_gen_proto_msgTypes = make([]protoimpl.MessageInfo, 3)\nvar file_internal_remote_gen_proto_goTypes = []interface{}{\n\t(*GenerateRequest)(nil),  // 0: remote.sqlc.dev.Gen.v1.GenerateRequest\n\t(*GenerateResponse)(nil), // 1: remote.sqlc.dev.Gen.v1.GenerateResponse\n\t(*File)(nil),             // 2: remote.sqlc.dev.Gen.v1.File\n}\nvar file_internal_remote_gen_proto_depIdxs = []int32{\n\t2, // 0: remote.sqlc.dev.Gen.v1.GenerateRequest.inputs:type_name -> remote.sqlc.dev.Gen.v1.File\n\t2, // 1: remote.sqlc.dev.Gen.v1.GenerateResponse.outputs:type_name -> remote.sqlc.dev.Gen.v1.File\n\t0, // 2: remote.sqlc.dev.Gen.v1.Gen.Generate:input_type -> remote.sqlc.dev.Gen.v1.GenerateRequest\n\t1, // 3: remote.sqlc.dev.Gen.v1.Gen.Generate:output_type -> remote.sqlc.dev.Gen.v1.GenerateResponse\n\t3, // [3:4] is the sub-list for method output_type\n\t2, // [2:3] is the sub-list for method input_type\n\t2, // [2:2] is the sub-list for extension type_name\n\t2, // [2:2] is the sub-list for extension extendee\n\t0, // [0:2] is the sub-list for field type_name\n}\n\nfunc init() { file_internal_remote_gen_proto_init() }\nfunc file_internal_remote_gen_proto_init() {\n\tif File_internal_remote_gen_proto != nil {\n\t\treturn\n\t}\n\tif !protoimpl.UnsafeEnabled {\n\t\tfile_internal_remote_gen_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GenerateRequest); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_internal_remote_gen_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*GenerateResponse); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_internal_remote_gen_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*File); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t}\n\ttype x struct{}\n\tout := protoimpl.TypeBuilder{\n\t\tFile: protoimpl.DescBuilder{\n\t\t\tGoPackagePath: reflect.TypeOf(x{}).PkgPath(),\n\t\t\tRawDescriptor: file_internal_remote_gen_proto_rawDesc,\n\t\t\tNumEnums:      0,\n\t\t\tNumMessages:   3,\n\t\t\tNumExtensions: 0,\n\t\t\tNumServices:   1,\n\t\t},\n\t\tGoTypes:           file_internal_remote_gen_proto_goTypes,\n\t\tDependencyIndexes: file_internal_remote_gen_proto_depIdxs,\n\t\tMessageInfos:      file_internal_remote_gen_proto_msgTypes,\n\t}.Build()\n\tFile_internal_remote_gen_proto = out.File\n\tfile_internal_remote_gen_proto_rawDesc = nil\n\tfile_internal_remote_gen_proto_goTypes = nil\n\tfile_internal_remote_gen_proto_depIdxs = nil\n}\n"
  },
  {
    "path": "internal/remote/gen.proto",
    "content": "syntax = \"proto3\";\n\npackage remote.sqlc.dev.Gen.v1;\n\nservice Gen {\n  rpc Generate(GenerateRequest) returns (GenerateResponse);\n}\n\nmessage GenerateRequest {\n  string version = 1;\n  repeated File inputs = 2;\n}\n\nmessage GenerateResponse {\n  repeated File outputs = 1;\n  int32 exit_code = 2;\n  bytes stdout = 3;\n  bytes stderr = 4;\n}\n\nmessage File {\n  string path = 1;\n  string content_type = 2;\n  bytes bytes = 3;\n}"
  },
  {
    "path": "internal/remote/gen_grpc.pb.go",
    "content": "// Code generated by protoc-gen-go-grpc. DO NOT EDIT.\n// versions:\n// - protoc-gen-go-grpc v1.2.0\n// - protoc             v3.21.0\n// source: internal/remote/gen.proto\n\npackage remote\n\nimport (\n\tcontext \"context\"\n\tgrpc \"google.golang.org/grpc\"\n\tcodes \"google.golang.org/grpc/codes\"\n\tstatus \"google.golang.org/grpc/status\"\n)\n\n// This is a compile-time assertion to ensure that this generated file\n// is compatible with the grpc package it is being compiled against.\n// Requires gRPC-Go v1.32.0 or later.\nconst _ = grpc.SupportPackageIsVersion7\n\n// GenClient is the client API for Gen service.\n//\n// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.\ntype GenClient interface {\n\tGenerate(ctx context.Context, in *GenerateRequest, opts ...grpc.CallOption) (*GenerateResponse, error)\n}\n\ntype genClient struct {\n\tcc grpc.ClientConnInterface\n}\n\nfunc NewGenClient(cc grpc.ClientConnInterface) GenClient {\n\treturn &genClient{cc}\n}\n\nfunc (c *genClient) Generate(ctx context.Context, in *GenerateRequest, opts ...grpc.CallOption) (*GenerateResponse, error) {\n\tout := new(GenerateResponse)\n\terr := c.cc.Invoke(ctx, \"/remote.sqlc.dev.Gen.v1.Gen/Generate\", in, out, opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn out, nil\n}\n\n// GenServer is the server API for Gen service.\n// All implementations must embed UnimplementedGenServer\n// for forward compatibility\ntype GenServer interface {\n\tGenerate(context.Context, *GenerateRequest) (*GenerateResponse, error)\n\tmustEmbedUnimplementedGenServer()\n}\n\n// UnimplementedGenServer must be embedded to have forward compatible implementations.\ntype UnimplementedGenServer struct {\n}\n\nfunc (UnimplementedGenServer) Generate(context.Context, *GenerateRequest) (*GenerateResponse, error) {\n\treturn nil, status.Errorf(codes.Unimplemented, \"method Generate not implemented\")\n}\nfunc (UnimplementedGenServer) mustEmbedUnimplementedGenServer() {}\n\n// UnsafeGenServer may be embedded to opt out of forward compatibility for this service.\n// Use of this interface is not recommended, as added methods to GenServer will\n// result in compilation errors.\ntype UnsafeGenServer interface {\n\tmustEmbedUnimplementedGenServer()\n}\n\nfunc RegisterGenServer(s grpc.ServiceRegistrar, srv GenServer) {\n\ts.RegisterService(&Gen_ServiceDesc, srv)\n}\n\nfunc _Gen_Generate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {\n\tin := new(GenerateRequest)\n\tif err := dec(in); err != nil {\n\t\treturn nil, err\n\t}\n\tif interceptor == nil {\n\t\treturn srv.(GenServer).Generate(ctx, in)\n\t}\n\tinfo := &grpc.UnaryServerInfo{\n\t\tServer:     srv,\n\t\tFullMethod: \"/remote.sqlc.dev.Gen.v1.Gen/Generate\",\n\t}\n\thandler := func(ctx context.Context, req interface{}) (interface{}, error) {\n\t\treturn srv.(GenServer).Generate(ctx, req.(*GenerateRequest))\n\t}\n\treturn interceptor(ctx, in, info, handler)\n}\n\n// Gen_ServiceDesc is the grpc.ServiceDesc for Gen service.\n// It's only intended for direct use with grpc.RegisterService,\n// and not to be introspected or modified (even as a copy)\nvar Gen_ServiceDesc = grpc.ServiceDesc{\n\tServiceName: \"remote.sqlc.dev.Gen.v1.Gen\",\n\tHandlerType: (*GenServer)(nil),\n\tMethods: []grpc.MethodDesc{\n\t\t{\n\t\t\tMethodName: \"Generate\",\n\t\t\tHandler:    _Gen_Generate_Handler,\n\t\t},\n\t},\n\tStreams:  []grpc.StreamDesc{},\n\tMetadata: \"internal/remote/gen.proto\",\n}\n"
  },
  {
    "path": "internal/remote/rpc.go",
    "content": "package remote\n\nimport (\n\t\"crypto/tls\"\n\n\t\"github.com/riza-io/grpc-go/credentials/basic\"\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/credentials\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/rpc\"\n)\n\nconst defaultHostname = \"remote.sqlc.dev\"\n\nfunc NewClient(cloudConfig config.Cloud) (GenClient, error) {\n\tauthID := cloudConfig.Organization + \"/\" + cloudConfig.Project\n\topts := []grpc.DialOption{\n\t\tgrpc.WithTransportCredentials(credentials.NewTLS(&tls.Config{})),\n\t\tgrpc.WithPerRPCCredentials(basic.NewPerRPCCredentials(authID, cloudConfig.AuthToken)),\n\t\tgrpc.WithUnaryInterceptor(rpc.UnaryInterceptor),\n\t}\n\n\thostname := cloudConfig.Hostname\n\tif hostname == \"\" {\n\t\thostname = defaultHostname\n\t}\n\n\tconn, err := grpc.Dial(hostname+\":443\", opts...)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn NewGenClient(conn), nil\n}\n"
  },
  {
    "path": "internal/rpc/errors.go",
    "content": "package rpc\n\nimport (\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/status\"\n)\n\nconst errMessageUnauthenticated = `rpc authentication failed\n\nYou may be using a sqlc auth token that was created for a different project,\nor your auth token may have expired.`\n\nvar ErrUnauthenticated = status.New(codes.Unauthenticated, errMessageUnauthenticated).Err()\n"
  },
  {
    "path": "internal/rpc/interceptor.go",
    "content": "package rpc\n\nimport (\n\t\"context\"\n\n\t\"google.golang.org/grpc\"\n\t\"google.golang.org/grpc/codes\"\n\t\"google.golang.org/grpc/status\"\n)\n\nfunc UnaryInterceptor(ctx context.Context, method string, req, reply interface{}, cc *grpc.ClientConn, invoker grpc.UnaryInvoker, opts ...grpc.CallOption) error {\n\terr := invoker(ctx, method, req, reply, cc, opts...)\n\n\tswitch status.Convert(err).Code() {\n\tcase codes.OK:\n\t\treturn nil\n\tcase codes.Unauthenticated:\n\t\treturn ErrUnauthenticated\n\tdefault:\n\t\treturn err\n\t}\n}\n"
  },
  {
    "path": "internal/shfmt/shfmt.go",
    "content": "package shfmt\n\nimport (\n\t\"os\"\n\t\"regexp\"\n\t\"strings\"\n)\n\nvar pat = regexp.MustCompile(`\\$\\{[A-Z_]+\\}`)\n\ntype Replacer struct {\n\tenvmap map[string]string\n}\n\nfunc (r *Replacer) Replace(f string) string {\n\treturn pat.ReplaceAllStringFunc(f, func(s string) string {\n\t\ts = strings.TrimPrefix(s, \"${\")\n\t\ts = strings.TrimSuffix(s, \"}\")\n\t\treturn r.envmap[s]\n\t})\n}\n\nfunc NewReplacer(env []string) *Replacer {\n\tr := Replacer{\n\t\tenvmap: map[string]string{},\n\t}\n\tif env == nil {\n\t\tenv = os.Environ()\n\t}\n\tfor _, e := range env {\n\t\tk, v, _ := strings.Cut(e, \"=\")\n\t\tif k == \"SQLC_AUTH_TOKEN\" {\n\t\t\tcontinue\n\t\t}\n\t\tr.envmap[k] = v\n\t}\n\treturn &r\n}\n"
  },
  {
    "path": "internal/shfmt/shfmt_test.go",
    "content": "package shfmt\n\nimport \"testing\"\n\nfunc TestReplace(t *testing.T) {\n\ts := \"POSTGRES_SQL://${PG_USER}:${PG_PASSWORD}@${PG_HOST}:${PG_PORT}/AUTHORS\"\n\tr := NewReplacer([]string{\n\t\t\"PG_USER=user\",\n\t\t\"PG_PASSWORD=password\",\n\t\t\"PG_HOST=host\",\n\t\t\"PG_PORT=port\",\n\t})\n\te := \"POSTGRES_SQL://user:password@host:port/AUTHORS\"\n\tif v := r.Replace(s); v != e {\n\t\tt.Errorf(\"%s != %s\", v, e)\n\t}\n}\n"
  },
  {
    "path": "internal/source/code.go",
    "content": "package source\n\nimport (\n\t\"bufio\"\n\t\"fmt\"\n\t\"sort\"\n\t\"strings\"\n\t\"unicode\"\n)\n\ntype Edit struct {\n\tLocation int\n\tOld      string\n\tNew      string\n\tOldFunc  func(string) int\n}\n\ntype CommentSyntax struct {\n\tDash      bool\n\tHash      bool\n\tSlashStar bool\n}\n\nfunc LineNumber(source string, head int) (int, int) {\n\t// Calculate the true line and column number for a query, ignoring spaces\n\tvar comment bool\n\tvar loc, line, col int\n\tfor i, char := range source {\n\t\tloc += 1\n\t\tcol += 1\n\t\t// TODO: Check bounds\n\t\tif char == '-' && source[i+1] == '-' {\n\t\t\tcomment = true\n\t\t}\n\t\tif char == '\\n' {\n\t\t\tcomment = false\n\t\t\tline += 1\n\t\t\tcol = 0\n\t\t}\n\t\tif loc <= head {\n\t\t\tcontinue\n\t\t}\n\t\tif unicode.IsSpace(char) {\n\t\t\tcontinue\n\t\t}\n\t\tif comment {\n\t\t\tcontinue\n\t\t}\n\t\tbreak\n\t}\n\treturn line + 1, col\n}\n\nfunc Pluck(source string, location, length int) (string, error) {\n\thead := location\n\ttail := location + length\n\treturn source[head:tail], nil\n}\n\nfunc Mutate(raw string, a []Edit) (string, error) {\n\tif len(a) == 0 {\n\t\treturn raw, nil\n\t}\n\n\tsort.Slice(a, func(i, j int) bool { return a[i].Location > a[j].Location })\n\n\ts := raw\n\tfor idx, edit := range a {\n\t\tstart := edit.Location\n\t\tif start > len(s) || start < 0 {\n\t\t\treturn \"\", fmt.Errorf(\"edit start location is out of bounds\")\n\t\t}\n\t\tvar oldLen int\n\t\tif edit.OldFunc != nil {\n\t\t\toldLen = edit.OldFunc(s[start:])\n\t\t} else {\n\t\t\toldLen = len(edit.Old)\n\t\t}\n\n\t\tstop := edit.Location + oldLen\n\t\tif stop > len(s) {\n\t\t\treturn \"\", fmt.Errorf(\"edit stop location is out of bounds\")\n\t\t}\n\n\t\t// If this is not the first edit, (applied backwards), check if\n\t\t// this edit overlaps the previous one (and is therefore a developer error)\n\t\tif idx != 0 {\n\t\t\tprevEdit := a[idx-1]\n\t\t\tif prevEdit.Location < edit.Location+oldLen {\n\t\t\t\treturn \"\", fmt.Errorf(\"2 edits overlap\")\n\t\t\t}\n\t\t}\n\n\t\ts = s[:start] + edit.New + s[stop:]\n\t}\n\treturn s, nil\n}\n\nfunc StripComments(sql string) (string, []string, error) {\n\ts := bufio.NewScanner(strings.NewReader(strings.TrimSpace(sql)))\n\tvar lines, comments []string\n\tfor s.Scan() {\n\t\tt := s.Text()\n\t\tif strings.HasPrefix(t, \"-- name:\") {\n\t\t\tcontinue\n\t\t}\n\t\tif strings.HasPrefix(t, \"/* name:\") && strings.HasSuffix(t, \"*/\") {\n\t\t\tcontinue\n\t\t}\n\t\tif strings.HasPrefix(t, \"# name:\") {\n\t\t\tcontinue\n\t\t}\n\t\tif strings.HasPrefix(t, \"--\") {\n\t\t\tcomments = append(comments, strings.TrimPrefix(t, \"--\"))\n\t\t\tcontinue\n\t\t}\n\t\tif strings.HasPrefix(t, \"/*\") && strings.HasSuffix(t, \"*/\") {\n\t\t\tt = strings.TrimPrefix(t, \"/*\")\n\t\t\tt = strings.TrimSuffix(t, \"*/\")\n\t\t\tcomments = append(comments, t)\n\t\t\tcontinue\n\t\t}\n\t\tif strings.HasPrefix(t, \"#\") {\n\t\t\tcomments = append(comments, strings.TrimPrefix(t, \"#\"))\n\t\t\tcontinue\n\t\t}\n\t\tlines = append(lines, t)\n\t}\n\treturn strings.Join(lines, \"\\n\"), comments, s.Err()\n}\n\nfunc CleanedComments(rawSQL string, cs CommentSyntax) ([]string, error) {\n\ts := bufio.NewScanner(strings.NewReader(strings.TrimSpace(rawSQL)))\n\tvar comments []string\n\tfor s.Scan() {\n\t\tline := s.Text()\n\t\tvar prefix string\n\t\tif strings.HasPrefix(line, \"--\") {\n\t\t\tif !cs.Dash {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tprefix = \"--\"\n\t\t}\n\t\tif strings.HasPrefix(line, \"/*\") {\n\t\t\tif !cs.SlashStar {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tprefix = \"/*\"\n\t\t}\n\t\tif strings.HasPrefix(line, \"#\") {\n\t\t\tif !cs.Hash {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tprefix = \"#\"\n\t\t}\n\t\tif prefix == \"\" {\n\t\t\tcontinue\n\t\t}\n\n\t\trest := line[len(prefix):]\n\t\trest = strings.TrimSuffix(rest, \"*/\")\n\t\tcomments = append(comments, rest)\n\t}\n\treturn comments, s.Err()\n}\n"
  },
  {
    "path": "internal/source/mutate_test.go",
    "content": "package source\n\nimport (\n\t\"fmt\"\n\t\"testing\"\n)\n\n// newEdit is a testing helper for quickly generating Edits\nfunc newEdit(loc int, old, new string) Edit {\n\treturn Edit{Location: loc, Old: old, New: new}\n}\n\n// TestMutateSingle tests almost every possibility of a single edit\nfunc TestMutateSingle(t *testing.T) {\n\ttype test struct {\n\t\tinput    string\n\t\tedit     Edit\n\t\texpected string\n\t}\n\n\ttests := []test{\n\t\t// Simple edits that replace everything\n\t\t{\"\", newEdit(0, \"\", \"\"), \"\"},\n\t\t{\"a\", newEdit(0, \"a\", \"A\"), \"A\"},\n\t\t{\"abcde\", newEdit(0, \"abcde\", \"fghij\"), \"fghij\"},\n\t\t{\"\", newEdit(0, \"\", \"fghij\"), \"fghij\"},\n\t\t{\"abcde\", newEdit(0, \"abcde\", \"\"), \"\"},\n\n\t\t// Edits that start at the very beginning (But don't cover the whole range)\n\t\t{\"abcde\", newEdit(0, \"a\", \"A\"), \"Abcde\"},\n\t\t{\"abcde\", newEdit(0, \"ab\", \"AB\"), \"ABcde\"},\n\t\t{\"abcde\", newEdit(0, \"abc\", \"ABC\"), \"ABCde\"},\n\t\t{\"abcde\", newEdit(0, \"abcd\", \"ABCD\"), \"ABCDe\"},\n\n\t\t// The above repeated, but with different lengths\n\t\t{\"abcde\", newEdit(0, \"a\", \"\"), \"bcde\"},\n\t\t{\"abcde\", newEdit(0, \"ab\", \"A\"), \"Acde\"},\n\t\t{\"abcde\", newEdit(0, \"abc\", \"AB\"), \"ABde\"},\n\t\t{\"abcde\", newEdit(0, \"abcd\", \"AB\"), \"ABe\"},\n\n\t\t// Edits that touch the end (but don't cover the whole range)\n\t\t{\"abcde\", newEdit(4, \"e\", \"E\"), \"abcdE\"},\n\t\t{\"abcde\", newEdit(3, \"de\", \"DE\"), \"abcDE\"},\n\t\t{\"abcde\", newEdit(2, \"cde\", \"CDE\"), \"abCDE\"},\n\t\t{\"abcde\", newEdit(1, \"bcde\", \"BCDE\"), \"aBCDE\"},\n\n\t\t// The above repeated, but with different lengths\n\t\t{\"abcde\", newEdit(4, \"e\", \"\"), \"abcd\"},\n\t\t{\"abcde\", newEdit(3, \"de\", \"D\"), \"abcD\"},\n\t\t{\"abcde\", newEdit(2, \"cde\", \"CD\"), \"abCD\"},\n\t\t{\"abcde\", newEdit(1, \"bcde\", \"BC\"), \"aBC\"},\n\n\t\t// Raw insertions / deletions\n\t\t{\"abcde\", newEdit(0, \"\", \"_\"), \"_abcde\"},\n\t\t{\"abcde\", newEdit(1, \"\", \"_\"), \"a_bcde\"},\n\t\t{\"abcde\", newEdit(2, \"\", \"_\"), \"ab_cde\"},\n\t\t{\"abcde\", newEdit(3, \"\", \"_\"), \"abc_de\"},\n\t\t{\"abcde\", newEdit(4, \"\", \"_\"), \"abcd_e\"},\n\t\t{\"abcde\", newEdit(5, \"\", \"_\"), \"abcde_\"},\n\t}\n\n\torigTests := tests\n\t// Generate the reverse mutations, for every edit - the opposite edit that makes it \"undo\"\n\tfor _, spec := range origTests {\n\t\ttests = append(tests, test{\n\t\t\tinput:    spec.expected,\n\t\t\tedit:     newEdit(spec.edit.Location, spec.edit.New, spec.edit.Old),\n\t\t\texpected: spec.input,\n\t\t})\n\t}\n\n\tfor _, spec := range tests {\n\t\texpected := spec.expected\n\n\t\tactual, err := Mutate(spec.input, []Edit{spec.edit})\n\t\ttestName := fmt.Sprintf(\"Mutate(%s, Edit{%v, %v -> %v})\", spec.input, spec.edit.Location, spec.edit.Old, spec.edit.New)\n\t\tif err != nil {\n\t\t\tt.Errorf(\"%s should not error (%v)\", testName, err)\n\t\t\tcontinue\n\t\t}\n\n\t\tif actual != expected {\n\t\t\tt.Errorf(\"%s expected %v; got %v\", testName, expected, actual)\n\t\t}\n\t}\n}\n\n// TestMutateMulti tests combinations of edits\nfunc TestMutateMulti(t *testing.T) {\n\ttype test struct {\n\t\tinput    string\n\t\tedit1    Edit\n\t\tedit2    Edit\n\t\texpected string\n\t}\n\n\ttests := []test{\n\t\t// Edits that are >1 character from each other\n\t\t{\"abcde\", newEdit(0, \"a\", \"A\"), newEdit(2, \"c\", \"C\"), \"AbCde\"},\n\t\t{\"abcde\", newEdit(0, \"a\", \"A\"), newEdit(2, \"c\", \"C\"), \"AbCde\"},\n\n\t\t// 2 edits bump right up next to each other\n\t\t{\"abcde\", newEdit(0, \"abc\", \"\"), newEdit(3, \"de\", \"DE\"), \"DE\"},\n\t\t{\"abcde\", newEdit(0, \"abc\", \"ABC\"), newEdit(3, \"de\", \"\"), \"ABC\"},\n\t\t{\"abcde\", newEdit(0, \"abc\", \"ABC\"), newEdit(3, \"de\", \"DE\"), \"ABCDE\"},\n\t\t{\"abcde\", newEdit(1, \"b\", \"BB\"), newEdit(2, \"c\", \"CC\"), \"aBBCCde\"},\n\n\t\t// 2 edits bump next to each other, but don't cover the whole string\n\t\t{\"abcdef\", newEdit(1, \"bc\", \"C\"), newEdit(3, \"de\", \"D\"), \"aCDf\"},\n\t\t{\"abcde\", newEdit(1, \"bc\", \"CCCC\"), newEdit(3, \"d\", \"DDD\"), \"aCCCCDDDe\"},\n\n\t\t// lengthening edits\n\t\t{\"abcde\", newEdit(1, \"b\", \"BBBB\"), newEdit(2, \"c\", \"CCCC\"), \"aBBBBCCCCde\"},\n\t}\n\n\torigTests := tests\n\t// Generate the edits in opposite order mutations, source edits should be independent of\n\t// the order the edits are specified\n\tfor _, spec := range origTests {\n\t\ttests = append(tests, test{\n\t\t\tinput:    spec.input,\n\t\t\tedit1:    spec.edit2,\n\t\t\tedit2:    spec.edit1,\n\t\t\texpected: spec.expected,\n\t\t})\n\t}\n\n\tfor _, spec := range tests {\n\t\texpected := spec.expected\n\n\t\tactual, err := Mutate(spec.input, []Edit{spec.edit1, spec.edit2})\n\t\ttestName := fmt.Sprintf(\"Mutate(%s, Edits{(%v, %v -> %v), (%v, %v -> %v)})\", spec.input,\n\t\t\tspec.edit1.Location, spec.edit1.Old, spec.edit1.New,\n\t\t\tspec.edit2.Location, spec.edit2.Old, spec.edit2.New)\n\n\t\tif err != nil {\n\t\t\tt.Errorf(\"%s should not error (%v)\", testName, err)\n\t\t\tcontinue\n\t\t}\n\n\t\tif actual != expected {\n\t\t\tt.Errorf(\"%s expected %v; got %v\", testName, expected, actual)\n\t\t}\n\t}\n}\n\n// TestMutateErrorSingle test errors are generated for trivially incorrect single edits\nfunc TestMutateErrorSingle(t *testing.T) {\n\ttype test struct {\n\t\tinput string\n\t\tedit  Edit\n\t}\n\n\ttests := []test{\n\t\t// old text is longer than input text\n\t\t{\"\", newEdit(0, \"a\", \"A\")},\n\t\t{\"a\", newEdit(0, \"aa\", \"A\")},\n\t\t{\"hello\", newEdit(0, \"hello!\", \"A\")},\n\n\t\t// negative indexes\n\t\t{\"aaa\", newEdit(-1, \"aa\", \"A\")},\n\t\t{\"aaa\", newEdit(-2, \"aa\", \"A\")},\n\t\t{\"aaa\", newEdit(-100, \"aa\", \"A\")},\n\t}\n\n\tfor _, spec := range tests {\n\t\tedit := spec.edit\n\n\t\t_, err := Mutate(spec.input, []Edit{edit})\n\t\ttestName := fmt.Sprintf(\"Mutate(%s, Edit{%v, %v -> %v})\", spec.input, edit.Location, edit.Old, edit.New)\n\t\tif err == nil {\n\t\t\tt.Errorf(\"%s should error (%v)\", testName, err)\n\t\t\tcontinue\n\t\t}\n\t}\n}\n\n// TestMutateErrorMulti tests error that can only happen across multiple errors\nfunc TestMutateErrorMulti(t *testing.T) {\n\ttype test struct {\n\t\tinput string\n\t\tedit1 Edit\n\t\tedit2 Edit\n\t}\n\n\ttests := []test{\n\t\t// These edits overlap each other, and are therefore undefined\n\t\t{\"abcdef\", newEdit(0, \"a\", \"\"), newEdit(0, \"a\", \"A\")},\n\t\t{\"abcdef\", newEdit(0, \"ab\", \"\"), newEdit(1, \"ab\", \"AB\")},\n\t\t{\"abcdef\", newEdit(0, \"abc\", \"\"), newEdit(2, \"abc\", \"ABC\")},\n\n\t\t// the last edit is longer than the string itself\n\t\t{\"abcdef\", newEdit(0, \"abcdefghi\", \"\"), newEdit(2, \"abc\", \"ABC\")},\n\n\t\t// negative indexes\n\t\t{\"abcdef\", newEdit(-1, \"abc\", \"\"), newEdit(3, \"abc\", \"ABC\")},\n\t\t{\"abcdef\", newEdit(0, \"abc\", \"\"), newEdit(-1, \"abc\", \"ABC\")},\n\t}\n\n\tfor _, spec := range tests {\n\t\tactual, err := Mutate(spec.input, []Edit{spec.edit1, spec.edit2})\n\t\ttestName := fmt.Sprintf(\"Mutate(%s, Edits{(%v, %v -> %v), (%v, %v -> %v)})\", spec.input,\n\t\t\tspec.edit1.Location, spec.edit1.Old, spec.edit1.New,\n\t\t\tspec.edit2.Location, spec.edit2.Old, spec.edit2.New)\n\n\t\tif err == nil {\n\t\t\tt.Errorf(\"%s should error, but got (%v)\", testName, actual)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/CLAUDE.md",
    "content": "# AST Package - Claude Code Guide\n\nThis package defines the Abstract Syntax Tree (AST) nodes used by sqlc to represent SQL statements across all supported databases (PostgreSQL, MySQL, SQLite).\n\n## Key Concepts\n\n### Node Interface\nAll AST nodes implement the `Node` interface with:\n- `Pos() int` - returns the source position\n- `Format(buf *TrackedBuffer)` - formats the node back to SQL\n\n### TrackedBuffer\nThe `TrackedBuffer` type (`pg_query.go`) handles SQL formatting with dialect-specific behavior:\n- `astFormat(node Node)` - formats any AST node\n- `join(list *List, sep string)` - joins list items with separator\n- `WriteString(s string)` - writes raw SQL\n- `QuoteIdent(name string)` - quotes identifiers (dialect-specific)\n- `TypeName(ns, name string)` - formats type names (dialect-specific)\n\n### Dialect Interface\nDialect-specific formatting is handled via the `Dialect` interface:\n```go\ntype Dialect interface {\n    QuoteIdent(string) string\n    TypeName(ns, name string) string\n    Param(int) string      // $1 for PostgreSQL, ? for MySQL\n    NamedParam(string) string // @name for PostgreSQL, :name for SQLite\n    Cast(string) string\n}\n```\n\n## Adding New AST Nodes\n\nWhen adding a new AST node type:\n\n1. **Create the node file** (e.g., `variable_expr.go`):\n```go\npackage ast\n\ntype VariableExpr struct {\n    Name     string\n    Location int\n}\n\nfunc (n *VariableExpr) Pos() int {\n    return n.Location\n}\n\nfunc (n *VariableExpr) Format(buf *TrackedBuffer) {\n    if n == nil {\n        return\n    }\n    buf.WriteString(\"@\")\n    buf.WriteString(n.Name)\n}\n```\n\n2. **Add to `astutils/walk.go`** - Add a case in the Walk function:\n```go\ncase *ast.VariableExpr:\n    // Leaf node - no children to traverse\n```\n\n3. **Add to `astutils/rewrite.go`** - Add a case in the Apply function:\n```go\ncase *ast.VariableExpr:\n    // Leaf node - no children to traverse\n```\n\n4. **Update the parser/converter** - In the relevant engine (e.g., `dolphin/convert.go` for MySQL)\n\n## Helper Functions for Format Methods\n\n- `set(node Node) bool` - returns true if node is non-nil and not an empty List\n- `items(list *List) bool` - returns true if list has items\n- `todo(node) Node` - placeholder for unimplemented conversions (returns nil)\n\n## Common Node Types\n\n### Statements\n- `SelectStmt` - SELECT queries with FromClause, WhereClause, etc.\n- `InsertStmt` - INSERT with Relation, Cols, SelectStmt, OnConflictClause\n- `UpdateStmt` - UPDATE with Relations, TargetList, WhereClause\n- `DeleteStmt` - DELETE with Relations, FromClause (for JOINs), Targets\n\n### Expressions\n- `A_Expr` - General expression with operator (e.g., `a + b`, `@param`)\n- `ColumnRef` - Column reference with Fields list\n- `FuncCall` - Function call with Func, Args, aggregation options\n- `TypeCast` - Type cast with Arg and TypeName\n- `ParenExpr` - Parenthesized expression\n- `VariableExpr` - MySQL user variable (e.g., `@user_id`)\n\n### Table References\n- `RangeVar` - Table reference with schema, name, alias\n- `JoinExpr` - JOIN with Larg, Rarg, Jointype, Quals/UsingClause\n\n## MySQL-Specific Nodes\n\n- `VariableExpr` - User variables (`@var`), distinct from sqlc's `@param` syntax\n- `IntervalExpr` - INTERVAL expressions\n- `OnDuplicateKeyUpdate` - MySQL's ON DUPLICATE KEY UPDATE clause\n- `ParenExpr` - Explicit parentheses (TiDB parser wraps expressions)\n\n## Important Distinctions\n\n### MySQL @variable vs sqlc @param\n- MySQL user variables (`@user_id`) use `VariableExpr` - preserved as-is in output\n- sqlc named parameters (`@param`) use `A_Expr` with `@` operator - replaced with `?`\n- The `named.IsParamSign()` function checks for `A_Expr` with `@` operator\n\n### Type Modifiers\n- `TypeName.Typmods` holds type modifiers like `varchar(255)`\n- For MySQL, only populate Typmods for types where length is user-specified:\n  - VARCHAR, CHAR, VARBINARY, BINARY - need length\n  - DATETIME, TIMESTAMP, DATE - internal flen should NOT be output\n"
  },
  {
    "path": "internal/sql/ast/a_array_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype A_ArrayExpr struct {\n\tElements *List\n\tLocation int\n}\n\nfunc (n *A_ArrayExpr) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *A_ArrayExpr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"ARRAY[\")\n\tbuf.join(n.Elements, d, \", \")\n\tbuf.WriteString(\"]\")\n}\n"
  },
  {
    "path": "internal/sql/ast/a_const.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype A_Const struct {\n\tVal      Node\n\tLocation int\n}\n\nfunc (n *A_Const) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *A_Const) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif _, ok := n.Val.(*String); ok {\n\t\tbuf.WriteString(\"'\")\n\t\tbuf.astFormat(n.Val, d)\n\t\tbuf.WriteString(\"'\")\n\t} else {\n\t\tbuf.astFormat(n.Val, d)\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/a_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype A_Expr struct {\n\tKind     A_Expr_Kind\n\tName     *List\n\tLexpr    Node\n\tRexpr    Node\n\tLocation int\n}\n\nfunc (n *A_Expr) Pos() int {\n\treturn n.Location\n}\n\n// isNamedParam returns true if this A_Expr represents a named parameter (@name)\n// and extracts the parameter name if so.\nfunc (n *A_Expr) isNamedParam() (string, bool) {\n\tif n.Name == nil || len(n.Name.Items) != 1 {\n\t\treturn \"\", false\n\t}\n\ts, ok := n.Name.Items[0].(*String)\n\tif !ok || s.Str != \"@\" {\n\t\treturn \"\", false\n\t}\n\tif set(n.Lexpr) || !set(n.Rexpr) {\n\t\treturn \"\", false\n\t}\n\tif nameStr, ok := n.Rexpr.(*String); ok {\n\t\treturn nameStr.Str, true\n\t}\n\treturn \"\", false\n}\n\nfunc (n *A_Expr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\n\t// Check for named parameter first (works regardless of Kind)\n\tif name, ok := n.isNamedParam(); ok {\n\t\tbuf.WriteString(d.NamedParam(name))\n\t\treturn\n\t}\n\n\tswitch n.Kind {\n\tcase A_Expr_Kind_IN:\n\t\tbuf.astFormat(n.Lexpr, d)\n\t\tbuf.WriteString(\" IN (\")\n\t\tbuf.astFormat(n.Rexpr, d)\n\t\tbuf.WriteString(\")\")\n\tcase A_Expr_Kind_LIKE:\n\t\tbuf.astFormat(n.Lexpr, d)\n\t\tbuf.WriteString(\" LIKE \")\n\t\tbuf.astFormat(n.Rexpr, d)\n\tcase A_Expr_Kind_ILIKE:\n\t\tbuf.astFormat(n.Lexpr, d)\n\t\tbuf.WriteString(\" ILIKE \")\n\t\tbuf.astFormat(n.Rexpr, d)\n\tcase A_Expr_Kind_SIMILAR:\n\t\tbuf.astFormat(n.Lexpr, d)\n\t\tbuf.WriteString(\" SIMILAR TO \")\n\t\tbuf.astFormat(n.Rexpr, d)\n\tcase A_Expr_Kind_BETWEEN:\n\t\tbuf.astFormat(n.Lexpr, d)\n\t\tbuf.WriteString(\" BETWEEN \")\n\t\tif l, ok := n.Rexpr.(*List); ok && len(l.Items) == 2 {\n\t\t\tbuf.astFormat(l.Items[0], d)\n\t\t\tbuf.WriteString(\" AND \")\n\t\t\tbuf.astFormat(l.Items[1], d)\n\t\t}\n\tcase A_Expr_Kind_NOT_BETWEEN:\n\t\tbuf.astFormat(n.Lexpr, d)\n\t\tbuf.WriteString(\" NOT BETWEEN \")\n\t\tif l, ok := n.Rexpr.(*List); ok && len(l.Items) == 2 {\n\t\t\tbuf.astFormat(l.Items[0], d)\n\t\t\tbuf.WriteString(\" AND \")\n\t\t\tbuf.astFormat(l.Items[1], d)\n\t\t}\n\tcase A_Expr_Kind_DISTINCT:\n\t\tbuf.astFormat(n.Lexpr, d)\n\t\tbuf.WriteString(\" IS DISTINCT FROM \")\n\t\tbuf.astFormat(n.Rexpr, d)\n\tcase A_Expr_Kind_NOT_DISTINCT:\n\t\tbuf.astFormat(n.Lexpr, d)\n\t\tbuf.WriteString(\" IS NOT DISTINCT FROM \")\n\t\tbuf.astFormat(n.Rexpr, d)\n\tcase A_Expr_Kind_NULLIF:\n\t\tbuf.WriteString(\"NULLIF(\")\n\t\tbuf.astFormat(n.Lexpr, d)\n\t\tbuf.WriteString(\", \")\n\t\tbuf.astFormat(n.Rexpr, d)\n\t\tbuf.WriteString(\")\")\n\tdefault:\n\t\t// Standard operator (including A_Expr_Kind_OP)\n\t\tif set(n.Lexpr) {\n\t\t\tbuf.astFormat(n.Lexpr, d)\n\t\t\tbuf.WriteString(\" \")\n\t\t}\n\t\tbuf.astFormat(n.Name, d)\n\t\tif set(n.Rexpr) {\n\t\t\tbuf.WriteString(\" \")\n\t\t\tbuf.astFormat(n.Rexpr, d)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/a_expr_kind.go",
    "content": "package ast\n\ntype A_Expr_Kind uint\n\nconst (\n\tA_Expr_Kind_OP              A_Expr_Kind = 1\n\tA_Expr_Kind_OP_ANY          A_Expr_Kind = 2\n\tA_Expr_Kind_OP_ALL          A_Expr_Kind = 3\n\tA_Expr_Kind_DISTINCT        A_Expr_Kind = 4\n\tA_Expr_Kind_NOT_DISTINCT    A_Expr_Kind = 5\n\tA_Expr_Kind_NULLIF          A_Expr_Kind = 6\n\tA_Expr_Kind_IN              A_Expr_Kind = 7\n\tA_Expr_Kind_LIKE            A_Expr_Kind = 8\n\tA_Expr_Kind_ILIKE           A_Expr_Kind = 9\n\tA_Expr_Kind_SIMILAR         A_Expr_Kind = 10\n\tA_Expr_Kind_BETWEEN         A_Expr_Kind = 11\n\tA_Expr_Kind_NOT_BETWEEN     A_Expr_Kind = 12\n\tA_Expr_Kind_BETWEEN_SYM     A_Expr_Kind = 13\n\tA_Expr_Kind_NOT_BETWEEN_SYM A_Expr_Kind = 14\n)\n\nfunc (n *A_Expr_Kind) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/a_indices.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype A_Indices struct {\n\tIsSlice bool\n\tLidx    Node\n\tUidx    Node\n}\n\nfunc (n *A_Indices) Pos() int {\n\treturn 0\n}\n\nfunc (n *A_Indices) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"[\")\n\tif n.IsSlice {\n\t\tif set(n.Lidx) {\n\t\t\tbuf.astFormat(n.Lidx, d)\n\t\t}\n\t\tbuf.WriteString(\":\")\n\t\tif set(n.Uidx) {\n\t\t\tbuf.astFormat(n.Uidx, d)\n\t\t}\n\t} else {\n\t\tbuf.astFormat(n.Uidx, d)\n\t}\n\tbuf.WriteString(\"]\")\n}\n"
  },
  {
    "path": "internal/sql/ast/a_indirection.go",
    "content": "package ast\n\ntype A_Indirection struct {\n\tArg         Node\n\tIndirection *List\n}\n\nfunc (n *A_Indirection) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/a_star.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype A_Star struct {\n}\n\nfunc (n *A_Star) Pos() int {\n\treturn 0\n}\n\nfunc (n *A_Star) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteRune('*')\n}\n"
  },
  {
    "path": "internal/sql/ast/access_priv.go",
    "content": "package ast\n\ntype AccessPriv struct {\n\tPrivName *string\n\tCols     *List\n}\n\nfunc (n *AccessPriv) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/agg_split.go",
    "content": "package ast\n\ntype AggSplit uint\n\nfunc (n *AggSplit) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/agg_strategy.go",
    "content": "package ast\n\ntype AggStrategy uint\n\nfunc (n *AggStrategy) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/aggref.go",
    "content": "package ast\n\ntype Aggref struct {\n\tXpr           Node\n\tAggfnoid      Oid\n\tAggtype       Oid\n\tAggcollid     Oid\n\tInputcollid   Oid\n\tAggargtypes   *List\n\tAggdirectargs *List\n\tArgs          *List\n\tAggorder      *List\n\tAggdistinct   *List\n\tAggfilter     Node\n\tAggstar       bool\n\tAggvariadic   bool\n\tAggkind       byte\n\tAgglevelsup   Index\n\tAggsplit      AggSplit\n\tLocation      int\n}\n\nfunc (n *Aggref) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/alias.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype Alias struct {\n\tAliasname *string\n\tColnames  *List\n}\n\nfunc (n *Alias) Pos() int {\n\treturn 0\n}\n\nfunc (n *Alias) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif n.Aliasname != nil {\n\t\tbuf.WriteString(*n.Aliasname)\n\t}\n\tif items(n.Colnames) {\n\t\tbuf.WriteString(\"(\")\n\t\tbuf.astFormat(n.Colnames, d)\n\t\tbuf.WriteString(\")\")\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_collation_stmt.go",
    "content": "package ast\n\ntype AlterCollationStmt struct {\n\tCollname *List\n}\n\nfunc (n *AlterCollationStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_database_set_stmt.go",
    "content": "package ast\n\ntype AlterDatabaseSetStmt struct {\n\tDbname  *string\n\tSetstmt *VariableSetStmt\n}\n\nfunc (n *AlterDatabaseSetStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_database_stmt.go",
    "content": "package ast\n\ntype AlterDatabaseStmt struct {\n\tDbname  *string\n\tOptions *List\n}\n\nfunc (n *AlterDatabaseStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_default_privileges_stmt.go",
    "content": "package ast\n\ntype AlterDefaultPrivilegesStmt struct {\n\tOptions *List\n\tAction  *GrantStmt\n}\n\nfunc (n *AlterDefaultPrivilegesStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_domain_stmt.go",
    "content": "package ast\n\ntype AlterDomainStmt struct {\n\tSubtype   byte\n\tTypeName  *List\n\tName      *string\n\tDef       Node\n\tBehavior  DropBehavior\n\tMissingOk bool\n}\n\nfunc (n *AlterDomainStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_enum_stmt.go",
    "content": "package ast\n\ntype AlterEnumStmt struct {\n\tTypeName           *List\n\tOldVal             *string\n\tNewVal             *string\n\tNewValNeighbor     *string\n\tNewValIsAfter      bool\n\tSkipIfNewValExists bool\n}\n\nfunc (n *AlterEnumStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_event_trig_stmt.go",
    "content": "package ast\n\ntype AlterEventTrigStmt struct {\n\tTrigname  *string\n\tTgenabled byte\n}\n\nfunc (n *AlterEventTrigStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_extension_contents_stmt.go",
    "content": "package ast\n\ntype AlterExtensionContentsStmt struct {\n\tExtname *string\n\tAction  int\n\tObjtype ObjectType\n\tObject  Node\n}\n\nfunc (n *AlterExtensionContentsStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_extension_stmt.go",
    "content": "package ast\n\ntype AlterExtensionStmt struct {\n\tExtname *string\n\tOptions *List\n}\n\nfunc (n *AlterExtensionStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_fdw_stmt.go",
    "content": "package ast\n\ntype AlterFdwStmt struct {\n\tFdwname     *string\n\tFuncOptions *List\n\tOptions     *List\n}\n\nfunc (n *AlterFdwStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_foreign_server_stmt.go",
    "content": "package ast\n\ntype AlterForeignServerStmt struct {\n\tServername *string\n\tVersion    *string\n\tOptions    *List\n\tHasVersion bool\n}\n\nfunc (n *AlterForeignServerStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_function_stmt.go",
    "content": "package ast\n\ntype AlterFunctionStmt struct {\n\tFunc    *ObjectWithArgs\n\tActions *List\n}\n\nfunc (n *AlterFunctionStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_object_depends_stmt.go",
    "content": "package ast\n\ntype AlterObjectDependsStmt struct {\n\tObjectType ObjectType\n\tRelation   *RangeVar\n\tObject     Node\n\tExtname    Node\n}\n\nfunc (n *AlterObjectDependsStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_object_schema_stmt.go",
    "content": "package ast\n\ntype AlterObjectSchemaStmt struct {\n\tObjectType ObjectType\n\tRelation   *RangeVar\n\tObject     Node\n\tNewschema  *string\n\tMissingOk  bool\n}\n\nfunc (n *AlterObjectSchemaStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_op_family_stmt.go",
    "content": "package ast\n\ntype AlterOpFamilyStmt struct {\n\tOpfamilyname *List\n\tAmname       *string\n\tIsDrop       bool\n\tItems        *List\n}\n\nfunc (n *AlterOpFamilyStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_operator_stmt.go",
    "content": "package ast\n\ntype AlterOperatorStmt struct {\n\tOpername *ObjectWithArgs\n\tOptions  *List\n}\n\nfunc (n *AlterOperatorStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_owner_stmt.go",
    "content": "package ast\n\ntype AlterOwnerStmt struct {\n\tObjectType ObjectType\n\tRelation   *RangeVar\n\tObject     Node\n\tNewowner   *RoleSpec\n}\n\nfunc (n *AlterOwnerStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_policy_stmt.go",
    "content": "package ast\n\ntype AlterPolicyStmt struct {\n\tPolicyName *string\n\tTable      *RangeVar\n\tRoles      *List\n\tQual       Node\n\tWithCheck  Node\n}\n\nfunc (n *AlterPolicyStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_publication_stmt.go",
    "content": "package ast\n\ntype AlterPublicationStmt struct {\n\tPubname      *string\n\tOptions      *List\n\tTables       *List\n\tForAllTables bool\n\tTableAction  DefElemAction\n}\n\nfunc (n *AlterPublicationStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_role_set_stmt.go",
    "content": "package ast\n\ntype AlterRoleSetStmt struct {\n\tRole     *RoleSpec\n\tDatabase *string\n\tSetstmt  *VariableSetStmt\n}\n\nfunc (n *AlterRoleSetStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_role_stmt.go",
    "content": "package ast\n\ntype AlterRoleStmt struct {\n\tRole    *RoleSpec\n\tOptions *List\n\tAction  int\n}\n\nfunc (n *AlterRoleStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_seq_stmt.go",
    "content": "package ast\n\ntype AlterSeqStmt struct {\n\tSequence    *RangeVar\n\tOptions     *List\n\tForIdentity bool\n\tMissingOk   bool\n}\n\nfunc (n *AlterSeqStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_subscription_stmt.go",
    "content": "package ast\n\ntype AlterSubscriptionStmt struct {\n\tKind        AlterSubscriptionType\n\tSubname     *string\n\tConninfo    *string\n\tPublication *List\n\tOptions     *List\n}\n\nfunc (n *AlterSubscriptionStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_subscription_type.go",
    "content": "package ast\n\ntype AlterSubscriptionType uint\n\nfunc (n *AlterSubscriptionType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_system_stmt.go",
    "content": "package ast\n\ntype AlterSystemStmt struct {\n\tSetstmt *VariableSetStmt\n}\n\nfunc (n *AlterSystemStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_table_cmd.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\nconst (\n\tAT_AddColumn AlterTableType = iota\n\tAT_AlterColumnType\n\tAT_DropColumn\n\tAT_DropNotNull\n\tAT_SetNotNull\n)\n\ntype AlterTableType int\n\nfunc (t AlterTableType) String() string {\n\tswitch t {\n\tcase AT_AddColumn:\n\t\treturn \"AddColumn\"\n\tcase AT_AlterColumnType:\n\t\treturn \"AlterColumnType\"\n\tcase AT_DropColumn:\n\t\treturn \"DropColumn\"\n\tcase AT_DropNotNull:\n\t\treturn \"DropNotNull\"\n\tcase AT_SetNotNull:\n\t\treturn \"SetNotNull\"\n\tdefault:\n\t\treturn \"Unknown\"\n\t}\n}\n\ntype AlterTableCmd struct {\n\tSubtype   AlterTableType\n\tName      *string\n\tDef       *ColumnDef\n\tNewowner  *RoleSpec\n\tBehavior  DropBehavior\n\tMissingOk bool\n}\n\nfunc (n *AlterTableCmd) Pos() int {\n\treturn 0\n}\n\nfunc (n *AlterTableCmd) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tswitch n.Subtype {\n\tcase AT_AddColumn:\n\t\tbuf.WriteString(\" ADD COLUMN \")\n\tcase AT_DropColumn:\n\t\tbuf.WriteString(\" DROP COLUMN \")\n\t}\n\n\tbuf.astFormat(n.Def, d)\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_table_move_all_stmt.go",
    "content": "package ast\n\ntype AlterTableMoveAllStmt struct {\n\tOrigTablespacename *string\n\tObjtype            ObjectType\n\tRoles              *List\n\tNewTablespacename  *string\n\tNowait             bool\n}\n\nfunc (n *AlterTableMoveAllStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_table_set_schema_stmt.go",
    "content": "package ast\n\ntype AlterTableSetSchemaStmt struct {\n\tTable     *TableName\n\tNewSchema *string\n\tMissingOk bool\n}\n\nfunc (n *AlterTableSetSchemaStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_table_space_options_stmt.go",
    "content": "package ast\n\ntype AlterTableSpaceOptionsStmt struct {\n\tTablespacename *string\n\tOptions        *List\n\tIsReset        bool\n}\n\nfunc (n *AlterTableSpaceOptionsStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_table_stmt.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype AlterTableStmt struct {\n\t// TODO: Only TableName or Relation should be defined\n\tRelation  *RangeVar\n\tTable     *TableName\n\tCmds      *List\n\tMissingOk bool\n\tRelkind   ObjectType\n}\n\nfunc (n *AlterTableStmt) Pos() int {\n\treturn 0\n}\n\nfunc (n *AlterTableStmt) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"ALTER TABLE \")\n\tbuf.astFormat(n.Relation, d)\n\tbuf.astFormat(n.Table, d)\n\tbuf.astFormat(n.Cmds, d)\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_table_type.go",
    "content": "package ast\n\ntype AlterTableType_PG uint\n\nfunc (n *AlterTableType_PG) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_ts_config_type.go",
    "content": "package ast\n\ntype AlterTSConfigType uint\n\nfunc (n *AlterTSConfigType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_ts_configuration_stmt.go",
    "content": "package ast\n\ntype AlterTSConfigurationStmt struct {\n\tKind      AlterTSConfigType\n\tCfgname   *List\n\tTokentype *List\n\tDicts     *List\n\tOverride  bool\n\tReplace   bool\n\tMissingOk bool\n}\n\nfunc (n *AlterTSConfigurationStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_ts_dictionary_stmt.go",
    "content": "package ast\n\ntype AlterTSDictionaryStmt struct {\n\tDictname *List\n\tOptions  *List\n}\n\nfunc (n *AlterTSDictionaryStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_type_add_value_stmt.go",
    "content": "package ast\n\ntype AlterTypeAddValueStmt struct {\n\tType               *TypeName\n\tNewValue           *string\n\tNewValHasNeighbor  bool\n\tNewValNeighbor     *string\n\tNewValIsAfter      bool\n\tSkipIfNewValExists bool\n}\n\nfunc (n *AlterTypeAddValueStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_type_rename_value_stmt.go",
    "content": "package ast\n\ntype AlterTypeRenameValueStmt struct {\n\tType     *TypeName\n\tOldValue *string\n\tNewValue *string\n}\n\nfunc (n *AlterTypeRenameValueStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_type_set_schema_stmt.go",
    "content": "package ast\n\ntype AlterTypeSetSchemaStmt struct {\n\tType      *TypeName\n\tNewSchema *string\n}\n\nfunc (n *AlterTypeSetSchemaStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alter_user_mapping_stmt.go",
    "content": "package ast\n\ntype AlterUserMappingStmt struct {\n\tUser       *RoleSpec\n\tServername *string\n\tOptions    *List\n}\n\nfunc (n *AlterUserMappingStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/alternative_sub_plan.go",
    "content": "package ast\n\ntype AlternativeSubPlan struct {\n\tXpr      Node\n\tSubplans *List\n}\n\nfunc (n *AlternativeSubPlan) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/array_coerce_expr.go",
    "content": "package ast\n\ntype ArrayCoerceExpr struct {\n\tXpr          Node\n\tArg          Node\n\tElemfuncid   Oid\n\tResulttype   Oid\n\tResulttypmod int32\n\tResultcollid Oid\n\tIsExplicit   bool\n\tCoerceformat CoercionForm\n\tLocation     int\n}\n\nfunc (n *ArrayCoerceExpr) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/array_expr.go",
    "content": "package ast\n\ntype ArrayExpr struct {\n\tXpr           Node\n\tArrayTypeid   Oid\n\tArrayCollid   Oid\n\tElementTypeid Oid\n\tElements      *List\n\tMultidims     bool\n\tLocation      int\n}\n\nfunc (n *ArrayExpr) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/array_ref.go",
    "content": "package ast\n\ntype ArrayRef struct {\n\tXpr             Node\n\tRefarraytype    Oid\n\tRefelemtype     Oid\n\tReftypmod       int32\n\tRefcollid       Oid\n\tRefupperindexpr *List\n\tReflowerindexpr *List\n\tRefexpr         Node\n\tRefassgnexpr    Node\n}\n\nfunc (n *ArrayRef) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/between_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype BetweenExpr struct {\n\t// Expr is the value expression to be compared.\n\tExpr Node\n\t// Left is the left expression in the between statement.\n\tLeft Node\n\t// Right is the right expression in the between statement.\n\tRight Node\n\t// Not is true, the expression is \"not between\".\n\tNot      bool\n\tLocation int\n}\n\nfunc (n *BetweenExpr) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *BetweenExpr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.astFormat(n.Expr, d)\n\tif n.Not {\n\t\tbuf.WriteString(\" NOT BETWEEN \")\n\t} else {\n\t\tbuf.WriteString(\" BETWEEN \")\n\t}\n\tbuf.astFormat(n.Left, d)\n\tbuf.WriteString(\" AND \")\n\tbuf.astFormat(n.Right, d)\n}\n"
  },
  {
    "path": "internal/sql/ast/bit_string.go",
    "content": "package ast\n\ntype BitString struct {\n\tStr string\n}\n\nfunc (n *BitString) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/block_id_data.go",
    "content": "package ast\n\ntype BlockIdData struct {\n\tBiHi uint16\n\tBiLo uint16\n}\n\nfunc (n *BlockIdData) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/bool_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype BoolExpr struct {\n\tXpr      Node\n\tBoolop   BoolExprType\n\tArgs     *List\n\tLocation int\n}\n\nfunc (n *BoolExpr) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *BoolExpr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tswitch n.Boolop {\n\tcase BoolExprTypeIsNull:\n\t\tif items(n.Args) && len(n.Args.Items) > 0 {\n\t\t\tbuf.astFormat(n.Args.Items[0], d)\n\t\t}\n\t\tbuf.WriteString(\" IS NULL\")\n\tcase BoolExprTypeIsNotNull:\n\t\tif items(n.Args) && len(n.Args.Items) > 0 {\n\t\t\tbuf.astFormat(n.Args.Items[0], d)\n\t\t}\n\t\tbuf.WriteString(\" IS NOT NULL\")\n\tcase BoolExprTypeNot:\n\t\t// NOT expression: format as NOT <arg>\n\t\tbuf.WriteString(\"NOT \")\n\t\tif items(n.Args) && len(n.Args.Items) > 0 {\n\t\t\tbuf.astFormat(n.Args.Items[0], d)\n\t\t}\n\tdefault:\n\t\tbuf.WriteString(\"(\")\n\t\tif items(n.Args) {\n\t\t\tswitch n.Boolop {\n\t\t\tcase BoolExprTypeAnd:\n\t\t\t\tbuf.join(n.Args, d, \" AND \")\n\t\t\tcase BoolExprTypeOr:\n\t\t\t\tbuf.join(n.Args, d, \" OR \")\n\t\t\t}\n\t\t}\n\t\tbuf.WriteString(\")\")\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/bool_expr_type.go",
    "content": "package ast\n\n// https://github.com/pganalyze/libpg_query/blob/13-latest/protobuf/pg_query.proto#L2783-L2789\nconst (\n\t_ BoolExprType = iota\n\tBoolExprTypeAnd\n\tBoolExprTypeOr\n\tBoolExprTypeNot\n\n\t// Added for MySQL\n\tBoolExprTypeIsNull\n\tBoolExprTypeIsNotNull\n)\n\ntype BoolExprType uint\n\nfunc (n *BoolExprType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/bool_test_type.go",
    "content": "package ast\n\ntype BoolTestType uint\n\nfunc (n *BoolTestType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/boolean.go",
    "content": "package ast\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/format\"\n)\n\ntype Boolean struct {\n\tBoolval bool\n}\n\nfunc (n *Boolean) Pos() int {\n\treturn 0\n}\n\nfunc (n *Boolean) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif n.Boolval {\n\t\tfmt.Fprintf(buf, \"true\")\n\t} else {\n\t\tfmt.Fprintf(buf, \"false\")\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/boolean_test_expr.go",
    "content": "package ast\n\ntype BooleanTest struct {\n\tXpr          Node\n\tArg          Node\n\tBooltesttype BoolTestType\n\tLocation     int\n}\n\nfunc (n *BooleanTest) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/call_stmt.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype CallStmt struct {\n\tFuncCall *FuncCall\n}\n\nfunc (n *CallStmt) Pos() int {\n\tif n.FuncCall == nil {\n\t\treturn 0\n\t}\n\treturn n.FuncCall.Pos()\n}\n\nfunc (n *CallStmt) Format(buf *TrackedBuffer, d format.Dialect) {\n\tbuf.WriteString(\"CALL \")\n\tbuf.astFormat(n.FuncCall, d)\n}\n"
  },
  {
    "path": "internal/sql/ast/case_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype CaseExpr struct {\n\tXpr        Node\n\tCasetype   Oid\n\tCasecollid Oid\n\tArg        Node\n\tArgs       *List\n\tDefresult  Node\n\tLocation   int\n}\n\nfunc (n *CaseExpr) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *CaseExpr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"CASE \")\n\tif set(n.Arg) {\n\t\tbuf.astFormat(n.Arg, d)\n\t\tbuf.WriteString(\" \")\n\t}\n\tbuf.join(n.Args, d, \" \")\n\tif set(n.Defresult) {\n\t\tbuf.WriteString(\" ELSE \")\n\t\tbuf.astFormat(n.Defresult, d)\n\t}\n\tbuf.WriteString(\" END\")\n}\n"
  },
  {
    "path": "internal/sql/ast/case_test_expr.go",
    "content": "package ast\n\ntype CaseTestExpr struct {\n\tXpr       Node\n\tTypeId    Oid\n\tTypeMod   int32\n\tCollation Oid\n}\n\nfunc (n *CaseTestExpr) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/case_when.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype CaseWhen struct {\n\tXpr      Node\n\tExpr     Node\n\tResult   Node\n\tLocation int\n}\n\nfunc (n *CaseWhen) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *CaseWhen) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"WHEN \")\n\tbuf.astFormat(n.Expr, d)\n\tbuf.WriteString(\" THEN \")\n\tbuf.astFormat(n.Result, d)\n}\n"
  },
  {
    "path": "internal/sql/ast/check_point_stmt.go",
    "content": "package ast\n\ntype CheckPointStmt struct {\n}\n\nfunc (n *CheckPointStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/close_portal_stmt.go",
    "content": "package ast\n\ntype ClosePortalStmt struct {\n\tPortalname *string\n}\n\nfunc (n *ClosePortalStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/cluster_stmt.go",
    "content": "package ast\n\ntype ClusterStmt struct {\n\tRelation  *RangeVar\n\tIndexname *string\n\tVerbose   bool\n}\n\nfunc (n *ClusterStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/cmd_type.go",
    "content": "package ast\n\ntype CmdType uint\n\nfunc (n *CmdType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/coalesce_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype CoalesceExpr struct {\n\tXpr            Node\n\tCoalescetype   Oid\n\tCoalescecollid Oid\n\tArgs           *List\n\tLocation       int\n}\n\nfunc (n *CoalesceExpr) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *CoalesceExpr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"COALESCE(\")\n\tbuf.astFormat(n.Args, d)\n\tbuf.WriteString(\")\")\n}\n"
  },
  {
    "path": "internal/sql/ast/coerce_to_domain.go",
    "content": "package ast\n\ntype CoerceToDomain struct {\n\tXpr            Node\n\tArg            Node\n\tResulttype     Oid\n\tResulttypmod   int32\n\tResultcollid   Oid\n\tCoercionformat CoercionForm\n\tLocation       int\n}\n\nfunc (n *CoerceToDomain) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/coerce_to_domain_value.go",
    "content": "package ast\n\ntype CoerceToDomainValue struct {\n\tXpr       Node\n\tTypeId    Oid\n\tTypeMod   int32\n\tCollation Oid\n\tLocation  int\n}\n\nfunc (n *CoerceToDomainValue) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/coerce_via_io.go",
    "content": "package ast\n\ntype CoerceViaIO struct {\n\tXpr          Node\n\tArg          Node\n\tResulttype   Oid\n\tResultcollid Oid\n\tCoerceformat CoercionForm\n\tLocation     int\n}\n\nfunc (n *CoerceViaIO) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/coercion_context.go",
    "content": "package ast\n\ntype CoercionContext uint\n\nfunc (n *CoercionContext) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/coercion_form.go",
    "content": "package ast\n\ntype CoercionForm uint\n\nfunc (n *CoercionForm) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/collate_clause.go",
    "content": "package ast\n\ntype CollateClause struct {\n\tArg      Node\n\tCollname *List\n\tLocation int\n}\n\nfunc (n *CollateClause) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/collate_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype CollateExpr struct {\n\tXpr      Node\n\tArg      Node\n\tCollOid  Oid\n\tLocation int\n}\n\nfunc (n *CollateExpr) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *CollateExpr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.astFormat(n.Xpr, d)\n\tbuf.WriteString(\" COLLATE \")\n\tbuf.astFormat(n.Arg, d)\n}\n"
  },
  {
    "path": "internal/sql/ast/column_def.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype ColumnDef struct {\n\tColname    string\n\tTypeName   *TypeName\n\tIsNotNull  bool\n\tIsUnsigned bool\n\tIsArray    bool\n\tArrayDims  int\n\tVals       *List\n\tLength     *int\n\tPrimaryKey bool\n\n\t// From pg.ColumnDef\n\tInhcount      int\n\tIsLocal       bool\n\tIsFromType    bool\n\tIsFromParent  bool\n\tStorage       byte\n\tRawDefault    Node\n\tCookedDefault Node\n\tIdentity      byte\n\tCollClause    *CollateClause\n\tCollOid       Oid\n\tConstraints   *List\n\tFdwoptions    *List\n\tLocation      int\n\tComment       string\n}\n\nfunc (n *ColumnDef) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *ColumnDef) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(n.Colname)\n\tbuf.WriteString(\" \")\n\tbuf.astFormat(n.TypeName, d)\n\t// Use IsArray from ColumnDef since TypeName.ArrayBounds may not be set\n\t// (for type resolution compatibility)\n\tif n.IsArray && !items(n.TypeName.ArrayBounds) {\n\t\tbuf.WriteString(\"[]\")\n\t}\n\tif n.PrimaryKey {\n\t\tbuf.WriteString(\" PRIMARY KEY\")\n\t} else if n.IsNotNull {\n\t\tbuf.WriteString(\" NOT NULL\")\n\t}\n\tbuf.astFormat(n.Constraints, d)\n}\n"
  },
  {
    "path": "internal/sql/ast/column_ref.go",
    "content": "package ast\n\nimport (\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/format\"\n)\n\ntype ColumnRef struct {\n\tName string\n\n\t// From pg.ColumnRef\n\tFields   *List\n\tLocation int\n}\n\nfunc (n *ColumnRef) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *ColumnRef) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\n\tif n.Fields != nil {\n\t\tvar items []string\n\t\tfor _, item := range n.Fields.Items {\n\t\t\tswitch nn := item.(type) {\n\t\t\tcase *String:\n\t\t\t\titems = append(items, d.QuoteIdent(nn.Str))\n\t\t\tcase *A_Star:\n\t\t\t\titems = append(items, \"*\")\n\t\t\t}\n\t\t}\n\t\tbuf.WriteString(strings.Join(items, \".\"))\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/comment_on_column_stmt.go",
    "content": "package ast\n\ntype CommentOnColumnStmt struct {\n\tTable   *TableName\n\tCol     *ColumnRef\n\tComment *string\n}\n\nfunc (n *CommentOnColumnStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/comment_on_schema_stmt.go",
    "content": "package ast\n\ntype CommentOnSchemaStmt struct {\n\tSchema  *String\n\tComment *string\n}\n\nfunc (n *CommentOnSchemaStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/comment_on_table_stmt.go",
    "content": "package ast\n\ntype CommentOnTableStmt struct {\n\tTable   *TableName\n\tComment *string\n}\n\nfunc (n *CommentOnTableStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/comment_on_type_stmt.go",
    "content": "package ast\n\ntype CommentOnTypeStmt struct {\n\tType    *TypeName\n\tComment *string\n}\n\nfunc (n *CommentOnTypeStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/comment_on_view_stmt.go",
    "content": "package ast\n\ntype CommentOnViewStmt struct {\n\tView    *TableName\n\tComment *string\n}\n\nfunc (n *CommentOnViewStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/comment_stmt.go",
    "content": "package ast\n\ntype CommentStmt struct {\n\tObjtype ObjectType\n\tObject  Node\n\tComment *string\n}\n\nfunc (n *CommentStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/common_table_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype CommonTableExpr struct {\n\tCtename          *string\n\tAliascolnames    *List\n\tCtequery         Node\n\tLocation         int\n\tCterecursive     bool\n\tCterefcount      int\n\tCtecolnames      *List\n\tCtecoltypes      *List\n\tCtecoltypmods    *List\n\tCtecolcollations *List\n}\n\nfunc (n *CommonTableExpr) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *CommonTableExpr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif n.Ctename != nil {\n\t\tbuf.WriteString(*n.Ctename)\n\t}\n\tif items(n.Aliascolnames) {\n\t\tbuf.WriteString(\"(\")\n\t\tbuf.join(n.Aliascolnames, d, \", \")\n\t\tbuf.WriteString(\")\")\n\t}\n\tbuf.WriteString(\" AS (\")\n\tbuf.astFormat(n.Ctequery, d)\n\tbuf.WriteString(\")\")\n}\n"
  },
  {
    "path": "internal/sql/ast/composite_type_stmt.go",
    "content": "package ast\n\ntype CompositeTypeStmt struct {\n\tTypeName *TypeName\n}\n\nfunc (n *CompositeTypeStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/const.go",
    "content": "package ast\n\ntype Const struct {\n\tXpr         Node\n\tConsttype   Oid\n\tConsttypmod int32\n\tConstcollid Oid\n\tConstlen    int\n\tConstvalue  Datum\n\tConstisnull bool\n\tConstbyval  bool\n\tLocation    int\n}\n\nfunc (n *Const) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/constr_type.go",
    "content": "package ast\n\ntype ConstrType uint\n\nfunc (n *ConstrType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/constraint.go",
    "content": "package ast\n\ntype Constraint struct {\n\tContype        ConstrType\n\tConname        *string\n\tDeferrable     bool\n\tInitdeferred   bool\n\tLocation       int\n\tIsNoInherit    bool\n\tRawExpr        Node\n\tCookedExpr     *string\n\tGeneratedWhen  byte\n\tKeys           *List\n\tExclusions     *List\n\tOptions        *List\n\tIndexname      *string\n\tIndexspace     *string\n\tAccessMethod   *string\n\tWhereClause    Node\n\tPktable        *RangeVar\n\tFkAttrs        *List\n\tPkAttrs        *List\n\tFkMatchtype    byte\n\tFkUpdAction    byte\n\tFkDelAction    byte\n\tOldConpfeqop   *List\n\tOldPktableOid  Oid\n\tSkipValidation bool\n\tInitiallyValid bool\n}\n\nfunc (n *Constraint) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/constraints_set_stmt.go",
    "content": "package ast\n\ntype ConstraintsSetStmt struct {\n\tConstraints *List\n\tDeferred    bool\n}\n\nfunc (n *ConstraintsSetStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/convert_rowtype_expr.go",
    "content": "package ast\n\ntype ConvertRowtypeExpr struct {\n\tXpr           Node\n\tArg           Node\n\tResulttype    Oid\n\tConvertformat CoercionForm\n\tLocation      int\n}\n\nfunc (n *ConvertRowtypeExpr) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/copy_stmt.go",
    "content": "package ast\n\ntype CopyStmt struct {\n\tRelation  *RangeVar\n\tQuery     Node\n\tAttlist   *List\n\tIsFrom    bool\n\tIsProgram bool\n\tFilename  *string\n\tOptions   *List\n}\n\nfunc (n *CopyStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_am_stmt.go",
    "content": "package ast\n\ntype CreateAmStmt struct {\n\tAmname      *string\n\tHandlerName *List\n\tAmtype      byte\n}\n\nfunc (n *CreateAmStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_cast_stmt.go",
    "content": "package ast\n\ntype CreateCastStmt struct {\n\tSourcetype *TypeName\n\tTargettype *TypeName\n\tFunc       *ObjectWithArgs\n\tContext    CoercionContext\n\tInout      bool\n}\n\nfunc (n *CreateCastStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_conversion_stmt.go",
    "content": "package ast\n\ntype CreateConversionStmt struct {\n\tConversionName  *List\n\tForEncodingName *string\n\tToEncodingName  *string\n\tFuncName        *List\n\tDef             bool\n}\n\nfunc (n *CreateConversionStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_domain_stmt.go",
    "content": "package ast\n\ntype CreateDomainStmt struct {\n\tDomainname  *List\n\tTypeName    *TypeName\n\tCollClause  *CollateClause\n\tConstraints *List\n}\n\nfunc (n *CreateDomainStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_enum_stmt.go",
    "content": "package ast\n\ntype CreateEnumStmt struct {\n\tTypeName *TypeName\n\tVals     *List\n}\n\nfunc (n *CreateEnumStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_event_trig_stmt.go",
    "content": "package ast\n\ntype CreateEventTrigStmt struct {\n\tTrigname   *string\n\tEventname  *string\n\tWhenclause *List\n\tFuncname   *List\n}\n\nfunc (n *CreateEventTrigStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_extension_stmt.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype CreateExtensionStmt struct {\n\tExtname     *string\n\tIfNotExists bool\n\tOptions     *List\n}\n\nfunc (n *CreateExtensionStmt) Pos() int {\n\treturn 0\n}\n\nfunc (n *CreateExtensionStmt) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"CREATE EXTENSION \")\n\tif n.IfNotExists {\n\t\tbuf.WriteString(\"IF NOT EXISTS \")\n\t}\n\tif n.Extname != nil {\n\t\tbuf.WriteString(*n.Extname)\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/create_fdw_stmt.go",
    "content": "package ast\n\ntype CreateFdwStmt struct {\n\tFdwname     *string\n\tFuncOptions *List\n\tOptions     *List\n}\n\nfunc (n *CreateFdwStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_foreign_server_stmt.go",
    "content": "package ast\n\ntype CreateForeignServerStmt struct {\n\tServername  *string\n\tServertype  *string\n\tVersion     *string\n\tFdwname     *string\n\tIfNotExists bool\n\tOptions     *List\n}\n\nfunc (n *CreateForeignServerStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_foreign_table_stmt.go",
    "content": "package ast\n\ntype CreateForeignTableStmt struct {\n\tBase       *CreateStmt\n\tServername *string\n\tOptions    *List\n}\n\nfunc (n *CreateForeignTableStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_function_stmt.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype CreateFunctionStmt struct {\n\tReplace    bool\n\tParams     *List\n\tReturnType *TypeName\n\tFunc       *FuncName\n\t// TODO: Understand these two fields\n\tOptions    *List\n\tWithClause *List\n}\n\nfunc (n *CreateFunctionStmt) Pos() int {\n\treturn 0\n}\n\nfunc (n *CreateFunctionStmt) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"CREATE \")\n\tif n.Replace {\n\t\tbuf.WriteString(\"OR REPLACE \")\n\t}\n\tbuf.WriteString(\"FUNCTION \")\n\tbuf.astFormat(n.Func, d)\n\tbuf.WriteString(\"(\")\n\tif items(n.Params) {\n\t\tbuf.join(n.Params, d, \", \")\n\t}\n\tbuf.WriteString(\")\")\n\tif n.ReturnType != nil {\n\t\tbuf.WriteString(\" RETURNS \")\n\t\tbuf.astFormat(n.ReturnType, d)\n\t}\n\t// Format options (AS, LANGUAGE, etc.)\n\tif items(n.Options) {\n\t\tfor _, opt := range n.Options.Items {\n\t\t\tbuf.WriteString(\" \")\n\t\t\tbuf.astFormat(opt, d)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/create_op_class_item.go",
    "content": "package ast\n\ntype CreateOpClassItem struct {\n\tItemtype    int\n\tName        *ObjectWithArgs\n\tNumber      int\n\tOrderFamily *List\n\tClassArgs   *List\n\tStoredtype  *TypeName\n}\n\nfunc (n *CreateOpClassItem) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_op_class_stmt.go",
    "content": "package ast\n\ntype CreateOpClassStmt struct {\n\tOpclassname  *List\n\tOpfamilyname *List\n\tAmname       *string\n\tDatatype     *TypeName\n\tItems        *List\n\tIsDefault    bool\n}\n\nfunc (n *CreateOpClassStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_op_family_stmt.go",
    "content": "package ast\n\ntype CreateOpFamilyStmt struct {\n\tOpfamilyname *List\n\tAmname       *string\n}\n\nfunc (n *CreateOpFamilyStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_p_lang_stmt.go",
    "content": "package ast\n\ntype CreatePLangStmt struct {\n\tReplace     bool\n\tPlname      *string\n\tPlhandler   *List\n\tPlinline    *List\n\tPlvalidator *List\n\tPltrusted   bool\n}\n\nfunc (n *CreatePLangStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_policy_stmt.go",
    "content": "package ast\n\ntype CreatePolicyStmt struct {\n\tPolicyName *string\n\tTable      *RangeVar\n\tCmdName    *string\n\tPermissive bool\n\tRoles      *List\n\tQual       Node\n\tWithCheck  Node\n}\n\nfunc (n *CreatePolicyStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_publication_stmt.go",
    "content": "package ast\n\ntype CreatePublicationStmt struct {\n\tPubname      *string\n\tOptions      *List\n\tTables       *List\n\tForAllTables bool\n}\n\nfunc (n *CreatePublicationStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_range_stmt.go",
    "content": "package ast\n\ntype CreateRangeStmt struct {\n\tTypeName *List\n\tParams   *List\n}\n\nfunc (n *CreateRangeStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_role_stmt.go",
    "content": "package ast\n\ntype CreateRoleStmt struct {\n\tStmtType RoleStmtType\n\tRole     *string\n\tOptions  *List\n}\n\nfunc (n *CreateRoleStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_schema_stmt.go",
    "content": "package ast\n\ntype CreateSchemaStmt struct {\n\tName        *string\n\tSchemaElts  *List\n\tAuthrole    *RoleSpec\n\tIfNotExists bool\n}\n\nfunc (n *CreateSchemaStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_seq_stmt.go",
    "content": "package ast\n\ntype CreateSeqStmt struct {\n\tSequence    *RangeVar\n\tOptions     *List\n\tOwnerId     Oid\n\tForIdentity bool\n\tIfNotExists bool\n}\n\nfunc (n *CreateSeqStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_stats_stmt.go",
    "content": "package ast\n\ntype CreateStatsStmt struct {\n\tDefnames    *List\n\tStatTypes   *List\n\tExprs       *List\n\tRelations   *List\n\tIfNotExists bool\n}\n\nfunc (n *CreateStatsStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_stmt.go",
    "content": "package ast\n\ntype CreateStmt struct {\n\tRelation       *RangeVar\n\tTableElts      *List\n\tInhRelations   *List\n\tPartbound      *PartitionBoundSpec\n\tPartspec       *PartitionSpec\n\tOfTypename     *TypeName\n\tConstraints    *List\n\tOptions        *List\n\tOncommit       OnCommitAction\n\tTablespacename *string\n\tIfNotExists    bool\n}\n\nfunc (n *CreateStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_subscription_stmt.go",
    "content": "package ast\n\ntype CreateSubscriptionStmt struct {\n\tSubname     *string\n\tConninfo    *string\n\tPublication *List\n\tOptions     *List\n}\n\nfunc (n *CreateSubscriptionStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_table_as_stmt.go",
    "content": "package ast\n\ntype CreateTableAsStmt struct {\n\tQuery        Node\n\tInto         *IntoClause\n\tRelkind      ObjectType\n\tIsSelectInto bool\n\tIfNotExists  bool\n}\n\nfunc (n *CreateTableAsStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_table_space_stmt.go",
    "content": "package ast\n\ntype CreateTableSpaceStmt struct {\n\tTablespacename *string\n\tOwner          *RoleSpec\n\tLocation       *string\n\tOptions        *List\n}\n\nfunc (n *CreateTableSpaceStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_table_stmt.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype CreateTableStmt struct {\n\tIfNotExists bool\n\tName        *TableName\n\tCols        []*ColumnDef\n\tReferTable  *TableName\n\tComment     string\n\tInherits    []*TableName\n}\n\nfunc (n *CreateTableStmt) Pos() int {\n\treturn 0\n}\n\nfunc (n *CreateTableStmt) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"CREATE TABLE \")\n\tbuf.astFormat(n.Name, d)\n\n\tbuf.WriteString(\"(\")\n\tfor i, col := range n.Cols {\n\t\tif i > 0 {\n\t\t\tbuf.WriteString(\", \")\n\t\t}\n\t\tbuf.astFormat(col, d)\n\t}\n\tbuf.WriteString(\")\")\n}\n"
  },
  {
    "path": "internal/sql/ast/create_transform_stmt.go",
    "content": "package ast\n\ntype CreateTransformStmt struct {\n\tReplace  bool\n\tTypeName *TypeName\n\tLang     *string\n\tFromsql  *ObjectWithArgs\n\tTosql    *ObjectWithArgs\n}\n\nfunc (n *CreateTransformStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_trig_stmt.go",
    "content": "package ast\n\ntype CreateTrigStmt struct {\n\tTrigname       *string\n\tRelation       *RangeVar\n\tFuncname       *List\n\tArgs           *List\n\tRow            bool\n\tTiming         int16\n\tEvents         int16\n\tColumns        *List\n\tWhenClause     Node\n\tIsconstraint   bool\n\tTransitionRels *List\n\tDeferrable     bool\n\tInitdeferred   bool\n\tConstrrel      *RangeVar\n}\n\nfunc (n *CreateTrigStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/create_user_mapping_stmt.go",
    "content": "package ast\n\ntype CreateUserMappingStmt struct {\n\tUser        *RoleSpec\n\tServername  *string\n\tIfNotExists bool\n\tOptions     *List\n}\n\nfunc (n *CreateUserMappingStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/createdb_stmt.go",
    "content": "package ast\n\ntype CreatedbStmt struct {\n\tDbname  *string\n\tOptions *List\n}\n\nfunc (n *CreatedbStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/current_of_expr.go",
    "content": "package ast\n\ntype CurrentOfExpr struct {\n\tXpr         Node\n\tCvarno      Index\n\tCursorName  *string\n\tCursorParam int\n}\n\nfunc (n *CurrentOfExpr) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/deallocate_stmt.go",
    "content": "package ast\n\ntype DeallocateStmt struct {\n\tName *string\n}\n\nfunc (n *DeallocateStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/declare_cursor_stmt.go",
    "content": "package ast\n\ntype DeclareCursorStmt struct {\n\tPortalname *string\n\tOptions    int\n\tQuery      Node\n}\n\nfunc (n *DeclareCursorStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/def_elem.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype DefElem struct {\n\tDefnamespace *string\n\tDefname      *string\n\tArg          Node\n\tDefaction    DefElemAction\n\tLocation     int\n}\n\nfunc (n *DefElem) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *DefElem) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif n.Defname != nil {\n\t\tswitch *n.Defname {\n\t\tcase \"as\":\n\t\t\tbuf.WriteString(\"AS \")\n\t\t\t// AS clause contains function body which needs quoting\n\t\t\tif l, ok := n.Arg.(*List); ok {\n\t\t\t\tfor i, item := range l.Items {\n\t\t\t\t\tif i > 0 {\n\t\t\t\t\t\tbuf.WriteString(\", \")\n\t\t\t\t\t}\n\t\t\t\t\tif s, ok := item.(*String); ok {\n\t\t\t\t\t\tbuf.WriteString(\"'\")\n\t\t\t\t\t\tbuf.WriteString(s.Str)\n\t\t\t\t\t\tbuf.WriteString(\"'\")\n\t\t\t\t\t} else {\n\t\t\t\t\t\tbuf.astFormat(item, d)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tbuf.astFormat(n.Arg, d)\n\t\t\t}\n\t\tcase \"language\":\n\t\t\tbuf.WriteString(\"LANGUAGE \")\n\t\t\tbuf.astFormat(n.Arg, d)\n\t\tcase \"volatility\":\n\t\t\t// VOLATILE, STABLE, IMMUTABLE\n\t\t\tbuf.astFormat(n.Arg, d)\n\t\tcase \"strict\":\n\t\t\tif s, ok := n.Arg.(*Boolean); ok && s.Boolval {\n\t\t\t\tbuf.WriteString(\"STRICT\")\n\t\t\t} else {\n\t\t\t\tbuf.WriteString(\"CALLED ON NULL INPUT\")\n\t\t\t}\n\t\tcase \"security\":\n\t\t\tif s, ok := n.Arg.(*Boolean); ok && s.Boolval {\n\t\t\t\tbuf.WriteString(\"SECURITY DEFINER\")\n\t\t\t} else {\n\t\t\t\tbuf.WriteString(\"SECURITY INVOKER\")\n\t\t\t}\n\t\tdefault:\n\t\t\tbuf.WriteString(*n.Defname)\n\t\t\tif n.Arg != nil {\n\t\t\t\tbuf.WriteString(\" \")\n\t\t\t\tbuf.astFormat(n.Arg, d)\n\t\t\t}\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/def_elem_action.go",
    "content": "package ast\n\ntype DefElemAction uint\n\nfunc (n *DefElemAction) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/define_stmt.go",
    "content": "package ast\n\ntype DefineStmt struct {\n\tKind        ObjectType\n\tOldstyle    bool\n\tDefnames    *List\n\tArgs        *List\n\tDefinition  *List\n\tIfNotExists bool\n}\n\nfunc (n *DefineStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/delete_stmt.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype DeleteStmt struct {\n\tRelations     *List\n\tUsingClause   *List\n\tWhereClause   Node\n\tLimitCount    Node\n\tReturningList *List\n\tWithClause    *WithClause\n\t// MySQL multi-table DELETE support\n\tTargets    *List // Tables to delete from (e.g., jt.*, pt.*)\n\tFromClause Node  // FROM clause with JOINs (Node to support JoinExpr)\n}\n\nfunc (n *DeleteStmt) Pos() int {\n\treturn 0\n}\n\nfunc (n *DeleteStmt) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\n\tif n.WithClause != nil {\n\t\tbuf.astFormat(n.WithClause, d)\n\t\tbuf.WriteString(\" \")\n\t}\n\n\tbuf.WriteString(\"DELETE \")\n\n\t// MySQL multi-table DELETE: DELETE t1.*, t2.* FROM t1 JOIN t2 ...\n\tif items(n.Targets) {\n\t\tbuf.join(n.Targets, d, \", \")\n\t\tbuf.WriteString(\" FROM \")\n\t\tif set(n.FromClause) {\n\t\t\tbuf.astFormat(n.FromClause, d)\n\t\t} else if items(n.Relations) {\n\t\t\tbuf.astFormat(n.Relations, d)\n\t\t}\n\t} else {\n\t\tbuf.WriteString(\"FROM \")\n\t\tif items(n.Relations) {\n\t\t\tbuf.astFormat(n.Relations, d)\n\t\t}\n\t}\n\n\tif items(n.UsingClause) {\n\t\tbuf.WriteString(\" USING \")\n\t\tbuf.join(n.UsingClause, d, \", \")\n\t}\n\n\tif set(n.WhereClause) {\n\t\tbuf.WriteString(\" WHERE \")\n\t\tbuf.astFormat(n.WhereClause, d)\n\t}\n\n\tif set(n.LimitCount) {\n\t\tbuf.WriteString(\" LIMIT \")\n\t\tbuf.astFormat(n.LimitCount, d)\n\t}\n\n\tif items(n.ReturningList) {\n\t\tbuf.WriteString(\" RETURNING \")\n\t\tbuf.astFormat(n.ReturningList, d)\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/discard_mode.go",
    "content": "package ast\n\ntype DiscardMode uint\n\nfunc (n *DiscardMode) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/discard_stmt.go",
    "content": "package ast\n\ntype DiscardStmt struct {\n\tTarget DiscardMode\n}\n\nfunc (n *DiscardStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/do_stmt.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype DoStmt struct {\n\tArgs *List\n}\n\nfunc (n *DoStmt) Pos() int {\n\treturn 0\n}\n\nfunc (n *DoStmt) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"DO \")\n\t// Find the \"as\" argument which contains the body\n\tif items(n.Args) {\n\t\tfor _, arg := range n.Args.Items {\n\t\t\tif de, ok := arg.(*DefElem); ok && de.Defname != nil && *de.Defname == \"as\" {\n\t\t\t\tif s, ok := de.Arg.(*String); ok {\n\t\t\t\t\tbuf.WriteString(\"$$\")\n\t\t\t\t\tbuf.WriteString(s.Str)\n\t\t\t\t\tbuf.WriteString(\"$$\")\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/drop_behavior.go",
    "content": "package ast\n\ntype DropBehavior uint\n\nfunc (n *DropBehavior) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/drop_function_stmt.go",
    "content": "package ast\n\ntype DropFunctionStmt struct {\n\tFuncs     []*FuncSpec\n\tMissingOk bool\n}\n\nfunc (n *DropFunctionStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/drop_owned_stmt.go",
    "content": "package ast\n\ntype DropOwnedStmt struct {\n\tRoles    *List\n\tBehavior DropBehavior\n}\n\nfunc (n *DropOwnedStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/drop_role_stmt.go",
    "content": "package ast\n\ntype DropRoleStmt struct {\n\tRoles     *List\n\tMissingOk bool\n}\n\nfunc (n *DropRoleStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/drop_schema_stmt.go",
    "content": "package ast\n\ntype DropSchemaStmt struct {\n\tSchemas   []*String\n\tMissingOk bool\n}\n\nfunc (n *DropSchemaStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/drop_stmt.go",
    "content": "package ast\n\ntype DropStmt struct {\n\tObjects    *List\n\tRemoveType ObjectType\n\tBehavior   DropBehavior\n\tMissingOk  bool\n\tConcurrent bool\n}\n\nfunc (n *DropStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/drop_subscription_stmt.go",
    "content": "package ast\n\ntype DropSubscriptionStmt struct {\n\tSubname   *string\n\tMissingOk bool\n\tBehavior  DropBehavior\n}\n\nfunc (n *DropSubscriptionStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/drop_table_space_stmt.go",
    "content": "package ast\n\ntype DropTableSpaceStmt struct {\n\tTablespacename *string\n\tMissingOk      bool\n}\n\nfunc (n *DropTableSpaceStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/drop_table_stmt.go",
    "content": "package ast\n\ntype DropTableStmt struct {\n\tIfExists bool\n\tTables   []*TableName\n}\n\nfunc (n *DropTableStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/drop_type_stmt.go",
    "content": "package ast\n\ntype DropTypeStmt struct {\n\tIfExists bool\n\tTypes    []*TypeName\n}\n\nfunc (n *DropTypeStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/drop_user_mapping_stmt.go",
    "content": "package ast\n\ntype DropUserMappingStmt struct {\n\tUser       *RoleSpec\n\tServername *string\n\tMissingOk  bool\n}\n\nfunc (n *DropUserMappingStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/dropdb_stmt.go",
    "content": "package ast\n\ntype DropdbStmt struct {\n\tDbname    *string\n\tMissingOk bool\n}\n\nfunc (n *DropdbStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/execute_stmt.go",
    "content": "package ast\n\ntype ExecuteStmt struct {\n\tName   *string\n\tParams *List\n}\n\nfunc (n *ExecuteStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/explain_stmt.go",
    "content": "package ast\n\ntype ExplainStmt struct {\n\tQuery   Node\n\tOptions *List\n}\n\nfunc (n *ExplainStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/expr.go",
    "content": "package ast\n\ntype Expr struct {\n}\n\nfunc (n *Expr) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/fetch_direction.go",
    "content": "package ast\n\ntype FetchDirection uint\n\nfunc (n *FetchDirection) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/fetch_stmt.go",
    "content": "package ast\n\ntype FetchStmt struct {\n\tDirection  FetchDirection\n\tHowMany    int64\n\tPortalname *string\n\tIsmove     bool\n}\n\nfunc (n *FetchStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/field_select.go",
    "content": "package ast\n\ntype FieldSelect struct {\n\tXpr          Node\n\tArg          Node\n\tFieldnum     AttrNumber\n\tResulttype   Oid\n\tResulttypmod int32\n\tResultcollid Oid\n}\n\nfunc (n *FieldSelect) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/field_store.go",
    "content": "package ast\n\ntype FieldStore struct {\n\tXpr        Node\n\tArg        Node\n\tNewvals    *List\n\tFieldnums  *List\n\tResulttype Oid\n}\n\nfunc (n *FieldStore) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/float.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype Float struct {\n\tStr string\n}\n\nfunc (n *Float) Pos() int {\n\treturn 0\n}\n\nfunc (n *Float) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(n.Str)\n}\n"
  },
  {
    "path": "internal/sql/ast/from_expr.go",
    "content": "package ast\n\ntype FromExpr struct {\n\tFromlist *List\n\tQuals    Node\n}\n\nfunc (n *FromExpr) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/func_call.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype FuncCall struct {\n\tFunc           *FuncName\n\tFuncname       *List\n\tArgs           *List\n\tAggOrder       *List\n\tAggFilter      Node\n\tAggWithinGroup bool\n\tAggStar        bool\n\tAggDistinct    bool\n\tFuncVariadic   bool\n\tOver           *WindowDef\n\tSeparator      *string // MySQL GROUP_CONCAT SEPARATOR\n\tLocation       int\n}\n\nfunc (n *FuncCall) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *FuncCall) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.astFormat(n.Func, d)\n\tbuf.WriteString(\"(\")\n\tif n.AggDistinct {\n\t\tbuf.WriteString(\"DISTINCT \")\n\t}\n\tif n.AggStar {\n\t\tbuf.WriteString(\"*\")\n\t} else {\n\t\tbuf.astFormat(n.Args, d)\n\t}\n\t// ORDER BY inside function call (not WITHIN GROUP)\n\tif items(n.AggOrder) && !n.AggWithinGroup {\n\t\tbuf.WriteString(\" ORDER BY \")\n\t\tbuf.join(n.AggOrder, d, \", \")\n\t}\n\t// SEPARATOR for GROUP_CONCAT (MySQL)\n\tif n.Separator != nil {\n\t\tbuf.WriteString(\" SEPARATOR \")\n\t\tbuf.WriteString(\"'\")\n\t\tbuf.WriteString(*n.Separator)\n\t\tbuf.WriteString(\"'\")\n\t}\n\tbuf.WriteString(\")\")\n\t// WITHIN GROUP clause for ordered-set aggregates\n\tif items(n.AggOrder) && n.AggWithinGroup {\n\t\tbuf.WriteString(\" WITHIN GROUP (ORDER BY \")\n\t\tbuf.join(n.AggOrder, d, \", \")\n\t\tbuf.WriteString(\")\")\n\t}\n\tif set(n.AggFilter) {\n\t\tbuf.WriteString(\" FILTER (WHERE \")\n\t\tbuf.astFormat(n.AggFilter, d)\n\t\tbuf.WriteString(\")\")\n\t}\n\tif n.Over != nil {\n\t\tbuf.WriteString(\" OVER \")\n\t\tbuf.astFormat(n.Over, d)\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/func_expr.go",
    "content": "package ast\n\ntype FuncExpr struct {\n\tXpr            Node\n\tFuncid         Oid\n\tFuncresulttype Oid\n\tFuncretset     bool\n\tFuncvariadic   bool\n\tFuncformat     CoercionForm\n\tFunccollid     Oid\n\tInputcollid    Oid\n\tArgs           *List\n\tLocation       int\n}\n\nfunc (n *FuncExpr) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/func_name.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype FuncName struct {\n\tCatalog string\n\tSchema  string\n\tName    string\n}\n\nfunc (n *FuncName) Pos() int {\n\treturn 0\n}\n\nfunc (n *FuncName) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif n.Schema != \"\" {\n\t\tbuf.WriteString(n.Schema)\n\t\tbuf.WriteString(\".\")\n\t}\n\tif n.Name != \"\" {\n\t\tbuf.WriteString(n.Name)\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/func_param.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype FuncParamMode int\n\nconst (\n\tFuncParamIn FuncParamMode = iota\n\tFuncParamOut\n\tFuncParamInOut\n\tFuncParamVariadic\n\tFuncParamTable\n\tFuncParamDefault\n)\n\ntype FuncParam struct {\n\tName    *string\n\tType    *TypeName\n\tDefExpr Node // Will always be &ast.TODO\n\tMode    FuncParamMode\n}\n\nfunc (n *FuncParam) Pos() int {\n\treturn 0\n}\n\nfunc (n *FuncParam) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\t// Parameter mode prefix (OUT, INOUT, VARIADIC)\n\tswitch n.Mode {\n\tcase FuncParamOut:\n\t\tbuf.WriteString(\"OUT \")\n\tcase FuncParamInOut:\n\t\tbuf.WriteString(\"INOUT \")\n\tcase FuncParamVariadic:\n\t\tbuf.WriteString(\"VARIADIC \")\n\t}\n\t// Parameter name (if present)\n\tif n.Name != nil {\n\t\tbuf.WriteString(*n.Name)\n\t\tbuf.WriteString(\" \")\n\t}\n\t// Parameter type\n\tbuf.astFormat(n.Type, d)\n}\n"
  },
  {
    "path": "internal/sql/ast/func_spec.go",
    "content": "package ast\n\ntype FuncSpec struct {\n\tName    *FuncName\n\tArgs    []*TypeName\n\tHasArgs bool\n}\n\nfunc (n *FuncSpec) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/function_parameter.go",
    "content": "package ast\n\ntype FunctionParameter struct {\n\tName    *string\n\tArgType *TypeName\n\tMode    FunctionParameterMode\n\tDefexpr Node\n}\n\nfunc (n *FunctionParameter) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/function_parameter_mode.go",
    "content": "package ast\n\ntype FunctionParameterMode uint\n\nfunc (n *FunctionParameterMode) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/grant_object_type.go",
    "content": "package ast\n\ntype GrantObjectType uint\n\nfunc (n *GrantObjectType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/grant_role_stmt.go",
    "content": "package ast\n\ntype GrantRoleStmt struct {\n\tGrantedRoles *List\n\tGranteeRoles *List\n\tIsGrant      bool\n\tGrantor      *RoleSpec\n\tBehavior     DropBehavior\n}\n\nfunc (n *GrantRoleStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/grant_stmt.go",
    "content": "package ast\n\ntype GrantStmt struct {\n\tIsGrant     bool\n\tTargtype    GrantTargetType\n\tObjtype     GrantObjectType\n\tObjects     *List\n\tPrivileges  *List\n\tGrantees    *List\n\tGrantOption bool\n\tBehavior    DropBehavior\n}\n\nfunc (n *GrantStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/grant_target_type.go",
    "content": "package ast\n\ntype GrantTargetType uint\n\nfunc (n *GrantTargetType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/grouping_func.go",
    "content": "package ast\n\ntype GroupingFunc struct {\n\tXpr         Node\n\tArgs        *List\n\tRefs        *List\n\tCols        *List\n\tAgglevelsup Index\n\tLocation    int\n}\n\nfunc (n *GroupingFunc) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/grouping_set.go",
    "content": "package ast\n\ntype GroupingSet struct {\n\tKind     GroupingSetKind\n\tContent  *List\n\tLocation int\n}\n\nfunc (n *GroupingSet) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/grouping_set_kind.go",
    "content": "package ast\n\ntype GroupingSetKind uint\n\nfunc (n *GroupingSetKind) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/import_foreign_schema_stmt.go",
    "content": "package ast\n\ntype ImportForeignSchemaStmt struct {\n\tServerName   *string\n\tRemoteSchema *string\n\tLocalSchema  *string\n\tListType     ImportForeignSchemaType\n\tTableList    *List\n\tOptions      *List\n}\n\nfunc (n *ImportForeignSchemaStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/import_foreign_schema_type.go",
    "content": "package ast\n\ntype ImportForeignSchemaType uint\n\nfunc (n *ImportForeignSchemaType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/in.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\n// In describes a 'select foo in (bar, baz)' type statement, though there are multiple important variants handled.\ntype In struct {\n\t// Expr is the value expression to be compared.\n\tExpr Node\n\t// List is the list expression in compare list.\n\tList []Node\n\t// Not is true, the expression is \"not in\".\n\tNot bool\n\t// Sel is the subquery, may be rewritten to other type of expression.\n\tSel      Node\n\tLocation int\n}\n\n// Pos returns the location.\nfunc (n *In) Pos() int {\n\treturn n.Location\n}\n\n// Format formats the In expression.\nfunc (n *In) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.astFormat(n.Expr, d)\n\tif n.Not {\n\t\tbuf.WriteString(\" NOT IN \")\n\t} else {\n\t\tbuf.WriteString(\" IN \")\n\t}\n\tif n.Sel != nil {\n\t\tbuf.WriteString(\"(\")\n\t\tbuf.astFormat(n.Sel, d)\n\t\tbuf.WriteString(\")\")\n\t} else if len(n.List) > 0 {\n\t\tbuf.WriteString(\"(\")\n\t\tfor i, item := range n.List {\n\t\t\tif i > 0 {\n\t\t\t\tbuf.WriteString(\", \")\n\t\t\t}\n\t\t\tbuf.astFormat(item, d)\n\t\t}\n\t\tbuf.WriteString(\")\")\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/index_elem.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype IndexElem struct {\n\tName          *string\n\tExpr          Node\n\tIndexcolname  *string\n\tCollation     *List\n\tOpclass       *List\n\tOrdering      SortByDir\n\tNullsOrdering SortByNulls\n}\n\nfunc (n *IndexElem) Pos() int {\n\treturn 0\n}\n\nfunc (n *IndexElem) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif n.Name != nil && *n.Name != \"\" {\n\t\tbuf.WriteString(*n.Name)\n\t} else if set(n.Expr) {\n\t\tbuf.astFormat(n.Expr, d)\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/index_stmt.go",
    "content": "package ast\n\ntype IndexStmt struct {\n\tIdxname        *string\n\tRelation       *RangeVar\n\tAccessMethod   *string\n\tTableSpace     *string\n\tIndexParams    *List\n\tOptions        *List\n\tWhereClause    Node\n\tExcludeOpNames *List\n\tIdxcomment     *string\n\tIndexOid       Oid\n\tUnique         bool\n\tPrimary        bool\n\tIsconstraint   bool\n\tDeferrable     bool\n\tInitdeferred   bool\n\tTransformed    bool\n\tConcurrent     bool\n\tIfNotExists    bool\n}\n\nfunc (n *IndexStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/infer_clause.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype InferClause struct {\n\tIndexElems  *List\n\tWhereClause Node\n\tConname     *string\n\tLocation    int\n}\n\nfunc (n *InferClause) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *InferClause) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif n.Conname != nil && *n.Conname != \"\" {\n\t\tbuf.WriteString(\"ON CONSTRAINT \")\n\t\tbuf.WriteString(*n.Conname)\n\t} else if items(n.IndexElems) {\n\t\tbuf.WriteString(\"(\")\n\t\tbuf.join(n.IndexElems, d, \", \")\n\t\tbuf.WriteString(\")\")\n\t\tif set(n.WhereClause) {\n\t\t\tbuf.WriteString(\" WHERE \")\n\t\t\tbuf.astFormat(n.WhereClause, d)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/inference_elem.go",
    "content": "package ast\n\ntype InferenceElem struct {\n\tXpr          Node\n\tExpr         Node\n\tInfercollid  Oid\n\tInferopclass Oid\n}\n\nfunc (n *InferenceElem) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/inline_code_block.go",
    "content": "package ast\n\ntype InlineCodeBlock struct {\n\tSourceText    *string\n\tLangOid       Oid\n\tLangIsTrusted bool\n}\n\nfunc (n *InlineCodeBlock) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/insert_stmt.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype InsertStmt struct {\n\tRelation             *RangeVar\n\tCols                 *List\n\tSelectStmt           Node\n\tOnConflictClause     *OnConflictClause\n\tOnDuplicateKeyUpdate *OnDuplicateKeyUpdate // MySQL-specific\n\tReturningList        *List\n\tWithClause           *WithClause\n\tOverride             OverridingKind\n\tDefaultValues        bool // SQLite-specific: INSERT INTO ... DEFAULT VALUES\n}\n\nfunc (n *InsertStmt) Pos() int {\n\treturn 0\n}\n\nfunc (n *InsertStmt) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\n\tif n.WithClause != nil {\n\t\tbuf.astFormat(n.WithClause, d)\n\t\tbuf.WriteString(\" \")\n\t}\n\n\tbuf.WriteString(\"INSERT INTO \")\n\tif n.Relation != nil {\n\t\tbuf.astFormat(n.Relation, d)\n\t}\n\tif items(n.Cols) {\n\t\tbuf.WriteString(\" (\")\n\t\tbuf.astFormat(n.Cols, d)\n\t\tbuf.WriteString(\")\")\n\t}\n\n\tif n.DefaultValues {\n\t\tbuf.WriteString(\" DEFAULT VALUES\")\n\t} else if set(n.SelectStmt) {\n\t\tbuf.WriteString(\" \")\n\t\tbuf.astFormat(n.SelectStmt, d)\n\t}\n\n\tif n.OnConflictClause != nil {\n\t\tbuf.WriteString(\" \")\n\t\tbuf.astFormat(n.OnConflictClause, d)\n\t}\n\n\tif n.OnDuplicateKeyUpdate != nil {\n\t\tbuf.WriteString(\" \")\n\t\tbuf.astFormat(n.OnDuplicateKeyUpdate, d)\n\t}\n\n\tif items(n.ReturningList) {\n\t\tbuf.WriteString(\" RETURNING \")\n\t\tbuf.astFormat(n.ReturningList, d)\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/integer.go",
    "content": "package ast\n\nimport (\n\t\"strconv\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/format\"\n)\n\ntype Integer struct {\n\tIval int64\n}\n\nfunc (n *Integer) Pos() int {\n\treturn 0\n}\n\nfunc (n *Integer) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(strconv.FormatInt(n.Ival, 10))\n}\n"
  },
  {
    "path": "internal/sql/ast/interval_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\n// IntervalExpr represents a MySQL INTERVAL expression like \"INTERVAL 1 DAY\"\ntype IntervalExpr struct {\n\tValue    Node\n\tUnit     string\n\tLocation int\n}\n\nfunc (n *IntervalExpr) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *IntervalExpr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"INTERVAL \")\n\tbuf.astFormat(n.Value, d)\n\tbuf.WriteString(\" \")\n\tbuf.WriteString(n.Unit)\n}\n"
  },
  {
    "path": "internal/sql/ast/into_clause.go",
    "content": "package ast\n\ntype IntoClause struct {\n\tRel            *RangeVar\n\tColNames       *List\n\tOptions        *List\n\tOnCommit       OnCommitAction\n\tTableSpaceName *string\n\tViewQuery      Node\n\tSkipData       bool\n}\n\nfunc (n *IntoClause) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/join_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype JoinExpr struct {\n\tJointype    JoinType\n\tIsNatural   bool\n\tLarg        Node\n\tRarg        Node\n\tUsingClause *List\n\tQuals       Node\n\tAlias       *Alias\n\tRtindex     int\n}\n\nfunc (n *JoinExpr) Pos() int {\n\treturn 0\n}\n\nfunc (n *JoinExpr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.astFormat(n.Larg, d)\n\tif n.IsNatural {\n\t\tbuf.WriteString(\" NATURAL\")\n\t}\n\tswitch n.Jointype {\n\tcase JoinTypeLeft:\n\t\tbuf.WriteString(\" LEFT JOIN \")\n\tcase JoinTypeRight:\n\t\tbuf.WriteString(\" RIGHT JOIN \")\n\tcase JoinTypeFull:\n\t\tbuf.WriteString(\" FULL JOIN \")\n\tcase JoinTypeInner:\n\t\t// CROSS JOIN has no ON or USING clause\n\t\tif !items(n.UsingClause) && !set(n.Quals) {\n\t\t\tbuf.WriteString(\" CROSS JOIN \")\n\t\t} else {\n\t\t\tbuf.WriteString(\" JOIN \")\n\t\t}\n\tdefault:\n\t\tbuf.WriteString(\" JOIN \")\n\t}\n\tbuf.astFormat(n.Rarg, d)\n\tif items(n.UsingClause) {\n\t\tbuf.WriteString(\" USING (\")\n\t\tbuf.join(n.UsingClause, d, \", \")\n\t\tbuf.WriteString(\")\")\n\t} else if set(n.Quals) {\n\t\tbuf.WriteString(\" ON \")\n\t\tbuf.astFormat(n.Quals, d)\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/join_type.go",
    "content": "package ast\n\n// JoinType is the reported type of the join\n// Enum copies https://github.com/pganalyze/libpg_query/blob/13-latest/protobuf/pg_query.proto#L2890-L2901\nconst (\n\t_ JoinType = iota\n\tJoinTypeInner\n\tJoinTypeLeft\n\tJoinTypeFull\n\tJoinTypeRight\n\tJoinTypeSemi\n\tJoinTypeAnti\n\tJoinTypeUniqueOuter\n\tJoinTypeUniqueInner\n)\n\ntype JoinType uint\n\nfunc (n *JoinType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/list.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype List struct {\n\tItems []Node\n}\n\nfunc (n *List) Pos() int {\n\treturn 0\n}\n\nfunc (n *List) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.join(n, d, \", \")\n}\n"
  },
  {
    "path": "internal/sql/ast/listen_stmt.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype ListenStmt struct {\n\tConditionname *string\n}\n\nfunc (n *ListenStmt) Pos() int {\n\treturn 0\n}\n\nfunc (n *ListenStmt) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"LISTEN \")\n\tif n.Conditionname != nil {\n\t\tbuf.WriteString(*n.Conditionname)\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/load_stmt.go",
    "content": "package ast\n\ntype LoadStmt struct {\n\tFilename *string\n}\n\nfunc (n *LoadStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/lock_clause_strength.go",
    "content": "package ast\n\ntype LockClauseStrength uint\n\nfunc (n *LockClauseStrength) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/lock_stmt.go",
    "content": "package ast\n\ntype LockStmt struct {\n\tRelations *List\n\tMode      int\n\tNowait    bool\n}\n\nfunc (n *LockStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/lock_wait_policy.go",
    "content": "package ast\n\ntype LockWaitPolicy uint\n\nfunc (n *LockWaitPolicy) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/locking_clause.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype LockingClause struct {\n\tLockedRels *List\n\tStrength   LockClauseStrength\n\tWaitPolicy LockWaitPolicy\n}\n\nfunc (n *LockingClause) Pos() int {\n\treturn 0\n}\n\n// LockClauseStrength values (matching pg_query_go)\nconst (\n\tLockClauseStrengthUndefined      LockClauseStrength = 0\n\tLockClauseStrengthNone           LockClauseStrength = 1\n\tLockClauseStrengthForKeyShare    LockClauseStrength = 2\n\tLockClauseStrengthForShare       LockClauseStrength = 3\n\tLockClauseStrengthForNoKeyUpdate LockClauseStrength = 4\n\tLockClauseStrengthForUpdate      LockClauseStrength = 5\n)\n\n// LockWaitPolicy values\nconst (\n\tLockWaitPolicyBlock LockWaitPolicy = 1\n\tLockWaitPolicySkip  LockWaitPolicy = 2\n\tLockWaitPolicyError LockWaitPolicy = 3\n)\n\nfunc (n *LockingClause) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"FOR \")\n\tswitch n.Strength {\n\tcase LockClauseStrengthForKeyShare:\n\t\tbuf.WriteString(\"KEY SHARE\")\n\tcase LockClauseStrengthForShare:\n\t\tbuf.WriteString(\"SHARE\")\n\tcase LockClauseStrengthForNoKeyUpdate:\n\t\tbuf.WriteString(\"NO KEY UPDATE\")\n\tcase LockClauseStrengthForUpdate:\n\t\tbuf.WriteString(\"UPDATE\")\n\t}\n\tif items(n.LockedRels) {\n\t\tbuf.WriteString(\" OF \")\n\t\tbuf.join(n.LockedRels, d, \", \")\n\t}\n\tswitch n.WaitPolicy {\n\tcase LockWaitPolicySkip:\n\t\tbuf.WriteString(\" SKIP LOCKED\")\n\tcase LockWaitPolicyError:\n\t\tbuf.WriteString(\" NOWAIT\")\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/min_max_expr.go",
    "content": "package ast\n\ntype MinMaxExpr struct {\n\tXpr          Node\n\tMinmaxtype   Oid\n\tMinmaxcollid Oid\n\tInputcollid  Oid\n\tOp           MinMaxOp\n\tArgs         *List\n\tLocation     int\n}\n\nfunc (n *MinMaxExpr) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/min_max_op.go",
    "content": "package ast\n\ntype MinMaxOp uint\n\nfunc (n *MinMaxOp) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/multi_assign_ref.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype MultiAssignRef struct {\n\tSource   Node\n\tColno    int\n\tNcolumns int\n}\n\nfunc (n *MultiAssignRef) Pos() int {\n\treturn 0\n}\n\nfunc (n *MultiAssignRef) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.astFormat(n.Source, d)\n}\n"
  },
  {
    "path": "internal/sql/ast/named_arg_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype NamedArgExpr struct {\n\tXpr       Node\n\tArg       Node\n\tName      *string\n\tArgnumber int\n\tLocation  int\n}\n\nfunc (n *NamedArgExpr) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *NamedArgExpr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif n.Name != nil {\n\t\tbuf.WriteString(*n.Name)\n\t}\n\tbuf.WriteString(\" => \")\n\tbuf.astFormat(n.Arg, d)\n}\n"
  },
  {
    "path": "internal/sql/ast/next_value_expr.go",
    "content": "package ast\n\ntype NextValueExpr struct {\n\tXpr    Node\n\tSeqid  Oid\n\tTypeId Oid\n}\n\nfunc (n *NextValueExpr) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/node.go",
    "content": "package ast\n\ntype Node interface {\n\tPos() int\n}\n"
  },
  {
    "path": "internal/sql/ast/notify_stmt.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype NotifyStmt struct {\n\tConditionname *string\n\tPayload       *string\n}\n\nfunc (n *NotifyStmt) Pos() int {\n\treturn 0\n}\n\nfunc (n *NotifyStmt) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"NOTIFY \")\n\tif n.Conditionname != nil {\n\t\tbuf.WriteString(*n.Conditionname)\n\t}\n\tif n.Payload != nil {\n\t\tbuf.WriteString(\", '\")\n\t\tbuf.WriteString(*n.Payload)\n\t\tbuf.WriteString(\"'\")\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/null.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype Null struct {\n}\n\nfunc (n *Null) Pos() int {\n\treturn 0\n}\nfunc (n *Null) Format(buf *TrackedBuffer, d format.Dialect) {\n\tbuf.WriteString(\"NULL\")\n}\n"
  },
  {
    "path": "internal/sql/ast/null_test_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype NullTest struct {\n\tXpr          Node\n\tArg          Node\n\tNulltesttype NullTestType\n\tArgisrow     bool\n\tLocation     int\n}\n\nfunc (n *NullTest) Pos() int {\n\treturn n.Location\n}\n\n// NullTestType values\nconst (\n\tNullTestTypeIsNull    NullTestType = 1\n\tNullTestTypeIsNotNull NullTestType = 2\n)\n\nfunc (n *NullTest) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.astFormat(n.Arg, d)\n\tswitch n.Nulltesttype {\n\tcase NullTestTypeIsNull:\n\t\tbuf.WriteString(\" IS NULL\")\n\tcase NullTestTypeIsNotNull:\n\t\tbuf.WriteString(\" IS NOT NULL\")\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/null_test_type.go",
    "content": "package ast\n\ntype NullTestType uint\n\nfunc (n *NullTestType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/object_type.go",
    "content": "package ast\n\ntype ObjectType uint\n\nfunc (n *ObjectType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/object_with_args.go",
    "content": "package ast\n\ntype ObjectWithArgs struct {\n\tObjname         *List\n\tObjargs         *List\n\tArgsUnspecified bool\n}\n\nfunc (n *ObjectWithArgs) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/on_commit_action.go",
    "content": "package ast\n\ntype OnCommitAction uint\n\nfunc (n *OnCommitAction) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/on_conflict_action.go",
    "content": "package ast\n\ntype OnConflictAction uint\n\nfunc (n *OnConflictAction) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/on_conflict_clause.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype OnConflictClause struct {\n\tAction      OnConflictAction\n\tInfer       *InferClause\n\tTargetList  *List\n\tWhereClause Node\n\tLocation    int\n}\n\nfunc (n *OnConflictClause) Pos() int {\n\treturn n.Location\n}\n\n// OnConflictAction values matching pg_query_go\nconst (\n\tOnConflictActionUndefined OnConflictAction = 0\n\tOnConflictActionNone      OnConflictAction = 1\n\tOnConflictActionNothing   OnConflictAction = 2\n\tOnConflictActionUpdate    OnConflictAction = 3\n)\n\nfunc (n *OnConflictClause) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"ON CONFLICT \")\n\tif n.Infer != nil {\n\t\tbuf.astFormat(n.Infer, d)\n\t\tbuf.WriteString(\" \")\n\t}\n\tswitch n.Action {\n\tcase OnConflictActionNothing:\n\t\tbuf.WriteString(\"DO NOTHING\")\n\tcase OnConflictActionUpdate:\n\t\tbuf.WriteString(\"DO UPDATE SET \")\n\t\t// Format as assignment list: name = val\n\t\tif n.TargetList != nil {\n\t\t\tfor i, item := range n.TargetList.Items {\n\t\t\t\tif i > 0 {\n\t\t\t\t\tbuf.WriteString(\", \")\n\t\t\t\t}\n\t\t\t\tif rt, ok := item.(*ResTarget); ok {\n\t\t\t\t\tif rt.Name != nil {\n\t\t\t\t\t\tbuf.WriteString(*rt.Name)\n\t\t\t\t\t}\n\t\t\t\t\tbuf.WriteString(\" = \")\n\t\t\t\t\tbuf.astFormat(rt.Val, d)\n\t\t\t\t} else {\n\t\t\t\t\tbuf.astFormat(item, d)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif set(n.WhereClause) {\n\t\t\tbuf.WriteString(\" WHERE \")\n\t\t\tbuf.astFormat(n.WhereClause, d)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/on_conflict_expr.go",
    "content": "package ast\n\ntype OnConflictExpr struct {\n\tAction          OnConflictAction\n\tArbiterElems    *List\n\tArbiterWhere    Node\n\tConstraint      Oid\n\tOnConflictSet   *List\n\tOnConflictWhere Node\n\tExclRelIndex    int\n\tExclRelTlist    *List\n}\n\nfunc (n *OnConflictExpr) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/on_duplicate_key_update.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\n// OnDuplicateKeyUpdate represents MySQL's ON DUPLICATE KEY UPDATE clause\ntype OnDuplicateKeyUpdate struct {\n\t// TargetList contains the assignments (column = value pairs)\n\tTargetList *List\n\tLocation   int\n}\n\nfunc (n *OnDuplicateKeyUpdate) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *OnDuplicateKeyUpdate) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"ON DUPLICATE KEY UPDATE \")\n\tif n.TargetList != nil {\n\t\tfor i, item := range n.TargetList.Items {\n\t\t\tif i > 0 {\n\t\t\t\tbuf.WriteString(\", \")\n\t\t\t}\n\t\t\tif rt, ok := item.(*ResTarget); ok {\n\t\t\t\tif rt.Name != nil {\n\t\t\t\t\tbuf.WriteString(*rt.Name)\n\t\t\t\t}\n\t\t\t\tbuf.WriteString(\" = \")\n\t\t\t\tbuf.astFormat(rt.Val, d)\n\t\t\t} else {\n\t\t\t\tbuf.astFormat(item, d)\n\t\t\t}\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/op_expr.go",
    "content": "package ast\n\ntype OpExpr struct {\n\tXpr          Node\n\tOpno         Oid\n\tOpresulttype Oid\n\tOpretset     bool\n\tOpcollid     Oid\n\tInputcollid  Oid\n\tArgs         *List\n\tLocation     int\n}\n\nfunc (n *OpExpr) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/overriding_kind.go",
    "content": "package ast\n\ntype OverridingKind uint\n\nfunc (n *OverridingKind) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/param.go",
    "content": "package ast\n\ntype Param struct {\n\tXpr         Node\n\tParamkind   ParamKind\n\tParamid     int\n\tParamtype   Oid\n\tParamtypmod int32\n\tParamcollid Oid\n\tLocation    int\n}\n\nfunc (n *Param) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/param_exec_data.go",
    "content": "package ast\n\ntype ParamExecData struct {\n\tExecPlan interface{}\n\tValue    Datum\n\tIsnull   bool\n}\n\nfunc (n *ParamExecData) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/param_extern_data.go",
    "content": "package ast\n\ntype ParamExternData struct {\n\tValue  Datum\n\tIsnull bool\n\tPflags uint16\n\tPtype  Oid\n}\n\nfunc (n *ParamExternData) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/param_kind.go",
    "content": "package ast\n\ntype ParamKind uint\n\nfunc (n *ParamKind) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/param_list_info_data.go",
    "content": "package ast\n\ntype ParamListInfoData struct {\n\tParamFetchArg  interface{}\n\tParserSetupArg interface{}\n\tNumParams      int\n\tParamMask      []uint32\n}\n\nfunc (n *ParamListInfoData) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/param_ref.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype ParamRef struct {\n\tNumber   int\n\tLocation int\n\tDollar   bool\n}\n\nfunc (n *ParamRef) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *ParamRef) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(d.Param(n.Number))\n}\n"
  },
  {
    "path": "internal/sql/ast/paren_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\n// ParenExpr represents a parenthesized expression\ntype ParenExpr struct {\n\tExpr     Node\n\tLocation int\n}\n\nfunc (n *ParenExpr) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *ParenExpr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"(\")\n\tbuf.astFormat(n.Expr, d)\n\tbuf.WriteString(\")\")\n}\n"
  },
  {
    "path": "internal/sql/ast/partition_bound_spec.go",
    "content": "package ast\n\ntype PartitionBoundSpec struct {\n\tStrategy    byte\n\tListdatums  *List\n\tLowerdatums *List\n\tUpperdatums *List\n\tLocation    int\n}\n\nfunc (n *PartitionBoundSpec) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/partition_cmd.go",
    "content": "package ast\n\ntype PartitionCmd struct {\n\tName  *RangeVar\n\tBound *PartitionBoundSpec\n}\n\nfunc (n *PartitionCmd) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/partition_elem.go",
    "content": "package ast\n\ntype PartitionElem struct {\n\tName      *string\n\tExpr      Node\n\tCollation *List\n\tOpclass   *List\n\tLocation  int\n}\n\nfunc (n *PartitionElem) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/partition_range_datum.go",
    "content": "package ast\n\ntype PartitionRangeDatum struct {\n\tKind     PartitionRangeDatumKind\n\tValue    Node\n\tLocation int\n}\n\nfunc (n *PartitionRangeDatum) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/partition_range_datum_kind.go",
    "content": "package ast\n\ntype PartitionRangeDatumKind uint\n\nfunc (n *PartitionRangeDatumKind) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/partition_spec.go",
    "content": "package ast\n\ntype PartitionSpec struct {\n\tStrategy   *string\n\tPartParams *List\n\tLocation   int\n}\n\nfunc (n *PartitionSpec) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/prepare_stmt.go",
    "content": "package ast\n\ntype PrepareStmt struct {\n\tName     *string\n\tArgtypes *List\n\tQuery    Node\n}\n\nfunc (n *PrepareStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/print.go",
    "content": "package ast\n\nimport (\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/debug\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/format\"\n)\n\ntype nodeFormatter interface {\n\tFormat(*TrackedBuffer, format.Dialect)\n}\n\ntype TrackedBuffer struct {\n\t*strings.Builder\n}\n\n// NewTrackedBuffer creates a new TrackedBuffer.\nfunc NewTrackedBuffer() *TrackedBuffer {\n\treturn &TrackedBuffer{\n\t\tBuilder: new(strings.Builder),\n\t}\n}\n\nfunc (t *TrackedBuffer) astFormat(n Node, d format.Dialect) {\n\tif ft, ok := n.(nodeFormatter); ok {\n\t\tft.Format(t, d)\n\t} else {\n\t\tdebug.Dump(n)\n\t}\n}\n\nfunc (t *TrackedBuffer) join(n *List, d format.Dialect, sep string) {\n\tif n == nil {\n\t\treturn\n\t}\n\tfor i, item := range n.Items {\n\t\tif _, ok := item.(*TODO); ok {\n\t\t\tcontinue\n\t\t}\n\t\tif i > 0 {\n\t\t\tt.WriteString(sep)\n\t\t}\n\t\tt.astFormat(item, d)\n\t}\n}\n\nfunc Format(n Node, d format.Dialect) string {\n\ttb := NewTrackedBuffer()\n\tif ft, ok := n.(nodeFormatter); ok {\n\t\tft.Format(tb, d)\n\t}\n\treturn tb.String()\n}\n\nfunc set(n Node) bool {\n\tif n == nil {\n\t\treturn false\n\t}\n\t_, ok := n.(*TODO)\n\tif ok {\n\t\treturn false\n\t}\n\treturn true\n}\n\nfunc items(n *List) bool {\n\tif n == nil {\n\t\treturn false\n\t}\n\treturn len(n.Items) > 0\n}\n\nfunc todo(n *List) bool {\n\tfor _, item := range n.Items {\n\t\tif _, ok := item.(*TODO); !ok {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n"
  },
  {
    "path": "internal/sql/ast/query.go",
    "content": "package ast\n\ntype Query struct {\n\tCommandType      CmdType\n\tQuerySource      QuerySource\n\tQueryId          uint32\n\tCanSetTag        bool\n\tUtilityStmt      Node\n\tResultRelation   int\n\tHasAggs          bool\n\tHasWindowFuncs   bool\n\tHasTargetSrfs    bool\n\tHasSubLinks      bool\n\tHasDistinctOn    bool\n\tHasRecursive     bool\n\tHasModifyingCte  bool\n\tHasForUpdate     bool\n\tHasRowSecurity   bool\n\tCteList          *List\n\tRtable           *List\n\tJointree         *FromExpr\n\tTargetList       *List\n\tOverride         OverridingKind\n\tOnConflict       *OnConflictExpr\n\tReturningList    *List\n\tGroupClause      *List\n\tGroupingSets     *List\n\tHavingQual       Node\n\tWindowClause     *List\n\tDistinctClause   *List\n\tSortClause       *List\n\tLimitOffset      Node\n\tLimitCount       Node\n\tRowMarks         *List\n\tSetOperations    Node\n\tConstraintDeps   *List\n\tWithCheckOptions *List\n\tStmtLocation     int\n\tStmtLen          int\n}\n\nfunc (n *Query) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/query_source.go",
    "content": "package ast\n\ntype QuerySource uint\n\nfunc (n *QuerySource) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/range_function.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype RangeFunction struct {\n\tLateral    bool\n\tOrdinality bool\n\tIsRowsfrom bool\n\tFunctions  *List\n\tAlias      *Alias\n\tColdeflist *List\n}\n\nfunc (n *RangeFunction) Pos() int {\n\treturn 0\n}\n\nfunc (n *RangeFunction) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif n.Lateral {\n\t\tbuf.WriteString(\"LATERAL \")\n\t}\n\tbuf.astFormat(n.Functions, d)\n\tif n.Ordinality {\n\t\tbuf.WriteString(\" WITH ORDINALITY\")\n\t}\n\tif n.Alias != nil {\n\t\tbuf.WriteString(\" AS \")\n\t\tbuf.astFormat(n.Alias, d)\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/range_subselect.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype RangeSubselect struct {\n\tLateral  bool\n\tSubquery Node\n\tAlias    *Alias\n}\n\nfunc (n *RangeSubselect) Pos() int {\n\treturn 0\n}\n\nfunc (n *RangeSubselect) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif n.Lateral {\n\t\tbuf.WriteString(\"LATERAL \")\n\t}\n\tbuf.WriteString(\"(\")\n\tbuf.astFormat(n.Subquery, d)\n\tbuf.WriteString(\")\")\n\tif n.Alias != nil {\n\t\tbuf.WriteString(\" AS \")\n\t\tbuf.astFormat(n.Alias, d)\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/range_table_func.go",
    "content": "package ast\n\ntype RangeTableFunc struct {\n\tLateral    bool\n\tDocexpr    Node\n\tRowexpr    Node\n\tNamespaces *List\n\tColumns    *List\n\tAlias      *Alias\n\tLocation   int\n}\n\nfunc (n *RangeTableFunc) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/range_table_func_col.go",
    "content": "package ast\n\ntype RangeTableFuncCol struct {\n\tColname       *string\n\tTypeName      *TypeName\n\tForOrdinality bool\n\tIsNotNull     bool\n\tColexpr       Node\n\tColdefexpr    Node\n\tLocation      int\n}\n\nfunc (n *RangeTableFuncCol) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/range_table_sample.go",
    "content": "package ast\n\ntype RangeTableSample struct {\n\tRelation   Node\n\tMethod     *List\n\tArgs       *List\n\tRepeatable Node\n\tLocation   int\n}\n\nfunc (n *RangeTableSample) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/range_tbl_entry.go",
    "content": "package ast\n\ntype RangeTblEntry struct {\n\tRtekind         RTEKind\n\tRelid           Oid\n\tRelkind         byte\n\tTablesample     *TableSampleClause\n\tSubquery        *Query\n\tSecurityBarrier bool\n\tJointype        JoinType\n\tJoinaliasvars   *List\n\tFunctions       *List\n\tFuncordinality  bool\n\tTablefunc       *TableFunc\n\tValuesLists     *List\n\tCtename         *string\n\tCtelevelsup     Index\n\tSelfReference   bool\n\tColtypes        *List\n\tColtypmods      *List\n\tColcollations   *List\n\tEnrname         *string\n\tEnrtuples       float64\n\tAlias           *Alias\n\tEref            *Alias\n\tLateral         bool\n\tInh             bool\n\tInFromCl        bool\n\tRequiredPerms   AclMode\n\tCheckAsUser     Oid\n\tSelectedCols    []uint32\n\tInsertedCols    []uint32\n\tUpdatedCols     []uint32\n\tSecurityQuals   *List\n}\n\nfunc (n *RangeTblEntry) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/range_tbl_function.go",
    "content": "package ast\n\ntype RangeTblFunction struct {\n\tFuncexpr          Node\n\tFunccolcount      int\n\tFunccolnames      *List\n\tFunccoltypes      *List\n\tFunccoltypmods    *List\n\tFunccolcollations *List\n\tFuncparams        []uint32\n}\n\nfunc (n *RangeTblFunction) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/range_tbl_ref.go",
    "content": "package ast\n\ntype RangeTblRef struct {\n\tRtindex int\n}\n\nfunc (n *RangeTblRef) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/range_var.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype RangeVar struct {\n\tCatalogname    *string\n\tSchemaname     *string\n\tRelname        *string\n\tInh            bool\n\tRelpersistence byte\n\tAlias          *Alias\n\tLocation       int\n}\n\nfunc (n *RangeVar) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *RangeVar) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif n.Schemaname != nil && *n.Schemaname != \"\" {\n\t\tbuf.WriteString(d.QuoteIdent(*n.Schemaname))\n\t\tbuf.WriteString(\".\")\n\t}\n\tif n.Relname != nil {\n\t\tbuf.WriteString(d.QuoteIdent(*n.Relname))\n\t}\n\tif n.Alias != nil {\n\t\tbuf.WriteString(\" AS \")\n\t\tbuf.astFormat(n.Alias, d)\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/raw_stmt.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype RawStmt struct {\n\tStmt         Node\n\tStmtLocation int\n\tStmtLen      int\n}\n\nfunc (n *RawStmt) Pos() int {\n\treturn n.StmtLocation\n}\n\nfunc (n *RawStmt) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n.Stmt != nil {\n\t\tbuf.astFormat(n.Stmt, d)\n\t}\n\tbuf.WriteString(\";\")\n}\n"
  },
  {
    "path": "internal/sql/ast/reassign_owned_stmt.go",
    "content": "package ast\n\ntype ReassignOwnedStmt struct {\n\tRoles   *List\n\tNewrole *RoleSpec\n}\n\nfunc (n *ReassignOwnedStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/refresh_mat_view_stmt.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype RefreshMatViewStmt struct {\n\tConcurrent bool\n\tSkipData   bool\n\tRelation   *RangeVar\n}\n\nfunc (n *RefreshMatViewStmt) Pos() int {\n\treturn 0\n}\n\nfunc (n *RefreshMatViewStmt) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"REFRESH MATERIALIZED VIEW \")\n\tbuf.astFormat(n.Relation, d)\n}\n"
  },
  {
    "path": "internal/sql/ast/reindex_object_type.go",
    "content": "package ast\n\ntype ReindexObjectType uint\n\nfunc (n *ReindexObjectType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/reindex_stmt.go",
    "content": "package ast\n\ntype ReindexStmt struct {\n\tKind     ReindexObjectType\n\tRelation *RangeVar\n\tName     *string\n\tOptions  int\n}\n\nfunc (n *ReindexStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/relabel_type.go",
    "content": "package ast\n\ntype RelabelType struct {\n\tXpr           Node\n\tArg           Node\n\tResulttype    Oid\n\tResulttypmod  int32\n\tResultcollid  Oid\n\tRelabelformat CoercionForm\n\tLocation      int\n}\n\nfunc (n *RelabelType) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/rename_column_stmt.go",
    "content": "package ast\n\ntype RenameColumnStmt struct {\n\tTable     *TableName\n\tCol       *ColumnRef\n\tNewName   *string\n\tMissingOk bool\n}\n\nfunc (n *RenameColumnStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/rename_stmt.go",
    "content": "package ast\n\ntype RenameStmt struct {\n\tRenameType   ObjectType\n\tRelationType ObjectType\n\tRelation     *RangeVar\n\tObject       Node\n\tSubname      *string\n\tNewname      *string\n\tBehavior     DropBehavior\n\tMissingOk    bool\n}\n\nfunc (n *RenameStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/rename_table_stmt.go",
    "content": "package ast\n\ntype RenameTableStmt struct {\n\tTable     *TableName\n\tNewName   *string\n\tMissingOk bool\n}\n\nfunc (n *RenameTableStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/rename_type_stmt.go",
    "content": "package ast\n\ntype RenameTypeStmt struct {\n\tType    *TypeName\n\tNewName *string\n}\n\nfunc (n *RenameTypeStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/replica_identity_stmt.go",
    "content": "package ast\n\ntype ReplicaIdentityStmt struct {\n\tIdentityType byte\n\tName         *string\n}\n\nfunc (n *ReplicaIdentityStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/res_target.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype ResTarget struct {\n\tName        *string\n\tIndirection *List\n\tVal         Node\n\tLocation    int\n}\n\nfunc (n *ResTarget) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *ResTarget) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif set(n.Val) {\n\t\tbuf.astFormat(n.Val, d)\n\t\tif n.Name != nil {\n\t\t\tbuf.WriteString(\" AS \")\n\t\t\tbuf.WriteString(d.QuoteIdent(*n.Name))\n\t\t}\n\t} else {\n\t\tif n.Name != nil {\n\t\t\tbuf.WriteString(d.QuoteIdent(*n.Name))\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/role_spec.go",
    "content": "package ast\n\ntype RoleSpec struct {\n\tRoletype RoleSpecType\n\tRolename *string\n\tLocation int\n}\n\nfunc (n *RoleSpec) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/role_spec_type.go",
    "content": "package ast\n\ntype RoleSpecType uint\n\nfunc (n *RoleSpecType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/role_stmt_type.go",
    "content": "package ast\n\ntype RoleStmtType uint\n\nfunc (n *RoleStmtType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/row_compare_expr.go",
    "content": "package ast\n\ntype RowCompareExpr struct {\n\tXpr          Node\n\tRctype       RowCompareType\n\tOpnos        *List\n\tOpfamilies   *List\n\tInputcollids *List\n\tLargs        *List\n\tRargs        *List\n}\n\nfunc (n *RowCompareExpr) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/row_compare_type.go",
    "content": "package ast\n\ntype RowCompareType uint\n\nfunc (n *RowCompareType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/row_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype RowExpr struct {\n\tXpr       Node\n\tArgs      *List\n\tRowTypeid Oid\n\tRowFormat CoercionForm\n\tColnames  *List\n\tLocation  int\n}\n\nfunc (n *RowExpr) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *RowExpr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif items(n.Args) {\n\t\tbuf.WriteString(\"args\")\n\t\tbuf.astFormat(n.Args, d)\n\t}\n\tbuf.astFormat(n.Xpr, d)\n\tif items(n.Colnames) {\n\t\tbuf.WriteString(\"cols\")\n\t\tbuf.astFormat(n.Colnames, d)\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/row_mark_clause.go",
    "content": "package ast\n\ntype RowMarkClause struct {\n\tRti        Index\n\tStrength   LockClauseStrength\n\tWaitPolicy LockWaitPolicy\n\tPushedDown bool\n}\n\nfunc (n *RowMarkClause) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/rte_kind.go",
    "content": "package ast\n\ntype RTEKind uint\n\nfunc (n *RTEKind) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/rule_stmt.go",
    "content": "package ast\n\ntype RuleStmt struct {\n\tRelation    *RangeVar\n\tRulename    *string\n\tWhereClause Node\n\tEvent       CmdType\n\tInstead     bool\n\tActions     *List\n\tReplace     bool\n}\n\nfunc (n *RuleStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/scalar_array_op_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype ScalarArrayOpExpr struct {\n\tXpr         Node\n\tOpno        Oid\n\tUseOr       bool\n\tInputcollid Oid\n\tArgs        *List\n\tLocation    int\n}\n\nfunc (n *ScalarArrayOpExpr) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *ScalarArrayOpExpr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\t// ScalarArrayOpExpr represents \"scalar op ANY/ALL (array)\"\n\t// Args[0] is the left operand, Args[1] is the array\n\tif n.Args != nil && len(n.Args.Items) >= 2 {\n\t\tbuf.astFormat(n.Args.Items[0], d)\n\t\tbuf.WriteString(\" = \") // TODO: Use actual operator based on Opno\n\t\tif n.UseOr {\n\t\t\tbuf.WriteString(\"ANY(\")\n\t\t} else {\n\t\t\tbuf.WriteString(\"ALL(\")\n\t\t}\n\t\tbuf.astFormat(n.Args.Items[1], d)\n\t\tbuf.WriteString(\")\")\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/scan_direction.go",
    "content": "package ast\n\ntype ScanDirection uint\n\nfunc (n *ScanDirection) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/sec_label_stmt.go",
    "content": "package ast\n\ntype SecLabelStmt struct {\n\tObjtype  ObjectType\n\tObject   Node\n\tProvider *string\n\tLabel    *string\n}\n\nfunc (n *SecLabelStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/select_stmt.go",
    "content": "package ast\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/format\"\n)\n\ntype SelectStmt struct {\n\tDistinctClause *List\n\tIntoClause     *IntoClause\n\tTargetList     *List\n\tFromClause     *List\n\tWhereClause    Node\n\tGroupClause    *List\n\tHavingClause   Node\n\tWindowClause   *List\n\tValuesLists    *List\n\tSortClause     *List\n\tLimitOffset    Node\n\tLimitCount     Node\n\tLockingClause  *List\n\tWithClause     *WithClause\n\tOp             SetOperation\n\tAll            bool\n\tLarg           *SelectStmt\n\tRarg           *SelectStmt\n}\n\nfunc (n *SelectStmt) Pos() int {\n\treturn 0\n}\n\nfunc (n *SelectStmt) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\n\tif items(n.ValuesLists) {\n\t\tbuf.WriteString(\"VALUES \")\n\t\t// ValuesLists is a list of rows, where each row is a List of values\n\t\tfor i, row := range n.ValuesLists.Items {\n\t\t\tif i > 0 {\n\t\t\t\tbuf.WriteString(\", \")\n\t\t\t}\n\t\t\tbuf.WriteString(\"(\")\n\t\t\tbuf.astFormat(row, d)\n\t\t\tbuf.WriteString(\")\")\n\t\t}\n\t\treturn\n\t}\n\n\tif n.WithClause != nil {\n\t\tbuf.astFormat(n.WithClause, d)\n\t\tbuf.WriteString(\" \")\n\t}\n\n\tif n.Larg != nil && n.Rarg != nil {\n\t\tbuf.astFormat(n.Larg, d)\n\t\tswitch n.Op {\n\t\tcase Union:\n\t\t\tbuf.WriteString(\" UNION \")\n\t\tcase Except:\n\t\t\tbuf.WriteString(\" EXCEPT \")\n\t\tcase Intersect:\n\t\t\tbuf.WriteString(\" INTERSECT \")\n\t\t}\n\t\tif n.All {\n\t\t\tbuf.WriteString(\"ALL \")\n\t\t}\n\t\tbuf.astFormat(n.Rarg, d)\n\t} else {\n\t\tbuf.WriteString(\"SELECT \")\n\t}\n\n\tif items(n.DistinctClause) {\n\t\tbuf.WriteString(\"DISTINCT \")\n\t\tif !todo(n.DistinctClause) {\n\t\t\tfmt.Fprintf(buf, \"ON (\")\n\t\t\tbuf.astFormat(n.DistinctClause, d)\n\t\t\tfmt.Fprintf(buf, \")\")\n\t\t}\n\t}\n\tbuf.astFormat(n.TargetList, d)\n\n\tif items(n.FromClause) {\n\t\tbuf.WriteString(\" FROM \")\n\t\tbuf.astFormat(n.FromClause, d)\n\t}\n\n\tif set(n.WhereClause) {\n\t\tbuf.WriteString(\" WHERE \")\n\t\tbuf.astFormat(n.WhereClause, d)\n\t}\n\n\tif items(n.GroupClause) {\n\t\tbuf.WriteString(\" GROUP BY \")\n\t\tbuf.astFormat(n.GroupClause, d)\n\t}\n\n\tif set(n.HavingClause) {\n\t\tbuf.WriteString(\" HAVING \")\n\t\tbuf.astFormat(n.HavingClause, d)\n\t}\n\n\tif items(n.SortClause) {\n\t\tbuf.WriteString(\" ORDER BY \")\n\t\tbuf.astFormat(n.SortClause, d)\n\t}\n\n\tif set(n.LimitCount) {\n\t\tbuf.WriteString(\" LIMIT \")\n\t\tbuf.astFormat(n.LimitCount, d)\n\t}\n\n\tif set(n.LimitOffset) {\n\t\tbuf.WriteString(\" OFFSET \")\n\t\tbuf.astFormat(n.LimitOffset, d)\n\t}\n\n\tif items(n.LockingClause) {\n\t\tbuf.WriteString(\" \")\n\t\tbuf.astFormat(n.LockingClause, d)\n\t}\n\n}\n"
  },
  {
    "path": "internal/sql/ast/set_op_cmd.go",
    "content": "package ast\n\ntype SetOpCmd uint\n\nfunc (n *SetOpCmd) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/set_op_strategy.go",
    "content": "package ast\n\ntype SetOpStrategy uint\n\nfunc (n *SetOpStrategy) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/set_operation.go",
    "content": "package ast\n\nimport \"strconv\"\n\nconst (\n\tNone SetOperation = iota\n\tUnion\n\tIntersect\n\tExcept\n)\n\ntype SetOperation uint\n\nfunc (n *SetOperation) Pos() int {\n\treturn 0\n}\n\nfunc (n SetOperation) String() string {\n\tswitch n {\n\tcase None:\n\t\treturn \"None\"\n\tcase Union:\n\t\treturn \"Union\"\n\tcase Intersect:\n\t\treturn \"Intersect\"\n\tcase Except:\n\t\treturn \"Except\"\n\tdefault:\n\t\treturn \"Unknown(\" + strconv.FormatUint(uint64(n), 10) + \")\"\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/set_operation_stmt.go",
    "content": "package ast\n\ntype SetOperationStmt struct {\n\tOp            SetOperation\n\tAll           bool\n\tLarg          Node\n\tRarg          Node\n\tColTypes      *List\n\tColTypmods    *List\n\tColCollations *List\n\tGroupClauses  *List\n}\n\nfunc (n *SetOperationStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/set_to_default.go",
    "content": "package ast\n\ntype SetToDefault struct {\n\tXpr       Node\n\tTypeId    Oid\n\tTypeMod   int32\n\tCollation Oid\n\tLocation  int\n}\n\nfunc (n *SetToDefault) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/sort_by.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype SortBy struct {\n\tNode        Node\n\tSortbyDir   SortByDir\n\tSortbyNulls SortByNulls\n\tUseOp       *List\n\tLocation    int\n}\n\nfunc (n *SortBy) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *SortBy) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.astFormat(n.Node, d)\n\tswitch n.SortbyDir {\n\tcase SortByDirAsc:\n\t\tbuf.WriteString(\" ASC\")\n\tcase SortByDirDesc:\n\t\tbuf.WriteString(\" DESC\")\n\t}\n\tswitch n.SortbyNulls {\n\tcase SortByNullsFirst:\n\t\tbuf.WriteString(\" NULLS FIRST\")\n\tcase SortByNullsLast:\n\t\tbuf.WriteString(\" NULLS LAST\")\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/sort_by_dir.go",
    "content": "package ast\n\ntype SortByDir uint\n\nfunc (n *SortByDir) Pos() int {\n\treturn 0\n}\n\nconst (\n\tSortByDirUndefined SortByDir = 0\n\tSortByDirDefault   SortByDir = 1\n\tSortByDirAsc       SortByDir = 2\n\tSortByDirDesc      SortByDir = 3\n\tSortByDirUsing     SortByDir = 4\n)\n"
  },
  {
    "path": "internal/sql/ast/sort_by_nulls.go",
    "content": "package ast\n\ntype SortByNulls uint\n\nfunc (n *SortByNulls) Pos() int {\n\treturn 0\n}\n\nconst (\n\tSortByNullsUndefined SortByNulls = 0\n\tSortByNullsDefault   SortByNulls = 1\n\tSortByNullsFirst     SortByNulls = 2\n\tSortByNullsLast      SortByNulls = 3\n)\n"
  },
  {
    "path": "internal/sql/ast/sort_group_clause.go",
    "content": "package ast\n\ntype SortGroupClause struct {\n\tTleSortGroupRef Index\n\tEqop            Oid\n\tSortop          Oid\n\tNullsFirst      bool\n\tHashable        bool\n}\n\nfunc (n *SortGroupClause) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/sql_value_function.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype SQLValueFunction struct {\n\tXpr      Node\n\tOp       SQLValueFunctionOp\n\tType     Oid\n\tTypmod   int32\n\tLocation int\n}\n\nfunc (n *SQLValueFunction) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *SQLValueFunction) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tswitch n.Op {\n\tcase SVFOpCurrentDate:\n\t\tbuf.WriteString(\"CURRENT_DATE\")\n\tcase SVFOpCurrentTime:\n\tcase SVFOpCurrentTimeN:\n\tcase SVFOpCurrentTimestamp:\n\tcase SVFOpCurrentTimestampN:\n\tcase SVFOpLocaltime:\n\tcase SVFOpLocaltimeN:\n\tcase SVFOpLocaltimestamp:\n\tcase SVFOpLocaltimestampN:\n\tcase SVFOpCurrentRole:\n\tcase SVFOpCurrentUser:\n\tcase SVFOpUser:\n\tcase SVFOpSessionUser:\n\tcase SVFOpCurrentCatalog:\n\tcase SVFOpCurrentSchema:\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/sql_value_function_op.go",
    "content": "package ast\n\ntype SQLValueFunctionOp uint\n\nconst (\n\t// https://github.com/pganalyze/libpg_query/blob/15-latest/protobuf/pg_query.proto#L2984C1-L3003C1\n\t_ SQLValueFunctionOp = iota\n\tSVFOpCurrentDate\n\tSVFOpCurrentTime\n\tSVFOpCurrentTimeN\n\tSVFOpCurrentTimestamp\n\tSVFOpCurrentTimestampN\n\tSVFOpLocaltime\n\tSVFOpLocaltimeN\n\tSVFOpLocaltimestamp\n\tSVFOpLocaltimestampN\n\tSVFOpCurrentRole\n\tSVFOpCurrentUser\n\tSVFOpUser\n\tSVFOpSessionUser\n\tSVFOpCurrentCatalog\n\tSVFOpCurrentSchema\n)\n\nfunc (n *SQLValueFunctionOp) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/statement.go",
    "content": "package ast\n\ntype Statement struct {\n\tRaw *RawStmt\n}\n\nfunc (n *Statement) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/string.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype String struct {\n\tStr string\n}\n\nfunc (n *String) Pos() int {\n\treturn 0\n}\n\nfunc (n *String) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(n.Str)\n}\n"
  },
  {
    "path": "internal/sql/ast/sub_link.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype SubLinkType uint\n\nconst (\n\tEXISTS_SUBLINK SubLinkType = iota\n\tALL_SUBLINK\n\tANY_SUBLINK\n\tROWCOMPARE_SUBLINK\n\tEXPR_SUBLINK\n\tMULTIEXPR_SUBLINK\n\tARRAY_SUBLINK\n\tCTE_SUBLINK /* for SubPlans only */\n)\n\ntype SubLink struct {\n\tXpr         Node\n\tSubLinkType SubLinkType\n\tSubLinkId   int\n\tTestexpr    Node\n\tOperName    *List\n\tSubselect   Node\n\tLocation    int\n}\n\nfunc (n *SubLink) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *SubLink) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\t// Format the test expression if present (for IN subqueries etc.)\n\thasTestExpr := n.Testexpr != nil\n\tif hasTestExpr {\n\t\tbuf.astFormat(n.Testexpr, d)\n\t}\n\tswitch n.SubLinkType {\n\tcase EXISTS_SUBLINK:\n\t\tbuf.WriteString(\"EXISTS (\")\n\tcase ANY_SUBLINK:\n\t\tif hasTestExpr {\n\t\t\tbuf.WriteString(\" IN (\")\n\t\t} else {\n\t\t\tbuf.WriteString(\"IN (\")\n\t\t}\n\tdefault:\n\t\tif hasTestExpr {\n\t\t\tbuf.WriteString(\" (\")\n\t\t} else {\n\t\t\tbuf.WriteString(\"(\")\n\t\t}\n\t}\n\tbuf.astFormat(n.Subselect, d)\n\tbuf.WriteString(\")\")\n}\n"
  },
  {
    "path": "internal/sql/ast/sub_plan.go",
    "content": "package ast\n\ntype SubPlan struct {\n\tXpr               Node\n\tSubLinkType       SubLinkType\n\tTestexpr          Node\n\tParamIds          *List\n\tPlanId            int\n\tPlanName          *string\n\tFirstColType      Oid\n\tFirstColTypmod    int32\n\tFirstColCollation Oid\n\tUseHashTable      bool\n\tUnknownEqFalse    bool\n\tParallelSafe      bool\n\tSetParam          *List\n\tParParam          *List\n\tArgs              *List\n\tStartupCost       Cost\n\tPerCallCost       Cost\n}\n\nfunc (n *SubPlan) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/table_func.go",
    "content": "package ast\n\ntype TableFunc struct {\n\tNsUris        *List\n\tNsNames       *List\n\tDocexpr       Node\n\tRowexpr       Node\n\tColnames      *List\n\tColtypes      *List\n\tColtypmods    *List\n\tColcollations *List\n\tColexprs      *List\n\tColdefexprs   *List\n\tNotnulls      []uint32\n\tOrdinalitycol int\n\tLocation      int\n}\n\nfunc (n *TableFunc) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/table_like_clause.go",
    "content": "package ast\n\ntype TableLikeClause struct {\n\tRelation *RangeVar\n\tOptions  uint32\n}\n\nfunc (n *TableLikeClause) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/table_like_option.go",
    "content": "package ast\n\ntype TableLikeOption uint\n\nfunc (n *TableLikeOption) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/table_name.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype TableName struct {\n\tCatalog string\n\tSchema  string\n\tName    string\n}\n\nfunc (n *TableName) Pos() int {\n\treturn 0\n}\n\nfunc (n *TableName) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif n.Schema != \"\" {\n\t\tbuf.WriteString(n.Schema)\n\t\tbuf.WriteString(\".\")\n\t}\n\tif n.Name != \"\" {\n\t\tbuf.WriteString(n.Name)\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/table_sample_clause.go",
    "content": "package ast\n\ntype TableSampleClause struct {\n\tTsmhandler Oid\n\tArgs       *List\n\tRepeatable Node\n}\n\nfunc (n *TableSampleClause) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/target_entry.go",
    "content": "package ast\n\ntype TargetEntry struct {\n\tXpr             Node\n\tExpr            Node\n\tResno           AttrNumber\n\tResname         *string\n\tRessortgroupref Index\n\tResorigtbl      Oid\n\tResorigcol      AttrNumber\n\tResjunk         bool\n}\n\nfunc (n *TargetEntry) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/todo.go",
    "content": "package ast\n\ntype TODO struct {\n}\n\nfunc (n *TODO) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/transaction_stmt.go",
    "content": "package ast\n\ntype TransactionStmt struct {\n\tKind    TransactionStmtKind\n\tOptions *List\n\tGid     *string\n}\n\nfunc (n *TransactionStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/transaction_stmt_kind.go",
    "content": "package ast\n\ntype TransactionStmtKind uint\n\nfunc (n *TransactionStmtKind) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/trigger_transition.go",
    "content": "package ast\n\ntype TriggerTransition struct {\n\tName    *string\n\tIsNew   bool\n\tIsTable bool\n}\n\nfunc (n *TriggerTransition) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/truncate_stmt.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype TruncateStmt struct {\n\tRelations   *List\n\tRestartSeqs bool\n\tBehavior    DropBehavior\n}\n\nfunc (n *TruncateStmt) Pos() int {\n\treturn 0\n}\n\nfunc (n *TruncateStmt) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"TRUNCATE \")\n\tbuf.astFormat(n.Relations, d)\n}\n"
  },
  {
    "path": "internal/sql/ast/type_cast.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype TypeCast struct {\n\tArg      Node\n\tTypeName *TypeName\n\tLocation int\n}\n\nfunc (n *TypeCast) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *TypeCast) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\t// Format the arg and type to strings first\n\targBuf := NewTrackedBuffer()\n\targBuf.astFormat(n.Arg, d)\n\n\ttypeBuf := NewTrackedBuffer()\n\ttypeBuf.astFormat(n.TypeName, d)\n\n\tbuf.WriteString(d.Cast(argBuf.String(), typeBuf.String()))\n}\n"
  },
  {
    "path": "internal/sql/ast/type_name.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype TypeName struct {\n\tCatalog string\n\tSchema  string\n\tName    string\n\n\t// From pg.TypeName\n\tNames       *List\n\tTypeOid     Oid\n\tSetof       bool\n\tPctType     bool\n\tTypmods     *List\n\tTypemod     int32\n\tArrayBounds *List\n\tLocation    int\n}\n\nfunc (n *TypeName) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *TypeName) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif items(n.Names) {\n\t\t// Check if this is a qualified type (e.g., pg_catalog.int4)\n\t\tif len(n.Names.Items) == 2 {\n\t\t\tfirst, _ := n.Names.Items[0].(*String)\n\t\t\tsecond, _ := n.Names.Items[1].(*String)\n\t\t\tif first != nil && second != nil {\n\t\t\t\tbuf.WriteString(d.TypeName(first.Str, second.Str))\n\t\t\t\tgoto addMods\n\t\t\t}\n\t\t}\n\t\t// For single name types, just output as-is\n\t\tif len(n.Names.Items) == 1 {\n\t\t\tif s, ok := n.Names.Items[0].(*String); ok {\n\t\t\t\tbuf.WriteString(d.TypeName(\"\", s.Str))\n\t\t\t\tgoto addMods\n\t\t\t}\n\t\t}\n\t\tbuf.join(n.Names, d, \".\")\n\t} else {\n\t\tbuf.WriteString(d.TypeName(n.Schema, n.Name))\n\t}\naddMods:\n\t// Add type modifiers (e.g., varchar(255))\n\tif items(n.Typmods) {\n\t\tbuf.WriteString(\"(\")\n\t\tbuf.join(n.Typmods, d, \", \")\n\t\tbuf.WriteString(\")\")\n\t}\n\tif items(n.ArrayBounds) {\n\t\tbuf.WriteString(\"[]\")\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/typedefs.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype AclMode uint32\n\nfunc (n *AclMode) Pos() int {\n\treturn 0\n}\n\ntype DistinctExpr OpExpr\n\nfunc (n *DistinctExpr) Pos() int {\n\treturn 0\n}\n\ntype NullIfExpr OpExpr\n\nfunc (n *NullIfExpr) Pos() int {\n\treturn 0\n}\n\nfunc (n *NullIfExpr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"NULLIF(\")\n\tbuf.join(n.Args, d, \", \")\n\tbuf.WriteString(\")\")\n}\n\ntype Selectivity float64\n\nfunc (n *Selectivity) Pos() int {\n\treturn 0\n}\n\ntype Cost float64\n\nfunc (n *Cost) Pos() int {\n\treturn 0\n}\n\ntype ParamListInfo ParamListInfoData\n\nfunc (n *ParamListInfo) Pos() int {\n\treturn 0\n}\n\ntype AttrNumber int16\n\nfunc (n *AttrNumber) Pos() int {\n\treturn 0\n}\n\ntype Pointer byte\n\nfunc (n *Pointer) Pos() int {\n\treturn 0\n}\n\ntype Index uint64\n\nfunc (n *Index) Pos() int {\n\treturn 0\n}\n\ntype Offset int64\n\nfunc (n *Offset) Pos() int {\n\treturn 0\n}\n\ntype regproc Oid\n\nfunc (n *regproc) Pos() int {\n\treturn 0\n}\n\ntype RegProcedure regproc\n\nfunc (n *RegProcedure) Pos() int {\n\treturn 0\n}\n\ntype TransactionId uint32\n\nfunc (n *TransactionId) Pos() int {\n\treturn 0\n}\n\ntype LocalTransactionId uint32\n\nfunc (n *LocalTransactionId) Pos() int {\n\treturn 0\n}\n\ntype SubTransactionId uint32\n\nfunc (n *SubTransactionId) Pos() int {\n\treturn 0\n}\n\ntype MultiXactId TransactionId\n\nfunc (n *MultiXactId) Pos() int {\n\treturn 0\n}\n\ntype MultiXactOffset uint32\n\nfunc (n *MultiXactOffset) Pos() int {\n\treturn 0\n}\n\ntype CommandId uint32\n\nfunc (n *CommandId) Pos() int {\n\treturn 0\n}\n\ntype Datum uintptr\n\nfunc (n *Datum) Pos() int {\n\treturn 0\n}\n\ntype DatumPtr Datum\n\nfunc (n *DatumPtr) Pos() int {\n\treturn 0\n}\n\ntype Oid uint64\n\nfunc (n *Oid) Pos() int {\n\treturn 0\n}\n\ntype BlockNumber uint32\n\nfunc (n *BlockNumber) Pos() int {\n\treturn 0\n}\n\ntype BlockId BlockIdData\n\nfunc (n *BlockId) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/unlisten_stmt.go",
    "content": "package ast\n\ntype UnlistenStmt struct {\n\tConditionname *string\n}\n\nfunc (n *UnlistenStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/update_stmt.go",
    "content": "package ast\n\nimport (\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/format\"\n)\n\ntype UpdateStmt struct {\n\tRelations     *List\n\tTargetList    *List\n\tWhereClause   Node\n\tFromClause    *List\n\tLimitCount    Node\n\tReturningList *List\n\tWithClause    *WithClause\n}\n\nfunc (n *UpdateStmt) Pos() int {\n\treturn 0\n}\n\nfunc (n *UpdateStmt) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tif n.WithClause != nil {\n\t\tbuf.astFormat(n.WithClause, d)\n\t\tbuf.WriteString(\" \")\n\t}\n\n\tbuf.WriteString(\"UPDATE \")\n\tif items(n.Relations) {\n\t\tbuf.astFormat(n.Relations, d)\n\t}\n\n\tif items(n.TargetList) {\n\t\tbuf.WriteString(\" SET \")\n\n\t\tmulti := false\n\t\tfor _, item := range n.TargetList.Items {\n\t\t\tswitch nn := item.(type) {\n\t\t\tcase *ResTarget:\n\t\t\t\tif _, ok := nn.Val.(*MultiAssignRef); ok {\n\t\t\t\t\tmulti = true\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif multi {\n\t\t\tnames := []string{}\n\t\t\tvals := &List{}\n\t\t\tfor _, item := range n.TargetList.Items {\n\t\t\t\tres, ok := item.(*ResTarget)\n\t\t\t\tif !ok {\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tif res.Name != nil {\n\t\t\t\t\tnames = append(names, *res.Name)\n\t\t\t\t}\n\t\t\t\tmulti, ok := res.Val.(*MultiAssignRef)\n\t\t\t\tif !ok {\n\t\t\t\t\tvals.Items = append(vals.Items, res.Val)\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\trow, ok := multi.Source.(*RowExpr)\n\t\t\t\tif !ok {\n\t\t\t\t\tvals.Items = append(vals.Items, res.Val)\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tvals.Items = append(vals.Items, row.Args.Items[multi.Colno-1])\n\t\t\t}\n\n\t\t\tbuf.WriteString(\"(\")\n\t\t\tbuf.WriteString(strings.Join(names, \",\"))\n\t\t\tbuf.WriteString(\") = (\")\n\t\t\tbuf.join(vals, d, \",\")\n\t\t\tbuf.WriteString(\")\")\n\t\t} else {\n\t\t\tfor i, item := range n.TargetList.Items {\n\t\t\t\tif i > 0 {\n\t\t\t\t\tbuf.WriteString(\", \")\n\t\t\t\t}\n\t\t\t\tswitch nn := item.(type) {\n\t\t\t\tcase *ResTarget:\n\t\t\t\t\tif nn.Name != nil {\n\t\t\t\t\t\tbuf.WriteString(d.QuoteIdent(*nn.Name))\n\t\t\t\t\t}\n\t\t\t\t\t// Handle array subscript indirection (e.g., names[$1])\n\t\t\t\t\tif items(nn.Indirection) {\n\t\t\t\t\t\tfor _, ind := range nn.Indirection.Items {\n\t\t\t\t\t\t\tbuf.astFormat(ind, d)\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tbuf.WriteString(\" = \")\n\t\t\t\t\tbuf.astFormat(nn.Val, d)\n\t\t\t\tdefault:\n\t\t\t\t\tbuf.astFormat(item, d)\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\tif items(n.FromClause) {\n\t\tbuf.WriteString(\" FROM \")\n\t\tbuf.astFormat(n.FromClause, d)\n\t}\n\n\tif set(n.WhereClause) {\n\t\tbuf.WriteString(\" WHERE \")\n\t\tbuf.astFormat(n.WhereClause, d)\n\t}\n\n\tif set(n.LimitCount) {\n\t\tbuf.WriteString(\" LIMIT \")\n\t\tbuf.astFormat(n.LimitCount, d)\n\t}\n\n\tif items(n.ReturningList) {\n\t\tbuf.WriteString(\" RETURNING \")\n\t\tbuf.astFormat(n.ReturningList, d)\n\t}\n}\n"
  },
  {
    "path": "internal/sql/ast/vacuum_option.go",
    "content": "package ast\n\ntype VacuumOption uint\n\nfunc (n *VacuumOption) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/vacuum_stmt.go",
    "content": "package ast\n\ntype VacuumStmt struct {\n\tOptions  int\n\tRelation *RangeVar\n\tVaCols   *List\n}\n\nfunc (n *VacuumStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/var.go",
    "content": "package ast\n\ntype Var struct {\n\tXpr         Node\n\tVarno       Index\n\tVarattno    AttrNumber\n\tVartype     Oid\n\tVartypmod   int32\n\tVarcollid   Oid\n\tVarlevelsup Index\n\tVarnoold    Index\n\tVaroattno   AttrNumber\n\tLocation    int\n}\n\nfunc (n *Var) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/variable_expr.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\n// VariableExpr represents a MySQL user variable (e.g., @user_id)\n// This is distinct from sqlc's @param named parameter syntax.\ntype VariableExpr struct {\n\tName     string\n\tLocation int\n}\n\nfunc (n *VariableExpr) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *VariableExpr) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"@\")\n\tbuf.WriteString(n.Name)\n}\n"
  },
  {
    "path": "internal/sql/ast/variable_set_kind.go",
    "content": "package ast\n\ntype VariableSetKind uint\n\nfunc (n *VariableSetKind) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/variable_set_stmt.go",
    "content": "package ast\n\ntype VariableSetStmt struct {\n\tKind    VariableSetKind\n\tName    *string\n\tArgs    *List\n\tIsLocal bool\n}\n\nfunc (n *VariableSetStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/variable_show_stmt.go",
    "content": "package ast\n\ntype VariableShowStmt struct {\n\tName *string\n}\n\nfunc (n *VariableShowStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/view_check_option.go",
    "content": "package ast\n\ntype ViewCheckOption uint\n\nfunc (n *ViewCheckOption) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/view_stmt.go",
    "content": "package ast\n\ntype ViewStmt struct {\n\tView            *RangeVar\n\tAliases         *List\n\tQuery           Node\n\tReplace         bool\n\tOptions         *List\n\tWithCheckOption ViewCheckOption\n}\n\nfunc (n *ViewStmt) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/wco_kind.go",
    "content": "package ast\n\ntype WCOKind uint\n\nfunc (n *WCOKind) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/window_clause.go",
    "content": "package ast\n\ntype WindowClause struct {\n\tName            *string\n\tRefname         *string\n\tPartitionClause *List\n\tOrderClause     *List\n\tFrameOptions    int\n\tStartOffset     Node\n\tEndOffset       Node\n\tWinref          Index\n\tCopiedOrder     bool\n}\n\nfunc (n *WindowClause) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/window_def.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype WindowDef struct {\n\tName            *string\n\tRefname         *string\n\tPartitionClause *List\n\tOrderClause     *List\n\tFrameOptions    int\n\tStartOffset     Node\n\tEndOffset       Node\n\tLocation        int\n}\n\nfunc (n *WindowDef) Pos() int {\n\treturn n.Location\n}\n\n// Frame option constants (from PostgreSQL's parsenodes.h)\nconst (\n\tFrameOptionNonDefault              = 0x00001\n\tFrameOptionRange                   = 0x00002\n\tFrameOptionRows                    = 0x00004\n\tFrameOptionGroups                  = 0x00008\n\tFrameOptionBetween                 = 0x00010\n\tFrameOptionStartUnboundedPreceding = 0x00020\n\tFrameOptionEndUnboundedPreceding   = 0x00040\n\tFrameOptionStartUnboundedFollowing = 0x00080\n\tFrameOptionEndUnboundedFollowing   = 0x00100\n\tFrameOptionStartCurrentRow         = 0x00200\n\tFrameOptionEndCurrentRow           = 0x00400\n\tFrameOptionStartOffset             = 0x00800\n\tFrameOptionEndOffset               = 0x01000\n\tFrameOptionExcludeCurrentRow       = 0x02000\n\tFrameOptionExcludeGroup            = 0x04000\n\tFrameOptionExcludeTies             = 0x08000\n)\n\nfunc (n *WindowDef) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\n\t// Named window reference\n\tif n.Refname != nil && *n.Refname != \"\" {\n\t\tbuf.WriteString(*n.Refname)\n\t\treturn\n\t}\n\n\tbuf.WriteString(\"(\")\n\tneedSpace := false\n\n\tif items(n.PartitionClause) {\n\t\tbuf.WriteString(\"PARTITION BY \")\n\t\tbuf.join(n.PartitionClause, d, \", \")\n\t\tneedSpace = true\n\t}\n\n\tif items(n.OrderClause) {\n\t\tif needSpace {\n\t\t\tbuf.WriteString(\" \")\n\t\t}\n\t\tbuf.WriteString(\"ORDER BY \")\n\t\tbuf.join(n.OrderClause, d, \", \")\n\t\tneedSpace = true\n\t}\n\n\t// Frame clause\n\tif n.FrameOptions&FrameOptionNonDefault != 0 {\n\t\tif needSpace {\n\t\t\tbuf.WriteString(\" \")\n\t\t}\n\n\t\t// Frame type\n\t\tif n.FrameOptions&FrameOptionRows != 0 {\n\t\t\tbuf.WriteString(\"ROWS \")\n\t\t} else if n.FrameOptions&FrameOptionRange != 0 {\n\t\t\tbuf.WriteString(\"RANGE \")\n\t\t} else if n.FrameOptions&FrameOptionGroups != 0 {\n\t\t\tbuf.WriteString(\"GROUPS \")\n\t\t}\n\n\t\tif n.FrameOptions&FrameOptionBetween != 0 {\n\t\t\tbuf.WriteString(\"BETWEEN \")\n\t\t}\n\n\t\t// Start bound\n\t\tif n.FrameOptions&FrameOptionStartUnboundedPreceding != 0 {\n\t\t\tbuf.WriteString(\"UNBOUNDED PRECEDING\")\n\t\t} else if n.FrameOptions&FrameOptionStartCurrentRow != 0 {\n\t\t\tbuf.WriteString(\"CURRENT ROW\")\n\t\t} else if n.FrameOptions&FrameOptionStartOffset != 0 {\n\t\t\tbuf.astFormat(n.StartOffset, d)\n\t\t\tbuf.WriteString(\" PRECEDING\")\n\t\t}\n\n\t\tif n.FrameOptions&FrameOptionBetween != 0 {\n\t\t\tbuf.WriteString(\" AND \")\n\n\t\t\t// End bound\n\t\t\tif n.FrameOptions&FrameOptionEndUnboundedFollowing != 0 {\n\t\t\t\tbuf.WriteString(\"UNBOUNDED FOLLOWING\")\n\t\t\t} else if n.FrameOptions&FrameOptionEndCurrentRow != 0 {\n\t\t\t\tbuf.WriteString(\"CURRENT ROW\")\n\t\t\t} else if n.FrameOptions&FrameOptionEndOffset != 0 {\n\t\t\t\tbuf.astFormat(n.EndOffset, d)\n\t\t\t\tbuf.WriteString(\" FOLLOWING\")\n\t\t\t}\n\t\t}\n\t}\n\n\tbuf.WriteString(\")\")\n}\n"
  },
  {
    "path": "internal/sql/ast/window_func.go",
    "content": "package ast\n\ntype WindowFunc struct {\n\tXpr         Node\n\tWinfnoid    Oid\n\tWintype     Oid\n\tWincollid   Oid\n\tInputcollid Oid\n\tArgs        *List\n\tAggfilter   Node\n\tWinref      Index\n\tWinstar     bool\n\tWinagg      bool\n\tLocation    int\n}\n\nfunc (n *WindowFunc) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/with_check_option.go",
    "content": "package ast\n\ntype WithCheckOption struct {\n\tKind     WCOKind\n\tRelname  *string\n\tPolname  *string\n\tQual     Node\n\tCascaded bool\n}\n\nfunc (n *WithCheckOption) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/with_clause.go",
    "content": "package ast\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/format\"\n\ntype WithClause struct {\n\tCtes      *List\n\tRecursive bool\n\tLocation  int\n}\n\nfunc (n *WithClause) Pos() int {\n\treturn n.Location\n}\n\nfunc (n *WithClause) Format(buf *TrackedBuffer, d format.Dialect) {\n\tif n == nil {\n\t\treturn\n\t}\n\tbuf.WriteString(\"WITH \")\n\tif n.Recursive {\n\t\tbuf.WriteString(\"RECURSIVE \")\n\t}\n\tbuf.join(n.Ctes, d, \", \")\n}\n"
  },
  {
    "path": "internal/sql/ast/xml_expr.go",
    "content": "package ast\n\ntype XmlExpr struct {\n\tXpr       Node\n\tOp        XmlExprOp\n\tName      *string\n\tNamedArgs *List\n\tArgNames  *List\n\tArgs      *List\n\tXmloption XmlOptionType\n\tType      Oid\n\tTypmod    int32\n\tLocation  int\n}\n\nfunc (n *XmlExpr) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/ast/xml_expr_op.go",
    "content": "package ast\n\ntype XmlExprOp uint\n\nfunc (n *XmlExprOp) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/xml_option_type.go",
    "content": "package ast\n\ntype XmlOptionType uint\n\nfunc (n *XmlOptionType) Pos() int {\n\treturn 0\n}\n"
  },
  {
    "path": "internal/sql/ast/xml_serialize.go",
    "content": "package ast\n\ntype XmlSerialize struct {\n\tXmloption XmlOptionType\n\tExpr      Node\n\tTypeName  *TypeName\n\tLocation  int\n}\n\nfunc (n *XmlSerialize) Pos() int {\n\treturn n.Location\n}\n"
  },
  {
    "path": "internal/sql/astutils/CLAUDE.md",
    "content": "# AST Utilities Package - Claude Code Guide\n\nThis package provides utilities for traversing and transforming AST nodes.\n\n## Key Functions\n\n### Walk\n`Walk(f Visitor, node ast.Node)` traverses the AST depth-first, calling `f.Visit()` on each node.\n\n```go\ntype Visitor interface {\n    Visit(node ast.Node) Visitor\n}\n```\n\n**Important**: When adding new AST node types, you MUST add a case to the switch statement in `walk.go`, otherwise you'll get a panic:\n```\npanic: walk: unexpected node type *ast.YourNewType\n```\n\n### Apply (Rewrite)\n`Apply(root ast.Node, pre, post ApplyFunc) ast.Node` traverses and optionally transforms the AST.\n\n```go\ntype ApplyFunc func(*Cursor) bool\n```\n\nThe `Cursor` provides:\n- `Node()` - current node\n- `Parent()` - parent node\n- `Name()` - field name in parent\n- `Index()` - index if in a list\n- `Replace(node)` - replace current node\n\n**Important**: When adding new AST node types, you MUST add a case to the switch statement in `rewrite.go`, otherwise you'll get a panic:\n```\npanic: Apply: unexpected node type *ast.YourNewType\n```\n\n### Search\n`Search(root ast.Node, fn func(ast.Node) bool) *ast.List` finds all nodes matching a predicate.\n\n### Join\n`Join(list *ast.List, sep string) string` joins string nodes with a separator.\n\n## Adding Support for New AST Nodes\n\nWhen you create a new AST node type, you must update BOTH `walk.go` and `rewrite.go`:\n\n### In walk.go\nAdd a case that walks all child nodes:\n```go\ncase *ast.YourNewType:\n    if n.ChildField != nil {\n        Walk(f, n.ChildField)\n    }\n    if n.ChildList != nil {\n        Walk(f, n.ChildList)\n    }\n```\n\nFor leaf nodes with no children:\n```go\ncase *ast.YourNewType:\n    // Leaf node - no children to traverse\n```\n\n### In rewrite.go\nAdd a case that applies to all child nodes:\n```go\ncase *ast.YourNewType:\n    a.apply(n, \"ChildField\", nil, n.ChildField)\n    a.apply(n, \"ChildList\", nil, n.ChildList)\n```\n\nFor leaf nodes:\n```go\ncase *ast.YourNewType:\n    // Leaf node - no children to traverse\n```\n\n## Common Patterns\n\n### Finding All Tables in a Statement\n```go\nvar tv tableVisitor\nastutils.Walk(&tv, stmt.FromClause)\n// tv.list now contains all RangeVar nodes\n```\n\n### Replacing Named Parameters\nThe `rewrite/parameters.go` uses Apply to replace `sqlc.arg()` calls with `ParamRef`:\n```go\nastutils.Apply(root, func(cr *astutils.Cursor) bool {\n    if named.IsParamFunc(cr.Node()) {\n        cr.Replace(&ast.ParamRef{Number: nextParam()})\n    }\n    return true\n}, nil)\n```\n\n## Node Types That Must Be Handled\n\nAll node types in `internal/sql/ast/` must have cases in both walk.go and rewrite.go. Key MySQL-specific nodes:\n- `IntervalExpr` - INTERVAL expressions\n- `OnDuplicateKeyUpdate` - MySQL ON DUPLICATE KEY UPDATE\n- `ParenExpr` - Parenthesized expressions\n- `VariableExpr` - MySQL user variables (@var)\n\n## Debugging Tips\n\nIf you see a panic like:\n```\npanic: walk: unexpected node type *ast.SomeType\n```\n\nCheck that `SomeType` has a case in both `walk.go` and `rewrite.go`.\n"
  },
  {
    "path": "internal/sql/astutils/join.go",
    "content": "package astutils\n\nimport (\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\nfunc Join(list *ast.List, sep string) string {\n\tif list == nil {\n\t\treturn \"\"\n\t}\n\n\tvar items []string\n\tfor _, item := range list.Items {\n\t\tif n, ok := item.(*ast.String); ok {\n\t\t\titems = append(items, n.Str)\n\t\t}\n\t}\n\treturn strings.Join(items, sep)\n}\n"
  },
  {
    "path": "internal/sql/astutils/rewrite.go",
    "content": "// Copyright 2017 The Go Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style\n// license that can be found in the LICENSE file.\n\npackage astutils\n\nimport (\n\t\"fmt\"\n\t\"reflect\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\n// An ApplyFunc is invoked by Apply for each node n, even if n is nil,\n// before and/or after the node's children, using a Cursor describing\n// the current node and providing operations on it.\n//\n// The return value of ApplyFunc controls the syntax tree traversal.\n// See Apply for details.\ntype ApplyFunc func(*Cursor) bool\n\n// Apply traverses a syntax tree recursively, starting with root,\n// and calling pre and post for each node as described below.\n// Apply returns the syntax tree, possibly modified.\n//\n// If pre is not nil, it is called for each node before the node's\n// children are traversed (pre-order). If pre returns false, no\n// children are traversed, and post is not called for that node.\n//\n// If post is not nil, and a prior call of pre didn't return false,\n// post is called for each node after its children are traversed\n// (post-order). If post returns false, traversal is terminated and\n// Apply returns immediately.\n//\n// Only fields that refer to AST nodes are considered children;\n// i.e., token.Pos, Scopes, Objects, and fields of basic types\n// (strings, etc.) are ignored.\n//\n// Children are traversed in the order in which they appear in the\n// respective node's struct definition. A package's files are\n// traversed in the filenames' alphabetical order.\nfunc Apply(root ast.Node, pre, post ApplyFunc) (result ast.Node) {\n\tparent := &struct{ ast.Node }{root}\n\tdefer func() {\n\t\tif r := recover(); r != nil && r != abort {\n\t\t\tpanic(r)\n\t\t}\n\t\tresult = parent.Node\n\t}()\n\ta := &application{pre: pre, post: post}\n\ta.apply(parent, \"Node\", nil, root)\n\treturn\n}\n\nvar abort = new(int) // singleton, to signal termination of Apply\n\n// A Cursor describes a node encountered during Apply.\n// Information about the node and its parent is available\n// from the Node, Parent, Name, and Index methods.\n//\n// If p is a variable of type and value of the current parent node\n// c.Parent(), and f is the field identifier with name c.Name(),\n// the following invariants hold:\n//\n//\tp.f            == c.Node()  if c.Index() <  0\n//\tp.f[c.Index()] == c.Node()  if c.Index() >= 0\n//\n// The methods Replace, Delete, InsertBefore, and InsertAfter\n// can be used to change the AST without disrupting Apply.\ntype Cursor struct {\n\tparent ast.Node\n\tname   string\n\titer   *iterator // valid if non-nil\n\tnode   ast.Node\n}\n\n// Node returns the current Node.\nfunc (c *Cursor) Node() ast.Node { return c.node }\n\n// Parent returns the parent of the current Node.\nfunc (c *Cursor) Parent() ast.Node { return c.parent }\n\n// Name returns the name of the parent Node field that contains the current Node.\n// If the parent is a *ast.Package and the current Node is a *ast.File, Name returns\n// the filename for the current Node.\nfunc (c *Cursor) Name() string { return c.name }\n\n// Index reports the index >= 0 of the current Node in the slice of Nodes that\n// contains it, or a value < 0 if the current Node is not part of a slice.\n// The index of the current node changes if InsertBefore is called while\n// processing the current node.\nfunc (c *Cursor) Index() int {\n\tif c.iter != nil {\n\t\treturn c.iter.index\n\t}\n\treturn -1\n}\n\n// field returns the current node's parent field value.\nfunc (c *Cursor) field() reflect.Value {\n\treturn reflect.Indirect(reflect.ValueOf(c.parent)).FieldByName(c.name)\n}\n\n// Replace replaces the current Node with n.\n// The replacement node is not walked by Apply.\nfunc (c *Cursor) Replace(n ast.Node) {\n\tv := c.field()\n\tif i := c.Index(); i >= 0 {\n\t\tv = v.Index(i)\n\t}\n\tv.Set(reflect.ValueOf(n))\n}\n\n// D// application carries all the shared data so we can pass it around cheaply.\ntype application struct {\n\tpre, post ApplyFunc\n\tcursor    Cursor\n\titer      iterator\n}\n\nfunc (a *application) apply(parent ast.Node, name string, iter *iterator, n ast.Node) {\n\t// convert typed nil into untyped nil\n\tif v := reflect.ValueOf(n); v.Kind() == reflect.Ptr && v.IsNil() {\n\t\tn = nil\n\t}\n\n\t// avoid heap-allocating a new cursor for each apply call; reuse a.cursor instead\n\tsaved := a.cursor\n\ta.cursor.parent = parent\n\ta.cursor.name = name\n\ta.cursor.iter = iter\n\ta.cursor.node = n\n\n\tif a.pre != nil && !a.pre(&a.cursor) {\n\t\ta.cursor = saved\n\t\treturn\n\t}\n\n\t// walk children\n\t// (the order of the cases matches the order of the corresponding node types in go/ast)\n\tswitch n := n.(type) {\n\tcase nil:\n\t\t// nothing to do\n\n\tcase *ast.AlterTableSetSchemaStmt:\n\t\ta.apply(n, \"Table\", nil, n.Table)\n\n\tcase *ast.AlterTypeAddValueStmt:\n\t\ta.apply(n, \"Type\", nil, n.Type)\n\n\tcase *ast.AlterTypeRenameValueStmt:\n\t\ta.apply(n, \"Type\", nil, n.Type)\n\n\tcase *ast.CommentOnColumnStmt:\n\t\ta.apply(n, \"Table\", nil, n.Table)\n\t\ta.apply(n, \"Col\", nil, n.Col)\n\n\tcase *ast.CommentOnSchemaStmt:\n\t\ta.apply(n, \"Schema\", nil, n.Schema)\n\n\tcase *ast.CommentOnTableStmt:\n\t\ta.apply(n, \"Table\", nil, n.Table)\n\n\tcase *ast.CommentOnTypeStmt:\n\t\ta.apply(n, \"Type\", nil, n.Type)\n\n\tcase *ast.CommentOnViewStmt:\n\t\ta.apply(n, \"View\", nil, n.View)\n\n\tcase *ast.CreateTableStmt:\n\t\ta.apply(n, \"Name\", nil, n.Name)\n\n\tcase *ast.DropFunctionStmt:\n\t\t// pass\n\n\tcase *ast.DropSchemaStmt:\n\t\t// pass\n\n\tcase *ast.DropTableStmt:\n\t\t// pass\n\n\tcase *ast.DropTypeStmt:\n\t\t// pass\n\n\tcase *ast.FuncName:\n\t\t// pass\n\n\tcase *ast.FuncParam:\n\t\ta.apply(n, \"Type\", nil, n.Type)\n\t\ta.apply(n, \"DefExpr\", nil, n.DefExpr)\n\n\tcase *ast.FuncSpec:\n\t\ta.apply(n, \"Name\", nil, n.Name)\n\n\tcase *ast.In:\n\t\ta.applyList(n, \"List\")\n\t\ta.apply(n, \"Sel\", nil, n.Sel)\n\n\tcase *ast.List:\n\t\t// Since item is a slice\n\t\ta.applyList(n, \"Items\")\n\n\tcase *ast.RawStmt:\n\t\ta.apply(n, \"Stmt\", nil, n.Stmt)\n\n\tcase *ast.RenameColumnStmt:\n\t\ta.apply(n, \"Table\", nil, n.Table)\n\t\ta.apply(n, \"Col\", nil, n.Col)\n\n\tcase *ast.RenameTableStmt:\n\t\ta.apply(n, \"Table\", nil, n.Table)\n\n\tcase *ast.RenameTypeStmt:\n\t\ta.apply(n, \"Type\", nil, n.Type)\n\n\tcase *ast.Statement:\n\t\ta.apply(n, \"Raw\", nil, n.Raw)\n\n\tcase *ast.String:\n\t\t// pass\n\n\tcase *ast.TODO:\n\t\t// pass\n\n\tcase *ast.TableName:\n\t\t// pass\n\n\tcase *ast.A_ArrayExpr:\n\t\ta.apply(n, \"Elements\", nil, n.Elements)\n\n\tcase *ast.A_Const:\n\t\ta.apply(n, \"Val\", nil, n.Val)\n\n\tcase *ast.A_Expr:\n\t\ta.apply(n, \"Name\", nil, n.Name)\n\t\ta.apply(n, \"Lexpr\", nil, n.Lexpr)\n\t\ta.apply(n, \"Rexpr\", nil, n.Rexpr)\n\n\tcase *ast.A_Indices:\n\t\ta.apply(n, \"Lidx\", nil, n.Lidx)\n\t\ta.apply(n, \"Uidx\", nil, n.Uidx)\n\n\tcase *ast.A_Indirection:\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\t\ta.apply(n, \"Indirection\", nil, n.Indirection)\n\n\tcase *ast.A_Star:\n\t\t// pass\n\n\tcase *ast.AccessPriv:\n\t\ta.apply(n, \"Cols\", nil, n.Cols)\n\n\tcase *ast.Aggref:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Aggargtypes\", nil, n.Aggargtypes)\n\t\ta.apply(n, \"Aggdirectargs\", nil, n.Aggdirectargs)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\t\ta.apply(n, \"Aggorder\", nil, n.Aggorder)\n\t\ta.apply(n, \"Aggdistinct\", nil, n.Aggdistinct)\n\t\ta.apply(n, \"Aggfilter\", nil, n.Aggfilter)\n\n\tcase *ast.Alias:\n\t\ta.apply(n, \"Colnames\", nil, n.Colnames)\n\n\tcase *ast.AlterCollationStmt:\n\t\ta.apply(n, \"Collname\", nil, n.Collname)\n\n\tcase *ast.AlterDatabaseSetStmt:\n\t\ta.apply(n, \"Setstmt\", nil, n.Setstmt)\n\n\tcase *ast.AlterDatabaseStmt:\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.AlterDefaultPrivilegesStmt:\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\t\ta.apply(n, \"Action\", nil, n.Action)\n\n\tcase *ast.AlterDomainStmt:\n\t\ta.apply(n, \"TypeName\", nil, n.TypeName)\n\t\ta.apply(n, \"Def\", nil, n.Def)\n\n\tcase *ast.AlterEnumStmt:\n\t\ta.apply(n, \"TypeName\", nil, n.TypeName)\n\n\tcase *ast.AlterEventTrigStmt:\n\t\t// pass\n\n\tcase *ast.AlterExtensionContentsStmt:\n\t\ta.apply(n, \"Object\", nil, n.Object)\n\n\tcase *ast.AlterExtensionStmt:\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.AlterFdwStmt:\n\t\ta.apply(n, \"FuncOptions\", nil, n.FuncOptions)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.AlterForeignServerStmt:\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.AlterFunctionStmt:\n\t\ta.apply(n, \"Func\", nil, n.Func)\n\t\ta.apply(n, \"Actions\", nil, n.Actions)\n\n\tcase *ast.AlterObjectDependsStmt:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\t\ta.apply(n, \"Object\", nil, n.Object)\n\t\ta.apply(n, \"Extname\", nil, n.Extname)\n\n\tcase *ast.AlterObjectSchemaStmt:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\t\ta.apply(n, \"Object\", nil, n.Object)\n\n\tcase *ast.AlterOpFamilyStmt:\n\t\ta.apply(n, \"Opfamilyname\", nil, n.Opfamilyname)\n\t\ta.apply(n, \"Items\", nil, n.Items)\n\n\tcase *ast.AlterOperatorStmt:\n\t\ta.apply(n, \"Opername\", nil, n.Opername)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.AlterOwnerStmt:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\t\ta.apply(n, \"Object\", nil, n.Object)\n\t\ta.apply(n, \"Newowner\", nil, n.Newowner)\n\n\tcase *ast.AlterPolicyStmt:\n\t\ta.apply(n, \"Table\", nil, n.Table)\n\t\ta.apply(n, \"Roles\", nil, n.Roles)\n\t\ta.apply(n, \"Qual\", nil, n.Qual)\n\t\ta.apply(n, \"WithCheck\", nil, n.WithCheck)\n\n\tcase *ast.AlterPublicationStmt:\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\t\ta.apply(n, \"Tables\", nil, n.Tables)\n\n\tcase *ast.AlterRoleSetStmt:\n\t\ta.apply(n, \"Role\", nil, n.Role)\n\t\ta.apply(n, \"Setstmt\", nil, n.Setstmt)\n\n\tcase *ast.AlterRoleStmt:\n\t\ta.apply(n, \"Role\", nil, n.Role)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.AlterSeqStmt:\n\t\ta.apply(n, \"Sequence\", nil, n.Sequence)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.AlterSubscriptionStmt:\n\t\ta.apply(n, \"Publication\", nil, n.Publication)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.AlterSystemStmt:\n\t\ta.apply(n, \"Setstmt\", nil, n.Setstmt)\n\n\tcase *ast.AlterTSConfigurationStmt:\n\t\ta.apply(n, \"Cfgname\", nil, n.Cfgname)\n\t\ta.apply(n, \"Tokentype\", nil, n.Tokentype)\n\t\ta.apply(n, \"Dicts\", nil, n.Dicts)\n\n\tcase *ast.AlterTSDictionaryStmt:\n\t\ta.apply(n, \"Dictname\", nil, n.Dictname)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.AlterTableCmd:\n\t\ta.apply(n, \"Newowner\", nil, n.Newowner)\n\t\ta.apply(n, \"Def\", nil, n.Def)\n\n\tcase *ast.AlterTableMoveAllStmt:\n\t\ta.apply(n, \"Roles\", nil, n.Roles)\n\n\tcase *ast.AlterTableSpaceOptionsStmt:\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.AlterTableStmt:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\t\ta.apply(n, \"Table\", nil, n.Table)\n\t\ta.apply(n, \"Cmds\", nil, n.Cmds)\n\n\tcase *ast.AlterUserMappingStmt:\n\t\ta.apply(n, \"User\", nil, n.User)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.AlternativeSubPlan:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Subplans\", nil, n.Subplans)\n\n\tcase *ast.ArrayCoerceExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\n\tcase *ast.ArrayExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Elements\", nil, n.Elements)\n\n\tcase *ast.ArrayRef:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Refupperindexpr\", nil, n.Refupperindexpr)\n\t\ta.apply(n, \"Reflowerindexpr\", nil, n.Reflowerindexpr)\n\t\ta.apply(n, \"Refexpr\", nil, n.Refexpr)\n\t\ta.apply(n, \"Refassgnexpr\", nil, n.Refassgnexpr)\n\n\tcase *ast.BetweenExpr:\n\t\ta.apply(n, \"Expr\", nil, n.Expr)\n\t\ta.apply(n, \"Left\", nil, n.Left)\n\t\ta.apply(n, \"Right\", nil, n.Right)\n\n\tcase *ast.BitString:\n\t\t// pass\n\n\tcase *ast.BlockIdData:\n\t\t// pass\n\n\tcase *ast.Boolean:\n\t\t// pass\n\n\tcase *ast.BoolExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\n\tcase *ast.BooleanTest:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\n\tcase *ast.CallStmt:\n\t\ta.apply(n, \"FuncCall\", nil, n.FuncCall)\n\n\tcase *ast.CaseExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\t\ta.apply(n, \"Defresult\", nil, n.Defresult)\n\n\tcase *ast.CaseTestExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\n\tcase *ast.CaseWhen:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Expr\", nil, n.Expr)\n\t\ta.apply(n, \"Result\", nil, n.Result)\n\n\tcase *ast.CheckPointStmt:\n\t\t// pass\n\n\tcase *ast.ClosePortalStmt:\n\t\t// pass\n\n\tcase *ast.ClusterStmt:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\n\tcase *ast.CoalesceExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\n\tcase *ast.CoerceToDomain:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\n\tcase *ast.CoerceToDomainValue:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\n\tcase *ast.CoerceViaIO:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\n\tcase *ast.CollateClause:\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\t\ta.apply(n, \"Collname\", nil, n.Collname)\n\n\tcase *ast.CollateExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\n\tcase *ast.ColumnDef:\n\t\ta.apply(n, \"TypeName\", nil, n.TypeName)\n\t\ta.apply(n, \"RawDefault\", nil, n.RawDefault)\n\t\ta.apply(n, \"CookedDefault\", nil, n.CookedDefault)\n\t\ta.apply(n, \"CollClause\", nil, n.CollClause)\n\t\ta.apply(n, \"Constraints\", nil, n.Constraints)\n\t\ta.apply(n, \"Fdwoptions\", nil, n.Fdwoptions)\n\n\tcase *ast.ColumnRef:\n\t\ta.apply(n, \"Fields\", nil, n.Fields)\n\n\tcase *ast.CommentStmt:\n\t\ta.apply(n, \"Object\", nil, n.Object)\n\n\tcase *ast.CommonTableExpr:\n\t\ta.apply(n, \"Aliascolnames\", nil, n.Aliascolnames)\n\t\ta.apply(n, \"Ctequery\", nil, n.Ctequery)\n\t\ta.apply(n, \"Ctecolnames\", nil, n.Ctecolnames)\n\t\ta.apply(n, \"Ctecoltypes\", nil, n.Ctecoltypes)\n\t\ta.apply(n, \"Ctecoltypmods\", nil, n.Ctecoltypmods)\n\t\ta.apply(n, \"Ctecolcollations\", nil, n.Ctecolcollations)\n\n\tcase *ast.CompositeTypeStmt:\n\t\ta.apply(n, \"TypeName\", nil, n.TypeName)\n\n\tcase *ast.Const:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\n\tcase *ast.Constraint:\n\t\ta.apply(n, \"RawExpr\", nil, n.RawExpr)\n\t\ta.apply(n, \"Keys\", nil, n.Keys)\n\t\ta.apply(n, \"Exclusions\", nil, n.Exclusions)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\t\ta.apply(n, \"WhereClause\", nil, n.WhereClause)\n\t\ta.apply(n, \"Pktable\", nil, n.Pktable)\n\t\ta.apply(n, \"FkAttrs\", nil, n.FkAttrs)\n\t\ta.apply(n, \"PkAttrs\", nil, n.PkAttrs)\n\t\ta.apply(n, \"OldConpfeqop\", nil, n.OldConpfeqop)\n\n\tcase *ast.ConstraintsSetStmt:\n\t\ta.apply(n, \"Constraints\", nil, n.Constraints)\n\n\tcase *ast.ConvertRowtypeExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\n\tcase *ast.CopyStmt:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\t\ta.apply(n, \"Query\", nil, n.Query)\n\t\ta.apply(n, \"Attlist\", nil, n.Attlist)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.CreateAmStmt:\n\t\ta.apply(n, \"HandlerName\", nil, n.HandlerName)\n\n\tcase *ast.CreateCastStmt:\n\t\ta.apply(n, \"Sourcetype\", nil, n.Sourcetype)\n\t\ta.apply(n, \"Targettype\", nil, n.Targettype)\n\t\ta.apply(n, \"Func\", nil, n.Func)\n\n\tcase *ast.CreateConversionStmt:\n\t\ta.apply(n, \"ConversionName\", nil, n.ConversionName)\n\t\ta.apply(n, \"FuncName\", nil, n.FuncName)\n\n\tcase *ast.CreateDomainStmt:\n\t\ta.apply(n, \"Domainname\", nil, n.Domainname)\n\t\ta.apply(n, \"TypeName\", nil, n.TypeName)\n\t\ta.apply(n, \"CollClause\", nil, n.CollClause)\n\t\ta.apply(n, \"Constraints\", nil, n.Constraints)\n\n\tcase *ast.CreateEnumStmt:\n\t\ta.apply(n, \"TypeName\", nil, n.TypeName)\n\t\ta.apply(n, \"Vals\", nil, n.Vals)\n\n\tcase *ast.CreateEventTrigStmt:\n\t\ta.apply(n, \"Whenclause\", nil, n.Whenclause)\n\t\ta.apply(n, \"Funcname\", nil, n.Funcname)\n\n\tcase *ast.CreateExtensionStmt:\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.CreateFdwStmt:\n\t\ta.apply(n, \"FuncOptions\", nil, n.FuncOptions)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.CreateForeignServerStmt:\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.CreateForeignTableStmt:\n\t\ta.apply(n, \"Base\", nil, n.Base)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.CreateFunctionStmt:\n\t\ta.apply(n, \"Func\", nil, n.Func)\n\t\ta.apply(n, \"Params\", nil, n.Params)\n\t\ta.apply(n, \"ReturnType\", nil, n.ReturnType)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\t\ta.apply(n, \"WithClause\", nil, n.WithClause)\n\n\tcase *ast.CreateOpClassItem:\n\t\ta.apply(n, \"Name\", nil, n.Name)\n\t\ta.apply(n, \"OrderFamily\", nil, n.OrderFamily)\n\t\ta.apply(n, \"ClassArgs\", nil, n.ClassArgs)\n\t\ta.apply(n, \"Storedtype\", nil, n.Storedtype)\n\n\tcase *ast.CreateOpClassStmt:\n\t\ta.apply(n, \"Opclassname\", nil, n.Opclassname)\n\t\ta.apply(n, \"Opfamilyname\", nil, n.Opfamilyname)\n\t\ta.apply(n, \"Datatype\", nil, n.Datatype)\n\t\ta.apply(n, \"Items\", nil, n.Items)\n\n\tcase *ast.CreateOpFamilyStmt:\n\t\ta.apply(n, \"Opfamilyname\", nil, n.Opfamilyname)\n\n\tcase *ast.CreatePLangStmt:\n\t\ta.apply(n, \"Plhandler\", nil, n.Plhandler)\n\t\ta.apply(n, \"Plinline\", nil, n.Plinline)\n\t\ta.apply(n, \"Plvalidator\", nil, n.Plvalidator)\n\n\tcase *ast.CreatePolicyStmt:\n\t\ta.apply(n, \"Table\", nil, n.Table)\n\t\ta.apply(n, \"Roles\", nil, n.Roles)\n\t\ta.apply(n, \"Qual\", nil, n.Qual)\n\t\ta.apply(n, \"WithCheck\", nil, n.WithCheck)\n\n\tcase *ast.CreatePublicationStmt:\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\t\ta.apply(n, \"Tables\", nil, n.Tables)\n\n\tcase *ast.CreateRangeStmt:\n\t\ta.apply(n, \"TypeName\", nil, n.TypeName)\n\t\ta.apply(n, \"Params\", nil, n.Params)\n\n\tcase *ast.CreateRoleStmt:\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.CreateSchemaStmt:\n\t\ta.apply(n, \"Authrole\", nil, n.Authrole)\n\t\ta.apply(n, \"SchemaElts\", nil, n.SchemaElts)\n\n\tcase *ast.CreateSeqStmt:\n\t\ta.apply(n, \"Sequence\", nil, n.Sequence)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.CreateStatsStmt:\n\t\ta.apply(n, \"Defnames\", nil, n.Defnames)\n\t\ta.apply(n, \"StatTypes\", nil, n.StatTypes)\n\t\ta.apply(n, \"Exprs\", nil, n.Exprs)\n\t\ta.apply(n, \"Relations\", nil, n.Relations)\n\n\tcase *ast.CreateStmt:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\t\ta.apply(n, \"TableElts\", nil, n.TableElts)\n\t\ta.apply(n, \"InhRelations\", nil, n.InhRelations)\n\t\ta.apply(n, \"Partbound\", nil, n.Partbound)\n\t\ta.apply(n, \"Partspec\", nil, n.Partspec)\n\t\ta.apply(n, \"OfTypename\", nil, n.OfTypename)\n\t\ta.apply(n, \"Constraints\", nil, n.Constraints)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.CreateSubscriptionStmt:\n\t\ta.apply(n, \"Publication\", nil, n.Publication)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.CreateTableAsStmt:\n\t\ta.apply(n, \"Query\", nil, n.Query)\n\t\ta.apply(n, \"Into\", nil, n.Into)\n\n\tcase *ast.CreateTableSpaceStmt:\n\t\ta.apply(n, \"Owner\", nil, n.Owner)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.CreateTransformStmt:\n\t\ta.apply(n, \"TypeName\", nil, n.TypeName)\n\t\ta.apply(n, \"Fromsql\", nil, n.Fromsql)\n\t\ta.apply(n, \"Tosql\", nil, n.Tosql)\n\n\tcase *ast.CreateTrigStmt:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\t\ta.apply(n, \"Funcname\", nil, n.Funcname)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\t\ta.apply(n, \"Columns\", nil, n.Columns)\n\t\ta.apply(n, \"WhenClause\", nil, n.WhenClause)\n\t\ta.apply(n, \"TransitionRels\", nil, n.TransitionRels)\n\t\ta.apply(n, \"Constrrel\", nil, n.Constrrel)\n\n\tcase *ast.CreateUserMappingStmt:\n\t\ta.apply(n, \"User\", nil, n.User)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.CreatedbStmt:\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.CurrentOfExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\n\tcase *ast.DeallocateStmt:\n\t\t// pass\n\n\tcase *ast.DeclareCursorStmt:\n\t\ta.apply(n, \"Query\", nil, n.Query)\n\n\tcase *ast.DefElem:\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\n\tcase *ast.DefineStmt:\n\t\ta.apply(n, \"Defnames\", nil, n.Defnames)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\t\ta.apply(n, \"Definition\", nil, n.Definition)\n\n\tcase *ast.DeleteStmt:\n\t\ta.apply(n, \"Relations\", nil, n.Relations)\n\t\ta.apply(n, \"UsingClause\", nil, n.UsingClause)\n\t\ta.apply(n, \"WhereClause\", nil, n.WhereClause)\n\t\ta.apply(n, \"ReturningList\", nil, n.ReturningList)\n\t\ta.apply(n, \"WithClause\", nil, n.WithClause)\n\t\ta.apply(n, \"Targets\", nil, n.Targets)\n\t\ta.apply(n, \"FromClause\", nil, n.FromClause)\n\n\tcase *ast.DiscardStmt:\n\t\t// pass\n\n\tcase *ast.DoStmt:\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\n\tcase *ast.DropOwnedStmt:\n\t\ta.apply(n, \"Roles\", nil, n.Roles)\n\n\tcase *ast.DropRoleStmt:\n\t\ta.apply(n, \"Roles\", nil, n.Roles)\n\n\tcase *ast.DropStmt:\n\t\ta.apply(n, \"Objects\", nil, n.Objects)\n\n\tcase *ast.DropSubscriptionStmt:\n\t\t// pass\n\n\tcase *ast.DropTableSpaceStmt:\n\t\t// pass\n\n\tcase *ast.DropUserMappingStmt:\n\t\ta.apply(n, \"User\", nil, n.User)\n\n\tcase *ast.DropdbStmt:\n\t\t// pass\n\n\tcase *ast.ExecuteStmt:\n\t\ta.apply(n, \"Params\", nil, n.Params)\n\n\tcase *ast.ExplainStmt:\n\t\ta.apply(n, \"Query\", nil, n.Query)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.Expr:\n\t\t// pass\n\n\tcase *ast.FetchStmt:\n\t\t// pass\n\n\tcase *ast.FieldSelect:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\n\tcase *ast.FieldStore:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\t\ta.apply(n, \"Newvals\", nil, n.Newvals)\n\t\ta.apply(n, \"Fieldnums\", nil, n.Fieldnums)\n\n\tcase *ast.Float:\n\t\t// pass\n\n\tcase *ast.FromExpr:\n\t\ta.apply(n, \"Fromlist\", nil, n.Fromlist)\n\t\ta.apply(n, \"Quals\", nil, n.Quals)\n\n\tcase *ast.FuncCall:\n\t\ta.apply(n, \"Func\", nil, n.Func)\n\t\ta.apply(n, \"Funcname\", nil, n.Funcname)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\t\ta.apply(n, \"AggOrder\", nil, n.AggOrder)\n\t\ta.apply(n, \"AggFilter\", nil, n.AggFilter)\n\t\ta.apply(n, \"Over\", nil, n.Over)\n\n\tcase *ast.FuncExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\n\tcase *ast.FunctionParameter:\n\t\ta.apply(n, \"ArgType\", nil, n.ArgType)\n\t\ta.apply(n, \"Defexpr\", nil, n.Defexpr)\n\n\tcase *ast.GrantRoleStmt:\n\t\ta.apply(n, \"GrantedRoles\", nil, n.GrantedRoles)\n\t\ta.apply(n, \"GranteeRoles\", nil, n.GranteeRoles)\n\t\ta.apply(n, \"Grantor\", nil, n.Grantor)\n\n\tcase *ast.GrantStmt:\n\t\ta.apply(n, \"Objects\", nil, n.Objects)\n\t\ta.apply(n, \"Privileges\", nil, n.Privileges)\n\t\ta.apply(n, \"Grantees\", nil, n.Grantees)\n\n\tcase *ast.GroupingFunc:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\t\ta.apply(n, \"Refs\", nil, n.Refs)\n\t\ta.apply(n, \"Cols\", nil, n.Cols)\n\n\tcase *ast.GroupingSet:\n\t\ta.apply(n, \"Content\", nil, n.Content)\n\n\tcase *ast.ImportForeignSchemaStmt:\n\t\ta.apply(n, \"TableList\", nil, n.TableList)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.IndexElem:\n\t\ta.apply(n, \"Expr\", nil, n.Expr)\n\t\ta.apply(n, \"Collation\", nil, n.Collation)\n\t\ta.apply(n, \"Opclass\", nil, n.Opclass)\n\n\tcase *ast.IndexStmt:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\t\ta.apply(n, \"IndexParams\", nil, n.IndexParams)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\t\ta.apply(n, \"WhereClause\", nil, n.WhereClause)\n\t\ta.apply(n, \"ExcludeOpNames\", nil, n.ExcludeOpNames)\n\n\tcase *ast.InferClause:\n\t\ta.apply(n, \"IndexElems\", nil, n.IndexElems)\n\t\ta.apply(n, \"WhereClause\", nil, n.WhereClause)\n\n\tcase *ast.InferenceElem:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Expr\", nil, n.Expr)\n\n\tcase *ast.InlineCodeBlock:\n\t\t// pass\n\n\tcase *ast.InsertStmt:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\t\ta.apply(n, \"Cols\", nil, n.Cols)\n\t\ta.apply(n, \"SelectStmt\", nil, n.SelectStmt)\n\t\ta.apply(n, \"OnConflictClause\", nil, n.OnConflictClause)\n\t\ta.apply(n, \"OnDuplicateKeyUpdate\", nil, n.OnDuplicateKeyUpdate)\n\t\ta.apply(n, \"ReturningList\", nil, n.ReturningList)\n\t\ta.apply(n, \"WithClause\", nil, n.WithClause)\n\n\tcase *ast.Integer:\n\t\t// pass\n\n\tcase *ast.IntervalExpr:\n\t\ta.apply(n, \"Value\", nil, n.Value)\n\n\tcase *ast.IntoClause:\n\t\ta.apply(n, \"Rel\", nil, n.Rel)\n\t\ta.apply(n, \"ColNames\", nil, n.ColNames)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\t\ta.apply(n, \"ViewQuery\", nil, n.ViewQuery)\n\n\tcase *ast.JoinExpr:\n\t\ta.apply(n, \"Larg\", nil, n.Larg)\n\t\ta.apply(n, \"Rarg\", nil, n.Rarg)\n\t\ta.apply(n, \"UsingClause\", nil, n.UsingClause)\n\t\ta.apply(n, \"Quals\", nil, n.Quals)\n\t\ta.apply(n, \"Alias\", nil, n.Alias)\n\n\tcase *ast.ListenStmt:\n\t\t// pass\n\n\tcase *ast.LoadStmt:\n\t\t// pass\n\n\tcase *ast.LockStmt:\n\t\ta.apply(n, \"Relations\", nil, n.Relations)\n\n\tcase *ast.LockingClause:\n\t\ta.apply(n, \"LockedRels\", nil, n.LockedRels)\n\n\tcase *ast.MinMaxExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\n\tcase *ast.MultiAssignRef:\n\t\ta.apply(n, \"Source\", nil, n.Source)\n\n\tcase *ast.NamedArgExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\n\tcase *ast.NextValueExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\n\tcase *ast.NotifyStmt:\n\t\t// pass\n\n\tcase *ast.Null:\n\t\t// pass\n\n\tcase *ast.NullTest:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\n\tcase *ast.ObjectWithArgs:\n\t\ta.apply(n, \"Objname\", nil, n.Objname)\n\t\ta.apply(n, \"Objargs\", nil, n.Objargs)\n\n\tcase *ast.OnConflictClause:\n\t\ta.apply(n, \"Infer\", nil, n.Infer)\n\t\ta.apply(n, \"TargetList\", nil, n.TargetList)\n\t\ta.apply(n, \"WhereClause\", nil, n.WhereClause)\n\n\tcase *ast.OnConflictExpr:\n\t\ta.apply(n, \"ArbiterElems\", nil, n.ArbiterElems)\n\t\ta.apply(n, \"ArbiterWhere\", nil, n.ArbiterWhere)\n\t\ta.apply(n, \"OnConflictSet\", nil, n.OnConflictSet)\n\t\ta.apply(n, \"OnConflictWhere\", nil, n.OnConflictWhere)\n\t\ta.apply(n, \"ExclRelTlist\", nil, n.ExclRelTlist)\n\n\tcase *ast.OnDuplicateKeyUpdate:\n\t\ta.apply(n, \"TargetList\", nil, n.TargetList)\n\n\tcase *ast.OpExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\n\tcase *ast.Param:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\n\tcase *ast.ParamExecData:\n\t\t// pass\n\n\tcase *ast.ParamExternData:\n\t\t// pass\n\n\tcase *ast.ParamListInfoData:\n\t\t// pass\n\n\tcase *ast.ParamRef:\n\t\t// pass\n\n\tcase *ast.ParenExpr:\n\t\ta.apply(n, \"Expr\", nil, n.Expr)\n\n\tcase *ast.VariableExpr:\n\t\t// Leaf node - no children to traverse\n\n\tcase *ast.PartitionBoundSpec:\n\t\ta.apply(n, \"Listdatums\", nil, n.Listdatums)\n\t\ta.apply(n, \"Lowerdatums\", nil, n.Lowerdatums)\n\t\ta.apply(n, \"Upperdatums\", nil, n.Upperdatums)\n\n\tcase *ast.PartitionCmd:\n\t\ta.apply(n, \"Name\", nil, n.Name)\n\t\ta.apply(n, \"Bound\", nil, n.Bound)\n\n\tcase *ast.PartitionElem:\n\t\ta.apply(n, \"Expr\", nil, n.Expr)\n\t\ta.apply(n, \"Collation\", nil, n.Collation)\n\t\ta.apply(n, \"Opclass\", nil, n.Opclass)\n\n\tcase *ast.PartitionRangeDatum:\n\t\ta.apply(n, \"Value\", nil, n.Value)\n\n\tcase *ast.PartitionSpec:\n\t\ta.apply(n, \"PartParams\", nil, n.PartParams)\n\n\tcase *ast.PrepareStmt:\n\t\ta.apply(n, \"Argtypes\", nil, n.Argtypes)\n\t\ta.apply(n, \"Query\", nil, n.Query)\n\n\tcase *ast.Query:\n\t\ta.apply(n, \"UtilityStmt\", nil, n.UtilityStmt)\n\t\ta.apply(n, \"CteList\", nil, n.CteList)\n\t\ta.apply(n, \"Rtable\", nil, n.Rtable)\n\t\ta.apply(n, \"Jointree\", nil, n.Jointree)\n\t\ta.apply(n, \"TargetList\", nil, n.TargetList)\n\t\ta.apply(n, \"OnConflict\", nil, n.OnConflict)\n\t\ta.apply(n, \"ReturningList\", nil, n.ReturningList)\n\t\ta.apply(n, \"GroupClause\", nil, n.GroupClause)\n\t\ta.apply(n, \"GroupingSets\", nil, n.GroupingSets)\n\t\ta.apply(n, \"HavingQual\", nil, n.HavingQual)\n\t\ta.apply(n, \"WindowClause\", nil, n.WindowClause)\n\t\ta.apply(n, \"DistinctClause\", nil, n.DistinctClause)\n\t\ta.apply(n, \"SortClause\", nil, n.SortClause)\n\t\ta.apply(n, \"LimitOffset\", nil, n.LimitOffset)\n\t\ta.apply(n, \"LimitCount\", nil, n.LimitCount)\n\t\ta.apply(n, \"RowMarks\", nil, n.RowMarks)\n\t\ta.apply(n, \"SetOperations\", nil, n.SetOperations)\n\t\ta.apply(n, \"ConstraintDeps\", nil, n.ConstraintDeps)\n\t\ta.apply(n, \"WithCheckOptions\", nil, n.WithCheckOptions)\n\n\tcase *ast.RangeFunction:\n\t\ta.apply(n, \"Functions\", nil, n.Functions)\n\t\ta.apply(n, \"Alias\", nil, n.Alias)\n\t\ta.apply(n, \"Coldeflist\", nil, n.Coldeflist)\n\n\tcase *ast.RangeSubselect:\n\t\ta.apply(n, \"Subquery\", nil, n.Subquery)\n\t\ta.apply(n, \"Alias\", nil, n.Alias)\n\n\tcase *ast.RangeTableFunc:\n\t\ta.apply(n, \"Docexpr\", nil, n.Docexpr)\n\t\ta.apply(n, \"Rowexpr\", nil, n.Rowexpr)\n\t\ta.apply(n, \"Namespaces\", nil, n.Namespaces)\n\t\ta.apply(n, \"Columns\", nil, n.Columns)\n\t\ta.apply(n, \"Alias\", nil, n.Alias)\n\n\tcase *ast.RangeTableFuncCol:\n\t\ta.apply(n, \"TypeName\", nil, n.TypeName)\n\t\ta.apply(n, \"Colexpr\", nil, n.Colexpr)\n\t\ta.apply(n, \"Coldefexpr\", nil, n.Coldefexpr)\n\n\tcase *ast.RangeTableSample:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\t\ta.apply(n, \"Method\", nil, n.Method)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\t\ta.apply(n, \"Repeatable\", nil, n.Repeatable)\n\n\tcase *ast.RangeTblEntry:\n\t\ta.apply(n, \"Tablesample\", nil, n.Tablesample)\n\t\ta.apply(n, \"Subquery\", nil, n.Subquery)\n\t\ta.apply(n, \"Joinaliasvars\", nil, n.Joinaliasvars)\n\t\ta.apply(n, \"Functions\", nil, n.Functions)\n\t\ta.apply(n, \"Tablefunc\", nil, n.Tablefunc)\n\t\ta.apply(n, \"ValuesLists\", nil, n.ValuesLists)\n\t\ta.apply(n, \"Coltypes\", nil, n.Coltypes)\n\t\ta.apply(n, \"Coltypmods\", nil, n.Coltypmods)\n\t\ta.apply(n, \"Colcollations\", nil, n.Colcollations)\n\t\ta.apply(n, \"Alias\", nil, n.Alias)\n\t\ta.apply(n, \"Eref\", nil, n.Eref)\n\t\ta.apply(n, \"SecurityQuals\", nil, n.SecurityQuals)\n\n\tcase *ast.RangeTblFunction:\n\t\ta.apply(n, \"Funcexpr\", nil, n.Funcexpr)\n\t\ta.apply(n, \"Funccolnames\", nil, n.Funccolnames)\n\t\ta.apply(n, \"Funccoltypes\", nil, n.Funccoltypes)\n\t\ta.apply(n, \"Funccoltypmods\", nil, n.Funccoltypmods)\n\t\ta.apply(n, \"Funccolcollations\", nil, n.Funccolcollations)\n\n\tcase *ast.RangeTblRef:\n\t\t// pass\n\n\tcase *ast.RangeVar:\n\t\ta.apply(n, \"Alias\", nil, n.Alias)\n\n\tcase *ast.ReassignOwnedStmt:\n\t\ta.apply(n, \"Roles\", nil, n.Roles)\n\t\ta.apply(n, \"Newrole\", nil, n.Newrole)\n\n\tcase *ast.RefreshMatViewStmt:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\n\tcase *ast.ReindexStmt:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\n\tcase *ast.RelabelType:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\n\tcase *ast.RenameStmt:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\t\ta.apply(n, \"Object\", nil, n.Object)\n\n\tcase *ast.ReplicaIdentityStmt:\n\t\t// pass\n\n\tcase *ast.ResTarget:\n\t\ta.apply(n, \"Indirection\", nil, n.Indirection)\n\t\ta.apply(n, \"Val\", nil, n.Val)\n\n\tcase *ast.RoleSpec:\n\t\t// pass\n\n\tcase *ast.RowCompareExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Opnos\", nil, n.Opnos)\n\t\ta.apply(n, \"Opfamilies\", nil, n.Opfamilies)\n\t\ta.apply(n, \"Inputcollids\", nil, n.Inputcollids)\n\t\ta.apply(n, \"Largs\", nil, n.Largs)\n\t\ta.apply(n, \"Rargs\", nil, n.Rargs)\n\n\tcase *ast.RowExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\t\ta.apply(n, \"Colnames\", nil, n.Colnames)\n\n\tcase *ast.RowMarkClause:\n\t\t// pass\n\n\tcase *ast.RuleStmt:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\t\ta.apply(n, \"WhereClause\", nil, n.WhereClause)\n\t\ta.apply(n, \"Actions\", nil, n.Actions)\n\n\tcase *ast.SQLValueFunction:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\n\tcase *ast.ScalarArrayOpExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\n\tcase *ast.SecLabelStmt:\n\t\ta.apply(n, \"Object\", nil, n.Object)\n\n\tcase *ast.SelectStmt:\n\t\ta.apply(n, \"DistinctClause\", nil, n.DistinctClause)\n\t\ta.apply(n, \"IntoClause\", nil, n.IntoClause)\n\t\ta.apply(n, \"TargetList\", nil, n.TargetList)\n\t\ta.apply(n, \"FromClause\", nil, n.FromClause)\n\t\ta.apply(n, \"WhereClause\", nil, n.WhereClause)\n\t\ta.apply(n, \"GroupClause\", nil, n.GroupClause)\n\t\ta.apply(n, \"HavingClause\", nil, n.HavingClause)\n\t\ta.apply(n, \"WindowClause\", nil, n.WindowClause)\n\t\ta.apply(n, \"ValuesLists\", nil, n.ValuesLists)\n\t\ta.apply(n, \"SortClause\", nil, n.SortClause)\n\t\ta.apply(n, \"LimitOffset\", nil, n.LimitOffset)\n\t\ta.apply(n, \"LimitCount\", nil, n.LimitCount)\n\t\ta.apply(n, \"LockingClause\", nil, n.LockingClause)\n\t\ta.apply(n, \"WithClause\", nil, n.WithClause)\n\t\ta.apply(n, \"Larg\", nil, n.Larg)\n\t\ta.apply(n, \"Rarg\", nil, n.Rarg)\n\n\tcase *ast.SetOperationStmt:\n\t\ta.apply(n, \"Larg\", nil, n.Larg)\n\t\ta.apply(n, \"Rarg\", nil, n.Rarg)\n\t\ta.apply(n, \"ColTypes\", nil, n.ColTypes)\n\t\ta.apply(n, \"ColTypmods\", nil, n.ColTypmods)\n\t\ta.apply(n, \"ColCollations\", nil, n.ColCollations)\n\t\ta.apply(n, \"GroupClauses\", nil, n.GroupClauses)\n\n\tcase *ast.SetToDefault:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\n\tcase *ast.SortBy:\n\t\ta.apply(n, \"Node\", nil, n.Node)\n\t\ta.apply(n, \"UseOp\", nil, n.UseOp)\n\n\tcase *ast.SortGroupClause:\n\t\t// pass\n\n\tcase *ast.SubLink:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Testexpr\", nil, n.Testexpr)\n\t\ta.apply(n, \"OperName\", nil, n.OperName)\n\t\ta.apply(n, \"Subselect\", nil, n.Subselect)\n\n\tcase *ast.SubPlan:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Testexpr\", nil, n.Testexpr)\n\t\ta.apply(n, \"ParamIds\", nil, n.ParamIds)\n\t\ta.apply(n, \"SetParam\", nil, n.SetParam)\n\t\ta.apply(n, \"ParParam\", nil, n.ParParam)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\n\tcase *ast.TableFunc:\n\t\ta.apply(n, \"NsUris\", nil, n.NsUris)\n\t\ta.apply(n, \"NsNames\", nil, n.NsNames)\n\t\ta.apply(n, \"Docexpr\", nil, n.Docexpr)\n\t\ta.apply(n, \"Rowexpr\", nil, n.Rowexpr)\n\t\ta.apply(n, \"Colnames\", nil, n.Colnames)\n\t\ta.apply(n, \"Coltypes\", nil, n.Coltypes)\n\t\ta.apply(n, \"Coltypmods\", nil, n.Coltypmods)\n\t\ta.apply(n, \"Colcollations\", nil, n.Colcollations)\n\t\ta.apply(n, \"Colexprs\", nil, n.Colexprs)\n\t\ta.apply(n, \"Coldefexprs\", nil, n.Coldefexprs)\n\n\tcase *ast.TableLikeClause:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\n\tcase *ast.TableSampleClause:\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\t\ta.apply(n, \"Repeatable\", nil, n.Repeatable)\n\n\tcase *ast.TargetEntry:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Expr\", nil, n.Expr)\n\n\tcase *ast.TransactionStmt:\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.TriggerTransition:\n\t\t// pass\n\n\tcase *ast.TruncateStmt:\n\t\ta.apply(n, \"Relations\", nil, n.Relations)\n\n\tcase *ast.TypeCast:\n\t\ta.apply(n, \"Arg\", nil, n.Arg)\n\t\ta.apply(n, \"TypeName\", nil, n.TypeName)\n\n\tcase *ast.TypeName:\n\t\ta.apply(n, \"Names\", nil, n.Names)\n\t\ta.apply(n, \"Typmods\", nil, n.Typmods)\n\t\ta.apply(n, \"ArrayBounds\", nil, n.ArrayBounds)\n\n\tcase *ast.UnlistenStmt:\n\t\t// pass\n\n\tcase *ast.UpdateStmt:\n\t\ta.apply(n, \"Relations\", nil, n.Relations)\n\t\ta.apply(n, \"TargetList\", nil, n.TargetList)\n\t\ta.apply(n, \"WhereClause\", nil, n.WhereClause)\n\t\ta.apply(n, \"FromClause\", nil, n.FromClause)\n\t\ta.apply(n, \"ReturningList\", nil, n.ReturningList)\n\t\ta.apply(n, \"WithClause\", nil, n.WithClause)\n\n\tcase *ast.VacuumStmt:\n\t\ta.apply(n, \"Relation\", nil, n.Relation)\n\t\ta.apply(n, \"VaCols\", nil, n.VaCols)\n\n\tcase *ast.Var:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\n\tcase *ast.VariableSetStmt:\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\n\tcase *ast.VariableShowStmt:\n\t\t// pass\n\n\tcase *ast.ViewStmt:\n\t\ta.apply(n, \"View\", nil, n.View)\n\t\ta.apply(n, \"Aliases\", nil, n.Aliases)\n\t\ta.apply(n, \"Query\", nil, n.Query)\n\t\ta.apply(n, \"Options\", nil, n.Options)\n\n\tcase *ast.WindowClause:\n\t\ta.apply(n, \"PartitionClause\", nil, n.PartitionClause)\n\t\ta.apply(n, \"OrderClause\", nil, n.OrderClause)\n\t\ta.apply(n, \"StartOffset\", nil, n.StartOffset)\n\t\ta.apply(n, \"EndOffset\", nil, n.EndOffset)\n\n\tcase *ast.WindowDef:\n\t\ta.apply(n, \"PartitionClause\", nil, n.PartitionClause)\n\t\ta.apply(n, \"OrderClause\", nil, n.OrderClause)\n\t\ta.apply(n, \"StartOffset\", nil, n.StartOffset)\n\t\ta.apply(n, \"EndOffset\", nil, n.EndOffset)\n\n\tcase *ast.WindowFunc:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\t\ta.apply(n, \"Aggfilter\", nil, n.Aggfilter)\n\n\tcase *ast.WithCheckOption:\n\t\ta.apply(n, \"Qual\", nil, n.Qual)\n\n\tcase *ast.WithClause:\n\t\ta.apply(n, \"Ctes\", nil, n.Ctes)\n\n\tcase *ast.XmlExpr:\n\t\ta.apply(n, \"Xpr\", nil, n.Xpr)\n\t\ta.apply(n, \"NamedArgs\", nil, n.NamedArgs)\n\t\ta.apply(n, \"ArgNames\", nil, n.ArgNames)\n\t\ta.apply(n, \"Args\", nil, n.Args)\n\n\tcase *ast.XmlSerialize:\n\t\ta.apply(n, \"Expr\", nil, n.Expr)\n\t\ta.apply(n, \"TypeName\", nil, n.TypeName)\n\n\t// Comments and fields\n\tdefault:\n\t\tpanic(fmt.Sprintf(\"Apply: unexpected node type %T\", n))\n\t}\n\n\tif a.post != nil && !a.post(&a.cursor) {\n\t\tpanic(abort)\n\t}\n\n\ta.cursor = saved\n}\n\n// An iterator controls iteration over a slice of nodes.\ntype iterator struct {\n\tindex, step int\n}\n\nfunc (a *application) applyList(parent ast.Node, name string) {\n\t// avoid heap-allocating a new iterator for each applyList call; reuse a.iter instead\n\tsaved := a.iter\n\ta.iter.index = 0\n\tfor {\n\t\t// must reload parent.name each time, since cursor modifications might change it\n\t\tv := reflect.Indirect(reflect.ValueOf(parent)).FieldByName(name)\n\t\tif a.iter.index >= v.Len() {\n\t\t\tbreak\n\t\t}\n\n\t\t// element x may be nil in a bad AST - be cautious\n\t\tvar x ast.Node\n\t\tif e := v.Index(a.iter.index); e.IsValid() {\n\t\t\tx = e.Interface().(ast.Node)\n\t\t}\n\n\t\ta.iter.step = 1\n\t\ta.apply(parent, name, &a.iter, x)\n\t\ta.iter.index += a.iter.step\n\t}\n\ta.iter = saved\n}\n"
  },
  {
    "path": "internal/sql/astutils/search.go",
    "content": "package astutils\n\nimport \"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\ntype nodeSearch struct {\n\tlist  *ast.List\n\tcheck func(ast.Node) bool\n}\n\nfunc (s *nodeSearch) Visit(node ast.Node) Visitor {\n\tif s.check(node) {\n\t\ts.list.Items = append(s.list.Items, node)\n\t}\n\treturn s\n}\n\nfunc Search(root ast.Node, f func(ast.Node) bool) *ast.List {\n\tns := &nodeSearch{check: f, list: &ast.List{}}\n\tWalk(ns, root)\n\treturn ns.list\n}\n"
  },
  {
    "path": "internal/sql/astutils/walk.go",
    "content": "package astutils\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\ntype Visitor interface {\n\tVisit(ast.Node) Visitor\n}\n\ntype VisitorFunc func(ast.Node)\n\nfunc (vf VisitorFunc) Visit(node ast.Node) Visitor {\n\tvf(node)\n\treturn vf\n}\n\nfunc Walk(f Visitor, node ast.Node) {\n\tif f = f.Visit(node); f == nil {\n\t\treturn\n\t}\n\tswitch n := node.(type) {\n\n\tcase *ast.AlterTableSetSchemaStmt:\n\t\tif n.Table != nil {\n\t\t\tWalk(f, n.Table)\n\t\t}\n\n\tcase *ast.AlterTableStmt:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\t\tif n.Table != nil {\n\t\t\tWalk(f, n.Table)\n\t\t}\n\t\tif n.Cmds != nil {\n\t\t\tWalk(f, n.Cmds)\n\t\t}\n\n\tcase *ast.AlterTypeAddValueStmt:\n\t\tif n.Type != nil {\n\t\t\tWalk(f, n.Type)\n\t\t}\n\n\tcase *ast.AlterTypeSetSchemaStmt:\n\t\tif n.Type != nil {\n\t\t\tWalk(f, n.Type)\n\t\t}\n\n\tcase *ast.AlterTypeRenameValueStmt:\n\t\tif n.Type != nil {\n\t\t\tWalk(f, n.Type)\n\t\t}\n\n\tcase *ast.CommentOnColumnStmt:\n\t\tif n.Table != nil {\n\t\t\tWalk(f, n.Table)\n\t\t}\n\t\tif n.Col != nil {\n\t\t\tWalk(f, n.Col)\n\t\t}\n\n\tcase *ast.CommentOnSchemaStmt:\n\t\tif n.Schema != nil {\n\t\t\tWalk(f, n.Schema)\n\t\t}\n\n\tcase *ast.CommentOnTableStmt:\n\t\tif n.Table != nil {\n\t\t\tWalk(f, n.Table)\n\t\t}\n\n\tcase *ast.CommentOnTypeStmt:\n\t\tif n.Type != nil {\n\t\t\tWalk(f, n.Type)\n\t\t}\n\n\tcase *ast.CommentOnViewStmt:\n\t\tif n.View != nil {\n\t\t\tWalk(f, n.View)\n\t\t}\n\n\tcase *ast.CompositeTypeStmt:\n\t\tif n.TypeName != nil {\n\t\t\tWalk(f, n.TypeName)\n\t\t}\n\n\tcase *ast.CreateTableStmt:\n\t\tif n.Name != nil {\n\t\t\tWalk(f, n.Name)\n\t\t}\n\n\tcase *ast.DropFunctionStmt:\n\t\t// pass\n\n\tcase *ast.DropSchemaStmt:\n\t\t// pass\n\n\tcase *ast.DropTableStmt:\n\t\t// pass\n\n\tcase *ast.DropTypeStmt:\n\t\t// pass\n\n\tcase *ast.FuncName:\n\t\t// pass\n\n\tcase *ast.FuncParam:\n\t\tif n.Type != nil {\n\t\t\tWalk(f, n.Type)\n\t\t}\n\t\tif n.DefExpr != nil {\n\t\t\tWalk(f, n.DefExpr)\n\t\t}\n\n\tcase *ast.FuncSpec:\n\t\tif n.Name != nil {\n\t\t\tWalk(f, n.Name)\n\t\t}\n\n\tcase *ast.List:\n\t\tfor _, item := range n.Items {\n\t\t\tWalk(f, item)\n\t\t}\n\n\tcase *ast.RenameColumnStmt:\n\t\tif n.Table != nil {\n\t\t\tWalk(f, n.Table)\n\t\t}\n\t\tif n.Col != nil {\n\t\t\tWalk(f, n.Col)\n\t\t}\n\n\tcase *ast.RenameTableStmt:\n\t\tif n.Table != nil {\n\t\t\tWalk(f, n.Table)\n\t\t}\n\n\tcase *ast.RenameTypeStmt:\n\t\tif n.Type != nil {\n\t\t\tWalk(f, n.Type)\n\t\t}\n\n\tcase *ast.Statement:\n\t\tif n.Raw != nil {\n\t\t\tWalk(f, n.Raw)\n\t\t}\n\n\tcase *ast.TODO:\n\t\t// pass\n\n\tcase *ast.TableName:\n\t\t// pass\n\n\tcase *ast.A_ArrayExpr:\n\t\tif n.Elements != nil {\n\t\t\tWalk(f, n.Elements)\n\t\t}\n\n\tcase *ast.A_Const:\n\t\tif n.Val != nil {\n\t\t\tWalk(f, n.Val)\n\t\t}\n\n\tcase *ast.A_Expr:\n\t\tif n.Name != nil {\n\t\t\tWalk(f, n.Name)\n\t\t}\n\t\tif n.Lexpr != nil {\n\t\t\tWalk(f, n.Lexpr)\n\t\t}\n\t\tif n.Rexpr != nil {\n\t\t\tWalk(f, n.Rexpr)\n\t\t}\n\n\tcase *ast.A_Indices:\n\t\tif n.Lidx != nil {\n\t\t\tWalk(f, n.Lidx)\n\t\t}\n\t\tif n.Uidx != nil {\n\t\t\tWalk(f, n.Uidx)\n\t\t}\n\n\tcase *ast.A_Indirection:\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\t\tif n.Indirection != nil {\n\t\t\tWalk(f, n.Indirection)\n\t\t}\n\n\tcase *ast.A_Star:\n\t\t// pass\n\n\tcase *ast.AccessPriv:\n\t\tif n.Cols != nil {\n\t\t\tWalk(f, n.Cols)\n\t\t}\n\n\tcase *ast.Aggref:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Aggargtypes != nil {\n\t\t\tWalk(f, n.Aggargtypes)\n\t\t}\n\t\tif n.Aggdirectargs != nil {\n\t\t\tWalk(f, n.Aggdirectargs)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\t\tif n.Aggorder != nil {\n\t\t\tWalk(f, n.Aggorder)\n\t\t}\n\t\tif n.Aggdistinct != nil {\n\t\t\tWalk(f, n.Aggdistinct)\n\t\t}\n\t\tif n.Aggfilter != nil {\n\t\t\tWalk(f, n.Aggfilter)\n\t\t}\n\n\tcase *ast.Alias:\n\t\tif n.Colnames != nil {\n\t\t\tWalk(f, n.Colnames)\n\t\t}\n\n\tcase *ast.AlterCollationStmt:\n\t\tif n.Collname != nil {\n\t\t\tWalk(f, n.Collname)\n\t\t}\n\n\tcase *ast.AlterDatabaseSetStmt:\n\t\tif n.Setstmt != nil {\n\t\t\tWalk(f, n.Setstmt)\n\t\t}\n\n\tcase *ast.AlterDatabaseStmt:\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.AlterDefaultPrivilegesStmt:\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\t\tif n.Action != nil {\n\t\t\tWalk(f, n.Action)\n\t\t}\n\n\tcase *ast.AlterDomainStmt:\n\t\tif n.TypeName != nil {\n\t\t\tWalk(f, n.TypeName)\n\t\t}\n\t\tif n.Def != nil {\n\t\t\tWalk(f, n.Def)\n\t\t}\n\n\tcase *ast.AlterEnumStmt:\n\t\tif n.TypeName != nil {\n\t\t\tWalk(f, n.TypeName)\n\t\t}\n\n\tcase *ast.AlterEventTrigStmt:\n\t\t// pass\n\n\tcase *ast.AlterExtensionContentsStmt:\n\t\tif n.Object != nil {\n\t\t\tWalk(f, n.Object)\n\t\t}\n\n\tcase *ast.AlterExtensionStmt:\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.AlterFdwStmt:\n\t\tif n.FuncOptions != nil {\n\t\t\tWalk(f, n.FuncOptions)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.AlterForeignServerStmt:\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.AlterFunctionStmt:\n\t\tif n.Func != nil {\n\t\t\tWalk(f, n.Func)\n\t\t}\n\t\tif n.Actions != nil {\n\t\t\tWalk(f, n.Actions)\n\t\t}\n\n\tcase *ast.AlterObjectDependsStmt:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\t\tif n.Object != nil {\n\t\t\tWalk(f, n.Object)\n\t\t}\n\t\tif n.Extname != nil {\n\t\t\tWalk(f, n.Extname)\n\t\t}\n\n\tcase *ast.AlterObjectSchemaStmt:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\t\tif n.Object != nil {\n\t\t\tWalk(f, n.Object)\n\t\t}\n\n\tcase *ast.AlterOpFamilyStmt:\n\t\tif n.Opfamilyname != nil {\n\t\t\tWalk(f, n.Opfamilyname)\n\t\t}\n\t\tif n.Items != nil {\n\t\t\tWalk(f, n.Items)\n\t\t}\n\n\tcase *ast.AlterOperatorStmt:\n\t\tif n.Opername != nil {\n\t\t\tWalk(f, n.Opername)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.AlterOwnerStmt:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\t\tif n.Object != nil {\n\t\t\tWalk(f, n.Object)\n\t\t}\n\t\tif n.Newowner != nil {\n\t\t\tWalk(f, n.Newowner)\n\t\t}\n\n\tcase *ast.AlterPolicyStmt:\n\t\tif n.Table != nil {\n\t\t\tWalk(f, n.Table)\n\t\t}\n\t\tif n.Roles != nil {\n\t\t\tWalk(f, n.Roles)\n\t\t}\n\t\tif n.Qual != nil {\n\t\t\tWalk(f, n.Qual)\n\t\t}\n\t\tif n.WithCheck != nil {\n\t\t\tWalk(f, n.WithCheck)\n\t\t}\n\n\tcase *ast.AlterPublicationStmt:\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\t\tif n.Tables != nil {\n\t\t\tWalk(f, n.Tables)\n\t\t}\n\n\tcase *ast.AlterRoleSetStmt:\n\t\tif n.Role != nil {\n\t\t\tWalk(f, n.Role)\n\t\t}\n\t\tif n.Setstmt != nil {\n\t\t\tWalk(f, n.Setstmt)\n\t\t}\n\n\tcase *ast.AlterRoleStmt:\n\t\tif n.Role != nil {\n\t\t\tWalk(f, n.Role)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.AlterSeqStmt:\n\t\tif n.Sequence != nil {\n\t\t\tWalk(f, n.Sequence)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.AlterSubscriptionStmt:\n\t\tif n.Publication != nil {\n\t\t\tWalk(f, n.Publication)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.AlterSystemStmt:\n\t\tif n.Setstmt != nil {\n\t\t\tWalk(f, n.Setstmt)\n\t\t}\n\n\tcase *ast.AlterTSConfigurationStmt:\n\t\tif n.Cfgname != nil {\n\t\t\tWalk(f, n.Cfgname)\n\t\t}\n\t\tif n.Tokentype != nil {\n\t\t\tWalk(f, n.Tokentype)\n\t\t}\n\t\tif n.Dicts != nil {\n\t\t\tWalk(f, n.Dicts)\n\t\t}\n\n\tcase *ast.AlterTSDictionaryStmt:\n\t\tif n.Dictname != nil {\n\t\t\tWalk(f, n.Dictname)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.AlterTableCmd:\n\t\tif n.Newowner != nil {\n\t\t\tWalk(f, n.Newowner)\n\t\t}\n\t\tif n.Def != nil {\n\t\t\tWalk(f, n.Def)\n\t\t}\n\n\tcase *ast.AlterTableMoveAllStmt:\n\t\tif n.Roles != nil {\n\t\t\tWalk(f, n.Roles)\n\t\t}\n\n\tcase *ast.AlterTableSpaceOptionsStmt:\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.AlterUserMappingStmt:\n\t\tif n.User != nil {\n\t\t\tWalk(f, n.User)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.AlternativeSubPlan:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Subplans != nil {\n\t\t\tWalk(f, n.Subplans)\n\t\t}\n\n\tcase *ast.ArrayCoerceExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\n\tcase *ast.ArrayExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Elements != nil {\n\t\t\tWalk(f, n.Elements)\n\t\t}\n\n\tcase *ast.ArrayRef:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Refupperindexpr != nil {\n\t\t\tWalk(f, n.Refupperindexpr)\n\t\t}\n\t\tif n.Reflowerindexpr != nil {\n\t\t\tWalk(f, n.Reflowerindexpr)\n\t\t}\n\t\tif n.Refexpr != nil {\n\t\t\tWalk(f, n.Refexpr)\n\t\t}\n\t\tif n.Refassgnexpr != nil {\n\t\t\tWalk(f, n.Refassgnexpr)\n\t\t}\n\n\tcase *ast.BetweenExpr:\n\t\tif n.Expr != nil {\n\t\t\tWalk(f, n.Expr)\n\t\t}\n\t\tif n.Left != nil {\n\t\t\tWalk(f, n.Left)\n\t\t}\n\t\tif n.Right != nil {\n\t\t\tWalk(f, n.Right)\n\t\t}\n\n\tcase *ast.BitString:\n\t\t// pass\n\n\tcase *ast.BlockIdData:\n\t\t// pass\n\n\tcase *ast.BoolExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\n\tcase *ast.Boolean:\n\t\t// pass\n\n\tcase *ast.BooleanTest:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\n\tcase *ast.CallStmt:\n\t\tif n.FuncCall != nil {\n\t\t\tWalk(f, n.FuncCall)\n\t\t}\n\n\tcase *ast.CaseExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\t\tif n.Defresult != nil {\n\t\t\tWalk(f, n.Defresult)\n\t\t}\n\n\tcase *ast.CaseTestExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\n\tcase *ast.CaseWhen:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Expr != nil {\n\t\t\tWalk(f, n.Expr)\n\t\t}\n\t\tif n.Result != nil {\n\t\t\tWalk(f, n.Result)\n\t\t}\n\n\tcase *ast.CheckPointStmt:\n\t\t// pass\n\n\tcase *ast.ClosePortalStmt:\n\t\t// pass\n\n\tcase *ast.ClusterStmt:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\n\tcase *ast.CoalesceExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\n\tcase *ast.CoerceToDomain:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\n\tcase *ast.CoerceToDomainValue:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\n\tcase *ast.CoerceViaIO:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\n\tcase *ast.CollateClause:\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\t\tif n.Collname != nil {\n\t\t\tWalk(f, n.Collname)\n\t\t}\n\n\tcase *ast.CollateExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\n\tcase *ast.ColumnDef:\n\t\tif n.TypeName != nil {\n\t\t\tWalk(f, n.TypeName)\n\t\t}\n\t\tif n.RawDefault != nil {\n\t\t\tWalk(f, n.RawDefault)\n\t\t}\n\t\tif n.CookedDefault != nil {\n\t\t\tWalk(f, n.CookedDefault)\n\t\t}\n\t\tif n.CollClause != nil {\n\t\t\tWalk(f, n.CollClause)\n\t\t}\n\t\tif n.Constraints != nil {\n\t\t\tWalk(f, n.Constraints)\n\t\t}\n\t\tif n.Fdwoptions != nil {\n\t\t\tWalk(f, n.Fdwoptions)\n\t\t}\n\n\tcase *ast.ColumnRef:\n\t\tif n.Fields != nil {\n\t\t\tWalk(f, n.Fields)\n\t\t}\n\n\tcase *ast.CommentStmt:\n\t\tif n.Object != nil {\n\t\t\tWalk(f, n.Object)\n\t\t}\n\n\tcase *ast.CommonTableExpr:\n\t\tif n.Aliascolnames != nil {\n\t\t\tWalk(f, n.Aliascolnames)\n\t\t}\n\t\tif n.Ctequery != nil {\n\t\t\tWalk(f, n.Ctequery)\n\t\t}\n\t\tif n.Ctecolnames != nil {\n\t\t\tWalk(f, n.Ctecolnames)\n\t\t}\n\t\tif n.Ctecoltypes != nil {\n\t\t\tWalk(f, n.Ctecoltypes)\n\t\t}\n\t\tif n.Ctecoltypmods != nil {\n\t\t\tWalk(f, n.Ctecoltypmods)\n\t\t}\n\t\tif n.Ctecolcollations != nil {\n\t\t\tWalk(f, n.Ctecolcollations)\n\t\t}\n\n\tcase *ast.Const:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\n\tcase *ast.Constraint:\n\t\tif n.RawExpr != nil {\n\t\t\tWalk(f, n.RawExpr)\n\t\t}\n\t\tif n.Keys != nil {\n\t\t\tWalk(f, n.Keys)\n\t\t}\n\t\tif n.Exclusions != nil {\n\t\t\tWalk(f, n.Exclusions)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\t\tif n.WhereClause != nil {\n\t\t\tWalk(f, n.WhereClause)\n\t\t}\n\t\tif n.Pktable != nil {\n\t\t\tWalk(f, n.Pktable)\n\t\t}\n\t\tif n.FkAttrs != nil {\n\t\t\tWalk(f, n.FkAttrs)\n\t\t}\n\t\tif n.PkAttrs != nil {\n\t\t\tWalk(f, n.PkAttrs)\n\t\t}\n\t\tif n.OldConpfeqop != nil {\n\t\t\tWalk(f, n.OldConpfeqop)\n\t\t}\n\n\tcase *ast.ConstraintsSetStmt:\n\t\tif n.Constraints != nil {\n\t\t\tWalk(f, n.Constraints)\n\t\t}\n\n\tcase *ast.ConvertRowtypeExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\n\tcase *ast.CopyStmt:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\t\tif n.Query != nil {\n\t\t\tWalk(f, n.Query)\n\t\t}\n\t\tif n.Attlist != nil {\n\t\t\tWalk(f, n.Attlist)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.CreateAmStmt:\n\t\tif n.HandlerName != nil {\n\t\t\tWalk(f, n.HandlerName)\n\t\t}\n\n\tcase *ast.CreateCastStmt:\n\t\tif n.Sourcetype != nil {\n\t\t\tWalk(f, n.Sourcetype)\n\t\t}\n\t\tif n.Targettype != nil {\n\t\t\tWalk(f, n.Targettype)\n\t\t}\n\t\tif n.Func != nil {\n\t\t\tWalk(f, n.Func)\n\t\t}\n\n\tcase *ast.CreateConversionStmt:\n\t\tif n.ConversionName != nil {\n\t\t\tWalk(f, n.ConversionName)\n\t\t}\n\t\tif n.FuncName != nil {\n\t\t\tWalk(f, n.FuncName)\n\t\t}\n\n\tcase *ast.CreateDomainStmt:\n\t\tif n.Domainname != nil {\n\t\t\tWalk(f, n.Domainname)\n\t\t}\n\t\tif n.TypeName != nil {\n\t\t\tWalk(f, n.TypeName)\n\t\t}\n\t\tif n.CollClause != nil {\n\t\t\tWalk(f, n.CollClause)\n\t\t}\n\t\tif n.Constraints != nil {\n\t\t\tWalk(f, n.Constraints)\n\t\t}\n\n\tcase *ast.CreateEnumStmt:\n\t\tif n.TypeName != nil {\n\t\t\tWalk(f, n.TypeName)\n\t\t}\n\t\tif n.Vals != nil {\n\t\t\tWalk(f, n.Vals)\n\t\t}\n\n\tcase *ast.CreateEventTrigStmt:\n\t\tif n.Whenclause != nil {\n\t\t\tWalk(f, n.Whenclause)\n\t\t}\n\t\tif n.Funcname != nil {\n\t\t\tWalk(f, n.Funcname)\n\t\t}\n\n\tcase *ast.CreateExtensionStmt:\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.CreateFdwStmt:\n\t\tif n.FuncOptions != nil {\n\t\t\tWalk(f, n.FuncOptions)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.CreateForeignServerStmt:\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.CreateForeignTableStmt:\n\t\tif n.Base != nil {\n\t\t\tWalk(f, n.Base)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.CreateFunctionStmt:\n\t\tif n.Func != nil {\n\t\t\tWalk(f, n.Func)\n\t\t}\n\t\tif n.Params != nil {\n\t\t\tWalk(f, n.Params)\n\t\t}\n\t\tif n.ReturnType != nil {\n\t\t\tWalk(f, n.ReturnType)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\t\tif n.WithClause != nil {\n\t\t\tWalk(f, n.WithClause)\n\t\t}\n\n\tcase *ast.CreateOpClassItem:\n\t\tif n.Name != nil {\n\t\t\tWalk(f, n.Name)\n\t\t}\n\t\tif n.OrderFamily != nil {\n\t\t\tWalk(f, n.OrderFamily)\n\t\t}\n\t\tif n.ClassArgs != nil {\n\t\t\tWalk(f, n.ClassArgs)\n\t\t}\n\t\tif n.Storedtype != nil {\n\t\t\tWalk(f, n.Storedtype)\n\t\t}\n\n\tcase *ast.CreateOpClassStmt:\n\t\tif n.Opclassname != nil {\n\t\t\tWalk(f, n.Opclassname)\n\t\t}\n\t\tif n.Opfamilyname != nil {\n\t\t\tWalk(f, n.Opfamilyname)\n\t\t}\n\t\tif n.Datatype != nil {\n\t\t\tWalk(f, n.Datatype)\n\t\t}\n\t\tif n.Items != nil {\n\t\t\tWalk(f, n.Items)\n\t\t}\n\n\tcase *ast.CreateOpFamilyStmt:\n\t\tif n.Opfamilyname != nil {\n\t\t\tWalk(f, n.Opfamilyname)\n\t\t}\n\n\tcase *ast.CreatePLangStmt:\n\t\tif n.Plhandler != nil {\n\t\t\tWalk(f, n.Plhandler)\n\t\t}\n\t\tif n.Plinline != nil {\n\t\t\tWalk(f, n.Plinline)\n\t\t}\n\t\tif n.Plvalidator != nil {\n\t\t\tWalk(f, n.Plvalidator)\n\t\t}\n\n\tcase *ast.CreatePolicyStmt:\n\t\tif n.Table != nil {\n\t\t\tWalk(f, n.Table)\n\t\t}\n\t\tif n.Roles != nil {\n\t\t\tWalk(f, n.Roles)\n\t\t}\n\t\tif n.Qual != nil {\n\t\t\tWalk(f, n.Qual)\n\t\t}\n\t\tif n.WithCheck != nil {\n\t\t\tWalk(f, n.WithCheck)\n\t\t}\n\n\tcase *ast.CreatePublicationStmt:\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\t\tif n.Tables != nil {\n\t\t\tWalk(f, n.Tables)\n\t\t}\n\n\tcase *ast.CreateRangeStmt:\n\t\tif n.TypeName != nil {\n\t\t\tWalk(f, n.TypeName)\n\t\t}\n\t\tif n.Params != nil {\n\t\t\tWalk(f, n.Params)\n\t\t}\n\n\tcase *ast.CreateRoleStmt:\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.CreateSchemaStmt:\n\t\tif n.Authrole != nil {\n\t\t\tWalk(f, n.Authrole)\n\t\t}\n\t\tif n.SchemaElts != nil {\n\t\t\tWalk(f, n.SchemaElts)\n\t\t}\n\n\tcase *ast.CreateSeqStmt:\n\t\tif n.Sequence != nil {\n\t\t\tWalk(f, n.Sequence)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.CreateStatsStmt:\n\t\tif n.Defnames != nil {\n\t\t\tWalk(f, n.Defnames)\n\t\t}\n\t\tif n.StatTypes != nil {\n\t\t\tWalk(f, n.StatTypes)\n\t\t}\n\t\tif n.Exprs != nil {\n\t\t\tWalk(f, n.Exprs)\n\t\t}\n\t\tif n.Relations != nil {\n\t\t\tWalk(f, n.Relations)\n\t\t}\n\n\tcase *ast.CreateStmt:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\t\tif n.TableElts != nil {\n\t\t\tWalk(f, n.TableElts)\n\t\t}\n\t\tif n.InhRelations != nil {\n\t\t\tWalk(f, n.InhRelations)\n\t\t}\n\t\tif n.Partbound != nil {\n\t\t\tWalk(f, n.Partbound)\n\t\t}\n\t\tif n.Partspec != nil {\n\t\t\tWalk(f, n.Partspec)\n\t\t}\n\t\tif n.OfTypename != nil {\n\t\t\tWalk(f, n.OfTypename)\n\t\t}\n\t\tif n.Constraints != nil {\n\t\t\tWalk(f, n.Constraints)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.CreateSubscriptionStmt:\n\t\tif n.Publication != nil {\n\t\t\tWalk(f, n.Publication)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.CreateTableAsStmt:\n\t\tif n.Query != nil {\n\t\t\tWalk(f, n.Query)\n\t\t}\n\t\tif n.Into != nil {\n\t\t\tWalk(f, n.Into)\n\t\t}\n\n\tcase *ast.CreateTableSpaceStmt:\n\t\tif n.Owner != nil {\n\t\t\tWalk(f, n.Owner)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.CreateTransformStmt:\n\t\tif n.TypeName != nil {\n\t\t\tWalk(f, n.TypeName)\n\t\t}\n\t\tif n.Fromsql != nil {\n\t\t\tWalk(f, n.Fromsql)\n\t\t}\n\t\tif n.Tosql != nil {\n\t\t\tWalk(f, n.Tosql)\n\t\t}\n\n\tcase *ast.CreateTrigStmt:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\t\tif n.Funcname != nil {\n\t\t\tWalk(f, n.Funcname)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\t\tif n.Columns != nil {\n\t\t\tWalk(f, n.Columns)\n\t\t}\n\t\tif n.WhenClause != nil {\n\t\t\tWalk(f, n.WhenClause)\n\t\t}\n\t\tif n.TransitionRels != nil {\n\t\t\tWalk(f, n.TransitionRels)\n\t\t}\n\t\tif n.Constrrel != nil {\n\t\t\tWalk(f, n.Constrrel)\n\t\t}\n\n\tcase *ast.CreateUserMappingStmt:\n\t\tif n.User != nil {\n\t\t\tWalk(f, n.User)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.CreatedbStmt:\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.CurrentOfExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\n\tcase *ast.DeallocateStmt:\n\t\t// pass\n\n\tcase *ast.DeclareCursorStmt:\n\t\tif n.Query != nil {\n\t\t\tWalk(f, n.Query)\n\t\t}\n\n\tcase *ast.DefElem:\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\n\tcase *ast.DefineStmt:\n\t\tif n.Defnames != nil {\n\t\t\tWalk(f, n.Defnames)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\t\tif n.Definition != nil {\n\t\t\tWalk(f, n.Definition)\n\t\t}\n\n\tcase *ast.DeleteStmt:\n\t\tif n.Relations != nil {\n\t\t\tWalk(f, n.Relations)\n\t\t}\n\t\tif n.UsingClause != nil {\n\t\t\tWalk(f, n.UsingClause)\n\t\t}\n\t\tif n.WhereClause != nil {\n\t\t\tWalk(f, n.WhereClause)\n\t\t}\n\t\tif n.LimitCount != nil {\n\t\t\tWalk(f, n.LimitCount)\n\t\t}\n\t\tif n.ReturningList != nil {\n\t\t\tWalk(f, n.ReturningList)\n\t\t}\n\t\tif n.WithClause != nil {\n\t\t\tWalk(f, n.WithClause)\n\t\t}\n\t\tif n.Targets != nil {\n\t\t\tWalk(f, n.Targets)\n\t\t}\n\t\tif n.FromClause != nil {\n\t\t\tWalk(f, n.FromClause)\n\t\t}\n\n\tcase *ast.DiscardStmt:\n\t\t// pass\n\n\tcase *ast.DoStmt:\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\n\tcase *ast.DropOwnedStmt:\n\t\tif n.Roles != nil {\n\t\t\tWalk(f, n.Roles)\n\t\t}\n\n\tcase *ast.DropRoleStmt:\n\t\tif n.Roles != nil {\n\t\t\tWalk(f, n.Roles)\n\t\t}\n\n\tcase *ast.DropStmt:\n\t\tif n.Objects != nil {\n\t\t\tWalk(f, n.Objects)\n\t\t}\n\n\tcase *ast.DropSubscriptionStmt:\n\t\t// pass\n\n\tcase *ast.DropTableSpaceStmt:\n\t\t// pass\n\n\tcase *ast.DropUserMappingStmt:\n\t\tif n.User != nil {\n\t\t\tWalk(f, n.User)\n\t\t}\n\n\tcase *ast.DropdbStmt:\n\t\t// pass\n\n\tcase *ast.ExecuteStmt:\n\t\tif n.Params != nil {\n\t\t\tWalk(f, n.Params)\n\t\t}\n\n\tcase *ast.ExplainStmt:\n\t\tif n.Query != nil {\n\t\t\tWalk(f, n.Query)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.Expr:\n\t\t// pass\n\n\tcase *ast.FetchStmt:\n\t\t// pass\n\n\tcase *ast.FieldSelect:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\n\tcase *ast.FieldStore:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\t\tif n.Newvals != nil {\n\t\t\tWalk(f, n.Newvals)\n\t\t}\n\t\tif n.Fieldnums != nil {\n\t\t\tWalk(f, n.Fieldnums)\n\t\t}\n\n\tcase *ast.Float:\n\t\t// pass\n\n\tcase *ast.FromExpr:\n\t\tif n.Fromlist != nil {\n\t\t\tWalk(f, n.Fromlist)\n\t\t}\n\t\tif n.Quals != nil {\n\t\t\tWalk(f, n.Quals)\n\t\t}\n\n\tcase *ast.FuncCall:\n\t\tif n.Func != nil {\n\t\t\tWalk(f, n.Func)\n\t\t}\n\t\tif n.Funcname != nil {\n\t\t\tWalk(f, n.Funcname)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\t\tif n.AggOrder != nil {\n\t\t\tWalk(f, n.AggOrder)\n\t\t}\n\t\tif n.AggFilter != nil {\n\t\t\tWalk(f, n.AggFilter)\n\t\t}\n\t\tif n.Over != nil {\n\t\t\tWalk(f, n.Over)\n\t\t}\n\n\tcase *ast.FuncExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\n\tcase *ast.FunctionParameter:\n\t\tif n.ArgType != nil {\n\t\t\tWalk(f, n.ArgType)\n\t\t}\n\t\tif n.Defexpr != nil {\n\t\t\tWalk(f, n.Defexpr)\n\t\t}\n\n\tcase *ast.GrantRoleStmt:\n\t\tif n.GrantedRoles != nil {\n\t\t\tWalk(f, n.GrantedRoles)\n\t\t}\n\t\tif n.GranteeRoles != nil {\n\t\t\tWalk(f, n.GranteeRoles)\n\t\t}\n\t\tif n.Grantor != nil {\n\t\t\tWalk(f, n.Grantor)\n\t\t}\n\n\tcase *ast.GrantStmt:\n\t\tif n.Objects != nil {\n\t\t\tWalk(f, n.Objects)\n\t\t}\n\t\tif n.Privileges != nil {\n\t\t\tWalk(f, n.Privileges)\n\t\t}\n\t\tif n.Grantees != nil {\n\t\t\tWalk(f, n.Grantees)\n\t\t}\n\n\tcase *ast.GroupingFunc:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\t\tif n.Refs != nil {\n\t\t\tWalk(f, n.Refs)\n\t\t}\n\t\tif n.Cols != nil {\n\t\t\tWalk(f, n.Cols)\n\t\t}\n\n\tcase *ast.GroupingSet:\n\t\tif n.Content != nil {\n\t\t\tWalk(f, n.Content)\n\t\t}\n\n\tcase *ast.ImportForeignSchemaStmt:\n\t\tif n.TableList != nil {\n\t\t\tWalk(f, n.TableList)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.IndexElem:\n\t\tif n.Expr != nil {\n\t\t\tWalk(f, n.Expr)\n\t\t}\n\t\tif n.Collation != nil {\n\t\t\tWalk(f, n.Collation)\n\t\t}\n\t\tif n.Opclass != nil {\n\t\t\tWalk(f, n.Opclass)\n\t\t}\n\n\tcase *ast.IndexStmt:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\t\tif n.IndexParams != nil {\n\t\t\tWalk(f, n.IndexParams)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\t\tif n.WhereClause != nil {\n\t\t\tWalk(f, n.WhereClause)\n\t\t}\n\t\tif n.ExcludeOpNames != nil {\n\t\t\tWalk(f, n.ExcludeOpNames)\n\t\t}\n\n\tcase *ast.InferClause:\n\t\tif n.IndexElems != nil {\n\t\t\tWalk(f, n.IndexElems)\n\t\t}\n\t\tif n.WhereClause != nil {\n\t\t\tWalk(f, n.WhereClause)\n\t\t}\n\n\tcase *ast.InferenceElem:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Expr != nil {\n\t\t\tWalk(f, n.Expr)\n\t\t}\n\n\tcase *ast.InlineCodeBlock:\n\t\t// pass\n\n\tcase *ast.InsertStmt:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\t\tif n.Cols != nil {\n\t\t\tWalk(f, n.Cols)\n\t\t}\n\t\tif n.SelectStmt != nil {\n\t\t\tWalk(f, n.SelectStmt)\n\t\t}\n\t\tif n.OnConflictClause != nil {\n\t\t\tWalk(f, n.OnConflictClause)\n\t\t}\n\t\tif n.OnDuplicateKeyUpdate != nil {\n\t\t\tWalk(f, n.OnDuplicateKeyUpdate)\n\t\t}\n\t\tif n.ReturningList != nil {\n\t\t\tWalk(f, n.ReturningList)\n\t\t}\n\t\tif n.WithClause != nil {\n\t\t\tWalk(f, n.WithClause)\n\t\t}\n\n\tcase *ast.Integer:\n\t\t// pass\n\n\tcase *ast.IntoClause:\n\t\tif n.Rel != nil {\n\t\t\tWalk(f, n.Rel)\n\t\t}\n\t\tif n.ColNames != nil {\n\t\t\tWalk(f, n.ColNames)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\t\tif n.ViewQuery != nil {\n\t\t\tWalk(f, n.ViewQuery)\n\t\t}\n\n\tcase *ast.IntervalExpr:\n\t\tif n.Value != nil {\n\t\t\tWalk(f, n.Value)\n\t\t}\n\n\tcase *ast.JoinExpr:\n\t\tif n.Larg != nil {\n\t\t\tWalk(f, n.Larg)\n\t\t}\n\t\tif n.Rarg != nil {\n\t\t\tWalk(f, n.Rarg)\n\t\t}\n\t\tif n.UsingClause != nil {\n\t\t\tWalk(f, n.UsingClause)\n\t\t}\n\t\tif n.Quals != nil {\n\t\t\tWalk(f, n.Quals)\n\t\t}\n\t\tif n.Alias != nil {\n\t\t\tWalk(f, n.Alias)\n\t\t}\n\n\tcase *ast.ListenStmt:\n\t\t// pass\n\n\tcase *ast.LoadStmt:\n\t\t// pass\n\n\tcase *ast.LockStmt:\n\t\tif n.Relations != nil {\n\t\t\tWalk(f, n.Relations)\n\t\t}\n\n\tcase *ast.LockingClause:\n\t\tif n.LockedRels != nil {\n\t\t\tWalk(f, n.LockedRels)\n\t\t}\n\n\tcase *ast.MinMaxExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\n\tcase *ast.MultiAssignRef:\n\t\tif n.Source != nil {\n\t\t\tWalk(f, n.Source)\n\t\t}\n\n\tcase *ast.NamedArgExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\n\tcase *ast.NextValueExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\n\tcase *ast.NotifyStmt:\n\t\t// pass\n\n\tcase *ast.Null:\n\t\t// pass\n\n\tcase *ast.NullTest:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\n\tcase *ast.ObjectWithArgs:\n\t\tif n.Objname != nil {\n\t\t\tWalk(f, n.Objname)\n\t\t}\n\t\tif n.Objargs != nil {\n\t\t\tWalk(f, n.Objargs)\n\t\t}\n\n\tcase *ast.OnConflictClause:\n\t\tif n.Infer != nil {\n\t\t\tWalk(f, n.Infer)\n\t\t}\n\t\tif n.TargetList != nil {\n\t\t\tWalk(f, n.TargetList)\n\t\t}\n\t\tif n.WhereClause != nil {\n\t\t\tWalk(f, n.WhereClause)\n\t\t}\n\n\tcase *ast.OnConflictExpr:\n\t\tif n.ArbiterElems != nil {\n\t\t\tWalk(f, n.ArbiterElems)\n\t\t}\n\t\tif n.ArbiterWhere != nil {\n\t\t\tWalk(f, n.ArbiterWhere)\n\t\t}\n\t\tif n.OnConflictSet != nil {\n\t\t\tWalk(f, n.OnConflictSet)\n\t\t}\n\t\tif n.OnConflictWhere != nil {\n\t\t\tWalk(f, n.OnConflictWhere)\n\t\t}\n\t\tif n.ExclRelTlist != nil {\n\t\t\tWalk(f, n.ExclRelTlist)\n\t\t}\n\n\tcase *ast.OnDuplicateKeyUpdate:\n\t\tif n.TargetList != nil {\n\t\t\tWalk(f, n.TargetList)\n\t\t}\n\n\tcase *ast.OpExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\n\tcase *ast.Param:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\n\tcase *ast.ParamExecData:\n\t\t// pass\n\n\tcase *ast.ParamExternData:\n\t\t// pass\n\n\tcase *ast.ParamListInfoData:\n\t\t// pass\n\n\tcase *ast.ParamRef:\n\t\t// pass\n\n\tcase *ast.ParenExpr:\n\t\tif n.Expr != nil {\n\t\t\tWalk(f, n.Expr)\n\t\t}\n\n\tcase *ast.VariableExpr:\n\t\t// Leaf node - no children to traverse\n\n\tcase *ast.PartitionBoundSpec:\n\t\tif n.Listdatums != nil {\n\t\t\tWalk(f, n.Listdatums)\n\t\t}\n\t\tif n.Lowerdatums != nil {\n\t\t\tWalk(f, n.Lowerdatums)\n\t\t}\n\t\tif n.Upperdatums != nil {\n\t\t\tWalk(f, n.Upperdatums)\n\t\t}\n\n\tcase *ast.PartitionCmd:\n\t\tif n.Name != nil {\n\t\t\tWalk(f, n.Name)\n\t\t}\n\t\tif n.Bound != nil {\n\t\t\tWalk(f, n.Bound)\n\t\t}\n\n\tcase *ast.PartitionElem:\n\t\tif n.Expr != nil {\n\t\t\tWalk(f, n.Expr)\n\t\t}\n\t\tif n.Collation != nil {\n\t\t\tWalk(f, n.Collation)\n\t\t}\n\t\tif n.Opclass != nil {\n\t\t\tWalk(f, n.Opclass)\n\t\t}\n\n\tcase *ast.PartitionRangeDatum:\n\t\tif n.Value != nil {\n\t\t\tWalk(f, n.Value)\n\t\t}\n\n\tcase *ast.PartitionSpec:\n\t\tif n.PartParams != nil {\n\t\t\tWalk(f, n.PartParams)\n\t\t}\n\n\tcase *ast.PrepareStmt:\n\t\tif n.Argtypes != nil {\n\t\t\tWalk(f, n.Argtypes)\n\t\t}\n\t\tif n.Query != nil {\n\t\t\tWalk(f, n.Query)\n\t\t}\n\n\tcase *ast.Query:\n\t\tif n.UtilityStmt != nil {\n\t\t\tWalk(f, n.UtilityStmt)\n\t\t}\n\t\tif n.CteList != nil {\n\t\t\tWalk(f, n.CteList)\n\t\t}\n\t\tif n.Rtable != nil {\n\t\t\tWalk(f, n.Rtable)\n\t\t}\n\t\tif n.Jointree != nil {\n\t\t\tWalk(f, n.Jointree)\n\t\t}\n\t\tif n.TargetList != nil {\n\t\t\tWalk(f, n.TargetList)\n\t\t}\n\t\tif n.OnConflict != nil {\n\t\t\tWalk(f, n.OnConflict)\n\t\t}\n\t\tif n.ReturningList != nil {\n\t\t\tWalk(f, n.ReturningList)\n\t\t}\n\t\tif n.GroupClause != nil {\n\t\t\tWalk(f, n.GroupClause)\n\t\t}\n\t\tif n.GroupingSets != nil {\n\t\t\tWalk(f, n.GroupingSets)\n\t\t}\n\t\tif n.HavingQual != nil {\n\t\t\tWalk(f, n.HavingQual)\n\t\t}\n\t\tif n.WindowClause != nil {\n\t\t\tWalk(f, n.WindowClause)\n\t\t}\n\t\tif n.DistinctClause != nil {\n\t\t\tWalk(f, n.DistinctClause)\n\t\t}\n\t\tif n.SortClause != nil {\n\t\t\tWalk(f, n.SortClause)\n\t\t}\n\t\tif n.LimitOffset != nil {\n\t\t\tWalk(f, n.LimitOffset)\n\t\t}\n\t\tif n.LimitCount != nil {\n\t\t\tWalk(f, n.LimitCount)\n\t\t}\n\t\tif n.RowMarks != nil {\n\t\t\tWalk(f, n.RowMarks)\n\t\t}\n\t\tif n.SetOperations != nil {\n\t\t\tWalk(f, n.SetOperations)\n\t\t}\n\t\tif n.ConstraintDeps != nil {\n\t\t\tWalk(f, n.ConstraintDeps)\n\t\t}\n\t\tif n.WithCheckOptions != nil {\n\t\t\tWalk(f, n.WithCheckOptions)\n\t\t}\n\n\tcase *ast.RangeFunction:\n\t\tif n.Functions != nil {\n\t\t\tWalk(f, n.Functions)\n\t\t}\n\t\tif n.Alias != nil {\n\t\t\tWalk(f, n.Alias)\n\t\t}\n\t\tif n.Coldeflist != nil {\n\t\t\tWalk(f, n.Coldeflist)\n\t\t}\n\n\tcase *ast.RangeSubselect:\n\t\tif n.Subquery != nil {\n\t\t\tWalk(f, n.Subquery)\n\t\t}\n\t\tif n.Alias != nil {\n\t\t\tWalk(f, n.Alias)\n\t\t}\n\n\tcase *ast.RangeTableFunc:\n\t\tif n.Docexpr != nil {\n\t\t\tWalk(f, n.Docexpr)\n\t\t}\n\t\tif n.Rowexpr != nil {\n\t\t\tWalk(f, n.Rowexpr)\n\t\t}\n\t\tif n.Namespaces != nil {\n\t\t\tWalk(f, n.Namespaces)\n\t\t}\n\t\tif n.Columns != nil {\n\t\t\tWalk(f, n.Columns)\n\t\t}\n\t\tif n.Alias != nil {\n\t\t\tWalk(f, n.Alias)\n\t\t}\n\n\tcase *ast.RangeTableFuncCol:\n\t\tif n.TypeName != nil {\n\t\t\tWalk(f, n.TypeName)\n\t\t}\n\t\tif n.Colexpr != nil {\n\t\t\tWalk(f, n.Colexpr)\n\t\t}\n\t\tif n.Coldefexpr != nil {\n\t\t\tWalk(f, n.Coldefexpr)\n\t\t}\n\n\tcase *ast.RangeTableSample:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\t\tif n.Method != nil {\n\t\t\tWalk(f, n.Method)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\t\tif n.Repeatable != nil {\n\t\t\tWalk(f, n.Repeatable)\n\t\t}\n\n\tcase *ast.RangeTblEntry:\n\t\tif n.Tablesample != nil {\n\t\t\tWalk(f, n.Tablesample)\n\t\t}\n\t\tif n.Subquery != nil {\n\t\t\tWalk(f, n.Subquery)\n\t\t}\n\t\tif n.Joinaliasvars != nil {\n\t\t\tWalk(f, n.Joinaliasvars)\n\t\t}\n\t\tif n.Functions != nil {\n\t\t\tWalk(f, n.Functions)\n\t\t}\n\t\tif n.Tablefunc != nil {\n\t\t\tWalk(f, n.Tablefunc)\n\t\t}\n\t\tif n.ValuesLists != nil {\n\t\t\tWalk(f, n.ValuesLists)\n\t\t}\n\t\tif n.Coltypes != nil {\n\t\t\tWalk(f, n.Coltypes)\n\t\t}\n\t\tif n.Coltypmods != nil {\n\t\t\tWalk(f, n.Coltypmods)\n\t\t}\n\t\tif n.Colcollations != nil {\n\t\t\tWalk(f, n.Colcollations)\n\t\t}\n\t\tif n.Alias != nil {\n\t\t\tWalk(f, n.Alias)\n\t\t}\n\t\tif n.Eref != nil {\n\t\t\tWalk(f, n.Eref)\n\t\t}\n\t\tif n.SecurityQuals != nil {\n\t\t\tWalk(f, n.SecurityQuals)\n\t\t}\n\n\tcase *ast.RangeTblFunction:\n\t\tif n.Funcexpr != nil {\n\t\t\tWalk(f, n.Funcexpr)\n\t\t}\n\t\tif n.Funccolnames != nil {\n\t\t\tWalk(f, n.Funccolnames)\n\t\t}\n\t\tif n.Funccoltypes != nil {\n\t\t\tWalk(f, n.Funccoltypes)\n\t\t}\n\t\tif n.Funccoltypmods != nil {\n\t\t\tWalk(f, n.Funccoltypmods)\n\t\t}\n\t\tif n.Funccolcollations != nil {\n\t\t\tWalk(f, n.Funccolcollations)\n\t\t}\n\n\tcase *ast.RangeTblRef:\n\t\t// pass\n\n\tcase *ast.RangeVar:\n\t\tif n.Alias != nil {\n\t\t\tWalk(f, n.Alias)\n\t\t}\n\n\tcase *ast.RawStmt:\n\t\tif n.Stmt != nil {\n\t\t\tWalk(f, n.Stmt)\n\t\t}\n\n\tcase *ast.ReassignOwnedStmt:\n\t\tif n.Roles != nil {\n\t\t\tWalk(f, n.Roles)\n\t\t}\n\t\tif n.Newrole != nil {\n\t\t\tWalk(f, n.Newrole)\n\t\t}\n\n\tcase *ast.RefreshMatViewStmt:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\n\tcase *ast.ReindexStmt:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\n\tcase *ast.RelabelType:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\n\tcase *ast.RenameStmt:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\t\tif n.Object != nil {\n\t\t\tWalk(f, n.Object)\n\t\t}\n\n\tcase *ast.ReplicaIdentityStmt:\n\t\t// pass\n\n\tcase *ast.ResTarget:\n\t\tif n.Indirection != nil {\n\t\t\tWalk(f, n.Indirection)\n\t\t}\n\t\tif n.Val != nil {\n\t\t\tWalk(f, n.Val)\n\t\t}\n\n\tcase *ast.RoleSpec:\n\t\t// pass\n\n\tcase *ast.RowCompareExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Opnos != nil {\n\t\t\tWalk(f, n.Opnos)\n\t\t}\n\t\tif n.Opfamilies != nil {\n\t\t\tWalk(f, n.Opfamilies)\n\t\t}\n\t\tif n.Inputcollids != nil {\n\t\t\tWalk(f, n.Inputcollids)\n\t\t}\n\t\tif n.Largs != nil {\n\t\t\tWalk(f, n.Largs)\n\t\t}\n\t\tif n.Rargs != nil {\n\t\t\tWalk(f, n.Rargs)\n\t\t}\n\n\tcase *ast.RowExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\t\tif n.Colnames != nil {\n\t\t\tWalk(f, n.Colnames)\n\t\t}\n\n\tcase *ast.RowMarkClause:\n\t\t// pass\n\n\tcase *ast.RuleStmt:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\t\tif n.WhereClause != nil {\n\t\t\tWalk(f, n.WhereClause)\n\t\t}\n\t\tif n.Actions != nil {\n\t\t\tWalk(f, n.Actions)\n\t\t}\n\n\tcase *ast.SQLValueFunction:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\n\tcase *ast.ScalarArrayOpExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\n\tcase *ast.SecLabelStmt:\n\t\tif n.Object != nil {\n\t\t\tWalk(f, n.Object)\n\t\t}\n\n\tcase *ast.SelectStmt:\n\t\tif n.DistinctClause != nil {\n\t\t\tWalk(f, n.DistinctClause)\n\t\t}\n\t\tif n.IntoClause != nil {\n\t\t\tWalk(f, n.IntoClause)\n\t\t}\n\t\tif n.TargetList != nil {\n\t\t\tWalk(f, n.TargetList)\n\t\t}\n\t\tif n.FromClause != nil {\n\t\t\tWalk(f, n.FromClause)\n\t\t}\n\t\tif n.WhereClause != nil {\n\t\t\tWalk(f, n.WhereClause)\n\t\t}\n\t\tif n.GroupClause != nil {\n\t\t\tWalk(f, n.GroupClause)\n\t\t}\n\t\tif n.HavingClause != nil {\n\t\t\tWalk(f, n.HavingClause)\n\t\t}\n\t\tif n.WindowClause != nil {\n\t\t\tWalk(f, n.WindowClause)\n\t\t}\n\t\tif n.ValuesLists != nil {\n\t\t\tWalk(f, n.ValuesLists)\n\t\t}\n\t\tif n.SortClause != nil {\n\t\t\tWalk(f, n.SortClause)\n\t\t}\n\t\tif n.LimitOffset != nil {\n\t\t\tWalk(f, n.LimitOffset)\n\t\t}\n\t\tif n.LimitCount != nil {\n\t\t\tWalk(f, n.LimitCount)\n\t\t}\n\t\tif n.LockingClause != nil {\n\t\t\tWalk(f, n.LockingClause)\n\t\t}\n\t\tif n.WithClause != nil {\n\t\t\tWalk(f, n.WithClause)\n\t\t}\n\t\tif n.Larg != nil {\n\t\t\tWalk(f, n.Larg)\n\t\t}\n\t\tif n.Rarg != nil {\n\t\t\tWalk(f, n.Rarg)\n\t\t}\n\n\tcase *ast.SetOperationStmt:\n\t\tif n.Larg != nil {\n\t\t\tWalk(f, n.Larg)\n\t\t}\n\t\tif n.Rarg != nil {\n\t\t\tWalk(f, n.Rarg)\n\t\t}\n\t\tif n.ColTypes != nil {\n\t\t\tWalk(f, n.ColTypes)\n\t\t}\n\t\tif n.ColTypmods != nil {\n\t\t\tWalk(f, n.ColTypmods)\n\t\t}\n\t\tif n.ColCollations != nil {\n\t\t\tWalk(f, n.ColCollations)\n\t\t}\n\t\tif n.GroupClauses != nil {\n\t\t\tWalk(f, n.GroupClauses)\n\t\t}\n\n\tcase *ast.SetToDefault:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\n\tcase *ast.SortBy:\n\t\tif n.Node != nil {\n\t\t\tWalk(f, n.Node)\n\t\t}\n\t\tif n.UseOp != nil {\n\t\t\tWalk(f, n.UseOp)\n\t\t}\n\n\tcase *ast.SortGroupClause:\n\t\t// pass\n\n\tcase *ast.String:\n\t\t// pass\n\n\tcase *ast.SubLink:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Testexpr != nil {\n\t\t\tWalk(f, n.Testexpr)\n\t\t}\n\t\tif n.OperName != nil {\n\t\t\tWalk(f, n.OperName)\n\t\t}\n\t\tif n.Subselect != nil {\n\t\t\tWalk(f, n.Subselect)\n\t\t}\n\n\tcase *ast.SubPlan:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Testexpr != nil {\n\t\t\tWalk(f, n.Testexpr)\n\t\t}\n\t\tif n.ParamIds != nil {\n\t\t\tWalk(f, n.ParamIds)\n\t\t}\n\t\tif n.SetParam != nil {\n\t\t\tWalk(f, n.SetParam)\n\t\t}\n\t\tif n.ParParam != nil {\n\t\t\tWalk(f, n.ParParam)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\n\tcase *ast.TableFunc:\n\t\tif n.NsUris != nil {\n\t\t\tWalk(f, n.NsUris)\n\t\t}\n\t\tif n.NsNames != nil {\n\t\t\tWalk(f, n.NsNames)\n\t\t}\n\t\tif n.Docexpr != nil {\n\t\t\tWalk(f, n.Docexpr)\n\t\t}\n\t\tif n.Rowexpr != nil {\n\t\t\tWalk(f, n.Rowexpr)\n\t\t}\n\t\tif n.Colnames != nil {\n\t\t\tWalk(f, n.Colnames)\n\t\t}\n\t\tif n.Coltypes != nil {\n\t\t\tWalk(f, n.Coltypes)\n\t\t}\n\t\tif n.Coltypmods != nil {\n\t\t\tWalk(f, n.Coltypmods)\n\t\t}\n\t\tif n.Colcollations != nil {\n\t\t\tWalk(f, n.Colcollations)\n\t\t}\n\t\tif n.Colexprs != nil {\n\t\t\tWalk(f, n.Colexprs)\n\t\t}\n\t\tif n.Coldefexprs != nil {\n\t\t\tWalk(f, n.Coldefexprs)\n\t\t}\n\n\tcase *ast.TableLikeClause:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\n\tcase *ast.TableSampleClause:\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\t\tif n.Repeatable != nil {\n\t\t\tWalk(f, n.Repeatable)\n\t\t}\n\n\tcase *ast.TargetEntry:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Expr != nil {\n\t\t\tWalk(f, n.Expr)\n\t\t}\n\n\tcase *ast.TransactionStmt:\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.TriggerTransition:\n\t\t// pass\n\n\tcase *ast.TruncateStmt:\n\t\tif n.Relations != nil {\n\t\t\tWalk(f, n.Relations)\n\t\t}\n\n\tcase *ast.TypeCast:\n\t\tif n.Arg != nil {\n\t\t\tWalk(f, n.Arg)\n\t\t}\n\t\tif n.TypeName != nil {\n\t\t\tWalk(f, n.TypeName)\n\t\t}\n\n\tcase *ast.TypeName:\n\t\tif n.Names != nil {\n\t\t\tWalk(f, n.Names)\n\t\t}\n\t\tif n.Typmods != nil {\n\t\t\tWalk(f, n.Typmods)\n\t\t}\n\t\tif n.ArrayBounds != nil {\n\t\t\tWalk(f, n.ArrayBounds)\n\t\t}\n\n\tcase *ast.UnlistenStmt:\n\t\t// pass\n\n\tcase *ast.UpdateStmt:\n\t\tif n.Relations != nil {\n\t\t\tWalk(f, n.Relations)\n\t\t}\n\t\tif n.TargetList != nil {\n\t\t\tWalk(f, n.TargetList)\n\t\t}\n\t\tif n.WhereClause != nil {\n\t\t\tWalk(f, n.WhereClause)\n\t\t}\n\t\tif n.FromClause != nil {\n\t\t\tWalk(f, n.FromClause)\n\t\t}\n\t\tif n.LimitCount != nil {\n\t\t\tWalk(f, n.LimitCount)\n\t\t}\n\t\tif n.ReturningList != nil {\n\t\t\tWalk(f, n.ReturningList)\n\t\t}\n\t\tif n.WithClause != nil {\n\t\t\tWalk(f, n.WithClause)\n\t\t}\n\n\tcase *ast.VacuumStmt:\n\t\tif n.Relation != nil {\n\t\t\tWalk(f, n.Relation)\n\t\t}\n\t\tif n.VaCols != nil {\n\t\t\tWalk(f, n.VaCols)\n\t\t}\n\n\tcase *ast.Var:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\n\tcase *ast.VariableSetStmt:\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\n\tcase *ast.VariableShowStmt:\n\t\t// pass\n\n\tcase *ast.ViewStmt:\n\t\tif n.View != nil {\n\t\t\tWalk(f, n.View)\n\t\t}\n\t\tif n.Aliases != nil {\n\t\t\tWalk(f, n.Aliases)\n\t\t}\n\t\tif n.Query != nil {\n\t\t\tWalk(f, n.Query)\n\t\t}\n\t\tif n.Options != nil {\n\t\t\tWalk(f, n.Options)\n\t\t}\n\n\tcase *ast.WindowClause:\n\t\tif n.PartitionClause != nil {\n\t\t\tWalk(f, n.PartitionClause)\n\t\t}\n\t\tif n.OrderClause != nil {\n\t\t\tWalk(f, n.OrderClause)\n\t\t}\n\t\tif n.StartOffset != nil {\n\t\t\tWalk(f, n.StartOffset)\n\t\t}\n\t\tif n.EndOffset != nil {\n\t\t\tWalk(f, n.EndOffset)\n\t\t}\n\n\tcase *ast.WindowDef:\n\t\tif n.PartitionClause != nil {\n\t\t\tWalk(f, n.PartitionClause)\n\t\t}\n\t\tif n.OrderClause != nil {\n\t\t\tWalk(f, n.OrderClause)\n\t\t}\n\t\tif n.StartOffset != nil {\n\t\t\tWalk(f, n.StartOffset)\n\t\t}\n\t\tif n.EndOffset != nil {\n\t\t\tWalk(f, n.EndOffset)\n\t\t}\n\n\tcase *ast.WindowFunc:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\t\tif n.Aggfilter != nil {\n\t\t\tWalk(f, n.Aggfilter)\n\t\t}\n\n\tcase *ast.WithCheckOption:\n\t\tif n.Qual != nil {\n\t\t\tWalk(f, n.Qual)\n\t\t}\n\n\tcase *ast.WithClause:\n\t\tif n.Ctes != nil {\n\t\t\tWalk(f, n.Ctes)\n\t\t}\n\n\tcase *ast.XmlExpr:\n\t\tif n.Xpr != nil {\n\t\t\tWalk(f, n.Xpr)\n\t\t}\n\t\tif n.NamedArgs != nil {\n\t\t\tWalk(f, n.NamedArgs)\n\t\t}\n\t\tif n.ArgNames != nil {\n\t\t\tWalk(f, n.ArgNames)\n\t\t}\n\t\tif n.Args != nil {\n\t\t\tWalk(f, n.Args)\n\t\t}\n\n\tcase *ast.XmlSerialize:\n\t\tif n.Expr != nil {\n\t\t\tWalk(f, n.Expr)\n\t\t}\n\t\tif n.TypeName != nil {\n\t\t\tWalk(f, n.TypeName)\n\t\t}\n\n\tcase *ast.In:\n\t\tfor _, l := range n.List {\n\t\t\tWalk(f, l)\n\t\t}\n\t\tif n.Sel != nil {\n\t\t\tWalk(f, n.Sel)\n\t\t}\n\n\tdefault:\n\t\tpanic(fmt.Sprintf(\"walk: unexpected node type %T\", n))\n\t}\n\n\tf.Visit(nil)\n}\n"
  },
  {
    "path": "internal/sql/catalog/catalog.go",
    "content": "package catalog\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\n// Catalog describes a database instance consisting of metadata in which database objects are defined\ntype Catalog struct {\n\tComment       string\n\tDefaultSchema string\n\tName          string\n\tSchemas       []*Schema\n\tSearchPath    []string\n\tLoadExtension func(string) *Schema\n\n\t// TODO: un-export\n\tExtensions map[string]struct{}\n}\n\n// New creates a new catalog\nfunc New(defaultSchema string) *Catalog {\n\n\tnewCatalog := &Catalog{\n\t\tDefaultSchema: defaultSchema,\n\t\tSchemas:       make([]*Schema, 0),\n\t\tExtensions:    make(map[string]struct{}),\n\t}\n\n\tif newCatalog.DefaultSchema != \"\" {\n\t\tnewCatalog.Schemas = append(newCatalog.Schemas, &Schema{Name: defaultSchema})\n\t}\n\n\treturn newCatalog\n}\n\nfunc (c *Catalog) Build(stmts []ast.Statement) error {\n\tfor i := range stmts {\n\t\tif err := c.Update(stmts[i], nil); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (c *Catalog) Update(stmt ast.Statement, colGen columnGenerator) error {\n\tif stmt.Raw == nil {\n\t\treturn nil\n\t}\n\tvar err error\n\tswitch n := stmt.Raw.Stmt.(type) {\n\n\tcase *ast.AlterTableStmt:\n\t\terr = c.alterTable(n)\n\n\tcase *ast.AlterTableSetSchemaStmt:\n\t\terr = c.alterTableSetSchema(n)\n\n\tcase *ast.AlterTypeAddValueStmt:\n\t\terr = c.alterTypeAddValue(n)\n\n\tcase *ast.AlterTypeRenameValueStmt:\n\t\terr = c.alterTypeRenameValue(n)\n\n\tcase *ast.AlterTypeSetSchemaStmt:\n\t\terr = c.alterTypeSetSchema(n)\n\n\tcase *ast.CommentOnColumnStmt:\n\t\terr = c.commentOnColumn(n)\n\n\tcase *ast.CommentOnSchemaStmt:\n\t\terr = c.commentOnSchema(n)\n\n\tcase *ast.CommentOnTableStmt:\n\t\terr = c.commentOnTable(n)\n\n\tcase *ast.CommentOnTypeStmt:\n\t\terr = c.commentOnType(n)\n\n\tcase *ast.CommentOnViewStmt:\n\t\terr = c.commentOnView(n)\n\n\tcase *ast.CompositeTypeStmt:\n\t\terr = c.createCompositeType(n)\n\n\tcase *ast.CreateEnumStmt:\n\t\terr = c.createEnum(n)\n\n\tcase *ast.CreateExtensionStmt:\n\t\terr = c.createExtension(n)\n\n\tcase *ast.CreateFunctionStmt:\n\t\terr = c.createFunction(n)\n\n\tcase *ast.CreateSchemaStmt:\n\t\terr = c.createSchema(n)\n\n\tcase *ast.CreateTableStmt:\n\t\terr = c.createTable(n)\n\n\tcase *ast.CreateTableAsStmt:\n\t\terr = c.createTableAs(n, colGen)\n\n\tcase *ast.ViewStmt:\n\t\terr = c.createView(n, colGen)\n\n\tcase *ast.DropFunctionStmt:\n\t\terr = c.dropFunction(n)\n\n\tcase *ast.DropSchemaStmt:\n\t\terr = c.dropSchema(n)\n\n\tcase *ast.DropTableStmt:\n\t\terr = c.dropTable(n)\n\n\tcase *ast.DropTypeStmt:\n\t\terr = c.dropType(n)\n\n\tcase *ast.RenameColumnStmt:\n\t\terr = c.renameColumn(n)\n\n\tcase *ast.RenameTableStmt:\n\t\terr = c.renameTable(n)\n\n\tcase *ast.RenameTypeStmt:\n\t\terr = c.renameType(n)\n\n\tcase *ast.List:\n\t\tfor _, nn := range n.Items {\n\t\t\tif err = c.Update(ast.Statement{\n\t\t\t\tRaw: &ast.RawStmt{\n\t\t\t\t\tStmt:         nn,\n\t\t\t\t\tStmtLocation: stmt.Raw.StmtLocation,\n\t\t\t\t\tStmtLen:      stmt.Raw.StmtLen,\n\t\t\t\t},\n\t\t\t}, colGen); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\n\t}\n\treturn err\n}\n"
  },
  {
    "path": "internal/sql/catalog/comment_on.go",
    "content": "package catalog\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\nfunc (c *Catalog) commentOnColumn(stmt *ast.CommentOnColumnStmt) error {\n\t_, t, err := c.getTable(stmt.Table)\n\tif err != nil {\n\t\treturn err\n\t}\n\tfor i := range t.Columns {\n\t\tif t.Columns[i].Name == stmt.Col.Name {\n\t\t\tif stmt.Comment != nil {\n\t\t\t\tt.Columns[i].Comment = *stmt.Comment\n\t\t\t} else {\n\t\t\t\tt.Columns[i].Comment = \"\"\n\t\t\t}\n\t\t\treturn nil\n\t\t}\n\t}\n\treturn sqlerr.ColumnNotFound(stmt.Table.Name, stmt.Col.Name)\n}\n\nfunc (c *Catalog) commentOnSchema(stmt *ast.CommentOnSchemaStmt) error {\n\ts, err := c.getSchema(stmt.Schema.Str)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif stmt.Comment != nil {\n\t\ts.Comment = *stmt.Comment\n\t} else {\n\t\ts.Comment = \"\"\n\t}\n\treturn nil\n}\n\nfunc (c *Catalog) commentOnTable(stmt *ast.CommentOnTableStmt) error {\n\t_, t, err := c.getTable(stmt.Table)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif stmt.Comment != nil {\n\t\tt.Comment = *stmt.Comment\n\t} else {\n\t\tt.Comment = \"\"\n\t}\n\treturn nil\n}\n\nfunc (c *Catalog) commentOnType(stmt *ast.CommentOnTypeStmt) error {\n\tt, _, err := c.getType(stmt.Type)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif stmt.Comment != nil {\n\t\tt.SetComment(*stmt.Comment)\n\t} else {\n\t\tt.SetComment(\"\")\n\t}\n\treturn nil\n}\n\nfunc (c *Catalog) commentOnView(stmt *ast.CommentOnViewStmt) error {\n\t_, t, err := c.getTable(stmt.View)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif stmt.Comment != nil {\n\t\tt.Comment = *stmt.Comment\n\t} else {\n\t\tt.Comment = \"\"\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "internal/sql/catalog/extension.go",
    "content": "package catalog\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n)\n\nfunc (c *Catalog) createExtension(stmt *ast.CreateExtensionStmt) error {\n\tif stmt.Extname == nil {\n\t\treturn nil\n\t}\n\t// TODO: Implement IF NOT EXISTS\n\tif _, exists := c.Extensions[*stmt.Extname]; exists {\n\t\treturn nil\n\t}\n\tif c.LoadExtension == nil {\n\t\treturn nil\n\t}\n\text := c.LoadExtension(*stmt.Extname)\n\tif ext == nil {\n\t\treturn nil\n\t}\n\ts, err := c.getSchema(c.DefaultSchema)\n\tif err != nil {\n\t\treturn err\n\t}\n\t// TODO: Error on duplicate functions\n\ts.Funcs = append(s.Funcs, ext.Funcs...)\n\treturn nil\n}\n"
  },
  {
    "path": "internal/sql/catalog/func.go",
    "content": "package catalog\n\nimport (\n\t\"errors\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\n// Function describes a database function\n//\n// A database function is a method written to perform a specific operation on data within the database.\ntype Function struct {\n\tName               string\n\tArgs               []*Argument\n\tReturnType         *ast.TypeName\n\tComment            string\n\tDesc               string\n\tReturnTypeNullable bool\n}\n\ntype Argument struct {\n\tName       string\n\tType       *ast.TypeName\n\tHasDefault bool\n\tMode       ast.FuncParamMode\n}\n\nfunc (f *Function) InArgs() []*Argument {\n\tvar args []*Argument\n\tfor _, a := range f.Args {\n\t\tswitch a.Mode {\n\t\tcase ast.FuncParamTable, ast.FuncParamOut:\n\t\t\tcontinue\n\t\tdefault:\n\t\t\targs = append(args, a)\n\t\t}\n\t}\n\treturn args\n}\n\nfunc (f *Function) OutArgs() []*Argument {\n\tvar args []*Argument\n\tfor _, a := range f.Args {\n\t\tswitch a.Mode {\n\t\tcase ast.FuncParamOut:\n\t\t\targs = append(args, a)\n\t\t}\n\t}\n\treturn args\n}\n\nfunc (c *Catalog) createFunction(stmt *ast.CreateFunctionStmt) error {\n\tns := stmt.Func.Schema\n\tif ns == \"\" {\n\t\tns = c.DefaultSchema\n\t}\n\ts, err := c.getSchema(ns)\n\tif err != nil {\n\t\treturn err\n\t}\n\tfn := &Function{\n\t\tName:       stmt.Func.Name,\n\t\tArgs:       make([]*Argument, len(stmt.Params.Items)),\n\t\tReturnType: stmt.ReturnType,\n\t}\n\ttypes := make([]*ast.TypeName, len(stmt.Params.Items))\n\tfor i, item := range stmt.Params.Items {\n\t\targ := item.(*ast.FuncParam)\n\t\tvar name string\n\t\tif arg.Name != nil {\n\t\t\tname = *arg.Name\n\t\t}\n\t\tfn.Args[i] = &Argument{\n\t\t\tName:       name,\n\t\t\tType:       arg.Type,\n\t\t\tMode:       arg.Mode,\n\t\t\tHasDefault: arg.DefExpr != nil,\n\t\t}\n\t\ttypes[i] = arg.Type\n\t}\n\n\t_, idx, err := s.getFunc(stmt.Func, types)\n\tif err == nil && !stmt.Replace {\n\t\treturn sqlerr.RelationExists(stmt.Func.Name)\n\t}\n\n\tif idx >= 0 {\n\t\ts.Funcs[idx] = fn\n\t} else {\n\t\ts.Funcs = append(s.Funcs, fn)\n\t}\n\treturn nil\n}\n\nfunc (c *Catalog) dropFunction(stmt *ast.DropFunctionStmt) error {\n\tfor _, spec := range stmt.Funcs {\n\t\tns := spec.Name.Schema\n\t\tif ns == \"\" {\n\t\t\tns = c.DefaultSchema\n\t\t}\n\t\ts, err := c.getSchema(ns)\n\t\tif errors.Is(err, sqlerr.NotFound) && stmt.MissingOk {\n\t\t\tcontinue\n\t\t} else if err != nil {\n\t\t\treturn err\n\t\t}\n\t\tvar idx int\n\t\tif spec.HasArgs {\n\t\t\t_, idx, err = s.getFunc(spec.Name, spec.Args)\n\t\t} else {\n\t\t\t_, idx, err = s.getFuncByName(spec.Name)\n\t\t}\n\t\tif errors.Is(err, sqlerr.NotFound) && stmt.MissingOk {\n\t\t\tcontinue\n\t\t} else if err != nil {\n\t\t\treturn err\n\t\t}\n\t\ts.Funcs = append(s.Funcs[:idx], s.Funcs[idx+1:]...)\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "internal/sql/catalog/public.go",
    "content": "package catalog\n\nimport (\n\t\"fmt\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\nfunc (c *Catalog) schemasToSearch(ns string) []string {\n\tif ns == \"\" {\n\t\tns = c.DefaultSchema\n\t}\n\treturn append(c.SearchPath, ns)\n}\n\nfunc (c *Catalog) ListFuncsByName(rel *ast.FuncName) ([]Function, error) {\n\tvar funcs []Function\n\tlowered := strings.ToLower(rel.Name)\n\tfor _, ns := range c.schemasToSearch(rel.Schema) {\n\t\ts, err := c.getSchema(ns)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\tfor i := range s.Funcs {\n\t\t\tif strings.ToLower(s.Funcs[i].Name) == lowered {\n\t\t\t\tfuncs = append(funcs, *s.Funcs[i])\n\t\t\t}\n\t\t}\n\t}\n\treturn funcs, nil\n}\n\nfunc (c *Catalog) ResolveFuncCall(call *ast.FuncCall) (*Function, error) {\n\t// Do not validate unknown functions\n\tfuns, err := c.ListFuncsByName(call.Func)\n\tif err != nil || len(funs) == 0 {\n\t\treturn nil, sqlerr.FunctionNotFound(call.Func.Name)\n\t}\n\n\t// https://www.postgresql.org/docs/current/sql-syntax-calling-funcs.html\n\tvar positional []ast.Node\n\tvar named []*ast.NamedArgExpr\n\n\tif call.Args != nil {\n\t\tfor _, arg := range call.Args.Items {\n\t\t\tif narg, ok := arg.(*ast.NamedArgExpr); ok {\n\t\t\t\tnamed = append(named, narg)\n\t\t\t} else {\n\t\t\t\t// The mixed notation combines positional and named notation.\n\t\t\t\t// However, as already mentioned, named arguments cannot precede\n\t\t\t\t// positional arguments.\n\t\t\t\tif len(named) > 0 {\n\t\t\t\t\treturn nil, &sqlerr.Error{\n\t\t\t\t\t\tCode:     \"\",\n\t\t\t\t\t\tMessage:  \"positional argument cannot follow named argument\",\n\t\t\t\t\t\tLocation: call.Pos(),\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tpositional = append(positional, arg)\n\t\t\t}\n\t\t}\n\t}\n\n\tfor _, fun := range funs {\n\t\targs := fun.InArgs()\n\t\tvar defaults int\n\t\tvar variadic bool\n\t\tknown := map[string]struct{}{}\n\t\tfor _, arg := range args {\n\t\t\tif arg.HasDefault {\n\t\t\t\tdefaults += 1\n\t\t\t}\n\t\t\tif arg.Mode == ast.FuncParamVariadic {\n\t\t\t\tvariadic = true\n\t\t\t\tdefaults += 1\n\t\t\t}\n\t\t\tif arg.Name != \"\" {\n\t\t\t\tknown[arg.Name] = struct{}{}\n\t\t\t}\n\t\t}\n\n\t\tif variadic {\n\t\t\tif (len(named) + len(positional)) < (len(args) - defaults) {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t} else {\n\t\t\tif (len(named) + len(positional)) > len(args) {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif (len(named) + len(positional)) < (len(args) - defaults) {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t}\n\n\t\t// Validate that the provided named arguments exist in the function\n\t\tvar unknownArgName bool\n\t\tfor _, expr := range named {\n\t\t\tif expr.Name != nil {\n\t\t\t\tif _, found := known[*expr.Name]; !found {\n\t\t\t\t\tunknownArgName = true\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tif unknownArgName {\n\t\t\tcontinue\n\t\t}\n\n\t\treturn &fun, nil\n\t}\n\n\tvar sig []string\n\tfor range call.Args.Items {\n\t\tsig = append(sig, \"unknown\")\n\t}\n\n\treturn nil, &sqlerr.Error{\n\t\tCode:     \"42883\",\n\t\tMessage:  fmt.Sprintf(\"function %s(%s) does not exist\", call.Func.Name, strings.Join(sig, \", \")),\n\t\tLocation: call.Pos(),\n\t\t// Hint: \"No function matches the given name and argument types. You might need to add explicit type casts.\",\n\t}\n}\n\nfunc (c *Catalog) GetTable(rel *ast.TableName) (Table, error) {\n\t_, table, err := c.getTable(rel)\n\tif table == nil {\n\t\treturn Table{}, err\n\t} else {\n\t\treturn *table, err\n\t}\n}\n"
  },
  {
    "path": "internal/sql/catalog/schema.go",
    "content": "package catalog\n\nimport (\n\t\"fmt\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\n// Schema describes how the data in a relational database may relate to other tables or other data models\ntype Schema struct {\n\tName   string\n\tTables []*Table\n\tTypes  []Type\n\tFuncs  []*Function\n\n\tComment string\n}\n\nfunc (s *Schema) getFunc(rel *ast.FuncName, tns []*ast.TypeName) (*Function, int, error) {\n\tfor i := range s.Funcs {\n\t\tif !strings.EqualFold(s.Funcs[i].Name, rel.Name) {\n\t\t\tcontinue\n\t\t}\n\n\t\targs := s.Funcs[i].InArgs()\n\t\tif len(args) != len(tns) {\n\t\t\tcontinue\n\t\t}\n\t\tfound := true\n\t\tfor j := range args {\n\t\t\tif !sameType(s.Funcs[i].Args[j].Type, tns[j]) {\n\t\t\t\tfound = false\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tif !found {\n\t\t\tcontinue\n\t\t}\n\t\treturn s.Funcs[i], i, nil\n\t}\n\treturn nil, -1, sqlerr.RelationNotFound(rel.Name)\n}\n\nfunc (s *Schema) getFuncByName(rel *ast.FuncName) (*Function, int, error) {\n\tidx := -1\n\tname := strings.ToLower(rel.Name)\n\tfor i := range s.Funcs {\n\t\tlowered := strings.ToLower(s.Funcs[i].Name)\n\t\tif lowered == name && idx >= 0 {\n\t\t\treturn nil, -1, sqlerr.FunctionNotUnique(rel.Name)\n\t\t}\n\t\tif lowered == name {\n\t\t\tidx = i\n\t\t}\n\t}\n\tif idx < 0 {\n\t\treturn nil, -1, sqlerr.RelationNotFound(rel.Name)\n\t}\n\treturn s.Funcs[idx], idx, nil\n}\n\nfunc (s *Schema) getTable(rel *ast.TableName) (*Table, int, error) {\n\tfor i := range s.Tables {\n\t\tif s.Tables[i].Rel.Name == rel.Name {\n\t\t\treturn s.Tables[i], i, nil\n\t\t}\n\t}\n\treturn nil, -1, sqlerr.RelationNotFound(rel.Name)\n}\n\nfunc (s *Schema) getType(rel *ast.TypeName) (Type, int, error) {\n\tfor i := range s.Types {\n\t\tswitch typ := s.Types[i].(type) {\n\t\tcase *Enum:\n\t\t\tif typ.Name == rel.Name {\n\t\t\t\treturn s.Types[i], i, nil\n\t\t\t}\n\t\tcase *CompositeType:\n\t\t\tif typ.Name == rel.Name {\n\t\t\t\treturn s.Types[i], i, nil\n\t\t\t}\n\t\t}\n\t}\n\treturn nil, -1, sqlerr.TypeNotFound(rel.Name)\n}\n\nfunc (c *Catalog) getSchema(name string) (*Schema, error) {\n\tfor i := range c.Schemas {\n\t\tif c.Schemas[i].Name == name {\n\t\t\treturn c.Schemas[i], nil\n\t\t}\n\t}\n\treturn nil, sqlerr.SchemaNotFound(name)\n}\n\nfunc (c *Catalog) createSchema(stmt *ast.CreateSchemaStmt) error {\n\tif stmt.Name == nil {\n\t\treturn fmt.Errorf(\"create schema: empty name\")\n\t}\n\tif _, err := c.getSchema(*stmt.Name); err == nil {\n\t\t// If the default schema already exists, treat additional CREATE SCHEMA\n\t\t// statements as no-ops.\n\t\tif *stmt.Name == c.DefaultSchema {\n\t\t\treturn nil\n\t\t}\n\t\tif !stmt.IfNotExists {\n\t\t\treturn sqlerr.SchemaExists(*stmt.Name)\n\t\t}\n\t}\n\tc.Schemas = append(c.Schemas, &Schema{Name: *stmt.Name})\n\treturn nil\n}\n\nfunc (c *Catalog) dropSchema(stmt *ast.DropSchemaStmt) error {\n\t// TODO: n^2 in the worst-case\n\tfor _, name := range stmt.Schemas {\n\t\tidx := -1\n\t\tfor i := range c.Schemas {\n\t\t\tif c.Schemas[i].Name == name.Str {\n\t\t\t\tidx = i\n\t\t\t}\n\t\t}\n\t\tif idx == -1 {\n\t\t\tif stmt.MissingOk {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\treturn sqlerr.SchemaNotFound(name.Str)\n\t\t}\n\t\tc.Schemas = append(c.Schemas[:idx], c.Schemas[idx+1:]...)\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "internal/sql/catalog/table.go",
    "content": "package catalog\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\n// Table describes a relational database table\n//\n// A database table is a collection of related data held in a table format within a database.\n// It consists of columns and rows.\ntype Table struct {\n\tRel     *ast.TableName\n\tColumns []*Column\n\tComment string\n}\n\nfunc checkMissing(err error, missingOK bool) error {\n\tvar serr *sqlerr.Error\n\tif errors.As(err, &serr) {\n\t\tif serr.Err == sqlerr.NotFound && missingOK {\n\t\t\treturn nil\n\t\t}\n\t}\n\treturn err\n}\n\nfunc (table *Table) isExistColumn(cmd *ast.AlterTableCmd) (int, error) {\n\tfor i, c := range table.Columns {\n\t\tif c.Name == *cmd.Name {\n\t\t\treturn i, nil\n\t\t}\n\t}\n\tif !cmd.MissingOk {\n\t\treturn -1, sqlerr.ColumnNotFound(table.Rel.Name, *cmd.Name)\n\t}\n\t// Missing column is allowed\n\treturn -1, nil\n}\n\nfunc (c *Catalog) addColumn(table *Table, cmd *ast.AlterTableCmd) error {\n\tfor _, c := range table.Columns {\n\t\tif c.Name == cmd.Def.Colname {\n\t\t\tif !cmd.MissingOk {\n\t\t\t\treturn sqlerr.ColumnExists(table.Rel.Name, cmd.Def.Colname)\n\t\t\t}\n\t\t\treturn nil\n\t\t}\n\t}\n\ttc, err := c.defineColumn(table.Rel, cmd.Def)\n\tif err != nil {\n\t\treturn err\n\t}\n\ttable.Columns = append(table.Columns, tc)\n\treturn nil\n}\n\nfunc (table *Table) alterColumnType(cmd *ast.AlterTableCmd) error {\n\tindex, err := table.isExistColumn(cmd)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif index >= 0 {\n\t\ttable.Columns[index].Type = *cmd.Def.TypeName\n\t\ttable.Columns[index].IsArray = cmd.Def.IsArray\n\t\ttable.Columns[index].ArrayDims = cmd.Def.ArrayDims\n\t}\n\treturn nil\n}\n\nfunc (c *Catalog) dropColumn(table *Table, cmd *ast.AlterTableCmd) error {\n\tindex, err := table.isExistColumn(cmd)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif index < 0 {\n\t\treturn nil\n\t}\n\tcol := table.Columns[index]\n\tif col.linkedType {\n\t\tdrop := &ast.DropTypeStmt{\n\t\t\tTypes: []*ast.TypeName{\n\t\t\t\t&col.Type,\n\t\t\t},\n\t\t}\n\t\tif err := c.dropType(drop); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\ttable.Columns = append(table.Columns[:index], table.Columns[index+1:]...)\n\treturn nil\n}\n\nfunc (table *Table) dropNotNull(cmd *ast.AlterTableCmd) error {\n\tindex, err := table.isExistColumn(cmd)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif index >= 0 {\n\t\ttable.Columns[index].IsNotNull = false\n\t}\n\treturn nil\n}\n\nfunc (table *Table) setNotNull(cmd *ast.AlterTableCmd) error {\n\tindex, err := table.isExistColumn(cmd)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif index >= 0 {\n\t\ttable.Columns[index].IsNotNull = true\n\t}\n\treturn nil\n}\n\n// Column describes a set of data values of a particular type in a relational database table\n//\n// TODO: Should this just be ast Nodes?\ntype Column struct {\n\tName       string\n\tType       ast.TypeName\n\tIsNotNull  bool\n\tIsUnsigned bool\n\tIsArray    bool\n\tArrayDims  int\n\tComment    string\n\tLength     *int\n\n\tlinkedType bool\n}\n\n// An interface is used to resolve a circular import between the catalog and compiler packages.\n// The createView function requires access to functions in the compiler package to parse the SELECT\n// statement that defines the view.\ntype columnGenerator interface {\n\tOutputColumns(node ast.Node) ([]*Column, error)\n}\n\nfunc (c *Catalog) getTable(tableName *ast.TableName) (*Schema, *Table, error) {\n\tschemaName := tableName.Schema\n\tif schemaName == \"\" {\n\t\tschemaName = c.DefaultSchema\n\t}\n\tvar schema *Schema\n\tfor i := range c.Schemas {\n\t\tif c.Schemas[i].Name == schemaName {\n\t\t\tschema = c.Schemas[i]\n\t\t\tbreak\n\t\t}\n\t}\n\tif schema == nil {\n\t\treturn nil, nil, sqlerr.SchemaNotFound(schemaName)\n\t}\n\ttable, _, err := schema.getTable(tableName)\n\tif err != nil {\n\t\treturn nil, nil, err\n\t}\n\treturn schema, table, nil\n}\n\nfunc isStmtImplemented(stmt *ast.AlterTableStmt) bool {\n\tvar implemented bool\n\tfor _, item := range stmt.Cmds.Items {\n\t\tswitch cmd := item.(type) {\n\t\tcase *ast.AlterTableCmd:\n\t\t\tswitch cmd.Subtype {\n\t\t\tcase ast.AT_AddColumn:\n\t\t\t\timplemented = true\n\t\t\tcase ast.AT_AlterColumnType:\n\t\t\t\timplemented = true\n\t\t\tcase ast.AT_DropColumn:\n\t\t\t\timplemented = true\n\t\t\tcase ast.AT_DropNotNull:\n\t\t\t\timplemented = true\n\t\t\tcase ast.AT_SetNotNull:\n\t\t\t\timplemented = true\n\t\t\t}\n\t\t}\n\t}\n\treturn implemented\n}\n\nfunc (c *Catalog) alterTable(stmt *ast.AlterTableStmt) error {\n\tif !isStmtImplemented(stmt) {\n\t\treturn nil\n\t}\n\t_, table, err := c.getTable(stmt.Table)\n\tif err != nil {\n\t\treturn checkMissing(err, stmt.MissingOk)\n\t}\n\tfor _, item := range stmt.Cmds.Items {\n\t\tswitch cmd := item.(type) {\n\t\tcase *ast.AlterTableCmd:\n\t\t\tswitch cmd.Subtype {\n\t\t\tcase ast.AT_AddColumn:\n\t\t\t\tif err := c.addColumn(table, cmd); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\tcase ast.AT_AlterColumnType:\n\t\t\t\tif err := table.alterColumnType(cmd); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\tcase ast.AT_DropColumn:\n\t\t\t\tif err := c.dropColumn(table, cmd); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\tcase ast.AT_DropNotNull:\n\t\t\t\tif err := table.dropNotNull(cmd); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\tcase ast.AT_SetNotNull:\n\t\t\t\tif err := table.setNotNull(cmd); err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (c *Catalog) alterTableSetSchema(stmt *ast.AlterTableSetSchemaStmt) error {\n\tns := stmt.Table.Schema\n\tif ns == \"\" {\n\t\tns = c.DefaultSchema\n\t}\n\toldSchema, err := c.getSchema(ns)\n\tif err != nil {\n\t\treturn checkMissing(err, stmt.MissingOk)\n\t}\n\ttbl, idx, err := oldSchema.getTable(stmt.Table)\n\tif err != nil {\n\t\treturn checkMissing(err, stmt.MissingOk)\n\t}\n\ttbl.Rel.Schema = *stmt.NewSchema\n\tnewSchema, err := c.getSchema(*stmt.NewSchema)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif _, _, err := newSchema.getTable(stmt.Table); err == nil {\n\t\treturn sqlerr.RelationExists(stmt.Table.Name)\n\t}\n\toldSchema.Tables = append(oldSchema.Tables[:idx], oldSchema.Tables[idx+1:]...)\n\tnewSchema.Tables = append(newSchema.Tables, tbl)\n\treturn nil\n}\n\nfunc (c *Catalog) createTable(stmt *ast.CreateTableStmt) error {\n\tns := stmt.Name.Schema\n\tif ns == \"\" {\n\t\tns = c.DefaultSchema\n\t}\n\tschema, err := c.getSchema(ns)\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, _, err = schema.getTable(stmt.Name)\n\tif err == nil && stmt.IfNotExists {\n\t\treturn nil\n\t} else if err == nil {\n\t\treturn sqlerr.RelationExists(stmt.Name.Name)\n\t}\n\n\ttbl := Table{Rel: stmt.Name, Comment: stmt.Comment}\n\tcoltype := make(map[string]ast.TypeName) // used to check for duplicate column names\n\tseen := make(map[string]bool)            // used to check for duplicate column names\n\tfor _, inheritTable := range stmt.Inherits {\n\t\tt, _, err := schema.getTable(inheritTable)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\t// check and ignore duplicate columns\n\t\tfor _, col := range t.Columns {\n\t\t\tif notNull, ok := seen[col.Name]; ok {\n\t\t\t\tseen[col.Name] = notNull || col.IsNotNull\n\t\t\t\tif a, ok := coltype[col.Name]; ok {\n\t\t\t\t\tif !sameType(&a, &col.Type) {\n\t\t\t\t\t\treturn fmt.Errorf(\"column %q has a type conflict\", col.Name)\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\tseen[col.Name] = col.IsNotNull\n\t\t\tcoltype[col.Name] = col.Type\n\t\t\ttbl.Columns = append(tbl.Columns, col)\n\t\t}\n\t}\n\n\tif stmt.ReferTable != nil {\n\t\t_, original, err := c.getTable(stmt.ReferTable)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tfor _, col := range original.Columns {\n\t\t\tnewCol := *col // make a copy, so changes to the ReferTable don't propagate\n\t\t\ttbl.Columns = append(tbl.Columns, &newCol)\n\t\t}\n\t}\n\n\tfor _, col := range stmt.Cols {\n\t\tif notNull, ok := seen[col.Colname]; ok {\n\t\t\tseen[col.Colname] = notNull || col.IsNotNull\n\t\t\tif a, ok := coltype[col.Colname]; ok {\n\t\t\t\tif !sameType(&a, col.TypeName) {\n\t\t\t\t\treturn fmt.Errorf(\"column %q has a type conflict\", col.Colname)\n\t\t\t\t}\n\t\t\t}\n\t\t\tcontinue\n\t\t}\n\t\ttc, err := c.defineColumn(stmt.Name, col)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\ttbl.Columns = append(tbl.Columns, tc)\n\t}\n\n\t// If one of the merged columns was not null, mark the column as not null\n\tfor i := range tbl.Columns {\n\t\tif notNull, ok := seen[tbl.Columns[i].Name]; ok {\n\t\t\ttbl.Columns[i].IsNotNull = notNull\n\t\t}\n\t}\n\n\tschema.Tables = append(schema.Tables, &tbl)\n\treturn nil\n}\n\nfunc (c *Catalog) defineColumn(table *ast.TableName, col *ast.ColumnDef) (*Column, error) {\n\ttc := &Column{\n\t\tName:       col.Colname,\n\t\tType:       *col.TypeName,\n\t\tIsNotNull:  col.IsNotNull,\n\t\tIsUnsigned: col.IsUnsigned,\n\t\tIsArray:    col.IsArray,\n\t\tArrayDims:  col.ArrayDims,\n\t\tComment:    col.Comment,\n\t\tLength:     col.Length,\n\t}\n\tif col.Vals != nil {\n\t\ttypeName := ast.TypeName{\n\t\t\tName: fmt.Sprintf(\"%s_%s\", table.Name, col.Colname),\n\t\t}\n\t\ts := &ast.CreateEnumStmt{TypeName: &typeName, Vals: col.Vals}\n\t\tif err := c.createEnum(s); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\t\ttc.Type = typeName\n\t\ttc.linkedType = true\n\t}\n\treturn tc, nil\n}\n\nfunc (c *Catalog) dropTable(stmt *ast.DropTableStmt) error {\n\tfor _, name := range stmt.Tables {\n\t\tns := name.Schema\n\t\tif ns == \"\" {\n\t\t\tns = c.DefaultSchema\n\t\t}\n\t\tschema, err := c.getSchema(ns)\n\t\tif errors.Is(err, sqlerr.NotFound) && stmt.IfExists {\n\t\t\tcontinue\n\t\t} else if err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\ttbl, idx, err := schema.getTable(name)\n\t\tif errors.Is(err, sqlerr.NotFound) && stmt.IfExists {\n\t\t\tcontinue\n\t\t} else if err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tdrop := &ast.DropTypeStmt{}\n\t\tfor _, col := range tbl.Columns {\n\t\t\tif !col.linkedType {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tdrop.Types = append(drop.Types, &col.Type)\n\t\t}\n\t\tif err := c.dropType(drop); err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tschema.Tables = append(schema.Tables[:idx], schema.Tables[idx+1:]...)\n\t}\n\treturn nil\n}\n\nfunc (c *Catalog) renameColumn(stmt *ast.RenameColumnStmt) error {\n\t_, tbl, err := c.getTable(stmt.Table)\n\tif err != nil {\n\t\treturn checkMissing(err, stmt.MissingOk)\n\t}\n\tidx := -1\n\tfor i := range tbl.Columns {\n\t\tif tbl.Columns[i].Name == stmt.Col.Name {\n\t\t\tidx = i\n\t\t}\n\t\tif tbl.Columns[i].Name == *stmt.NewName {\n\t\t\treturn sqlerr.ColumnExists(tbl.Rel.Name, *stmt.NewName)\n\t\t}\n\t}\n\tif idx == -1 {\n\t\treturn sqlerr.ColumnNotFound(tbl.Rel.Name, stmt.Col.Name)\n\t}\n\ttbl.Columns[idx].Name = *stmt.NewName\n\n\tif tbl.Columns[idx].linkedType {\n\t\tname := fmt.Sprintf(\"%s_%s\", tbl.Rel.Name, *stmt.NewName)\n\t\trename := &ast.RenameTypeStmt{\n\t\t\tType:    &tbl.Columns[idx].Type,\n\t\t\tNewName: &name,\n\t\t}\n\t\tif err := c.renameType(rename); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\treturn nil\n}\n\nfunc (c *Catalog) renameTable(stmt *ast.RenameTableStmt) error {\n\tsch, tbl, err := c.getTable(stmt.Table)\n\tif err != nil {\n\t\treturn checkMissing(err, stmt.MissingOk)\n\t}\n\tif _, _, err := sch.getTable(&ast.TableName{Name: *stmt.NewName}); err == nil {\n\t\treturn sqlerr.RelationExists(*stmt.NewName)\n\t}\n\tif stmt.NewName != nil {\n\t\ttbl.Rel.Name = *stmt.NewName\n\t}\n\n\tfor idx := range tbl.Columns {\n\t\tif tbl.Columns[idx].linkedType {\n\t\t\tname := fmt.Sprintf(\"%s_%s\", *stmt.NewName, tbl.Columns[idx].Name)\n\t\t\trename := &ast.RenameTypeStmt{\n\t\t\t\tType:    &tbl.Columns[idx].Type,\n\t\t\t\tNewName: &name,\n\t\t\t}\n\t\t\tif err := c.renameType(rename); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\n\treturn nil\n}\n\nfunc (c *Catalog) createTableAs(stmt *ast.CreateTableAsStmt, colGen columnGenerator) error {\n\tcols, err := colGen.OutputColumns(stmt.Query)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tcatName := \"\"\n\tif stmt.Into.Rel.Catalogname != nil {\n\t\tcatName = *stmt.Into.Rel.Catalogname\n\t}\n\tschemaName := \"\"\n\tif stmt.Into.Rel.Schemaname != nil {\n\t\tschemaName = *stmt.Into.Rel.Schemaname\n\t}\n\n\ttbl := Table{\n\t\tRel: &ast.TableName{\n\t\t\tCatalog: catName,\n\t\t\tSchema:  schemaName,\n\t\t\tName:    *stmt.Into.Rel.Relname,\n\t\t},\n\t\tColumns: cols,\n\t}\n\n\tns := tbl.Rel.Schema\n\tif ns == \"\" {\n\t\tns = c.DefaultSchema\n\t}\n\tschema, err := c.getSchema(ns)\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, _, err = schema.getTable(tbl.Rel)\n\tif err == nil {\n\t\treturn sqlerr.RelationExists(tbl.Rel.Name)\n\t}\n\n\tschema.Tables = append(schema.Tables, &tbl)\n\n\treturn nil\n}\n"
  },
  {
    "path": "internal/sql/catalog/types.go",
    "content": "package catalog\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\ntype Type interface {\n\tisType()\n\n\tSetComment(string)\n}\n\ntype Enum struct {\n\tName    string\n\tVals    []string\n\tComment string\n}\n\nfunc (e *Enum) SetComment(c string) {\n\te.Comment = c\n}\n\nfunc (e *Enum) isType() {\n}\n\ntype CompositeType struct {\n\tName    string\n\tComment string\n}\n\nfunc (ct *CompositeType) isType() {\n}\n\nfunc (ct *CompositeType) SetComment(c string) {\n\tct.Comment = c\n}\n\nfunc sameType(a, b *ast.TypeName) bool {\n\tif a.Catalog != b.Catalog {\n\t\treturn false\n\t}\n\t// The pg_catalog schema is searched by default, so take that into\n\t// account when comparing schemas\n\taSchema := a.Schema\n\tbSchema := b.Schema\n\tif aSchema == \"pg_catalog\" {\n\t\taSchema = \"\"\n\t}\n\tif bSchema == \"pg_catalog\" {\n\t\tbSchema = \"\"\n\t}\n\tif aSchema != bSchema {\n\t\treturn false\n\t}\n\tif a.Name != b.Name {\n\t\treturn false\n\t}\n\treturn true\n}\n\nfunc (c *Catalog) createEnum(stmt *ast.CreateEnumStmt) error {\n\tns := stmt.TypeName.Schema\n\tif ns == \"\" {\n\t\tns = c.DefaultSchema\n\t}\n\tschema, err := c.getSchema(ns)\n\tif err != nil {\n\t\treturn err\n\t}\n\t// Because tables have associated data types, the type name must also\n\t// be distinct from the name of any existing table in the same\n\t// schema.\n\t// https://www.postgresql.org/docs/current/sql-createtype.html\n\ttbl := &ast.TableName{\n\t\tName: stmt.TypeName.Name,\n\t}\n\tif _, _, err := schema.getTable(tbl); err == nil {\n\t\treturn sqlerr.RelationExists(tbl.Name)\n\t}\n\tif _, _, err := schema.getType(stmt.TypeName); err == nil {\n\t\treturn sqlerr.TypeExists(tbl.Name)\n\t}\n\tschema.Types = append(schema.Types, &Enum{\n\t\tName: stmt.TypeName.Name,\n\t\tVals: stringSlice(stmt.Vals),\n\t})\n\treturn nil\n}\n\nfunc stringSlice(list *ast.List) []string {\n\titems := []string{}\n\tfor _, item := range list.Items {\n\t\tif n, ok := item.(*ast.String); ok {\n\t\t\titems = append(items, n.Str)\n\t\t}\n\t}\n\treturn items\n}\n\nfunc (c *Catalog) getType(rel *ast.TypeName) (Type, int, error) {\n\tns := rel.Schema\n\tif ns == \"\" {\n\t\tns = c.DefaultSchema\n\t}\n\ts, err := c.getSchema(ns)\n\tif err != nil {\n\t\treturn nil, -1, err\n\t}\n\treturn s.getType(rel)\n}\n\nfunc (c *Catalog) createCompositeType(stmt *ast.CompositeTypeStmt) error {\n\tns := stmt.TypeName.Schema\n\tif ns == \"\" {\n\t\tns = c.DefaultSchema\n\t}\n\tschema, err := c.getSchema(ns)\n\tif err != nil {\n\t\treturn err\n\t}\n\t// Because tables have associated data types, the type name must also\n\t// be distinct from the name of any existing table in the same\n\t// schema.\n\t// https://www.postgresql.org/docs/current/sql-createtype.html\n\ttbl := &ast.TableName{\n\t\tName: stmt.TypeName.Name,\n\t}\n\tif _, _, err := schema.getTable(tbl); err == nil {\n\t\treturn sqlerr.RelationExists(tbl.Name)\n\t}\n\tif _, _, err := schema.getType(stmt.TypeName); err == nil {\n\t\treturn sqlerr.TypeExists(tbl.Name)\n\t}\n\tschema.Types = append(schema.Types, &CompositeType{\n\t\tName: stmt.TypeName.Name,\n\t})\n\treturn nil\n}\n\nfunc (c *Catalog) alterTypeRenameValue(stmt *ast.AlterTypeRenameValueStmt) error {\n\tns := stmt.Type.Schema\n\tif ns == \"\" {\n\t\tns = c.DefaultSchema\n\t}\n\tschema, err := c.getSchema(ns)\n\tif err != nil {\n\t\treturn err\n\t}\n\ttyp, _, err := schema.getType(stmt.Type)\n\tif err != nil {\n\t\treturn err\n\t}\n\tenum, ok := typ.(*Enum)\n\tif !ok {\n\t\treturn fmt.Errorf(\"type is not an enum: %T\", stmt.Type)\n\t}\n\n\toldIndex := -1\n\tnewIndex := -1\n\tfor i, val := range enum.Vals {\n\t\tif val == *stmt.OldValue {\n\t\t\toldIndex = i\n\t\t}\n\t\tif val == *stmt.NewValue {\n\t\t\tnewIndex = i\n\t\t}\n\t}\n\tif oldIndex < 0 {\n\t\treturn fmt.Errorf(\"type %T does not have value %s\", stmt.Type, *stmt.OldValue)\n\t}\n\tif newIndex >= 0 {\n\t\treturn fmt.Errorf(\"type %T already has value %s\", stmt.Type, *stmt.NewValue)\n\t}\n\tenum.Vals[oldIndex] = *stmt.NewValue\n\treturn nil\n}\n\nfunc (c *Catalog) alterTypeAddValue(stmt *ast.AlterTypeAddValueStmt) error {\n\tns := stmt.Type.Schema\n\tif ns == \"\" {\n\t\tns = c.DefaultSchema\n\t}\n\tschema, err := c.getSchema(ns)\n\tif err != nil {\n\t\treturn err\n\t}\n\ttyp, _, err := schema.getType(stmt.Type)\n\tif err != nil {\n\t\treturn err\n\t}\n\tenum, ok := typ.(*Enum)\n\tif !ok {\n\t\treturn fmt.Errorf(\"type is not an enum: %T\", stmt.Type)\n\t}\n\n\texistingIndex := -1\n\tfor i, val := range enum.Vals {\n\t\tif val == *stmt.NewValue {\n\t\t\texistingIndex = i\n\t\t}\n\t}\n\n\tif existingIndex >= 0 {\n\t\tif !stmt.SkipIfNewValExists {\n\t\t\treturn fmt.Errorf(\"enum %s already has value %s\", enum.Name, *stmt.NewValue)\n\t\t} else {\n\t\t\treturn nil\n\t\t}\n\t}\n\n\tinsertIndex := len(enum.Vals)\n\tif stmt.NewValHasNeighbor {\n\t\tfoundNeighbor := false\n\t\tfor i, val := range enum.Vals {\n\t\t\tif val == *stmt.NewValNeighbor {\n\t\t\t\tif stmt.NewValIsAfter {\n\t\t\t\t\tinsertIndex = i + 1\n\t\t\t\t} else {\n\t\t\t\t\tinsertIndex = i\n\t\t\t\t}\n\t\t\t\tfoundNeighbor = true\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\n\t\tif !foundNeighbor {\n\t\t\treturn fmt.Errorf(\"enum %s unable to find existing neighbor value %s for new value %s\", enum.Name, *stmt.NewValNeighbor, *stmt.NewValue)\n\t\t}\n\t}\n\n\tif insertIndex == len(enum.Vals) {\n\t\tenum.Vals = append(enum.Vals, *stmt.NewValue)\n\t} else {\n\t\tenum.Vals = append(enum.Vals[:insertIndex+1], enum.Vals[insertIndex:]...)\n\t\tenum.Vals[insertIndex] = *stmt.NewValue\n\t}\n\n\treturn nil\n}\n\nfunc (c *Catalog) alterTypeSetSchema(stmt *ast.AlterTypeSetSchemaStmt) error {\n\tns := stmt.Type.Schema\n\tif ns == \"\" {\n\t\tns = c.DefaultSchema\n\t}\n\toldSchema, err := c.getSchema(ns)\n\tif err != nil {\n\t\treturn err\n\t}\n\ttyp, idx, err := oldSchema.getType(stmt.Type)\n\tif err != nil {\n\t\treturn err\n\t}\n\toldType := *stmt.Type\n\tstmt.Type.Schema = *stmt.NewSchema\n\tnewSchema, err := c.getSchema(*stmt.NewSchema)\n\tif err != nil {\n\t\treturn err\n\t}\n\t// Because tables have associated data types, the type name must also\n\t// be distinct from the name of any existing table in the same\n\t// schema.\n\t// https://www.postgresql.org/docs/current/sql-createtype.html\n\ttbl := &ast.TableName{\n\t\tName: stmt.Type.Name,\n\t}\n\tif _, _, err := newSchema.getTable(tbl); err == nil {\n\t\treturn sqlerr.RelationExists(tbl.Name)\n\t}\n\tif _, _, err := newSchema.getType(stmt.Type); err == nil {\n\t\treturn sqlerr.TypeExists(stmt.Type.Name)\n\t}\n\toldSchema.Types = append(oldSchema.Types[:idx], oldSchema.Types[idx+1:]...)\n\tnewSchema.Types = append(newSchema.Types, typ)\n\n\t// Update all the table columns with the new type\n\tfor _, schema := range c.Schemas {\n\t\tfor _, table := range schema.Tables {\n\t\t\tfor _, column := range table.Columns {\n\t\t\t\tif column.Type == oldType {\n\t\t\t\t\tcolumn.Type.Schema = *stmt.NewSchema\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc (c *Catalog) dropType(stmt *ast.DropTypeStmt) error {\n\tfor _, name := range stmt.Types {\n\t\tns := name.Schema\n\t\tif ns == \"\" {\n\t\t\tns = c.DefaultSchema\n\t\t}\n\t\tschema, err := c.getSchema(ns)\n\t\tif errors.Is(err, sqlerr.NotFound) && stmt.IfExists {\n\t\t\tcontinue\n\t\t} else if err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\t_, idx, err := schema.getType(name)\n\t\tif errors.Is(err, sqlerr.NotFound) && stmt.IfExists {\n\t\t\tcontinue\n\t\t} else if err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tschema.Types = append(schema.Types[:idx], schema.Types[idx+1:]...)\n\t}\n\treturn nil\n}\n\nfunc (c *Catalog) renameType(stmt *ast.RenameTypeStmt) error {\n\tif stmt.NewName == nil {\n\t\treturn fmt.Errorf(\"rename type: empty name\")\n\t}\n\tnewName := *stmt.NewName\n\tns := stmt.Type.Schema\n\tif ns == \"\" {\n\t\tns = c.DefaultSchema\n\t}\n\tschema, err := c.getSchema(ns)\n\tif err != nil {\n\t\treturn err\n\t}\n\tityp, idx, err := schema.getType(stmt.Type)\n\tif err != nil {\n\t\treturn err\n\t}\n\tif _, _, err := schema.getTable(&ast.TableName{Name: newName}); err == nil {\n\t\treturn sqlerr.RelationExists(newName)\n\t}\n\tif _, _, err := schema.getType(&ast.TypeName{Name: newName}); err == nil {\n\t\treturn sqlerr.TypeExists(newName)\n\t}\n\n\tswitch typ := ityp.(type) {\n\n\tcase *CompositeType:\n\t\tschema.Types[idx] = &CompositeType{\n\t\t\tName:    newName,\n\t\t\tComment: typ.Comment,\n\t\t}\n\n\tcase *Enum:\n\t\tschema.Types[idx] = &Enum{\n\t\t\tName:    newName,\n\t\t\tVals:    typ.Vals,\n\t\t\tComment: typ.Comment,\n\t\t}\n\n\tdefault:\n\t\treturn fmt.Errorf(\"unsupported type: %T\", typ)\n\n\t}\n\n\t// Update all the table columns with the new type\n\tfor _, schema := range c.Schemas {\n\t\tfor _, table := range schema.Tables {\n\t\t\tfor _, column := range table.Columns {\n\t\t\t\tif column.Type == *stmt.Type {\n\t\t\t\t\tcolumn.Type.Name = newName\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn nil\n}\n"
  },
  {
    "path": "internal/sql/catalog/view.go",
    "content": "package catalog\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\nfunc (c *Catalog) createView(stmt *ast.ViewStmt, colGen columnGenerator) error {\n\tcols, err := colGen.OutputColumns(stmt.Query)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tcatName := \"\"\n\tif stmt.View.Catalogname != nil {\n\t\tcatName = *stmt.View.Catalogname\n\t}\n\tschemaName := \"\"\n\tif stmt.View.Schemaname != nil {\n\t\tschemaName = *stmt.View.Schemaname\n\t}\n\n\ttbl := Table{\n\t\tRel: &ast.TableName{\n\t\t\tCatalog: catName,\n\t\t\tSchema:  schemaName,\n\t\t\tName:    *stmt.View.Relname,\n\t\t},\n\t\tColumns: cols,\n\t}\n\n\tns := tbl.Rel.Schema\n\tif ns == \"\" {\n\t\tns = c.DefaultSchema\n\t}\n\tschema, err := c.getSchema(ns)\n\tif err != nil {\n\t\treturn err\n\t}\n\t_, existingIdx, err := schema.getTable(tbl.Rel)\n\tif err == nil && !stmt.Replace {\n\t\treturn sqlerr.RelationExists(tbl.Rel.Name)\n\t}\n\n\tif stmt.Replace && err == nil {\n\t\tschema.Tables[existingIdx] = &tbl\n\t} else {\n\t\tschema.Tables = append(schema.Tables, &tbl)\n\t}\n\n\treturn nil\n}\n"
  },
  {
    "path": "internal/sql/format/format.go",
    "content": "package format\n\n// Dialect provides SQL dialect-specific formatting behavior\ntype Dialect interface {\n\t// QuoteIdent returns a quoted identifier if it needs quoting\n\t// (e.g., reserved words, mixed case identifiers)\n\tQuoteIdent(s string) string\n\n\t// TypeName returns the SQL type name for the given namespace and name.\n\t// This handles dialect-specific type name mappings (e.g., pg_catalog.int4 -> integer)\n\tTypeName(ns, name string) string\n\n\t// Param returns the parameter placeholder for the given parameter number.\n\t// PostgreSQL uses $1, $2, etc. MySQL uses ?\n\tParam(n int) string\n\n\t// NamedParam returns the named parameter placeholder for the given name.\n\t// PostgreSQL uses @name, SQLite uses :name\n\tNamedParam(name string) string\n\n\t// Cast formats a type cast expression.\n\t// PostgreSQL uses expr::type, MySQL uses CAST(expr AS type)\n\tCast(arg, typeName string) string\n}\n"
  },
  {
    "path": "internal/sql/info/info.go",
    "content": "package info\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\n// Provide a read-only view into the catalog\nfunc Newo(c *catalog.Catalog) InformationSchema {\n\treturn InformationSchema{c: c}\n}\n\ntype InformationSchema struct {\n\tc *catalog.Catalog\n}\n\ntype Table struct {\n\tCatalog string\n\tSchema  string\n\tName    string\n}\n\n// SELECT * FROM information_schema.tables;\nfunc (i *InformationSchema) Tables() []Table {\n\tvar tables []Table\n\tfor _, s := range i.c.Schemas {\n\t\tfor _, t := range s.Tables {\n\t\t\ttables = append(tables, Table{\n\t\t\t\tCatalog: i.c.Name,\n\t\t\t\tSchema:  s.Name,\n\t\t\t\tName:    t.Rel.Name,\n\t\t\t})\n\t\t}\n\t}\n\treturn tables\n}\n\ntype Column struct {\n\tCatalog    string\n\tSchema     string\n\tTable      string\n\tName       string\n\tDataType   string\n\tIsNullable bool\n}\n\n// SELECT * FROM information_schema.columns;\nfunc (i *InformationSchema) Columns() []Column {\n\treturn []Column{}\n}\n\ntype Schema struct {\n\tCatalog string\n\tName    string\n}\n\n// SELECT * FROM information_schema.schemata;\nfunc (i *InformationSchema) Schemata() []Schema {\n\treturn []Schema{}\n}\n"
  },
  {
    "path": "internal/sql/lang/operator.go",
    "content": "package lang\n\n// TODO: This logic is PostgreSQL-specific and needs to be refactored to support MySQL\n\nfunc IsComparisonOperator(s string) bool {\n\tswitch s {\n\tcase \">\":\n\tcase \"<\":\n\tcase \"<=\":\n\tcase \">=\":\n\tcase \"=\":\n\tcase \"<>\":\n\tcase \"!=\":\n\tdefault:\n\t\treturn false\n\t}\n\treturn true\n}\n\nfunc IsMathematicalOperator(s string) bool {\n\tswitch s {\n\tcase \"+\":\n\tcase \"-\":\n\tcase \"*\":\n\tcase \"/\":\n\tcase \"%\":\n\tcase \"^\":\n\tcase \"|/\":\n\tcase \"||/\":\n\tcase \"!\":\n\tcase \"!!\":\n\tcase \"@\":\n\tcase \"&\":\n\tcase \"|\":\n\tcase \"#\":\n\tcase \"~\":\n\tcase \"<<\":\n\tcase \">>\":\n\tdefault:\n\t\treturn false\n\t}\n\treturn true\n}\n"
  },
  {
    "path": "internal/sql/named/CLAUDE.md",
    "content": "# Named Parameters Package - Claude Code Guide\n\nThis package provides utilities for identifying sqlc's named parameter syntax.\n\n## Named Parameter Styles\n\nsqlc supports two styles of named parameters:\n\n### 1. Function-style: `sqlc.arg(name)`, `sqlc.narg(name)`, `sqlc.slice(name)`\nIdentified by `IsParamFunc()`:\n```go\nfunc IsParamFunc(node ast.Node) bool {\n    call, ok := node.(*ast.FuncCall)\n    if !ok {\n        return false\n    }\n    return call.Func.Schema == \"sqlc\" &&\n           (call.Func.Name == \"arg\" || call.Func.Name == \"narg\" || call.Func.Name == \"slice\")\n}\n```\n\n### 2. At-sign style: `@param_name` (PostgreSQL only)\nIdentified by `IsParamSign()`:\n```go\nfunc IsParamSign(node ast.Node) bool {\n    expr, ok := node.(*ast.A_Expr)\n    return ok && astutils.Join(expr.Name, \".\") == \"@\"\n}\n```\n\n## Important Distinction: sqlc @param vs MySQL @variable\n\n**sqlc named parameters** (`@param` in PostgreSQL queries):\n- Represented as `A_Expr` with `Kind=A_Expr_Kind_OP` and `Name=[\"@\"]`\n- Detected by `IsParamSign()`\n- Replaced with positional parameters (`$1`, `$2` for PostgreSQL, `?` for MySQL)\n\n**MySQL user variables** (`@user_id` in MySQL queries):\n- Represented as `VariableExpr`\n- NOT detected by `IsParamSign()` (it checks for `A_Expr`, not `VariableExpr`)\n- Preserved as-is in the output SQL\n\nThis distinction is critical:\n```sql\n-- PostgreSQL with sqlc @param syntax:\nSELECT * FROM users WHERE id = @user_id\n-- Becomes: SELECT * FROM users WHERE id = $1\n\n-- MySQL with user variable:\nSELECT * FROM users WHERE id != @user_id\n-- Stays: SELECT * FROM users WHERE id != @user_id\n```\n\n## Usage in Parameter Rewriting\n\nThe `rewrite/parameters.go` package uses these functions to find and replace named parameters:\n\n```go\n// Find all named parameters\nparams := astutils.Search(root, func(node ast.Node) bool {\n    return named.IsParamFunc(node) || named.IsParamSign(node)\n})\n\n// Replace with positional parameters\nastutils.Apply(root, func(cr *astutils.Cursor) bool {\n    if named.IsParamFunc(cr.Node()) || named.IsParamSign(cr.Node()) {\n        cr.Replace(&ast.ParamRef{Number: nextParam()})\n    }\n    return true\n}, nil)\n```\n\n## Converting MySQL @variable Correctly\n\nWhen converting TiDB's `VariableExpr` in `dolphin/convert.go`:\n\n```go\n// CORRECT - preserves MySQL user variable as-is\nfunc (c *cc) convertVariableExpr(n *pcast.VariableExpr) ast.Node {\n    return &ast.VariableExpr{\n        Name:     n.Name,\n        Location: n.OriginTextPosition(),\n    }\n}\n\n// WRONG - would be treated as sqlc named parameter\nfunc (c *cc) convertVariableExpr(n *pcast.VariableExpr) ast.Node {\n    return &ast.A_Expr{\n        Kind: ast.A_Expr_Kind_OP,\n        Name: &ast.List{Items: []ast.Node{&ast.String{Str: \"@\"}}},\n        Rexpr: &ast.String{Str: n.Name},\n    }\n}\n```\n"
  },
  {
    "path": "internal/sql/named/is.go",
    "content": "package named\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n)\n\n// IsParamFunc fulfills the astutils.Search\nfunc IsParamFunc(node ast.Node) bool {\n\tcall, ok := node.(*ast.FuncCall)\n\tif !ok {\n\t\treturn false\n\t}\n\n\tif call.Func == nil {\n\t\treturn false\n\t}\n\n\tisValid := call.Func.Schema == \"sqlc\" && (call.Func.Name == \"arg\" || call.Func.Name == \"narg\" || call.Func.Name == \"slice\")\n\treturn isValid\n}\n\nfunc IsParamSign(node ast.Node) bool {\n\texpr, ok := node.(*ast.A_Expr)\n\treturn ok && astutils.Join(expr.Name, \".\") == \"@\"\n}\n"
  },
  {
    "path": "internal/sql/named/param.go",
    "content": "package named\n\n// nullability represents the nullability of a named parameter.\n// The nullability can be:\n// 1. unspecified\n// 2. inferred\n// 3. user-defined\n// A user-specified nullability carries a higher precedence than an inferred one\n//\n// The representation is such that you can bitwise OR together nullability types to\n// combine them together.\ntype nullability int\n\nconst (\n\tnullUnspecified nullability = 0b0000\n\tinferredNull    nullability = 0b0001\n\tinferredNotNull nullability = 0b0010\n\tnullable        nullability = 0b0100\n\tnotNullable     nullability = 0b1000\n)\n\n// String implements the Stringer interface\nfunc (n nullability) String() string {\n\tswitch n {\n\tcase nullUnspecified:\n\t\treturn \"NullUnspecified\"\n\tcase inferredNull:\n\t\treturn \"InferredNull\"\n\tcase inferredNotNull:\n\t\treturn \"InferredNotNull\"\n\tcase nullable:\n\t\treturn \"Nullable\"\n\tcase notNullable:\n\t\treturn \"NotNullable\"\n\tdefault:\n\t\treturn \"NullInvalid\"\n\t}\n}\n\n// Param represents a input argument to the query which can be specified using:\n// - positional parameters           $1\n// - named parameter operator        @param\n// - named parameter function calls  sqlc.arg(param)\ntype Param struct {\n\tname        string\n\tnullability nullability\n\tisSqlcSlice bool\n}\n\n// NewParam builds a new params with unspecified nullability\nfunc NewParam(name string) Param {\n\treturn Param{name: name, nullability: nullUnspecified}\n}\n\n// NewInferredParam builds a new params with inferred nullability\nfunc NewInferredParam(name string, notNull bool) Param {\n\tif notNull {\n\t\treturn Param{name: name, nullability: inferredNotNull}\n\t}\n\n\treturn Param{name: name, nullability: inferredNull}\n}\n\n// NewUserNullableParam is a parameter that has been overridden\n// by the user to be nullable.\nfunc NewUserNullableParam(name string) Param {\n\treturn Param{name: name, nullability: nullable}\n}\n\n// NewSqlcSlice is a sqlc.slice() parameter.\nfunc NewSqlcSlice(name string) Param {\n\treturn Param{name: name, nullability: nullUnspecified, isSqlcSlice: true}\n}\n\n// Name is the user defined name to use for this parameter\nfunc (p Param) Name() string {\n\treturn p.name\n}\n\n// is checks if this params object has the specified nullability bit set\nfunc (p Param) is(n nullability) bool {\n\treturn (p.nullability & n) == n\n}\n\n// NonNull determines whether this param should be \"not null\" in its current state\nfunc (p Param) NotNull() bool {\n\tconst null = false\n\tconst notNull = true\n\n\tif p.is(notNullable) {\n\t\treturn notNull\n\t}\n\n\tif p.is(nullable) {\n\t\treturn null\n\t}\n\n\tif p.is(inferredNotNull) {\n\t\treturn notNull\n\t}\n\n\tif p.is(inferredNull) {\n\t\treturn null\n\t}\n\n\t// This param is unspecified, so by default we choose nullable\n\t// which matches the default behavior of most databases\n\treturn null\n}\n\n// IsSlice returns whether this param is a sqlc.slice() param.\nfunc (p Param) IsSqlcSlice() bool {\n\treturn p.isSqlcSlice\n}\n\n// mergeParam creates a new param from 2 partially specified params\n// If the parameters have different names, the first is preferred\nfunc mergeParam(a, b Param) Param {\n\tname := a.name\n\tif name == \"\" {\n\t\tname = b.name\n\t}\n\n\treturn Param{\n\t\tname:        name,\n\t\tnullability: a.nullability | b.nullability,\n\t\tisSqlcSlice: a.isSqlcSlice || b.isSqlcSlice,\n\t}\n}\n"
  },
  {
    "path": "internal/sql/named/param_set.go",
    "content": "package named\n\n// ParamSet represents a set of parameters for a single query\ntype ParamSet struct {\n\t// does this engine support named parameters?\n\thasNamedSupport bool\n\t// the set of currently tracked named parameters\n\tnamedParams map[string]Param\n\t// the locations of each of the named parameters\n\tnamedLocs map[string][]int\n\t// a map of positions currently used\n\tpositionToName map[int]string\n\t// argn keeps track of the last checked positional parameter used\n\targn int\n}\n\n// Return the name for a given parameter number and a boolean indicating if it\n// was found.\nfunc (p *ParamSet) NameFor(idx int) (string, bool) {\n\tname, ok := p.positionToName[idx]\n\treturn name, ok\n}\n\nfunc (p *ParamSet) nextArgNum() int {\n\tfor {\n\t\tif _, ok := p.positionToName[p.argn]; !ok {\n\t\t\treturn p.argn\n\t\t}\n\n\t\tp.argn++\n\t}\n}\n\n// Add adds a parameter to this set and returns the numbered location used for it\nfunc (p *ParamSet) Add(param Param) int {\n\tname := param.name\n\texisting, ok := p.namedParams[name]\n\n\tp.namedParams[name] = mergeParam(existing, param)\n\tif ok && p.hasNamedSupport {\n\t\treturn p.namedLocs[name][0]\n\t}\n\n\targn := p.nextArgNum()\n\tp.positionToName[argn] = name\n\tp.namedLocs[name] = append(p.namedLocs[name], argn)\n\treturn argn\n}\n\n// FetchMerge fetches an indexed parameter, and merges `mergeP` into it\n// Returns: the merged parameter and whether it was a named parameter\nfunc (p *ParamSet) FetchMerge(idx int, mergeP Param) (param Param, isNamed bool) {\n\tname, exists := p.positionToName[idx]\n\tif !exists || name == \"\" {\n\t\treturn mergeP, false\n\t}\n\n\tparam, ok := p.namedParams[name]\n\tif !ok {\n\t\treturn mergeP, false\n\t}\n\n\treturn mergeParam(param, mergeP), true\n}\n\n// NewParamSet creates a set of parameters with the given list of already used positions\nfunc NewParamSet(positionsUsed map[int]bool, hasNamedSupport bool) *ParamSet {\n\tpositionToName := make(map[int]string, len(positionsUsed))\n\tfor index, used := range positionsUsed {\n\t\tif !used {\n\t\t\tcontinue\n\t\t}\n\n\t\t// assume the previously used params have no name\n\t\tpositionToName[index] = \"\"\n\t}\n\n\treturn &ParamSet{\n\t\targn:            1,\n\t\tnamedParams:     make(map[string]Param),\n\t\tnamedLocs:       make(map[string][]int),\n\t\thasNamedSupport: hasNamedSupport,\n\t\tpositionToName:  positionToName,\n\t}\n}\n"
  },
  {
    "path": "internal/sql/named/param_set_test.go",
    "content": "package named\n\nimport \"testing\"\n\nfunc TestParamSet_Add(t *testing.T) {\n\tt.Parallel()\n\n\ttype test struct {\n\t\tpset     *ParamSet\n\t\tparam    Param\n\t\texpected int\n\t}\n\n\tnamed := NewParamSet(nil, true)\n\tpopulatedNamed := NewParamSet(map[int]bool{1: true, 2: true, 4: true, 5: true, 6: true}, true)\n\tpopulatedUnnamed := NewParamSet(map[int]bool{1: true, 2: true, 4: true, 5: true, 6: true}, false)\n\tunnamed := NewParamSet(nil, false)\n\tp1 := NewParam(\"hello\")\n\tp2 := NewParam(\"world\")\n\n\ttests := []test{\n\t\t// First parameter should be 1\n\t\t{named, p1, 1},\n\t\t// Duplicate first parameters should be 1\n\t\t{named, p1, 1},\n\t\t// A new parameter receives a new parameter number\n\t\t{named, p2, 2},\n\t\t// An additional new parameter does _not_ receive a new\n\t\t{named, p2, 2},\n\n\t\t// First parameter should be 1\n\t\t{unnamed, p1, 1},\n\t\t// Duplicate first parameters should increment argn\n\t\t{unnamed, p1, 2},\n\t\t// A new parameter receives a new parameter number\n\t\t{unnamed, p2, 3},\n\t\t// An additional new parameter still does receive a new argn\n\t\t{unnamed, p2, 4},\n\n\t\t// First parameter of a pre-populated should be 3\n\t\t{populatedNamed, p1, 3},\n\t\t{populatedNamed, p1, 3},\n\t\t{populatedNamed, p2, 7},\n\t\t{populatedNamed, p2, 7},\n\n\t\t{populatedUnnamed, p1, 3},\n\t\t{populatedUnnamed, p1, 7},\n\t\t{populatedUnnamed, p2, 8},\n\t\t{populatedUnnamed, p2, 9},\n\t}\n\n\tfor _, spec := range tests {\n\t\tactual := spec.pset.Add(spec.param)\n\t\tif actual != spec.expected {\n\t\t\tt.Errorf(\"ParamSet.Add(%s) expected %v; got %v\", spec.param.name, spec.expected, actual)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sql/named/param_test.go",
    "content": "package named\n\nimport \"testing\"\n\nfunc TestMergeParamNullability(t *testing.T) {\n\ttype test struct {\n\t\ta       Param\n\t\tb       Param\n\t\tnotNull bool\n\t\tmessage string\n\t}\n\n\tname := \"name\"\n\tunspec := NewParam(name)\n\tinferredNotNull := NewInferredParam(name, true)\n\tinferredNull := NewInferredParam(name, false)\n\tuserDefNull := NewUserNullableParam(name)\n\n\tconst notNull = true\n\tconst null = false\n\n\ttests := []test{\n\t\t// Unspecified nullability parameter works\n\t\t{unspec, inferredNotNull, notNull, \"Unspec + inferred(not null) = not null\"},\n\t\t{unspec, inferredNull, null, \"Unspec + inferred(not null) = null\"},\n\t\t{unspec, userDefNull, null, \"Unspec + userdef(null) = null\"},\n\n\t\t// Inferred nullability agreeing with user defined nullabilty\n\t\t{inferredNull, userDefNull, null, \"inferred(null) + userdef(null) = null\"},\n\n\t\t// Inferred nullability disagreeing with user defined nullabilty\n\t\t{inferredNotNull, userDefNull, null, \"inferred(not null) + userdef(null) = null\"},\n\t}\n\n\tfor _, spec := range tests {\n\t\ta := spec.a\n\t\tb := spec.b\n\t\tactual := mergeParam(a, b).NotNull()\n\t\texpected := spec.notNull\n\t\tif actual != expected {\n\t\t\tt.Errorf(\"Combine(%s,%s) expected %v; got %v\", a.nullability, b.nullability, expected, actual)\n\t\t}\n\n\t\t// We have already tried Combine(a, b) the same result should be true for Combine(b, a)\n\t\tactual = mergeParam(b, a).NotNull()\n\t\tif actual != expected {\n\t\t\tt.Errorf(\"Combine(%s,%s) expected %v; got %v\", b.nullability, a.nullability, expected, actual)\n\t\t}\n\t}\n}\n\nfunc TestMergeParamName(t *testing.T) {\n\ttype test struct {\n\t\ta    Param\n\t\tb    Param\n\t\tname string\n\t}\n\n\ta := NewParam(\"a\")\n\tb := NewParam(\"b\")\n\tblank := NewParam(\"\")\n\n\ttests := []test{\n\t\t// should prefer the first param's name if both specified\n\t\t{a, b, \"a\"},\n\t\t{b, a, \"b\"},\n\n\t\t// should prefer non-blank names\n\t\t{a, blank, \"a\"},\n\t\t{blank, a, \"a\"},\n\t}\n\n\tfor _, spec := range tests {\n\t\ta := spec.a\n\t\tb := spec.b\n\t\tactual := mergeParam(a, b).Name()\n\t\texpected := spec.name\n\t\tif actual != expected {\n\t\t\tt.Errorf(\"Combine(%s,%s) expected %v; got %v\", a.name, b.name, expected, actual)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sql/rewrite/CLAUDE.md",
    "content": "# SQL Rewrite Package - Claude Code Guide\n\nThis package handles AST transformations, primarily for parameter handling.\n\n## Key Functions\n\n### NamedParameters\n`NamedParameters(engine config.Engine, raw *ast.RawStmt, ...) (*ast.RawStmt, map[int]Parameter, error)`\n\nFinds and replaces named parameters (`sqlc.arg()`, `@param`) with positional parameters.\n\nThe function:\n1. Searches for named parameters using `named.IsParamFunc()` and `named.IsParamSign()`\n2. Extracts parameter names and types\n3. Replaces them with `ast.ParamRef` nodes\n4. Returns a map of parameter positions to their metadata\n\n### Expand\n`Expand(raw *ast.RawStmt, expected int) error`\n\nExpands `sqlc.slice()` parameters into the correct number of positional parameters.\n\n## How Parameter Rewriting Works\n\n### Step 1: Find Named Parameters\n```go\nrefs := astutils.Search(raw.Stmt, func(node ast.Node) bool {\n    return named.IsParamFunc(node) || named.IsParamSign(node)\n})\n```\n\n### Step 2: Replace with ParamRef\n```go\nastutils.Apply(raw.Stmt, func(cr *astutils.Cursor) bool {\n    if named.IsParamFunc(cr.Node()) {\n        // Extract name from sqlc.arg(name)\n        call := cr.Node().(*ast.FuncCall)\n        name := extractName(call.Args)\n\n        cr.Replace(&ast.ParamRef{\n            Number:   nextParam(),\n            Location: call.Location,\n        })\n    }\n    return true\n}, nil)\n```\n\n## Important: AST Node Requirements\n\nFor parameter rewriting to work correctly, the AST must be walkable. This means:\n\n1. All node types must have cases in `astutils/walk.go`\n2. All node types must have cases in `astutils/rewrite.go`\n3. New container types (like `OnDuplicateKeyUpdate`) must be traversed\n\n### Example: OnDuplicateKeyUpdate\n\nMySQL's `ON DUPLICATE KEY UPDATE` clause can contain `sqlc.arg()`:\n```sql\nINSERT INTO t (a) VALUES (sqlc.arg(val))\nON DUPLICATE KEY UPDATE a = sqlc.arg(new_val)\n```\n\nFor the parameter in `ON DUPLICATE KEY UPDATE` to be found and replaced:\n\n1. `InsertStmt` in `rewrite.go` must traverse `OnDuplicateKeyUpdate`:\n```go\ncase *ast.InsertStmt:\n    a.apply(n, \"Relation\", nil, n.Relation)\n    a.apply(n, \"Cols\", nil, n.Cols)\n    a.apply(n, \"SelectStmt\", nil, n.SelectStmt)\n    a.apply(n, \"OnConflictClause\", nil, n.OnConflictClause)\n    a.apply(n, \"OnDuplicateKeyUpdate\", nil, n.OnDuplicateKeyUpdate)  // Critical!\n    a.apply(n, \"ReturningList\", nil, n.ReturningList)\n    a.apply(n, \"WithClause\", nil, n.WithClause)\n```\n\n2. `OnDuplicateKeyUpdate` must have its own case:\n```go\ncase *ast.OnDuplicateKeyUpdate:\n    a.apply(n, \"List\", nil, n.List)\n```\n\n## Debugging Parameter Issues\n\nIf a `sqlc.arg()` isn't being converted to `?`:\n\n1. Check that the containing node type has a case in `rewrite.go`\n2. Check that the case traverses all child fields\n3. Add debug logging to see if the node is being visited:\n```go\ncase *ast.YourType:\n    fmt.Printf(\"Visiting YourType with fields: %+v\\n\", n)\n    a.apply(n, \"ChildField\", nil, n.ChildField)\n```\n\n## Parameter Output Format by Engine\n\n- PostgreSQL: `$1`, `$2`, `$3`, ...\n- MySQL: `?`, `?`, `?`, ...\n- SQLite: `?`, `?`, `?`, ...\n\nThe format is determined by the `Dialect.Param()` method in each engine.\n"
  },
  {
    "path": "internal/sql/rewrite/embeds.go",
    "content": "package rewrite\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n)\n\n// Embed is an instance of `sqlc.embed(param)`\ntype Embed struct {\n\tTable *ast.TableName\n\tparam string\n\tNode  *ast.ColumnRef\n}\n\n// Orig string to replace\nfunc (e Embed) Orig() string {\n\treturn fmt.Sprintf(\"sqlc.embed(%s)\", e.param)\n}\n\n// EmbedSet is a set of Embed instances\ntype EmbedSet []*Embed\n\n// Find a matching embed by column ref\nfunc (es EmbedSet) Find(node *ast.ColumnRef) (*Embed, bool) {\n\tfor _, e := range es {\n\t\tif e.Node == node {\n\t\t\treturn e, true\n\t\t}\n\t}\n\treturn nil, false\n}\n\n// Embeds rewrites `sqlc.embed(param)` to a `ast.ColumnRef` of form `param.*`.\n// The compiler can make use of the returned `EmbedSet` while expanding the\n// `param.*` column refs to produce the correct source edits.\nfunc Embeds(raw *ast.RawStmt) (*ast.RawStmt, EmbedSet) {\n\tvar embeds []*Embed\n\n\tnode := astutils.Apply(raw, func(cr *astutils.Cursor) bool {\n\t\tnode := cr.Node()\n\n\t\tswitch {\n\t\tcase isEmbed(node):\n\t\t\tfun := node.(*ast.FuncCall)\n\n\t\t\tif len(fun.Args.Items) == 0 {\n\t\t\t\treturn false\n\t\t\t}\n\n\t\t\tparam, _ := flatten(fun.Args)\n\n\t\t\tnode := &ast.ColumnRef{\n\t\t\t\tFields: &ast.List{\n\t\t\t\t\tItems: []ast.Node{\n\t\t\t\t\t\t&ast.String{Str: param},\n\t\t\t\t\t\t&ast.A_Star{},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}\n\n\t\t\tembeds = append(embeds, &Embed{\n\t\t\t\tTable: &ast.TableName{Name: param},\n\t\t\t\tparam: param,\n\t\t\t\tNode:  node,\n\t\t\t})\n\n\t\t\tcr.Replace(node)\n\t\t\treturn false\n\t\tdefault:\n\t\t\treturn true\n\t\t}\n\t}, nil)\n\n\treturn node.(*ast.RawStmt), embeds\n}\n\nfunc isEmbed(node ast.Node) bool {\n\tcall, ok := node.(*ast.FuncCall)\n\tif !ok {\n\t\treturn false\n\t}\n\n\tif call.Func == nil {\n\t\treturn false\n\t}\n\n\tisValid := call.Func.Schema == \"sqlc\" && call.Func.Name == \"embed\"\n\treturn isValid\n}\n"
  },
  {
    "path": "internal/sql/rewrite/parameters.go",
    "content": "package rewrite\n\nimport (\n\t\"fmt\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/source\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/named\"\n)\n\n// Given an AST node, return the string representation of names\nfunc flatten(root ast.Node) (string, bool) {\n\tsw := &stringWalker{}\n\tastutils.Walk(sw, root)\n\treturn sw.String, sw.IsConst\n}\n\ntype stringWalker struct {\n\tString  string\n\tIsConst bool\n}\n\nfunc (s *stringWalker) Visit(node ast.Node) astutils.Visitor {\n\tif _, ok := node.(*ast.A_Const); ok {\n\t\ts.IsConst = true\n\t}\n\tif n, ok := node.(*ast.String); ok {\n\t\ts.String += n.Str\n\t}\n\treturn s\n}\n\nfunc isNamedParamSignCast(node ast.Node) bool {\n\texpr, ok := node.(*ast.A_Expr)\n\tif !ok {\n\t\treturn false\n\t}\n\t_, cast := expr.Rexpr.(*ast.TypeCast)\n\treturn astutils.Join(expr.Name, \".\") == \"@\" && cast\n}\n\n// paramFromFuncCall creates a param from sqlc.n?arg() calls return the\n// parameter and whether the parameter name was specified a best guess as its\n// \"source\" string representation (used for replacing this function call in the\n// original SQL query)\nfunc paramFromFuncCall(call *ast.FuncCall) (named.Param, string) {\n\tparamName, isConst := flatten(call.Args)\n\n\t// origName keeps track of how the parameter was specified in the source SQL\n\torigName := paramName\n\tif isConst {\n\t\torigName = fmt.Sprintf(\"'%s'\", paramName)\n\t}\n\n\tvar param named.Param\n\tswitch call.Func.Name {\n\tcase \"narg\":\n\t\tparam = named.NewUserNullableParam(paramName)\n\tcase \"slice\":\n\t\tparam = named.NewSqlcSlice(paramName)\n\tdefault:\n\t\tparam = named.NewParam(paramName)\n\t}\n\n\t// TODO: This code assumes that sqlc.arg(name) / sqlc.narg(name) is on a single line\n\t// with no extraneous spaces (or any non-significant tokens for that matter)\n\t// except between the function name and argument\n\tfuncName := call.Func.Schema + \".\" + call.Func.Name\n\tspaces := \"\"\n\tif call.Args != nil && len(call.Args.Items) > 0 {\n\t\tleftParen := call.Args.Items[0].Pos() - 1\n\t\tspaces = strings.Repeat(\" \", leftParen-call.Location-len(funcName))\n\t}\n\torigText := fmt.Sprintf(\"%s%s(%s)\", funcName, spaces, origName)\n\treturn param, origText\n}\n\nfunc NamedParameters(engine config.Engine, raw *ast.RawStmt, numbs map[int]bool, dollar bool) (*ast.RawStmt, *named.ParamSet, []source.Edit) {\n\tfoundFunc := astutils.Search(raw, named.IsParamFunc)\n\tfoundSign := astutils.Search(raw, named.IsParamSign)\n\thasNamedParameterSupport := engine != config.EngineMySQL\n\tallParams := named.NewParamSet(numbs, hasNamedParameterSupport)\n\n\tif len(foundFunc.Items)+len(foundSign.Items) == 0 {\n\t\treturn raw, allParams, nil\n\t}\n\n\tvar edits []source.Edit\n\tnode := astutils.Apply(raw, func(cr *astutils.Cursor) bool {\n\t\tnode := cr.Node()\n\t\tswitch {\n\t\tcase named.IsParamFunc(node):\n\t\t\tfun := node.(*ast.FuncCall)\n\t\t\tparam, origText := paramFromFuncCall(fun)\n\t\t\targn := allParams.Add(param)\n\t\t\tcr.Replace(&ast.ParamRef{\n\t\t\t\tNumber:   argn,\n\t\t\t\tLocation: fun.Location,\n\t\t\t})\n\n\t\t\tvar replace string\n\t\t\tif engine == config.EngineMySQL || engine == config.EngineSQLite || !dollar {\n\t\t\t\tif param.IsSqlcSlice() {\n\t\t\t\t\t// This sequence is also replicated in internal/codegen/golang.Field\n\t\t\t\t\t// since it's needed during template generation for replacement\n\t\t\t\t\treplace = fmt.Sprintf(`/*SLICE:%s*/?`, param.Name())\n\t\t\t\t} else {\n\t\t\t\t\tif engine == config.EngineSQLite {\n\t\t\t\t\t\treplace = fmt.Sprintf(\"?%d\", argn)\n\t\t\t\t\t} else {\n\t\t\t\t\t\treplace = \"?\"\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\treplace = fmt.Sprintf(\"$%d\", argn)\n\t\t\t}\n\n\t\t\tedits = append(edits, source.Edit{\n\t\t\t\tLocation: fun.Location - raw.StmtLocation,\n\t\t\t\tOld:      origText,\n\t\t\t\tNew:      replace,\n\t\t\t})\n\t\t\treturn false\n\n\t\tcase isNamedParamSignCast(node):\n\t\t\texpr := node.(*ast.A_Expr)\n\t\t\tcast := expr.Rexpr.(*ast.TypeCast)\n\t\t\tparamName, _ := flatten(cast.Arg)\n\t\t\tparam := named.NewParam(paramName)\n\n\t\t\targn := allParams.Add(param)\n\t\t\tcast.Arg = &ast.ParamRef{\n\t\t\t\tNumber:   argn,\n\t\t\t\tLocation: expr.Location,\n\t\t\t}\n\t\t\tcr.Replace(cast)\n\n\t\t\t// TODO: This code assumes that @foo::bool is on a single line\n\t\t\tvar replace string\n\t\t\tif engine == config.EngineMySQL || !dollar {\n\t\t\t\treplace = \"?\"\n\t\t\t} else if engine == config.EngineSQLite {\n\t\t\t\treplace = fmt.Sprintf(\"?%d\", argn)\n\t\t\t} else {\n\t\t\t\treplace = fmt.Sprintf(\"$%d\", argn)\n\t\t\t}\n\n\t\t\tedits = append(edits, source.Edit{\n\t\t\t\tLocation: expr.Location - raw.StmtLocation,\n\t\t\t\tOld:      fmt.Sprintf(\"@%s\", paramName),\n\t\t\t\tNew:      replace,\n\t\t\t})\n\t\t\treturn false\n\n\t\tcase named.IsParamSign(node):\n\t\t\texpr := node.(*ast.A_Expr)\n\t\t\tparamName, _ := flatten(expr.Rexpr)\n\t\t\tparam := named.NewParam(paramName)\n\n\t\t\targn := allParams.Add(param)\n\t\t\tcr.Replace(&ast.ParamRef{\n\t\t\t\tNumber:   argn,\n\t\t\t\tLocation: expr.Location,\n\t\t\t})\n\n\t\t\t// TODO: This code assumes that @foo is on a single line\n\t\t\tvar replace string\n\t\t\tif engine == config.EngineMySQL || !dollar {\n\t\t\t\treplace = \"?\"\n\t\t\t} else if engine == config.EngineSQLite {\n\t\t\t\treplace = fmt.Sprintf(\"?%d\", argn)\n\t\t\t} else {\n\t\t\t\treplace = fmt.Sprintf(\"$%d\", argn)\n\t\t\t}\n\n\t\t\tedits = append(edits, source.Edit{\n\t\t\t\tLocation: expr.Location - raw.StmtLocation,\n\t\t\t\tOld:      fmt.Sprintf(\"@%s\", paramName),\n\t\t\t\tNew:      replace,\n\t\t\t})\n\t\t\treturn false\n\n\t\tdefault:\n\t\t\treturn true\n\t\t}\n\t}, nil)\n\n\treturn node.(*ast.RawStmt), allParams, edits\n}\n"
  },
  {
    "path": "internal/sql/sqlerr/errors.go",
    "content": "package sqlerr\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n)\n\nvar Exists = errors.New(\"already exists\")\nvar NotFound = errors.New(\"does not exist\")\nvar NotUnique = errors.New(\"is not unique\")\n\ntype Error struct {\n\tErr      error\n\tCode     string\n\tMessage  string\n\tLocation int\n\tLine     int\n\tColumn   int\n\t// Hint     string\n}\n\nfunc (e *Error) Unwrap() error {\n\treturn e.Err\n}\n\nfunc (e *Error) Error() string {\n\tif e.Err != nil {\n\t\treturn fmt.Sprintf(\"%s %s\", e.Message, e.Err.Error())\n\t} else {\n\t\treturn e.Message\n\t}\n}\n\nfunc ColumnExists(rel, col string) *Error {\n\treturn &Error{\n\t\tErr:     Exists,\n\t\tCode:    \"42701\",\n\t\tMessage: fmt.Sprintf(\"column %q of relation %q\", col, rel),\n\t}\n}\n\nfunc ColumnNotFound(rel, col string) *Error {\n\treturn &Error{\n\t\tErr:     NotFound,\n\t\tCode:    \"42703\",\n\t\tMessage: fmt.Sprintf(\"column %q of relation %q\", col, rel),\n\t}\n}\n\nfunc RelationExists(rel string) *Error {\n\treturn &Error{\n\t\tErr:     Exists,\n\t\tCode:    \"42P07\",\n\t\tMessage: fmt.Sprintf(\"relation %q\", rel),\n\t}\n}\n\nfunc RelationNotFound(rel string) *Error {\n\treturn &Error{\n\t\tErr:     NotFound,\n\t\tCode:    \"42P01\",\n\t\tMessage: fmt.Sprintf(\"relation %q\", rel),\n\t}\n}\n\nfunc SchemaExists(name string) *Error {\n\treturn &Error{\n\t\tErr:     Exists,\n\t\tCode:    \"42P06\",\n\t\tMessage: fmt.Sprintf(\"schema %q\", name),\n\t}\n}\n\nfunc SchemaNotFound(sch string) *Error {\n\treturn &Error{\n\t\tErr:     NotFound,\n\t\tCode:    \"3F000\",\n\t\tMessage: fmt.Sprintf(\"schema %q\", sch),\n\t}\n}\n\nfunc TypeExists(typ string) *Error {\n\treturn &Error{\n\t\tErr:     Exists,\n\t\tCode:    \"42710\",\n\t\tMessage: fmt.Sprintf(\"type %q\", typ),\n\t}\n}\n\nfunc TypeNotFound(typ string) *Error {\n\treturn &Error{\n\t\tErr:     NotFound,\n\t\tCode:    \"42704\",\n\t\tMessage: fmt.Sprintf(\"type %q\", typ),\n\t}\n}\n\nfunc FunctionNotFound(fun string) *Error {\n\treturn &Error{\n\t\tErr:     NotFound,\n\t\tCode:    \"42704\",\n\t\tMessage: fmt.Sprintf(\"function %q\", fun),\n\t}\n}\n\nfunc FunctionNotUnique(fn string) *Error {\n\treturn &Error{\n\t\tErr:     NotUnique,\n\t\tMessage: fmt.Sprintf(\"function name %q\", fn),\n\t}\n}\n"
  },
  {
    "path": "internal/sql/sqlfile/split.go",
    "content": "package sqlfile\n\nimport (\n\t\"bufio\"\n\t\"context\"\n\t\"io\"\n\t\"strings\"\n)\n\n// Split reads SQL queries from an io.Reader and returns them as a slice of strings.\n// Each SQL query is delimited by a semicolon (;).\n// The function handles:\n// - Single-line comments (-- comment)\n// - Multi-line comments (/* comment */)\n// - Single-quoted strings ('string')\n// - Double-quoted identifiers (\"identifier\")\n// - Dollar-quoted strings ($$string$$ or $tag$string$tag$)\nfunc Split(ctx context.Context, r io.Reader) ([]string, error) {\n\tscanner := bufio.NewScanner(r)\n\tvar queries []string\n\tvar currentQuery strings.Builder\n\tvar inSingleQuote bool\n\tvar inDoubleQuote bool\n\tvar inDollarQuote bool\n\tvar dollarTag string\n\tvar inMultiLineComment bool\n\n\tfor scanner.Scan() {\n\t\t// Check context cancellation\n\t\tselect {\n\t\tcase <-ctx.Done():\n\t\t\treturn nil, ctx.Err()\n\t\tdefault:\n\t\t}\n\n\t\tline := scanner.Text()\n\t\ti := 0\n\t\tlineLen := len(line)\n\n\t\tfor i < lineLen {\n\t\t\tch := line[i]\n\n\t\t\t// Handle multi-line comments\n\t\t\tif inMultiLineComment {\n\t\t\t\tif i+1 < lineLen && ch == '*' && line[i+1] == '/' {\n\t\t\t\t\tinMultiLineComment = false\n\t\t\t\t\tcurrentQuery.WriteString(\"*/\")\n\t\t\t\t\ti += 2\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t\tcurrentQuery.WriteByte(ch)\n\t\t\t\ti++\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\t// Handle dollar-quoted strings (PostgreSQL)\n\t\t\tif inDollarQuote {\n\t\t\t\tif ch == '$' {\n\t\t\t\t\t// Try to match the closing tag\n\t\t\t\t\tendTag := extractDollarTag(line[i:])\n\t\t\t\t\tif endTag == dollarTag {\n\t\t\t\t\t\tinDollarQuote = false\n\t\t\t\t\t\tcurrentQuery.WriteString(endTag)\n\t\t\t\t\t\ti += len(endTag)\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tcurrentQuery.WriteByte(ch)\n\t\t\t\ti++\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\t// Handle single-quoted strings\n\t\t\tif inSingleQuote {\n\t\t\t\tcurrentQuery.WriteByte(ch)\n\t\t\t\tif ch == '\\'' {\n\t\t\t\t\t// Check for escaped quote ''\n\t\t\t\t\tif i+1 < lineLen && line[i+1] == '\\'' {\n\t\t\t\t\t\tcurrentQuery.WriteByte('\\'')\n\t\t\t\t\t\ti += 2\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tinSingleQuote = false\n\t\t\t\t}\n\t\t\t\ti++\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\t// Handle double-quoted identifiers\n\t\t\tif inDoubleQuote {\n\t\t\t\tcurrentQuery.WriteByte(ch)\n\t\t\t\tif ch == '\"' {\n\t\t\t\t\t// Check for escaped quote \"\"\n\t\t\t\t\tif i+1 < lineLen && line[i+1] == '\"' {\n\t\t\t\t\t\tcurrentQuery.WriteByte('\"')\n\t\t\t\t\t\ti += 2\n\t\t\t\t\t\tcontinue\n\t\t\t\t\t}\n\t\t\t\t\tinDoubleQuote = false\n\t\t\t\t}\n\t\t\t\ti++\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\t// Check for single-line comment\n\t\t\tif i+1 < lineLen && ch == '-' && line[i+1] == '-' {\n\t\t\t\t// Rest of line is a comment\n\t\t\t\tcurrentQuery.WriteString(line[i:])\n\t\t\t\tbreak\n\t\t\t}\n\n\t\t\t// Check for multi-line comment start\n\t\t\tif i+1 < lineLen && ch == '/' && line[i+1] == '*' {\n\t\t\t\tinMultiLineComment = true\n\t\t\t\tcurrentQuery.WriteString(\"/*\")\n\t\t\t\ti += 2\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\t// Check for dollar quote start\n\t\t\tif ch == '$' {\n\t\t\t\ttag := extractDollarTag(line[i:])\n\t\t\t\tif tag != \"\" {\n\t\t\t\t\tinDollarQuote = true\n\t\t\t\t\tdollarTag = tag\n\t\t\t\t\tcurrentQuery.WriteString(tag)\n\t\t\t\t\ti += len(tag)\n\t\t\t\t\tcontinue\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Check for single quote\n\t\t\tif ch == '\\'' {\n\t\t\t\tinSingleQuote = true\n\t\t\t\tcurrentQuery.WriteByte(ch)\n\t\t\t\ti++\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\t// Check for double quote\n\t\t\tif ch == '\"' {\n\t\t\t\tinDoubleQuote = true\n\t\t\t\tcurrentQuery.WriteByte(ch)\n\t\t\t\ti++\n\t\t\t\tcontinue\n\t\t\t}\n\n\t\t\t// Check for semicolon (statement terminator)\n\t\t\tif ch == ';' {\n\t\t\t\tcurrentQuery.WriteByte(ch)\n\t\t\t\t// Check if there's a comment after the semicolon on the same line\n\t\t\t\ti++\n\t\t\t\tif i < lineLen {\n\t\t\t\t\t// Skip whitespace\n\t\t\t\t\tfor i < lineLen && (line[i] == ' ' || line[i] == '\\t') {\n\t\t\t\t\t\tcurrentQuery.WriteByte(line[i])\n\t\t\t\t\t\ti++\n\t\t\t\t\t}\n\t\t\t\t\t// If there's a comment, include it\n\t\t\t\t\tif i+1 < lineLen && line[i] == '-' && line[i+1] == '-' {\n\t\t\t\t\t\tcurrentQuery.WriteString(line[i:])\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tquery := strings.TrimSpace(currentQuery.String())\n\t\t\t\tif query != \"\" && query != \";\" {\n\t\t\t\t\tqueries = append(queries, query)\n\t\t\t\t}\n\t\t\t\tcurrentQuery.Reset()\n\t\t\t\tbreak // Move to next line\n\t\t\t}\n\n\t\t\t// Regular character\n\t\t\tcurrentQuery.WriteByte(ch)\n\t\t\ti++\n\t\t}\n\n\t\t// Add newline if we're building a query\n\t\tif currentQuery.Len() > 0 {\n\t\t\tcurrentQuery.WriteByte('\\n')\n\t\t}\n\t}\n\n\tif err := scanner.Err(); err != nil {\n\t\treturn nil, err\n\t}\n\n\t// Handle any remaining query\n\tquery := strings.TrimSpace(currentQuery.String())\n\tif query != \"\" && query != \";\" {\n\t\tqueries = append(queries, query)\n\t}\n\n\treturn queries, nil\n}\n\n// extractDollarTag extracts a dollar-quoted string tag from the beginning of s.\n// Returns empty string if no valid dollar tag is found.\n// Valid tags: $$ or $identifier$ where identifier contains only alphanumeric and underscore.\nfunc extractDollarTag(s string) string {\n\tif len(s) == 0 || s[0] != '$' {\n\t\treturn \"\"\n\t}\n\n\t// Find the closing $\n\tfor i := 1; i < len(s); i++ {\n\t\tif s[i] == '$' {\n\t\t\ttag := s[:i+1]\n\t\t\t// Validate tag content (only alphanumeric and underscore allowed between $)\n\t\t\ttagContent := tag[1 : len(tag)-1]\n\t\t\tif isValidDollarTagContent(tagContent) {\n\t\t\t\treturn tag\n\t\t\t}\n\t\t\treturn \"\"\n\t\t}\n\t\t// If we hit a character that's not allowed in a tag, it's not a dollar quote\n\t\tif !isValidDollarTagChar(s[i]) {\n\t\t\treturn \"\"\n\t\t}\n\t}\n\n\treturn \"\"\n}\n\n// isValidDollarTagContent returns true if s contains only valid characters for a dollar tag.\nfunc isValidDollarTagContent(s string) bool {\n\tif s == \"\" {\n\t\treturn true // $$ is valid\n\t}\n\tfor _, ch := range s {\n\t\tif !isValidDollarTagChar(byte(ch)) {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn true\n}\n\n// isValidDollarTagChar returns true if ch is a valid character in a dollar tag.\n// Valid characters are alphanumeric and underscore.\nfunc isValidDollarTagChar(ch byte) bool {\n\treturn (ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z') || (ch >= '0' && ch <= '9') || ch == '_'\n}\n"
  },
  {
    "path": "internal/sql/sqlfile/split_test.go",
    "content": "package sqlfile\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"testing\"\n)\n\nfunc TestSplit(t *testing.T) {\n\ttestdataDir := \"testdata\"\n\n\tentries, err := os.ReadDir(testdataDir)\n\tif err != nil {\n\t\tt.Fatalf(\"Failed to read testdata directory: %v\", err)\n\t}\n\n\tfor _, entry := range entries {\n\t\tif !entry.IsDir() {\n\t\t\tcontinue\n\t\t}\n\n\t\ttestName := entry.Name()\n\t\tt.Run(testName, func(t *testing.T) {\n\t\t\ttestDir := filepath.Join(testdataDir, testName)\n\n\t\t\t// Read input file\n\t\t\tinputPath := filepath.Join(testDir, \"input.sql\")\n\t\t\tinputData, err := os.ReadFile(inputPath)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatalf(\"Failed to read input file: %v\", err)\n\t\t\t}\n\n\t\t\t// Read expected output files\n\t\t\tvar expected []string\n\t\t\tfor i := 1; ; i++ {\n\t\t\t\toutputPath := filepath.Join(testDir, fmt.Sprintf(\"output_%d.sql\", i))\n\t\t\t\tdata, err := os.ReadFile(outputPath)\n\t\t\t\tif err != nil {\n\t\t\t\t\tif os.IsNotExist(err) {\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t\tt.Fatalf(\"Failed to read output file %s: %v\", outputPath, err)\n\t\t\t\t}\n\t\t\t\texpected = append(expected, string(data))\n\t\t\t}\n\n\t\t\t// Run Split\n\t\t\tctx := context.Background()\n\t\t\treader := strings.NewReader(string(inputData))\n\n\t\t\tgot, err := Split(ctx, reader)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatalf(\"Split() error = %v\", err)\n\t\t\t}\n\n\t\t\t// Compare results\n\t\t\tif len(got) != len(expected) {\n\t\t\t\tt.Errorf(\"Split() got %d queries, expected %d\", len(got), len(expected))\n\t\t\t\tt.Logf(\"Got: %v\", got)\n\t\t\t\tt.Logf(\"Expected: %v\", expected)\n\t\t\t\treturn\n\t\t\t}\n\n\t\t\tfor i := range got {\n\t\t\t\tif got[i] != expected[i] {\n\t\t\t\t\tt.Errorf(\"Query %d:\\ngot:      %q\\nexpected: %q\", i, got[i], expected[i])\n\t\t\t\t}\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc TestSplitContextCancellation(t *testing.T) {\n\tctx, cancel := context.WithCancel(context.Background())\n\tcancel() // Cancel immediately\n\n\treader := strings.NewReader(\"SELECT * FROM users;\")\n\t_, err := Split(ctx, reader)\n\n\tif err != context.Canceled {\n\t\tt.Errorf(\"Expected context.Canceled error, got %v\", err)\n\t}\n}\n\nfunc TestExtractDollarTag(t *testing.T) {\n\ttests := []struct {\n\t\tname     string\n\t\tinput    string\n\t\texpected string\n\t}{\n\t\t{\n\t\t\tname:     \"empty dollar quote\",\n\t\t\tinput:    \"$$\",\n\t\t\texpected: \"$$\",\n\t\t},\n\t\t{\n\t\t\tname:     \"simple tag\",\n\t\t\tinput:    \"$tag$\",\n\t\t\texpected: \"$tag$\",\n\t\t},\n\t\t{\n\t\t\tname:     \"tag with numbers\",\n\t\t\tinput:    \"$tag123$\",\n\t\t\texpected: \"$tag123$\",\n\t\t},\n\t\t{\n\t\t\tname:     \"tag with underscore\",\n\t\t\tinput:    \"$my_tag$\",\n\t\t\texpected: \"$my_tag$\",\n\t\t},\n\t\t{\n\t\t\tname:     \"not a dollar quote (no closing)\",\n\t\t\tinput:    \"$tag\",\n\t\t\texpected: \"\",\n\t\t},\n\t\t{\n\t\t\tname:     \"not a dollar quote (invalid char)\",\n\t\t\tinput:    \"$tag-name$\",\n\t\t\texpected: \"\",\n\t\t},\n\t\t{\n\t\t\tname:     \"empty string\",\n\t\t\tinput:    \"\",\n\t\t\texpected: \"\",\n\t\t},\n\t\t{\n\t\t\tname:     \"no dollar sign\",\n\t\t\tinput:    \"tag\",\n\t\t\texpected: \"\",\n\t\t},\n\t\t{\n\t\t\tname:     \"tag with extra content\",\n\t\t\tinput:    \"$tag$rest of string\",\n\t\t\texpected: \"$tag$\",\n\t\t},\n\t}\n\n\tfor _, tt := range tests {\n\t\tt.Run(tt.name, func(t *testing.T) {\n\t\t\tgot := extractDollarTag(tt.input)\n\t\t\tif got != tt.expected {\n\t\t\t\tt.Errorf(\"extractDollarTag(%q) = %q, expected %q\", tt.input, got, tt.expected)\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "internal/sql/sqlfile/testdata/complex_query/input.sql",
    "content": "-- Create a user\nINSERT INTO users (name, email) VALUES ('John''s', 'john@example.com'); -- comment;\n\n/* Multi-line\n   comment with ; */\nCREATE FUNCTION test() RETURNS text AS $$\nBEGIN\n    -- Internal comment\n    RETURN 'test;value';\nEND;\n$$ LANGUAGE plpgsql;\n\nSELECT \"weird;column\" FROM users WHERE name = 'test;value';"
  },
  {
    "path": "internal/sql/sqlfile/testdata/complex_query/output_1.sql",
    "content": "-- Create a user\nINSERT INTO users (name, email) VALUES ('John''s', 'john@example.com'); -- comment;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/complex_query/output_2.sql",
    "content": "/* Multi-line\n   comment with ; */\nCREATE FUNCTION test() RETURNS text AS $$\nBEGIN\n    -- Internal comment\n    RETURN 'test;value';\nEND;\n$$ LANGUAGE plpgsql;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/complex_query/output_3.sql",
    "content": "SELECT \"weird;column\" FROM users WHERE name = 'test;value';"
  },
  {
    "path": "internal/sql/sqlfile/testdata/dollar_quote_with_newlines/input.sql",
    "content": "SELECT $$Line 1\nLine 2; with semicolon\nLine 3$$;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/dollar_quote_with_newlines/output_1.sql",
    "content": "SELECT $$Line 1\nLine 2; with semicolon\nLine 3$$;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/dollar_quoted_function/input.sql",
    "content": "CREATE FUNCTION foo() RETURNS text AS $$\nBEGIN\n    RETURN 'test;';\nEND;\n$$ LANGUAGE plpgsql;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/dollar_quoted_function/output_1.sql",
    "content": "CREATE FUNCTION foo() RETURNS text AS $$\nBEGIN\n    RETURN 'test;';\nEND;\n$$ LANGUAGE plpgsql;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/dollar_quoted_string/input.sql",
    "content": "SELECT $$This has a ; semicolon$$;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/dollar_quoted_string/output_1.sql",
    "content": "SELECT $$This has a ; semicolon$$;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/double_quoted_identifier/input.sql",
    "content": "SELECT \"column;name\" FROM \"table;name\";"
  },
  {
    "path": "internal/sql/sqlfile/testdata/double_quoted_identifier/output_1.sql",
    "content": "SELECT \"column;name\" FROM \"table;name\";"
  },
  {
    "path": "internal/sql/sqlfile/testdata/empty_input/input.sql",
    "content": ""
  },
  {
    "path": "internal/sql/sqlfile/testdata/escaped_double_quotes/input.sql",
    "content": "SELECT \"column\"\"name\" FROM users;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/escaped_double_quotes/output_1.sql",
    "content": "SELECT \"column\"\"name\" FROM users;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/escaped_quotes/input.sql",
    "content": "INSERT INTO users (name) VALUES ('It''s a test');"
  },
  {
    "path": "internal/sql/sqlfile/testdata/escaped_quotes/output_1.sql",
    "content": "INSERT INTO users (name) VALUES ('It''s a test');"
  },
  {
    "path": "internal/sql/sqlfile/testdata/last_query_no_semicolon/input.sql",
    "content": "SELECT * FROM users;\nINSERT INTO posts (title) VALUES ('Test')"
  },
  {
    "path": "internal/sql/sqlfile/testdata/last_query_no_semicolon/output_1.sql",
    "content": "SELECT * FROM users;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/last_query_no_semicolon/output_2.sql",
    "content": "INSERT INTO posts (title) VALUES ('Test')"
  },
  {
    "path": "internal/sql/sqlfile/testdata/multi_line_comment/input.sql",
    "content": "SELECT * FROM users /* this is\na multi-line comment */;\nSELECT * FROM posts;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/multi_line_comment/output_1.sql",
    "content": "SELECT * FROM users /* this is\na multi-line comment */;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/multi_line_comment/output_2.sql",
    "content": "SELECT * FROM posts;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/multi_line_comment_with_semicolon/input.sql",
    "content": "SELECT * FROM users /* this has ; in it */;\nSELECT * FROM posts;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/multi_line_comment_with_semicolon/output_1.sql",
    "content": "SELECT * FROM users /* this has ; in it */;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/multi_line_comment_with_semicolon/output_2.sql",
    "content": "SELECT * FROM posts;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/multiple_queries/input.sql",
    "content": "SELECT * FROM users;\nINSERT INTO users (name) VALUES ('John');\nDELETE FROM users WHERE id = 1;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/multiple_queries/output_1.sql",
    "content": "SELECT * FROM users;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/multiple_queries/output_2.sql",
    "content": "INSERT INTO users (name) VALUES ('John');"
  },
  {
    "path": "internal/sql/sqlfile/testdata/multiple_queries/output_3.sql",
    "content": "DELETE FROM users WHERE id = 1;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/nested_dollar_quotes/input.sql",
    "content": "SELECT $outer$This contains $inner$nested; quote$inner$;$outer$;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/nested_dollar_quotes/output_1.sql",
    "content": "SELECT $outer$This contains $inner$nested; quote$inner$;$outer$;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/no_trailing_semicolon/input.sql",
    "content": "SELECT * FROM users"
  },
  {
    "path": "internal/sql/sqlfile/testdata/no_trailing_semicolon/output_1.sql",
    "content": "SELECT * FROM users"
  },
  {
    "path": "internal/sql/sqlfile/testdata/only_semicolons/input.sql",
    "content": ";;;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/semicolon_in_string/input.sql",
    "content": "INSERT INTO users (name) VALUES ('John; DROP TABLE users;');"
  },
  {
    "path": "internal/sql/sqlfile/testdata/semicolon_in_string/output_1.sql",
    "content": "INSERT INTO users (name) VALUES ('John; DROP TABLE users;');"
  },
  {
    "path": "internal/sql/sqlfile/testdata/single_line_comment/input.sql",
    "content": "SELECT * FROM users; -- this is a comment\nSELECT * FROM posts;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/single_line_comment/output_1.sql",
    "content": "SELECT * FROM users; -- this is a comment"
  },
  {
    "path": "internal/sql/sqlfile/testdata/single_line_comment/output_2.sql",
    "content": "SELECT * FROM posts;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/single_line_comment_with_semicolon/input.sql",
    "content": "SELECT * FROM users; -- this has a ; in it\nSELECT * FROM posts;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/single_line_comment_with_semicolon/output_1.sql",
    "content": "SELECT * FROM users; -- this has a ; in it"
  },
  {
    "path": "internal/sql/sqlfile/testdata/single_line_comment_with_semicolon/output_2.sql",
    "content": "SELECT * FROM posts;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/single_query/input.sql",
    "content": "SELECT * FROM users;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/single_query/output_1.sql",
    "content": "SELECT * FROM users;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/tagged_dollar_quoted_string/input.sql",
    "content": "SELECT $tag$This has a ; semicolon$tag$;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/tagged_dollar_quoted_string/output_1.sql",
    "content": "SELECT $tag$This has a ; semicolon$tag$;"
  },
  {
    "path": "internal/sql/sqlfile/testdata/whitespace_only/input.sql",
    "content": "\n\n"
  },
  {
    "path": "internal/sql/sqlpath/read.go",
    "content": "package sqlpath\n\nimport (\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/migrations\"\n)\n\n// Return a list of SQL files in the listed paths.\n//\n// Only includes files ending in .sql. Omits hidden files, directories, and\n// down migrations.\n\n// If a path contains *, ?, [, or ], treat the path as a pattern and expand it\n// filepath.Glob.\nfunc Glob(patterns []string) ([]string, error) {\n\tvar files, paths []string\n\tfor _, pattern := range patterns {\n\t\tif strings.ContainsAny(pattern, \"*?[]\") {\n\t\t\tmatches, err := filepath.Glob(pattern)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\t// if len(matches) == 0 {\n\t\t\t// \tslog.Warn(\"zero files matched\", \"pattern\", pattern)\n\t\t\t// }\n\t\t\tpaths = append(paths, matches...)\n\t\t} else {\n\t\t\tpaths = append(paths, pattern)\n\t\t}\n\t}\n\tfor _, path := range paths {\n\t\tf, err := os.Stat(path)\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"path error: %w\", err)\n\t\t}\n\t\tif f.IsDir() {\n\t\t\tlisting, err := os.ReadDir(path)\n\t\t\tif err != nil {\n\t\t\t\treturn nil, err\n\t\t\t}\n\t\t\tfor _, f := range listing {\n\t\t\t\tfiles = append(files, filepath.Join(path, f.Name()))\n\t\t\t}\n\t\t} else {\n\t\t\tfiles = append(files, filepath.Clean(path))\n\t\t}\n\t}\n\tvar sqlFiles []string\n\tfor _, file := range files {\n\t\tif !strings.HasSuffix(file, \".sql\") {\n\t\t\tcontinue\n\t\t}\n\t\tif strings.HasPrefix(filepath.Base(file), \".\") {\n\t\t\tcontinue\n\t\t}\n\t\tif migrations.IsDown(filepath.Base(file)) {\n\t\t\tcontinue\n\t\t}\n\t\tsqlFiles = append(sqlFiles, file)\n\t}\n\treturn sqlFiles, nil\n}\n"
  },
  {
    "path": "internal/sql/sqlpath/read_test.go",
    "content": "package sqlpath\n\nimport (\n\t\"fmt\"\n\t\"path/filepath\"\n\t\"strings\"\n\t\"testing\"\n\n\t\"github.com/google/go-cmp/cmp\"\n)\n\n// Returns a list of SQL files from given paths.\nfunc TestReturnsListOfSQLFiles(t *testing.T) {\n\t// Arrange\n\tpaths := []string{\"testdata/file1.sql\", \"testdata/file2.sql\"}\n\n\t// Act\n\tresult, err := Glob(paths)\n\n\t// Assert\n\texpected := []string{filepath.Join(\"testdata\", \"file1.sql\"), filepath.Join(\"testdata\", \"file2.sql\")}\n\tif !cmp.Equal(result, expected) {\n\t\tt.Errorf(\"Expected %v, but got %v, %v\", expected, result, cmp.Diff(expected, result))\n\t}\n\tif err != nil {\n\t\tt.Errorf(\"Expected no error, but got %v\", err)\n\t}\n}\n\nfunc TestReturnsNilListWhenNoSQLFilesFound(t *testing.T) {\n\t// Arrange\n\tpaths := []string{\"testdata/extra.txt\"}\n\n\t// Act\n\tresult, err := Glob(paths)\n\t// Assert\n\tvar expected []string\n\tif !cmp.Equal(result, expected) {\n\t\tt.Errorf(\"Expected %v, but got %v, %v\", expected, result, cmp.Diff(expected, result))\n\t}\n\tif err != nil {\n\t\tt.Errorf(\"Expected no error, but got %v\", err)\n\t}\n}\n\nfunc TestIgnoresHiddenFilesWhenSearchingForSQLFiles(t *testing.T) {\n\t// Arrange\n\tpaths := []string{\"testdata/.hidden.sql\"}\n\n\t// Act\n\tresult, err := Glob(paths)\n\n\t// Assert\n\tvar expected []string\n\tif !cmp.Equal(result, expected) {\n\t\tt.Errorf(\"Expected %v, but got %v\", expected, result)\n\t}\n\tif err != nil {\n\t\tt.Errorf(\"Expected no error, but got %v\", err)\n\t}\n}\n\nfunc TestIgnoresNonSQLFilesWhenSearchingForSQLFiles(t *testing.T) {\n\t// Arrange\n\tpaths := []string{\"testdata/extra.txt\"}\n\n\t// Act\n\tresult, err := Glob(paths)\n\n\t// Assert\n\tvar expected []string\n\tif !cmp.Equal(result, expected) {\n\t\tt.Errorf(\"Expected %v, but got %v\", expected, result)\n\t}\n\tif err != nil {\n\t\tt.Errorf(\"Expected no error, but got %v\", err)\n\t}\n}\n\nfunc TestExcludesSQLFilesEndingWithDownSQLWhenSearchingForSQLFiles(t *testing.T) {\n\t// Arrange\n\tpaths := []string{\"testdata/file1.sql\", \"testdata/file3.down.sql\"}\n\n\t// Act\n\tresult, err := Glob(paths)\n\n\t// Assert\n\texpected := []string{filepath.Join(\"testdata\", \"file1.sql\")}\n\tif !cmp.Equal(result, expected) {\n\t\tt.Errorf(\"Expected %v, but got %v\", expected, result)\n\t}\n\tif err != nil {\n\t\tt.Errorf(\"Expected no error, but got %v\", err)\n\t}\n}\n\nfunc TestReturnsErrorWhenPathDoesNotExist(t *testing.T) {\n\t// Arrange\n\tpaths := []string{\"non_existent_path\"}\n\n\t// Act\n\tresult, err := Glob(paths)\n\n\t// Assert\n\tvar expected []string\n\tif !cmp.Equal(result, expected) {\n\t\tt.Errorf(\"Expected %v, but got %v\", expected, result)\n\t}\n\tif err == nil {\n\t\tt.Errorf(\"Expected an error, but got nil\")\n\t} else {\n\t\texpectedError := fmt.Errorf(\"path error:\")\n\t\tif !strings.HasPrefix(err.Error(), expectedError.Error()) {\n\t\t\tt.Errorf(\"Expected error %v, but got %v\", expectedError, err)\n\t\t}\n\t}\n}\n\nfunc TestReturnsErrorWhenDirectoryCannotBeRead(t *testing.T) {\n\t// Arrange\n\tpaths := []string{\"testdata/unreadable\"}\n\n\t// Act\n\tresult, err := Glob(paths)\n\n\t// Assert\n\tvar expected []string\n\tif !cmp.Equal(result, expected) {\n\t\tt.Errorf(\"Expected %v, but got %v\", expected, result)\n\t}\n\tif err == nil {\n\t\tt.Errorf(\"Expected an error, but got nil\")\n\t} else {\n\t\texpectedError := fmt.Errorf(\"path error:\")\n\t\tif !strings.HasPrefix(err.Error(), expectedError.Error()) {\n\t\t\tt.Errorf(\"Expected error %v, but got %v\", expectedError, err)\n\t\t}\n\t}\n}\n\nfunc TestDoesNotIncludesSQLFilesWithUppercaseExtension(t *testing.T) {\n\t// Arrange\n\tpaths := []string{\"testdata/file4.SQL\"}\n\n\t// Act\n\tresult, err := Glob(paths)\n\n\t// Assert\n\tvar expected []string\n\tif !cmp.Equal(result, expected) {\n\t\tt.Errorf(\"Expected %v, but got %v\", expected, result)\n\t}\n\tif err != nil {\n\t\tt.Errorf(\"Expected no error, but got %v\", err)\n\t}\n}\n\nfunc TestNotIncludesHiddenFilesAnyPath(t *testing.T) {\n\t// Arrange\n\tpaths := []string{\n\t\t\"./testdata/.hiddendir/file1.sql\", // pass\n\t\t\"./testdata/.hidden.sql\",          // skip\n\t}\n\n\t// Act\n\tresult, err := Glob(paths)\n\n\t// Assert\n\texpected := []string{filepath.Join(\"testdata\", \".hiddendir\", \"file1.sql\")}\n\tif !cmp.Equal(result, expected) {\n\t\tt.Errorf(\"Expected %v, but got %v\", expected, result)\n\t}\n\tif err != nil {\n\t\tt.Errorf(\"Expected no error, but got %v\", err)\n\t}\n}\n\nfunc TestFollowSymlinks(t *testing.T) {\n\t// Arrange\n\tpaths := []string{\"testdata/symlink\", \"testdata/file1.symlink.sql\"}\n\n\t// Act\n\tresult, err := Glob(paths)\n\n\t// Assert\n\texpected := []string{\n\t\tfilepath.Join(\"testdata\", \"symlink\", \"file1.sql\"),\n\t\tfilepath.Join(\"testdata\", \"symlink\", \"file1.symlink.sql\"),\n\t\tfilepath.Join(\"testdata\", \"symlink\", \"file2.sql\"),\n\t\tfilepath.Join(\"testdata\", \"file1.symlink.sql\"),\n\t}\n\tif !cmp.Equal(result, expected) {\n\t\tt.Errorf(\"Expected %v, but got %v\", expected, result)\n\t}\n\tif err != nil {\n\t\tt.Errorf(\"Expected no error, but got %v\", err)\n\t}\n}\n\nfunc TestGlobPattern(t *testing.T) {\n\t// Arrange\n\ttests := []struct {\n\t\tpattern  string\n\t\texpected []string\n\t}{\n\t\t{\n\t\t\tpattern: \"testdata/glob/*/queries\",\n\t\t\texpected: []string{\n\t\t\t\tfilepath.Join(\"testdata\", \"glob\", \"sub1\", \"queries\", \"file1.sql\"),\n\t\t\t\tfilepath.Join(\"testdata\", \"glob\", \"sub2\", \"queries\", \"file2.sql\"),\n\t\t\t\tfilepath.Join(\"testdata\", \"glob\", \"sub3\", \"queries\", \"file3.sql\"),\n\t\t\t\tfilepath.Join(\"testdata\", \"glob\", \"sub3\", \"queries\", \"file4.sql\"),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tpattern: \"testdata/glob/sub3/queries/file?.sql\",\n\t\t\texpected: []string{\n\t\t\t\tfilepath.Join(\"testdata\", \"glob\", \"sub3\", \"queries\", \"file3.sql\"),\n\t\t\t\tfilepath.Join(\"testdata\", \"glob\", \"sub3\", \"queries\", \"file4.sql\"),\n\t\t\t},\n\t\t},\n\t\t{\n\t\t\tpattern: \"testdata/glob/sub3/queries/file[1-5].sql\",\n\t\t\texpected: []string{\n\t\t\t\tfilepath.Join(\"testdata\", \"glob\", \"sub3\", \"queries\", \"file3.sql\"),\n\t\t\t\tfilepath.Join(\"testdata\", \"glob\", \"sub3\", \"queries\", \"file4.sql\"),\n\t\t\t},\n\t\t},\n\t}\n\n\tfor _, test := range tests {\n\t\t// Act\n\t\tresult, err := Glob([]string{test.pattern})\n\n\t\t// Assert\n\t\tif !cmp.Equal(result, test.expected) {\n\t\t\tt.Errorf(\"Pattern %v: Expected %v, but got %v\", test.pattern, test.expected, result)\n\t\t}\n\t\tif err != nil {\n\t\t\tt.Errorf(\"Pattern %v: Expected no error, but got %v\", test.pattern, err)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sql/sqlpath/testdata/.hidden.sql",
    "content": ""
  },
  {
    "path": "internal/sql/sqlpath/testdata/.hiddendir/file1.sql",
    "content": ""
  },
  {
    "path": "internal/sql/sqlpath/testdata/extra.txt",
    "content": ""
  },
  {
    "path": "internal/sql/sqlpath/testdata/file1.sql",
    "content": ""
  },
  {
    "path": "internal/sql/sqlpath/testdata/file2.sql",
    "content": ""
  },
  {
    "path": "internal/sql/sqlpath/testdata/file3.down.sql",
    "content": ""
  },
  {
    "path": "internal/sql/sqlpath/testdata/file4.SQL",
    "content": ""
  },
  {
    "path": "internal/sql/sqlpath/testdata/glob/sub1/queries/file1.sql",
    "content": ""
  },
  {
    "path": "internal/sql/sqlpath/testdata/glob/sub2/queries/file2.sql",
    "content": ""
  },
  {
    "path": "internal/sql/sqlpath/testdata/glob/sub3/queries/file3.sql",
    "content": ""
  },
  {
    "path": "internal/sql/sqlpath/testdata/glob/sub3/queries/file4.sql",
    "content": ""
  },
  {
    "path": "internal/sql/sqlpath/testdata/subdir/file2.sql",
    "content": ""
  },
  {
    "path": "internal/sql/validate/cmd.go",
    "content": "package validate\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/metadata\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/named\"\n)\n\nfunc validateCopyfrom(n ast.Node) error {\n\tstmt, ok := n.(*ast.InsertStmt)\n\tif !ok {\n\t\treturn errors.New(\":copyfrom requires an INSERT INTO statement\")\n\t}\n\tif stmt.OnConflictClause != nil {\n\t\treturn errors.New(\":copyfrom is not compatible with ON CONFLICT\")\n\t}\n\tif stmt.WithClause != nil {\n\t\treturn errors.New(\":copyfrom is not compatible with WITH clauses\")\n\t}\n\tif stmt.ReturningList != nil && len(stmt.ReturningList.Items) > 0 {\n\t\treturn errors.New(\":copyfrom is not compatible with RETURNING\")\n\t}\n\tsel, ok := stmt.SelectStmt.(*ast.SelectStmt)\n\tif !ok {\n\t\treturn nil\n\t}\n\tif len(sel.FromClause.Items) > 0 {\n\t\treturn errors.New(\":copyfrom is not compatible with INSERT INTO ... SELECT\")\n\t}\n\tif sel.ValuesLists == nil || len(sel.ValuesLists.Items) != 1 {\n\t\treturn errors.New(\":copyfrom requires exactly one example row to be inserted\")\n\t}\n\tsublist, ok := sel.ValuesLists.Items[0].(*ast.List)\n\tif !ok {\n\t\treturn nil\n\t}\n\tfor _, v := range sublist.Items {\n\t\t_, ok := v.(*ast.ParamRef)\n\t\tok = ok || named.IsParamFunc(v)\n\t\tok = ok || named.IsParamSign(v)\n\t\tif !ok {\n\t\t\treturn errors.New(\":copyfrom doesn't support non-parameter values\")\n\t\t}\n\t}\n\treturn nil\n}\n\nfunc validateBatch(n ast.Node) error {\n\tfuncs := astutils.Search(n, named.IsParamFunc)\n\tparams := astutils.Search(n, named.IsParamSign)\n\targs := astutils.Search(n, func(n ast.Node) bool {\n\t\t_, ok := n.(*ast.ParamRef)\n\t\treturn ok\n\t})\n\tif (len(params.Items) + len(funcs.Items) + len(args.Items)) == 0 {\n\t\treturn errors.New(\":batch* commands require parameters\")\n\t}\n\treturn nil\n}\n\nfunc Cmd(n ast.Node, name, cmd string) error {\n\tif cmd == metadata.CmdCopyFrom {\n\t\treturn validateCopyfrom(n)\n\t}\n\tif (cmd == metadata.CmdBatchExec || cmd == metadata.CmdBatchMany) || cmd == metadata.CmdBatchOne {\n\t\tif err := validateBatch(n); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\tif !(cmd == metadata.CmdMany || cmd == metadata.CmdOne || cmd == metadata.CmdBatchMany || cmd == metadata.CmdBatchOne) {\n\t\treturn nil\n\t}\n\tvar list *ast.List\n\tswitch stmt := n.(type) {\n\tcase *ast.SelectStmt:\n\t\treturn nil\n\tcase *ast.DeleteStmt:\n\t\tlist = stmt.ReturningList\n\tcase *ast.InsertStmt:\n\t\tlist = stmt.ReturningList\n\tcase *ast.UpdateStmt:\n\t\tlist = stmt.ReturningList\n\tdefault:\n\t\treturn nil\n\t}\n\tif list == nil || len(list.Items) == 0 {\n\t\treturn fmt.Errorf(\"query %q specifies parameter %q without containing a RETURNING clause\", name, cmd)\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "internal/sql/validate/func_call.go",
    "content": "package validate\n\nimport (\n\t\"errors\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/config\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\ntype funcCallVisitor struct {\n\tcatalog  *catalog.Catalog\n\tsettings config.CombinedSettings\n\terr      error\n}\n\nfunc (v *funcCallVisitor) Visit(node ast.Node) astutils.Visitor {\n\tif v.err != nil {\n\t\treturn nil\n\t}\n\n\tcall, ok := node.(*ast.FuncCall)\n\tif !ok {\n\t\treturn v\n\t}\n\tfn := call.Func\n\tif fn == nil {\n\t\treturn v\n\t}\n\n\tif fn.Schema == \"sqlc\" {\n\t\treturn nil\n\t}\n\n\tfun, err := v.catalog.ResolveFuncCall(call)\n\tif fun != nil {\n\t\treturn v\n\t}\n\tif errors.Is(err, sqlerr.NotFound) && !v.settings.Package.StrictFunctionChecks {\n\t\treturn v\n\t}\n\tv.err = err\n\treturn nil\n}\n\nfunc FuncCall(c *catalog.Catalog, cs config.CombinedSettings, n ast.Node) error {\n\tvisitor := funcCallVisitor{catalog: c, settings: cs}\n\tastutils.Walk(&visitor, n)\n\treturn visitor.err\n}\n"
  },
  {
    "path": "internal/sql/validate/in.go",
    "content": "package validate\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\ntype inVisitor struct {\n\tcatalog *catalog.Catalog\n\terr     error\n}\n\nfunc (v *inVisitor) Visit(node ast.Node) astutils.Visitor {\n\tif v.err != nil {\n\t\treturn nil\n\t}\n\n\tin, ok := node.(*ast.In)\n\tif !ok {\n\t\treturn v\n\t}\n\n\t// Validate that sqlc.slice in an IN statement is the only arg, eg:\n\t//    id IN (sqlc.slice(\"ids\"))       -- GOOD\n\t//    id in (0, 1, sqlc.slice(\"ids\")) -- BAD\n\n\tif len(in.List) <= 1 {\n\t\treturn v\n\t}\n\n\tfor _, n := range in.List {\n\t\tcall, ok := n.(*ast.FuncCall)\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\t\tfn := call.Func\n\t\tif fn == nil {\n\t\t\tcontinue\n\t\t}\n\n\t\tif fn.Schema == \"sqlc\" && fn.Name == \"slice\" {\n\t\t\tvar inExpr, sliceArg string\n\n\t\t\t// determine inExpr\n\t\t\tswitch n := in.Expr.(type) {\n\t\t\tcase *ast.ColumnRef:\n\t\t\t\tinExpr = n.Name\n\t\t\tdefault:\n\t\t\t\tinExpr = \"...\"\n\t\t\t}\n\n\t\t\t// determine sliceArg\n\t\t\tif len(call.Args.Items) == 1 {\n\t\t\t\tswitch n := call.Args.Items[0].(type) {\n\t\t\t\tcase *ast.A_Const:\n\t\t\t\t\tif str, ok := n.Val.(*ast.String); ok {\n\t\t\t\t\t\tsliceArg = \"\\\"\" + str.Str + \"\\\"\"\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsliceArg = \"?\"\n\t\t\t\t\t}\n\t\t\t\tcase *ast.ColumnRef:\n\t\t\t\t\tsliceArg = n.Name\n\t\t\t\tdefault:\n\t\t\t\t\t// impossible, validate.FuncCall should have caught this\n\t\t\t\t\tsliceArg = \"...\"\n\t\t\t\t}\n\t\t\t}\n\t\t\tv.err = &sqlerr.Error{\n\t\t\t\tMessage:  fmt.Sprintf(\"expected '%s IN' expr to consist only of sqlc.slice(%s); eg \", inExpr, sliceArg),\n\t\t\t\tLocation: call.Pos(),\n\t\t\t}\n\t\t}\n\t}\n\n\treturn v\n}\n\nfunc In(c *catalog.Catalog, n ast.Node) error {\n\tvisitor := inVisitor{catalog: c}\n\tastutils.Walk(&visitor, n)\n\treturn visitor.err\n}\n"
  },
  {
    "path": "internal/sql/validate/insert_stmt.go",
    "content": "package validate\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\nfunc InsertStmt(stmt *ast.InsertStmt) error {\n\tsel, ok := stmt.SelectStmt.(*ast.SelectStmt)\n\tif !ok {\n\t\treturn nil\n\t}\n\tif sel.ValuesLists == nil {\n\t\treturn nil\n\t}\n\tif len(sel.ValuesLists.Items) != 1 {\n\t\treturn nil\n\t}\n\tsublist, ok := sel.ValuesLists.Items[0].(*ast.List)\n\tif !ok {\n\t\treturn nil\n\t}\n\n\tcolsLen := len(stmt.Cols.Items)\n\tvalsLen := len(sublist.Items)\n\tswitch {\n\tcase colsLen > valsLen:\n\t\treturn &sqlerr.Error{\n\t\t\tCode:    \"42601\",\n\t\t\tMessage: \"INSERT has more target columns than expressions\",\n\t\t}\n\tcase colsLen < valsLen:\n\t\treturn &sqlerr.Error{\n\t\t\tCode:    \"42601\",\n\t\t\tMessage: \"INSERT has more expressions than target columns\",\n\t\t}\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "internal/sql/validate/param_ref.go",
    "content": "package validate\n\nimport (\n\t\"errors\"\n\t\"fmt\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\nfunc ParamRef(n ast.Node) (map[int]bool, bool, error) {\n\tvar allrefs []*ast.ParamRef\n\tvar dollar bool\n\tvar nodollar bool\n\t// Find all parameter references\n\tastutils.Walk(astutils.VisitorFunc(func(node ast.Node) {\n\t\tswitch n := node.(type) {\n\t\tcase *ast.ParamRef:\n\t\t\tref := node.(*ast.ParamRef)\n\t\t\tif ref.Dollar {\n\t\t\t\tdollar = true\n\t\t\t} else {\n\t\t\t\tnodollar = true\n\t\t\t}\n\t\t\tallrefs = append(allrefs, n)\n\t\t}\n\t}), n)\n\tif dollar && nodollar {\n\t\treturn nil, false, errors.New(\"can not mix $1 format with ? format\")\n\t}\n\n\tseen := map[int]bool{}\n\tfor _, r := range allrefs {\n\t\tif r.Number > 0 {\n\t\t\tseen[r.Number] = true\n\t\t}\n\t}\n\tfor i := 1; i <= len(seen); i += 1 {\n\t\tif _, ok := seen[i]; !ok {\n\t\t\treturn seen, !nodollar, &sqlerr.Error{\n\t\t\t\tCode:    \"42P18\",\n\t\t\t\tMessage: fmt.Sprintf(\"could not determine data type of parameter $%d\", i),\n\t\t\t}\n\t\t}\n\t}\n\treturn seen, !nodollar, nil\n}\n"
  },
  {
    "path": "internal/sql/validate/param_style.go",
    "content": "package validate\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlerr\"\n)\n\ntype sqlcFuncVisitor struct {\n\terr error\n}\n\nfunc (v *sqlcFuncVisitor) Visit(node ast.Node) astutils.Visitor {\n\tif v.err != nil {\n\t\treturn nil\n\t}\n\n\tcall, ok := node.(*ast.FuncCall)\n\tif !ok {\n\t\treturn v\n\t}\n\tfn := call.Func\n\tif fn == nil {\n\t\treturn v\n\t}\n\n\t// Custom validation for sqlc.arg, sqlc.narg and sqlc.slice\n\t// TODO: Replace this once type-checking is implemented\n\tif fn.Schema == \"sqlc\" {\n\t\tif !(fn.Name == \"arg\" || fn.Name == \"narg\" || fn.Name == \"slice\" || fn.Name == \"embed\") {\n\t\t\tv.err = sqlerr.FunctionNotFound(\"sqlc.\" + fn.Name)\n\t\t\treturn nil\n\t\t}\n\n\t\tif len(call.Args.Items) != 1 {\n\t\t\tv.err = &sqlerr.Error{\n\t\t\t\tMessage:  fmt.Sprintf(\"expected 1 parameter to sqlc.%s; got %d\", fn.Name, len(call.Args.Items)),\n\t\t\t\tLocation: call.Pos(),\n\t\t\t}\n\t\t\treturn nil\n\t\t}\n\n\t\tswitch n := call.Args.Items[0].(type) {\n\t\tcase *ast.A_Const:\n\t\tcase *ast.ColumnRef:\n\t\tdefault:\n\t\t\tv.err = &sqlerr.Error{\n\t\t\t\tMessage:  fmt.Sprintf(\"expected parameter to sqlc.%s to be string or reference; got %T\", fn.Name, n),\n\t\t\t\tLocation: call.Pos(),\n\t\t\t}\n\t\t\treturn nil\n\t\t}\n\n\t\t// If we have sqlc.arg or sqlc.narg, there is no need to resolve the function call.\n\t\t// It won't resolve anyway, sinc it is not a real function.\n\t\treturn nil\n\t}\n\n\treturn nil\n}\n\nfunc SqlcFunctions(n ast.Node) error {\n\tvisitor := sqlcFuncVisitor{}\n\tastutils.Walk(&visitor, n)\n\treturn visitor.err\n}\n"
  },
  {
    "path": "internal/sqltest/docker/enabled.go",
    "content": "package docker\n\nimport (\n\t\"fmt\"\n\t\"os/exec\"\n\n\t\"golang.org/x/sync/singleflight\"\n)\n\nvar flight singleflight.Group\n\nfunc Installed() error {\n\tif _, err := exec.LookPath(\"docker\"); err != nil {\n\t\treturn fmt.Errorf(\"docker not found: %w\", err)\n\t}\n\t// Verify the Docker daemon is actually running and accessible.\n\t// Without this check, tests will try Docker, fail on docker pull,\n\t// and t.Fatal instead of falling back to native database support.\n\tif out, err := exec.Command(\"docker\", \"info\").CombinedOutput(); err != nil {\n\t\treturn fmt.Errorf(\"docker daemon not available: %w\\n%s\", err, out)\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "internal/sqltest/docker/mysql.go",
    "content": "package docker\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"fmt\"\n\t\"os/exec\"\n\t\"strings\"\n\t\"time\"\n\n\t_ \"github.com/go-sql-driver/mysql\"\n)\n\nvar mysqlHost string\n\nfunc StartMySQLServer(c context.Context) (string, error) {\n\tif err := Installed(); err != nil {\n\t\treturn \"\", err\n\t}\n\tif mysqlHost != \"\" {\n\t\treturn mysqlHost, nil\n\t}\n\tvalue, err, _ := flight.Do(\"mysql\", func() (interface{}, error) {\n\t\thost, err := startMySQLServer(c)\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\tmysqlHost = host\n\t\treturn host, nil\n\t})\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tdata, ok := value.(string)\n\tif !ok {\n\t\treturn \"\", fmt.Errorf(\"returned value was not a string\")\n\t}\n\treturn data, nil\n}\n\nfunc startMySQLServer(c context.Context) (string, error) {\n\t{\n\t\t_, err := exec.Command(\"docker\", \"pull\", \"mysql:9\").CombinedOutput()\n\t\tif err != nil {\n\t\t\treturn \"\", fmt.Errorf(\"docker pull: mysql:9 %w\", err)\n\t\t}\n\t}\n\n\tvar exists bool\n\t{\n\t\tcmd := exec.Command(\"docker\", \"container\", \"inspect\", \"sqlc_sqltest_docker_mysql\")\n\t\t// This means we've already started the container\n\t\texists = cmd.Run() == nil\n\t}\n\n\tif !exists {\n\t\tcmd := exec.Command(\"docker\", \"run\",\n\t\t\t\"--name\", \"sqlc_sqltest_docker_mysql\",\n\t\t\t\"-e\", \"MYSQL_ROOT_PASSWORD=mysecretpassword\",\n\t\t\t\"-e\", \"MYSQL_DATABASE=dinotest\",\n\t\t\t\"-p\", \"3306:3306\",\n\t\t\t\"-d\",\n\t\t\t\"mysql:9\",\n\t\t)\n\n\t\toutput, err := cmd.CombinedOutput()\n\t\tfmt.Println(string(output))\n\n\t\tmsg := `Conflict. The container name \"/sqlc_sqltest_docker_mysql\" is already in use by container`\n\t\tif !strings.Contains(string(output), msg) && err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t}\n\n\tctx, cancel := context.WithTimeout(c, 10*time.Second)\n\tdefer cancel()\n\n\t// Create a ticker that fires every 10ms\n\tticker := time.NewTicker(10 * time.Millisecond)\n\tdefer ticker.Stop()\n\n\turi := \"root:mysecretpassword@/dinotest?multiStatements=true&parseTime=true\"\n\n\tdb, err := sql.Open(\"mysql\", uri)\n\tif err != nil {\n\t\treturn \"\", fmt.Errorf(\"sql.Open: %w\", err)\n\t}\n\n\tdefer db.Close()\n\n\tfor {\n\t\tselect {\n\t\tcase <-ctx.Done():\n\t\t\treturn \"\", fmt.Errorf(\"timeout reached: %w\", ctx.Err())\n\n\t\tcase <-ticker.C:\n\t\t\t// Run your function here\n\t\t\tif err := db.PingContext(ctx); err != nil {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\treturn uri, nil\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sqltest/docker/postgres.go",
    "content": "package docker\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"log/slog\"\n\t\"os/exec\"\n\t\"strings\"\n\t\"time\"\n\n\t\"github.com/jackc/pgx/v5\"\n)\n\nvar postgresHost string\n\nfunc StartPostgreSQLServer(c context.Context) (string, error) {\n\tif err := Installed(); err != nil {\n\t\treturn \"\", err\n\t}\n\tif postgresHost != \"\" {\n\t\treturn postgresHost, nil\n\t}\n\tvalue, err, _ := flight.Do(\"postgresql\", func() (interface{}, error) {\n\t\thost, err := startPostgreSQLServer(c)\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\tpostgresHost = host\n\t\treturn host, err\n\t})\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tdata, ok := value.(string)\n\tif !ok {\n\t\treturn \"\", fmt.Errorf(\"returned value was not a string\")\n\t}\n\treturn data, nil\n}\n\nfunc startPostgreSQLServer(c context.Context) (string, error) {\n\t{\n\t\t_, err := exec.Command(\"docker\", \"pull\", \"postgres:16\").CombinedOutput()\n\t\tif err != nil {\n\t\t\treturn \"\", fmt.Errorf(\"docker pull: postgres:16 %w\", err)\n\t\t}\n\t}\n\n\turi := \"postgres://postgres:mysecretpassword@localhost:5432/postgres?sslmode=disable\"\n\n\tvar exists bool\n\t{\n\t\tcmd := exec.Command(\"docker\", \"container\", \"inspect\", \"sqlc_sqltest_docker_postgres\")\n\t\t// This means we've already started the container\n\t\texists = cmd.Run() == nil\n\t}\n\n\tif !exists {\n\t\tcmd := exec.Command(\"docker\", \"run\",\n\t\t\t\"--name\", \"sqlc_sqltest_docker_postgres\",\n\t\t\t\"-e\", \"POSTGRES_PASSWORD=mysecretpassword\",\n\t\t\t\"-e\", \"POSTGRES_USER=postgres\",\n\t\t\t\"-p\", \"5432:5432\",\n\t\t\t\"-d\",\n\t\t\t\"postgres:16\",\n\t\t\t\"-c\", \"max_connections=200\",\n\t\t)\n\n\t\toutput, err := cmd.CombinedOutput()\n\t\tfmt.Println(string(output))\n\n\t\tmsg := `Conflict. The container name \"/sqlc_sqltest_docker_postgres\" is already in use by container`\n\t\tif !strings.Contains(string(output), msg) && err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t}\n\n\tctx, cancel := context.WithTimeout(c, 5*time.Second)\n\tdefer cancel()\n\n\t// Create a ticker that fires every 10ms\n\tticker := time.NewTicker(10 * time.Millisecond)\n\tdefer ticker.Stop()\n\n\tfor {\n\t\tselect {\n\t\tcase <-ctx.Done():\n\t\t\treturn \"\", fmt.Errorf(\"timeout reached: %w\", ctx.Err())\n\n\t\tcase <-ticker.C:\n\t\t\t// Run your function here\n\t\t\tconn, err := pgx.Connect(ctx, uri)\n\t\t\tif err != nil {\n\t\t\t\tslog.Debug(\"sqltest\", \"connect\", err)\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tdefer conn.Close(ctx)\n\t\t\tif err := conn.Ping(ctx); err != nil {\n\t\t\t\tslog.Error(\"sqltest\", \"ping\", err)\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\treturn uri, nil\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sqltest/local/id.go",
    "content": "package local\n\nimport \"math/rand\"\n\nvar letterRunes = []rune(\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\")\n\nfunc id() string {\n\tb := make([]rune, 10)\n\tfor i := range b {\n\t\tb[i] = letterRunes[rand.Intn(len(letterRunes))]\n\t}\n\treturn string(b)\n}\n"
  },
  {
    "path": "internal/sqltest/local/mysql.go",
    "content": "package local\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"fmt\"\n\t\"os\"\n\t\"strings\"\n\t\"sync\"\n\t\"testing\"\n\n\t\"github.com/go-sql-driver/mysql\"\n\n\tmigrate \"github.com/sqlc-dev/sqlc/internal/migrations\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlpath\"\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/docker\"\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/native\"\n)\n\nvar mysqlSync sync.Once\nvar mysqlPool *sql.DB\n\nfunc MySQL(t *testing.T, migrations []string) string {\n\tctx := context.Background()\n\tt.Helper()\n\n\tdburi := os.Getenv(\"MYSQL_SERVER_URI\")\n\tif dburi == \"\" {\n\t\tif ierr := docker.Installed(); ierr == nil {\n\t\t\tu, err := docker.StartMySQLServer(ctx)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\tdburi = u\n\t\t} else if ierr := native.Supported(); ierr == nil {\n\t\t\t// Fall back to native installation when Docker is not available\n\t\t\tu, err := native.StartMySQLServer(ctx)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\tdburi = u\n\t\t} else {\n\t\t\tt.Skip(\"MYSQL_SERVER_URI is empty and neither Docker nor native installation is available\")\n\t\t}\n\t}\n\n\tmysqlSync.Do(func() {\n\t\tdb, err := sql.Open(\"mysql\", dburi)\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tmysqlPool = db\n\t})\n\n\tif mysqlPool == nil {\n\t\tt.Fatalf(\"MySQL pool creation failed\")\n\t}\n\n\tvar seed []string\n\tfiles, err := sqlpath.Glob(migrations)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tfor _, f := range files {\n\t\tblob, err := os.ReadFile(f)\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tseed = append(seed, migrate.RemoveRollbackStatements(string(blob)))\n\t}\n\n\tcfg, err := mysql.ParseDSN(dburi)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tname := fmt.Sprintf(\"sqlc_test_%s\", id())\n\n\tif _, err := mysqlPool.ExecContext(ctx, fmt.Sprintf(\"CREATE DATABASE `%s`\", name)); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tcfg.DBName = name\n\n\tdropQuery := fmt.Sprintf(\"DROP DATABASE `%s`\", name)\n\n\tt.Cleanup(func() {\n\t\tif _, err := mysqlPool.ExecContext(ctx, dropQuery); err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t})\n\n\tdb, err := sql.Open(\"mysql\", cfg.FormatDSN())\n\tif err != nil {\n\t\tt.Fatalf(\"connect %s: %s\", name, err)\n\t}\n\tdefer db.Close()\n\n\tfor _, q := range seed {\n\t\tif len(strings.TrimSpace(q)) == 0 {\n\t\t\tcontinue\n\t\t}\n\t\tif _, err := db.ExecContext(ctx, q); err != nil {\n\t\t\tt.Fatalf(\"%s: %s\", q, err)\n\t\t}\n\t}\n\n\treturn cfg.FormatDSN()\n}\n"
  },
  {
    "path": "internal/sqltest/local/postgres.go",
    "content": "package local\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"hash/fnv\"\n\t\"net/url\"\n\t\"os\"\n\t\"strings\"\n\t\"testing\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"golang.org/x/sync/singleflight\"\n\n\tmigrate \"github.com/sqlc-dev/sqlc/internal/migrations\"\n\t\"github.com/sqlc-dev/sqlc/internal/pgx/poolcache\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlpath\"\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/docker\"\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/native\"\n)\n\nvar flight singleflight.Group\nvar cache = poolcache.New()\n\nfunc PostgreSQL(t *testing.T, migrations []string) string {\n\treturn postgreSQL(t, migrations, true)\n}\n\nfunc ReadOnlyPostgreSQL(t *testing.T, migrations []string) string {\n\treturn postgreSQL(t, migrations, false)\n}\n\nfunc postgreSQL(t *testing.T, migrations []string, rw bool) string {\n\tctx := context.Background()\n\tt.Helper()\n\n\tdburi := os.Getenv(\"POSTGRESQL_SERVER_URI\")\n\tif dburi == \"\" {\n\t\tif ierr := docker.Installed(); ierr == nil {\n\t\t\tu, err := docker.StartPostgreSQLServer(ctx)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\tdburi = u\n\t\t} else if ierr := native.Supported(); ierr == nil {\n\t\t\t// Fall back to native installation when Docker is not available\n\t\t\tu, err := native.StartPostgreSQLServer(ctx)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\tdburi = u\n\t\t} else {\n\t\t\tt.Skip(\"POSTGRESQL_SERVER_URI is empty and neither Docker nor native installation is available\")\n\t\t}\n\t}\n\n\tpostgresPool, err := cache.Open(ctx, dburi)\n\tif err != nil {\n\t\tt.Fatalf(\"PostgreSQL pool creation failed: %s\", err)\n\t}\n\n\tvar seed []string\n\tfiles, err := sqlpath.Glob(migrations)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\th := fnv.New64()\n\tfor _, f := range files {\n\t\tblob, err := os.ReadFile(f)\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\th.Write(blob)\n\t\tseed = append(seed, migrate.RemoveRollbackStatements(string(blob)))\n\t}\n\n\tvar name string\n\tif rw {\n\t\tname = fmt.Sprintf(\"sqlc_test_%s\", id())\n\t} else {\n\t\tname = fmt.Sprintf(\"sqlc_test_%x\", h.Sum(nil))\n\t}\n\n\turi, err := url.Parse(dburi)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\turi.Path = name\n\tdropQuery := fmt.Sprintf(`DROP DATABASE IF EXISTS \"%s\" WITH (FORCE)`, name)\n\n\tkey := uri.String()\n\n\t_, err, _ = flight.Do(key, func() (interface{}, error) {\n\t\trow := postgresPool.QueryRow(ctx,\n\t\t\tfmt.Sprintf(`SELECT datname FROM pg_database WHERE datname = '%s'`, name))\n\n\t\tvar datname string\n\t\tif err := row.Scan(&datname); err == nil {\n\t\t\tt.Logf(\"database exists: %s\", name)\n\t\t\treturn nil, nil\n\t\t}\n\n\t\tt.Logf(\"creating database: %s\", name)\n\t\tif _, err := postgresPool.Exec(ctx, fmt.Sprintf(`CREATE DATABASE \"%s\"`, name)); err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\tconn, err := pgx.Connect(ctx, uri.String())\n\t\tif err != nil {\n\t\t\treturn nil, fmt.Errorf(\"connect %s: %s\", name, err)\n\t\t}\n\t\tdefer conn.Close(ctx)\n\n\t\tfor _, q := range seed {\n\t\t\tif len(strings.TrimSpace(q)) == 0 {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif _, err := conn.Exec(ctx, q); err != nil {\n\t\t\t\treturn nil, fmt.Errorf(\"%s: %s\", q, err)\n\t\t\t}\n\t\t}\n\t\treturn nil, nil\n\t})\n\tif rw || err != nil {\n\t\tt.Cleanup(func() {\n\t\t\tif _, err := postgresPool.Exec(ctx, dropQuery); err != nil {\n\t\t\t\tt.Fatalf(\"failed cleaning up: %s\", err)\n\t\t\t}\n\t\t})\n\t}\n\tif err != nil {\n\t\tt.Fatalf(\"create db: %s\", err)\n\t}\n\treturn key\n}\n"
  },
  {
    "path": "internal/sqltest/mysql.go",
    "content": "package sqltest\n\nimport (\n\t\"database/sql\"\n\t\"fmt\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"testing\"\n\n\t_ \"github.com/go-sql-driver/mysql\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlpath\"\n)\n\nfunc MySQL(t *testing.T, migrations []string) (*sql.DB, func()) {\n\t// For each test, pick a new database name at random.\n\tname := \"sqltest_mysql_\" + id()\n\treturn CreateMySQLDatabase(t, name, migrations)\n}\n\nfunc CreateMySQLDatabase(t *testing.T, name string, migrations []string) (*sql.DB, func()) {\n\tt.Helper()\n\n\tdata := os.Getenv(\"MYSQL_DATABASE\")\n\thost := os.Getenv(\"MYSQL_HOST\")\n\tpass := os.Getenv(\"MYSQL_ROOT_PASSWORD\")\n\tport := os.Getenv(\"MYSQL_PORT\")\n\tuser := os.Getenv(\"MYSQL_USER\")\n\n\tif user == \"\" {\n\t\tuser = \"root\"\n\t}\n\n\tif pass == \"\" {\n\t\tpass = \"mysecretpassword\"\n\t}\n\n\tif port == \"\" {\n\t\tport = \"3306\"\n\t}\n\n\tif host == \"\" {\n\t\thost = \"127.0.0.1\"\n\t}\n\n\tif data == \"\" {\n\t\tdata = \"dinotest\"\n\t}\n\n\tsource := fmt.Sprintf(\"%s:%s@tcp(%s:%s)/%s?multiStatements=true&parseTime=true\", user, pass, host, port, data)\n\tt.Logf(\"db: %s\", source)\n\n\tdb, err := sql.Open(\"mysql\", source)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tif _, err := db.Exec(\"CREATE DATABASE \" + name); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tsource = fmt.Sprintf(\"%s:%s@tcp(%s:%s)/%s?multiStatements=true&parseTime=true\", user, pass, host, port, name)\n\tsdb, err := sql.Open(\"mysql\", source)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tfiles, err := sqlpath.Glob(migrations)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tfor _, f := range files {\n\t\tblob, err := os.ReadFile(f)\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tif _, err := sdb.Exec(string(blob)); err != nil {\n\t\t\tt.Fatalf(\"%s: %s\", filepath.Base(f), err)\n\t\t}\n\t}\n\n\treturn sdb, func() {\n\t\t// Drop the test db after test runs\n\t\tif _, err := db.Exec(\"DROP DATABASE \" + name); err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sqltest/native/enabled.go",
    "content": "package native\n\nimport (\n\t\"fmt\"\n\t\"os/exec\"\n\t\"runtime\"\n)\n\n// Supported returns nil if native database installation is supported on this platform.\n// Currently only Linux (Ubuntu/Debian) is supported.\nfunc Supported() error {\n\tif runtime.GOOS != \"linux\" {\n\t\treturn fmt.Errorf(\"native database installation only supported on linux, got %s\", runtime.GOOS)\n\t}\n\t// Check if apt-get is available (Debian/Ubuntu)\n\tif _, err := exec.LookPath(\"apt-get\"); err != nil {\n\t\treturn fmt.Errorf(\"apt-get not found: %w\", err)\n\t}\n\treturn nil\n}\n"
  },
  {
    "path": "internal/sqltest/native/mysql.go",
    "content": "package native\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"fmt\"\n\t\"log/slog\"\n\t\"os/exec\"\n\t\"time\"\n\n\t_ \"github.com/go-sql-driver/mysql\"\n\t\"golang.org/x/sync/singleflight\"\n)\n\nvar mysqlFlight singleflight.Group\nvar mysqlURI string\n\n// StartMySQLServer starts an existing MySQL installation natively (without Docker).\nfunc StartMySQLServer(ctx context.Context) (string, error) {\n\tif err := Supported(); err != nil {\n\t\treturn \"\", err\n\t}\n\tif mysqlURI != \"\" {\n\t\treturn mysqlURI, nil\n\t}\n\tvalue, err, _ := mysqlFlight.Do(\"mysql\", func() (interface{}, error) {\n\t\turi, err := startMySQLServer(ctx)\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\tmysqlURI = uri\n\t\treturn uri, nil\n\t})\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tdata, ok := value.(string)\n\tif !ok {\n\t\treturn \"\", fmt.Errorf(\"returned value was not a string\")\n\t}\n\treturn data, nil\n}\n\nfunc startMySQLServer(ctx context.Context) (string, error) {\n\t// Standard URI for test MySQL\n\turi := \"root:mysecretpassword@tcp(localhost:3306)/mysql?multiStatements=true&parseTime=true\"\n\n\t// Try to connect first - it might already be running\n\tif err := waitForMySQL(ctx, uri, 500*time.Millisecond); err == nil {\n\t\tslog.Info(\"native/mysql\", \"status\", \"already running\")\n\t\treturn uri, nil\n\t}\n\n\t// Also try without password (default MySQL installation)\n\turiNoPassword := \"root@tcp(localhost:3306)/mysql?multiStatements=true&parseTime=true\"\n\tif err := waitForMySQL(ctx, uriNoPassword, 500*time.Millisecond); err == nil {\n\t\tslog.Info(\"native/mysql\", \"status\", \"already running (no password)\")\n\t\t// MySQL is running without password, try to set one\n\t\tif err := setMySQLPassword(ctx); err != nil {\n\t\t\tslog.Debug(\"native/mysql\", \"set-password-error\", err)\n\t\t\t// Return without password if we can't set one\n\t\t\treturn uriNoPassword, nil\n\t\t}\n\t\t// Try again with password\n\t\tif err := waitForMySQL(ctx, uri, 1*time.Second); err == nil {\n\t\t\treturn uri, nil\n\t\t}\n\t\t// If password didn't work, use no password\n\t\treturn uriNoPassword, nil\n\t}\n\n\t// Try to start existing MySQL service (might be installed but not running)\n\tif _, err := exec.LookPath(\"mysqld\"); err == nil {\n\t\tslog.Info(\"native/mysql\", \"status\", \"starting existing service\")\n\t\tif err := startMySQLService(); err != nil {\n\t\t\tslog.Debug(\"native/mysql\", \"start-error\", err)\n\t\t} else {\n\t\t\t// Wait for MySQL to be ready\n\t\t\twaitCtx, cancel := context.WithTimeout(ctx, 30*time.Second)\n\t\t\tdefer cancel()\n\n\t\t\t// Try with password first\n\t\t\tif err := waitForMySQL(waitCtx, uri, 15*time.Second); err == nil {\n\t\t\t\treturn uri, nil\n\t\t\t}\n\n\t\t\t// Try without password\n\t\t\tif err := waitForMySQL(waitCtx, uriNoPassword, 15*time.Second); err == nil {\n\t\t\t\tif err := setMySQLPassword(ctx); err != nil {\n\t\t\t\t\tslog.Debug(\"native/mysql\", \"set-password-error\", err)\n\t\t\t\t\treturn uriNoPassword, nil\n\t\t\t\t}\n\t\t\t\tif err := waitForMySQL(ctx, uri, 1*time.Second); err == nil {\n\t\t\t\t\treturn uri, nil\n\t\t\t\t}\n\t\t\t\treturn uriNoPassword, nil\n\t\t\t}\n\t\t}\n\t}\n\n\treturn \"\", fmt.Errorf(\"MySQL is not installed or could not be started\")\n}\n\nfunc startMySQLService() error {\n\t// Try systemctl first\n\tcmd := exec.Command(\"sudo\", \"systemctl\", \"start\", \"mysql\")\n\tif err := cmd.Run(); err == nil {\n\t\t// Give MySQL time to fully initialize\n\t\ttime.Sleep(2 * time.Second)\n\t\treturn nil\n\t}\n\n\t// Try mysqld\n\tcmd = exec.Command(\"sudo\", \"systemctl\", \"start\", \"mysqld\")\n\tif err := cmd.Run(); err == nil {\n\t\ttime.Sleep(2 * time.Second)\n\t\treturn nil\n\t}\n\n\t// Try service command\n\tcmd = exec.Command(\"sudo\", \"service\", \"mysql\", \"start\")\n\tif err := cmd.Run(); err == nil {\n\t\ttime.Sleep(2 * time.Second)\n\t\treturn nil\n\t}\n\n\tcmd = exec.Command(\"sudo\", \"service\", \"mysqld\", \"start\")\n\tif err := cmd.Run(); err == nil {\n\t\ttime.Sleep(2 * time.Second)\n\t\treturn nil\n\t}\n\n\treturn fmt.Errorf(\"could not start MySQL service\")\n}\n\nfunc setMySQLPassword(ctx context.Context) error {\n\t// Connect without password\n\tdb, err := sql.Open(\"mysql\", \"root@tcp(localhost:3306)/mysql\")\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer db.Close()\n\n\t// Set root password using mysql_native_password for broader compatibility\n\t_, err = db.ExecContext(ctx, \"ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'mysecretpassword';\")\n\tif err != nil {\n\t\t// Try without specifying auth plugin\n\t\t_, err = db.ExecContext(ctx, \"ALTER USER 'root'@'localhost' IDENTIFIED BY 'mysecretpassword';\")\n\t\tif err != nil {\n\t\t\t// Try older MySQL syntax\n\t\t\t_, err = db.ExecContext(ctx, \"SET PASSWORD FOR 'root'@'localhost' = PASSWORD('mysecretpassword');\")\n\t\t\tif err != nil {\n\t\t\t\treturn fmt.Errorf(\"could not set MySQL password: %w\", err)\n\t\t\t}\n\t\t}\n\t}\n\n\t// Flush privileges\n\t_, _ = db.ExecContext(ctx, \"FLUSH PRIVILEGES;\")\n\n\treturn nil\n}\n\nfunc waitForMySQL(ctx context.Context, uri string, timeout time.Duration) error {\n\tdeadline := time.Now().Add(timeout)\n\tticker := time.NewTicker(500 * time.Millisecond)\n\tdefer ticker.Stop()\n\n\t// Make an immediate first attempt before waiting for the ticker\n\tif err := tryMySQLConnection(ctx, uri); err == nil {\n\t\treturn nil\n\t}\n\n\tvar lastErr error\n\tfor {\n\t\tselect {\n\t\tcase <-ctx.Done():\n\t\t\treturn fmt.Errorf(\"context cancelled: %w (last error: %v)\", ctx.Err(), lastErr)\n\t\tcase <-ticker.C:\n\t\t\tif time.Now().After(deadline) {\n\t\t\t\treturn fmt.Errorf(\"timeout waiting for MySQL (last error: %v)\", lastErr)\n\t\t\t}\n\t\t\tif err := tryMySQLConnection(ctx, uri); err != nil {\n\t\t\t\tlastErr = err\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\treturn nil\n\t\t}\n\t}\n}\n\nfunc tryMySQLConnection(ctx context.Context, uri string) error {\n\tdb, err := sql.Open(\"mysql\", uri)\n\tif err != nil {\n\t\tslog.Debug(\"native/mysql\", \"open-attempt\", err)\n\t\treturn err\n\t}\n\tdefer db.Close()\n\t// Use a short timeout for ping to avoid hanging\n\tpingCtx, cancel := context.WithTimeout(ctx, 2*time.Second)\n\tdefer cancel()\n\treturn db.PingContext(pingCtx)\n}\n"
  },
  {
    "path": "internal/sqltest/native/postgres.go",
    "content": "package native\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"log/slog\"\n\t\"os/exec\"\n\t\"strings\"\n\t\"time\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"golang.org/x/sync/singleflight\"\n)\n\nvar postgresFlight singleflight.Group\nvar postgresURI string\n\n// StartPostgreSQLServer starts an existing PostgreSQL installation natively (without Docker).\nfunc StartPostgreSQLServer(ctx context.Context) (string, error) {\n\tif err := Supported(); err != nil {\n\t\treturn \"\", err\n\t}\n\tif postgresURI != \"\" {\n\t\treturn postgresURI, nil\n\t}\n\tvalue, err, _ := postgresFlight.Do(\"postgresql\", func() (interface{}, error) {\n\t\turi, err := startPostgreSQLServer(ctx)\n\t\tif err != nil {\n\t\t\treturn \"\", err\n\t\t}\n\t\tpostgresURI = uri\n\t\treturn uri, nil\n\t})\n\tif err != nil {\n\t\treturn \"\", err\n\t}\n\tdata, ok := value.(string)\n\tif !ok {\n\t\treturn \"\", fmt.Errorf(\"returned value was not a string\")\n\t}\n\treturn data, nil\n}\n\nfunc startPostgreSQLServer(ctx context.Context) (string, error) {\n\t// Standard URI for test PostgreSQL\n\turi := \"postgres://postgres:postgres@localhost:5432/postgres?sslmode=disable\"\n\n\t// Try to connect first - it might already be running\n\tif err := waitForPostgres(ctx, uri, 500*time.Millisecond); err == nil {\n\t\tslog.Info(\"native/postgres\", \"status\", \"already running\")\n\t\treturn uri, nil\n\t}\n\n\t// Check if PostgreSQL is installed\n\tif _, err := exec.LookPath(\"psql\"); err != nil {\n\t\treturn \"\", fmt.Errorf(\"PostgreSQL is not installed (psql not found)\")\n\t}\n\n\t// Start PostgreSQL service\n\tslog.Info(\"native/postgres\", \"status\", \"starting service\")\n\n\t// Try systemctl first, fall back to pg_ctlcluster\n\tif err := startPostgresService(); err != nil {\n\t\treturn \"\", fmt.Errorf(\"failed to start PostgreSQL: %w\", err)\n\t}\n\n\t// Configure PostgreSQL for password authentication\n\tif err := configurePostgres(); err != nil {\n\t\treturn \"\", fmt.Errorf(\"failed to configure PostgreSQL: %w\", err)\n\t}\n\n\t// Wait for PostgreSQL to be ready\n\twaitCtx, cancel := context.WithTimeout(ctx, 30*time.Second)\n\tdefer cancel()\n\n\tif err := waitForPostgres(waitCtx, uri, 30*time.Second); err != nil {\n\t\treturn \"\", fmt.Errorf(\"timeout waiting for PostgreSQL: %w\", err)\n\t}\n\n\treturn uri, nil\n}\n\nfunc startPostgresService() error {\n\t// Try systemctl first\n\tcmd := exec.Command(\"sudo\", \"systemctl\", \"start\", \"postgresql\")\n\tif err := cmd.Run(); err == nil {\n\t\treturn nil\n\t}\n\n\t// Try service command\n\tcmd = exec.Command(\"sudo\", \"service\", \"postgresql\", \"start\")\n\tif err := cmd.Run(); err == nil {\n\t\treturn nil\n\t}\n\n\t// Try pg_ctlcluster (Debian/Ubuntu specific)\n\t// Find the installed PostgreSQL version\n\toutput, err := exec.Command(\"ls\", \"/etc/postgresql/\").CombinedOutput()\n\tif err != nil {\n\t\treturn fmt.Errorf(\"could not find PostgreSQL version: %w\", err)\n\t}\n\n\tversions := strings.Fields(string(output))\n\tif len(versions) == 0 {\n\t\treturn fmt.Errorf(\"no PostgreSQL version found in /etc/postgresql/\")\n\t}\n\n\tversion := versions[0]\n\tcmd = exec.Command(\"sudo\", \"pg_ctlcluster\", version, \"main\", \"start\")\n\tif output, err := cmd.CombinedOutput(); err != nil {\n\t\treturn fmt.Errorf(\"pg_ctlcluster start failed: %w\\n%s\", err, output)\n\t}\n\n\treturn nil\n}\n\nfunc configurePostgres() error {\n\t// Set password for postgres user using sudo -u postgres\n\tcmd := exec.Command(\"sudo\", \"-u\", \"postgres\", \"psql\", \"-c\", \"ALTER USER postgres PASSWORD 'postgres';\")\n\tif output, err := cmd.CombinedOutput(); err != nil {\n\t\t// This might fail if password is already set, which is fine\n\t\tslog.Debug(\"native/postgres\", \"set-password\", string(output))\n\t}\n\n\t// Update pg_hba.conf to allow password authentication\n\t// First, find the pg_hba.conf file\n\toutput, err := exec.Command(\"sudo\", \"-u\", \"postgres\", \"psql\", \"-t\", \"-c\", \"SHOW hba_file;\").CombinedOutput()\n\tif err != nil {\n\t\treturn fmt.Errorf(\"could not find hba_file: %w\", err)\n\t}\n\n\thbaFile := strings.TrimSpace(string(output))\n\tif hbaFile == \"\" {\n\t\treturn fmt.Errorf(\"empty hba_file path\")\n\t}\n\n\t// Check if we need to update pg_hba.conf\n\tcatOutput, err := exec.Command(\"sudo\", \"cat\", hbaFile).CombinedOutput()\n\tif err != nil {\n\t\treturn fmt.Errorf(\"could not read %s: %w\", hbaFile, err)\n\t}\n\n\t// If md5 or scram-sha-256 auth is not configured for local connections, add it\n\tcontent := string(catOutput)\n\tif !strings.Contains(content, \"host    all             all             127.0.0.1/32            md5\") &&\n\t\t!strings.Contains(content, \"host    all             all             127.0.0.1/32            scram-sha-256\") {\n\n\t\t// Prepend a rule for localhost password authentication\n\t\tnewRule := \"host    all             all             127.0.0.1/32            md5\\n\"\n\n\t\t// Use sed to add the rule at the beginning (after comments)\n\t\tcmd := exec.Command(\"sudo\", \"bash\", \"-c\",\n\t\t\tfmt.Sprintf(`echo '%s' | cat - %s > /tmp/pg_hba.conf.new && sudo mv /tmp/pg_hba.conf.new %s`,\n\t\t\t\tnewRule, hbaFile, hbaFile))\n\t\tif output, err := cmd.CombinedOutput(); err != nil {\n\t\t\tslog.Debug(\"native/postgres\", \"update-hba-error\", string(output))\n\t\t}\n\n\t\t// Reload PostgreSQL to apply changes\n\t\tif err := reloadPostgres(); err != nil {\n\t\t\tslog.Debug(\"native/postgres\", \"reload-error\", err)\n\t\t}\n\t}\n\n\treturn nil\n}\n\nfunc reloadPostgres() error {\n\t// Try systemctl reload\n\tcmd := exec.Command(\"sudo\", \"systemctl\", \"reload\", \"postgresql\")\n\tif err := cmd.Run(); err == nil {\n\t\treturn nil\n\t}\n\n\t// Try service reload\n\tcmd = exec.Command(\"sudo\", \"service\", \"postgresql\", \"reload\")\n\tif err := cmd.Run(); err == nil {\n\t\treturn nil\n\t}\n\n\t// Try pg_ctlcluster reload\n\toutput, _ := exec.Command(\"ls\", \"/etc/postgresql/\").CombinedOutput()\n\tversions := strings.Fields(string(output))\n\tif len(versions) > 0 {\n\t\tcmd = exec.Command(\"sudo\", \"pg_ctlcluster\", versions[0], \"main\", \"reload\")\n\t\treturn cmd.Run()\n\t}\n\n\treturn fmt.Errorf(\"could not reload PostgreSQL\")\n}\n\nfunc waitForPostgres(ctx context.Context, uri string, timeout time.Duration) error {\n\tdeadline := time.Now().Add(timeout)\n\tticker := time.NewTicker(100 * time.Millisecond)\n\tdefer ticker.Stop()\n\n\tvar lastErr error\n\tfor {\n\t\tselect {\n\t\tcase <-ctx.Done():\n\t\t\treturn fmt.Errorf(\"context cancelled: %w (last error: %v)\", ctx.Err(), lastErr)\n\t\tcase <-ticker.C:\n\t\t\tif time.Now().After(deadline) {\n\t\t\t\treturn fmt.Errorf(\"timeout waiting for PostgreSQL (last error: %v)\", lastErr)\n\t\t\t}\n\t\t\tconn, err := pgx.Connect(ctx, uri)\n\t\t\tif err != nil {\n\t\t\t\tlastErr = err\n\t\t\t\tslog.Debug(\"native/postgres\", \"connect-attempt\", err)\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif err := conn.Ping(ctx); err != nil {\n\t\t\t\tlastErr = err\n\t\t\t\tconn.Close(ctx)\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tconn.Close(ctx)\n\t\t\treturn nil\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sqltest/pgx.go",
    "content": "package sqltest\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"math/rand\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlpath\"\n\n\t\"github.com/jackc/pgx/v4\"\n)\n\nfunc init() {\n\trand.Seed(time.Now().UnixNano())\n}\n\nfunc PostgreSQLPgx(t *testing.T, migrations []string) (*pgx.Conn, func()) {\n\tt.Helper()\n\n\tpgUser := os.Getenv(\"PG_USER\")\n\tpgHost := os.Getenv(\"PG_HOST\")\n\tpgPort := os.Getenv(\"PG_PORT\")\n\tpgPass := os.Getenv(\"PG_PASSWORD\")\n\tpgDB := os.Getenv(\"PG_DATABASE\")\n\n\tif pgUser == \"\" {\n\t\tpgUser = \"postgres\"\n\t}\n\n\tif pgPass == \"\" {\n\t\tpgPass = \"mysecretpassword\"\n\t}\n\n\tif pgPort == \"\" {\n\t\tpgPort = \"5432\"\n\t}\n\n\tif pgHost == \"\" {\n\t\tpgHost = \"127.0.0.1\"\n\t}\n\n\tif pgDB == \"\" {\n\t\tpgDB = \"dinotest\"\n\t}\n\n\tsource := fmt.Sprintf(\"postgres://%s:%s@%s:%s/%s?sslmode=disable\", pgUser, pgPass, pgHost, pgPort, pgDB)\n\tt.Logf(\"db: %s\", source)\n\n\tdb, err := pgx.Connect(context.Background(), source)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// For each test, pick a new schema name at random.\n\tschema := \"sqltest_postgresql_\" + id()\n\tif _, err := db.Exec(context.Background(), \"CREATE SCHEMA \"+schema); err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tsdb, err := pgx.Connect(context.Background(), source+\"&search_path=\"+schema)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tfiles, err := sqlpath.Glob(migrations)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tfor _, f := range files {\n\t\tblob, err := os.ReadFile(f)\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tif _, err := sdb.Exec(context.Background(), string(blob)); err != nil {\n\t\t\tt.Fatalf(\"%s: %s\", filepath.Base(f), err)\n\t\t}\n\t}\n\n\treturn sdb, func() {\n\t\tif _, err := db.Exec(context.Background(), \"DROP SCHEMA \"+schema+\" CASCADE\"); err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/sqltest/postgres.go",
    "content": "package sqltest\n\nimport (\n\t\"database/sql\"\n\t\"fmt\"\n\t\"math/rand\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"testing\"\n\t\"time\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlpath\"\n\n\t_ \"github.com/lib/pq\"\n)\n\nfunc init() {\n\trand.Seed(time.Now().UnixNano())\n}\n\nvar letterRunes = []rune(\"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ\")\n\nfunc id() string {\n\tb := make([]rune, 10)\n\tfor i := range b {\n\t\tb[i] = letterRunes[rand.Intn(len(letterRunes))]\n\t}\n\treturn string(b)\n}\n\nfunc PostgreSQL(t *testing.T, migrations []string) (*sql.DB, func()) {\n\tt.Helper()\n\n\t// For each test, pick a new schema name at random.\n\tschema := \"sqltest_postgresql_\" + id()\n\treturn CreatePostgreSQLDatabase(t, schema, true, migrations)\n}\n\nfunc CreatePostgreSQLDatabase(t *testing.T, name string, schema bool, migrations []string) (*sql.DB, func()) {\n\tt.Helper()\n\n\tpgUser := os.Getenv(\"PG_USER\")\n\tpgHost := os.Getenv(\"PG_HOST\")\n\tpgPort := os.Getenv(\"PG_PORT\")\n\tpgPass := os.Getenv(\"PG_PASSWORD\")\n\tpgDB := os.Getenv(\"PG_DATABASE\")\n\n\tif pgUser == \"\" {\n\t\tpgUser = \"postgres\"\n\t}\n\n\tif pgPass == \"\" {\n\t\tpgPass = \"mysecretpassword\"\n\t}\n\n\tif pgPort == \"\" {\n\t\tpgPort = \"5432\"\n\t}\n\n\tif pgHost == \"\" {\n\t\tpgHost = \"127.0.0.1\"\n\t}\n\n\tif pgDB == \"\" {\n\t\tpgDB = \"dinotest\"\n\t}\n\n\tsource := fmt.Sprintf(\"postgres://%s:%s@%s:%s/%s?sslmode=disable\", pgUser, pgPass, pgHost, pgPort, pgDB)\n\tt.Logf(\"db: %s\", source)\n\n\tdb, err := sql.Open(\"postgres\", source)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\t// For each test, pick a new schema name at random.\n\tvar newsource, dropQuery string\n\tif schema {\n\t\tif _, err := db.Exec(\"CREATE SCHEMA \" + name); err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tnewsource = source + \"&search_path=\" + name\n\t\tdropQuery = \"DROP SCHEMA \" + name + \" CASCADE\"\n\t} else {\n\t\tif _, err := db.Exec(\"CREATE DATABASE \" + name); err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tnewsource = fmt.Sprintf(\"postgres://%s:%s@%s:%s/%s?sslmode=disable\", pgUser, pgPass, pgHost, pgPort, name)\n\t\tdropQuery = \"DROP DATABASE IF EXISTS \" + name + \" WITH (FORCE)\"\n\t}\n\n\tsdb, err := sql.Open(\"postgres\", newsource)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tfiles, err := sqlpath.Glob(migrations)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tfor _, f := range files {\n\t\tblob, err := os.ReadFile(f)\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tif _, err := sdb.Exec(string(blob)); err != nil {\n\t\t\tt.Fatalf(\"%s: %s\", filepath.Base(f), err)\n\t\t}\n\t}\n\n\treturn sdb, func() {\n\t\tif _, err := db.Exec(dropQuery); err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tdb.Close()\n\t}\n}\n"
  },
  {
    "path": "internal/sqltest/sqlite.go",
    "content": "package sqltest\n\nimport (\n\t\"database/sql\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"testing\"\n\n\t_ \"github.com/ncruces/go-sqlite3/driver\"\n\t_ \"github.com/ncruces/go-sqlite3/embed\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/sqlpath\"\n)\n\nfunc SQLite(t *testing.T, migrations []string) (*sql.DB, func()) {\n\tt.Helper()\n\t// For each test, pick a new database name at random.\n\tsource, err := os.CreateTemp(\"\", \"sqltest_sqlite_\")\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tif err := source.Close(); err != nil {\n\t\tt.Fatal(err)\n\t}\n\treturn CreateSQLiteDatabase(t, source.Name(), migrations)\n}\n\nfunc CreateSQLiteDatabase(t *testing.T, path string, migrations []string) (*sql.DB, func()) {\n\tt.Helper()\n\n\tt.Logf(\"open %s\\n\", path)\n\tsdb, err := sql.Open(\"sqlite3\", path)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\n\tfiles, err := sqlpath.Glob(migrations)\n\tif err != nil {\n\t\tt.Fatal(err)\n\t}\n\tfor _, f := range files {\n\t\tblob, err := os.ReadFile(f)\n\t\tif err != nil {\n\t\t\tt.Fatal(err)\n\t\t}\n\t\tif _, err := sdb.Exec(string(blob)); err != nil {\n\t\t\tt.Fatalf(\"%s: %s\", filepath.Base(f), err)\n\t\t}\n\t}\n\n\treturn sdb, func() {\n\t\tif _, err := os.Stat(path); err == nil {\n\t\t\tos.Remove(path)\n\t\t}\n\t}\n}\n"
  },
  {
    "path": "internal/tools/sqlc-pg-gen/main.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"context\"\n\t\"flag\"\n\t\"fmt\"\n\t\"go/format\"\n\t\"log\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"sort\"\n\t\"strings\"\n\t\"text/template\"\n\n\t\"github.com/jackc/pgx/v4\"\n)\n\n// https://dba.stackexchange.com/questions/255412/how-to-select-functions-that-belong-in-a-given-extension-in-postgresql\n//\n// Extension functions are added to the public schema\nconst extensionFuncs = `\nWITH extension_funcs AS (\n  SELECT p.oid\n  FROM pg_catalog.pg_extension AS e\n      INNER JOIN pg_catalog.pg_depend AS d ON (d.refobjid = e.oid)\n      INNER JOIN pg_catalog.pg_proc AS p ON (p.oid = d.objid)\n      INNER JOIN pg_catalog.pg_namespace AS ne ON (ne.oid = e.extnamespace)\n      INNER JOIN pg_catalog.pg_namespace AS np ON (np.oid = p.pronamespace)\n  WHERE d.deptype = 'e' AND e.extname = $1\n)\nSELECT p.proname as name,\n  format_type(p.prorettype, NULL),\n  array(select format_type(unnest(p.proargtypes), NULL)),\n  p.proargnames,\n  p.proargnames[p.pronargs-p.pronargdefaults+1:p.pronargs],\n  p.proargmodes::text[]\nFROM pg_catalog.pg_proc p\nJOIN extension_funcs ef ON ef.oid = p.oid\nWHERE pg_function_is_visible(p.oid)\n-- simply order all columns to keep subsequent runs stable\nORDER BY 1, 2, 3, 4, 5;\n`\n\nconst catalogTmpl = `\n// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage {{.Pkg}}\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nvar funcs{{.GenFnName}} = []*catalog.Function {\n    {{- range .Procs}}\n\t{\n\t\tName: \"{{.Name}}\",\n\t\tArgs: []*catalog.Argument{\n\t\t\t{{range .Args}}{\n\t\t\t{{- if .Name}}\n\t\t\tName: \"{{.Name}}\",\n\t\t\t{{- end}}\n\t\t\t{{- if .HasDefault}}\n\t\t\tHasDefault: true,\n\t\t\t{{- end}}\n\t\t\tType: &ast.TypeName{Name: \"{{.TypeName}}\"},\n\t\t\t{{- if ne .Mode \"i\" }}\n\t\t\tMode: {{ .GoMode }},\n\t\t\t{{- end}}\n\t\t\t},\n\t\t\t{{end}}\n\t\t},\n\t\tReturnType: &ast.TypeName{Name: \"{{.ReturnTypeName}}\"},\n\t},\n\t{{- end}}\n}\n\nfunc {{.GenFnName}}() *catalog.Schema {\n\ts := &catalog.Schema{Name: \"{{ .SchemaName }}\"}\n\ts.Funcs = funcs{{.GenFnName}}\n\t{{- if .Relations }}\n\ts.Tables = []*catalog.Table {\n\t    {{- range .Relations }}\n\t\t{\n\t\t\tRel: &ast.TableName{\n\t\t\t\tCatalog: \"{{.Catalog}}\",\n\t\t\t\tSchema: \"{{.SchemaName}}\",\n\t\t\t\tName: \"{{.Name}}\",\n\t\t\t},\n\t\t\tColumns: []*catalog.Column{\n\t\t\t\t{{- range .Columns}}\n\t\t\t\t{\n\t\t\t\t\tName: \"{{.Name}}\",\n\t\t\t\t\tType: ast.TypeName{Name: \"{{.Type}}\"},\n\t\t\t\t\t{{- if .IsNotNull}}\n\t\t\t\t\tIsNotNull: true,\n\t\t\t\t\t{{- end}}\n\t\t\t\t\t{{- if .IsArray}}\n\t\t\t\t\tIsArray: true,\n\t\t\t\t\t{{- end}}\n\t\t\t\t\t{{- if .Length }}\n\t\t\t\t\tLength: toPointer({{ .Length }}),\n\t\t\t\t\t{{- end}}\n\t\t\t\t},\n\t\t\t\t{{- end}}\n\t\t\t},\n\t\t},\n\t\t{{- end}}\n\t}\n\t{{- end }}\n\treturn s\n}\n`\n\nconst loaderFuncTmpl = `\n// Code generated by sqlc-pg-gen. DO NOT EDIT.\n\npackage postgresql\n\nimport (\n\t\"github.com/sqlc-dev/sqlc/internal/engine/postgresql/contrib\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/catalog\"\n)\n\nfunc loadExtension(name string) *catalog.Schema {\n\tswitch name {\n\t{{- range .}}\n\tcase \"{{.Name}}\":\n\t\treturn contrib.{{.Func}}()\n\t{{- end}}\n\t}\n\treturn nil\n}\n`\n\ntype tmplCtx struct {\n\tPkg        string\n\tGenFnName  string\n\tSchemaName string\n\tProcs      []Proc\n\tRelations  []Relation\n}\n\nfunc main() {\n\tif err := run(context.Background()); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n\nfunc clean(arg string) string {\n\targ = strings.TrimSpace(arg)\n\targ = strings.Replace(arg, \"\\\"any\\\"\", \"any\", -1)\n\targ = strings.Replace(arg, \"\\\"char\\\"\", \"char\", -1)\n\targ = strings.Replace(arg, \"\\\"timestamp\\\"\", \"char\", -1)\n\treturn arg\n}\n\n// writeFormattedGo executes `tmpl` with `data` as its context to the file `destPath`\nfunc writeFormattedGo(tmpl *template.Template, data any, destPath string) error {\n\tout := bytes.NewBuffer([]byte{})\n\terr := tmpl.Execute(out, data)\n\tif err != nil {\n\t\treturn err\n\t}\n\tcode, err := format.Source(out.Bytes())\n\tif err != nil {\n\t\treturn err\n\t}\n\n\terr = os.WriteFile(destPath, code, 0644)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\treturn nil\n}\n\n// preserveLegacyCatalogBehavior maintain previous ordering and filtering\n// that was manually done to the generated file pg_catalog.go.\n// Some of the test depend on this ordering - in particular, function lookups\n// where there might be multiple matching functions (due to type overloads)\n// Until sqlc supports \"smarter\" looking up of these functions,\n// preserveLegacyCatalogBehavior ensures there are no accidental test breakages\nfunc preserveLegacyCatalogBehavior(allProcs []Proc) []Proc {\n\t// Preserve the legacy sort order of the end-to-end tests\n\tsort.SliceStable(allProcs, func(i, j int) bool {\n\t\tfnA := allProcs[i]\n\t\tfnB := allProcs[j]\n\n\t\tif fnA.Name == \"lower\" && fnB.Name == \"lower\" && len(fnA.ArgTypes) == 1 && fnA.ArgTypes[0] == \"text\" {\n\t\t\treturn true\n\t\t}\n\n\t\tif fnA.Name == \"generate_series\" && fnB.Name == \"generate_series\" && len(fnA.ArgTypes) == 2 && fnA.ArgTypes[0] == \"numeric\" {\n\t\t\treturn true\n\t\t}\n\n\t\treturn false\n\t})\n\n\tprocs := make([]Proc, 0, len(allProcs))\n\tfor _, p := range allProcs {\n\t\t// Skip generating pg_catalog.concat to preserve legacy behavior\n\t\tif p.Name == \"concat\" {\n\t\t\tcontinue\n\t\t}\n\n\t\tprocs = append(procs, p)\n\t}\n\n\treturn procs\n}\n\nfunc databaseURL() string {\n\tdburl := os.Getenv(\"DATABASE_URL\")\n\tif dburl != \"\" {\n\t\treturn dburl\n\t}\n\tpgUser := os.Getenv(\"PG_USER\")\n\tpgHost := os.Getenv(\"PG_HOST\")\n\tpgPort := os.Getenv(\"PG_PORT\")\n\tpgPass := os.Getenv(\"PG_PASSWORD\")\n\tpgDB := os.Getenv(\"PG_DATABASE\")\n\tif pgUser == \"\" {\n\t\tpgUser = \"postgres\"\n\t}\n\tif pgPass == \"\" {\n\t\tpgPass = \"mysecretpassword\"\n\t}\n\tif pgPort == \"\" {\n\t\tpgPort = \"5432\"\n\t}\n\tif pgHost == \"\" {\n\t\tpgHost = \"127.0.0.1\"\n\t}\n\tif pgDB == \"\" {\n\t\tpgDB = \"dinotest\"\n\t}\n\treturn fmt.Sprintf(\"postgres://%s:%s@%s:%s/%s?sslmode=disable\", pgUser, pgPass, pgHost, pgPort, pgDB)\n}\n\nfunc run(ctx context.Context) error {\n\tflag.Parse()\n\n\tdir := flag.Arg(0)\n\tif dir == \"\" {\n\t\tdir = filepath.Join(\"internal\", \"engine\", \"postgresql\")\n\t}\n\n\ttmpl, err := template.New(\"\").Parse(catalogTmpl)\n\tif err != nil {\n\t\treturn err\n\t}\n\tconn, err := pgx.Connect(ctx, databaseURL())\n\tif err != nil {\n\t\treturn err\n\t}\n\tdefer conn.Close(ctx)\n\n\tschemas := []schemaToLoad{\n\t\t{\n\t\t\tName:      \"pg_catalog\",\n\t\t\tGenFnName: \"genPGCatalog\",\n\t\t\tDestPath:  filepath.Join(dir, \"pg_catalog.go\"),\n\t\t},\n\t\t{\n\t\t\tName:      \"information_schema\",\n\t\t\tGenFnName: \"genInformationSchema\",\n\t\t\tDestPath:  filepath.Join(dir, \"information_schema.go\"),\n\t\t},\n\t}\n\n\tfor _, schema := range schemas {\n\t\tprocs, err := readProcs(ctx, conn, schema.Name)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tif schema.Name == \"pg_catalog\" {\n\t\t\tprocs = preserveLegacyCatalogBehavior(procs)\n\t\t}\n\n\t\trelations, err := readRelations(ctx, conn, schema.Name)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\terr = writeFormattedGo(tmpl, tmplCtx{\n\t\t\tPkg:        \"postgresql\",\n\t\t\tSchemaName: schema.Name,\n\t\t\tGenFnName:  schema.GenFnName,\n\t\t\tProcs:      procs,\n\t\t\tRelations:  relations,\n\t\t}, schema.DestPath)\n\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\tloaded := []extensionPair{}\n\tfor _, extension := range extensions {\n\t\tname := strings.Replace(extension, \"-\", \"_\", -1)\n\n\t\tvar funcName string\n\t\tfor _, part := range strings.Split(name, \"_\") {\n\t\t\tfuncName += strings.Title(part)\n\t\t}\n\n\t\tif _, err := conn.Exec(ctx, fmt.Sprintf(\"CREATE EXTENSION IF NOT EXISTS %q\", extension)); err != nil {\n\t\t\treturn fmt.Errorf(\"error creating %s: %s\", extension, err)\n\t\t}\n\n\t\trows, err := conn.Query(ctx, extensionFuncs, extension)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tprocs, err := scanProcs(rows)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif len(procs) == 0 {\n\t\t\tlog.Printf(\"no functions in %s, skipping\", extension)\n\t\t\tcontinue\n\t\t}\n\n\t\t// Preserve the legacy sort order of the end-to-end tests\n\t\tsort.SliceStable(procs, func(i, j int) bool {\n\t\t\tfnA := procs[i]\n\t\t\tfnB := procs[j]\n\n\t\t\tif extension == \"pgcrypto\" {\n\t\t\t\tif fnA.Name == \"digest\" && fnB.Name == \"digest\" && len(fnA.ArgTypes) == 2 && fnA.ArgTypes[0] == \"text\" {\n\t\t\t\t\treturn true\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn false\n\t\t})\n\n\t\textensionPath := filepath.Join(dir, \"contrib\", name+\".go\")\n\t\terr = writeFormattedGo(tmpl, tmplCtx{\n\t\t\tPkg:        \"contrib\",\n\t\t\tSchemaName: \"pg_catalog\",\n\t\t\tGenFnName:  funcName,\n\t\t\tProcs:      procs,\n\t\t}, extensionPath)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"error generating extension %s: %w\", extension, err)\n\t\t}\n\n\t\tloaded = append(loaded, extensionPair{Name: extension, Func: funcName})\n\t}\n\n\textensionTmpl, err := template.New(\"\").Parse(loaderFuncTmpl)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\textensionLoaderPath := filepath.Join(dir, \"extension.go\")\n\terr = writeFormattedGo(extensionTmpl, loaded, extensionLoaderPath)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\treturn nil\n}\n\ntype schemaToLoad struct {\n\t// name is the name of a schema to load\n\tName string\n\t// DestPath is the desination for the generate file\n\tDestPath string\n\t// The name of the function to generate for loading this schema\n\tGenFnName string\n}\n\ntype extensionPair struct {\n\tName string\n\tFunc string\n}\n\n// https://www.postgresql.org/docs/current/contrib.html\nvar extensions = []string{\n\t\"adminpack\",\n\t\"amcheck\",\n\t// \"auth_delay\",\n\t// \"auto_explain\",\n\t// \"bloom\",\n\t\"btree_gin\",\n\t\"btree_gist\",\n\t\"citext\",\n\t\"cube\",\n\t\"dblink\",\n\t// \"dict_int\",\n\t// \"dict_xsyn\",\n\t\"earthdistance\",\n\t\"file_fdw\",\n\t\"fuzzystrmatch\",\n\t\"hstore\",\n\t\"intagg\",\n\t\"intarray\",\n\t\"isn\",\n\t\"lo\",\n\t\"ltree\",\n\t\"pageinspect\",\n\t// \"passwordcheck\",\n\t\"pg_buffercache\",\n\t\"pg_freespacemap\",\n\t\"pg_prewarm\",\n\t\"pg_stat_statements\",\n\t\"pg_trgm\",\n\t\"pg_visibility\",\n\t\"pgcrypto\",\n\t\"pgrowlocks\",\n\t\"pgstattuple\",\n\t\"postgres_fdw\",\n\t\"seg\",\n\t// \"sepgsql\",\n\t// \"spi\",\n\t\"sslinfo\",\n\t\"tablefunc\",\n\t\"tcn\",\n\t// \"test_decoding\",\n\t// \"tsm_system_rows\",\n\t// \"tsm_system_time\",\n\t\"unaccent\",\n\t\"uuid-ossp\",\n\t\"xml2\",\n}\n"
  },
  {
    "path": "internal/tools/sqlc-pg-gen/proc.go",
    "content": "package main\n\nimport (\n\t\"context\"\n\t\"strings\"\n\n\tpgx \"github.com/jackc/pgx/v4\"\n)\n\n// https://stackoverflow.com/questions/25308765/postgresql-how-can-i-inspect-which-arguments-to-a-procedure-have-a-default-valu\nconst catalogFuncs = `\nSELECT p.proname as name,\n  format_type(p.prorettype, NULL),\n  array(select format_type(unnest(p.proargtypes), NULL)),\n  p.proargnames,\n  p.proargnames[p.pronargs-p.pronargdefaults+1:p.pronargs],\n  p.proargmodes::text[]\nFROM pg_catalog.pg_proc p\nLEFT JOIN pg_catalog.pg_namespace n ON n.oid = p.pronamespace\nWHERE n.nspname::text = $1\n  AND pg_function_is_visible(p.oid)\n-- simply order all columns to keep subsequent runs stable\nORDER BY 1, 2, 3, 4, 5;\n`\n\ntype Proc struct {\n\tName       string\n\tReturnType string\n\tArgTypes   []string\n\tArgNames   []string\n\tHasDefault []string\n\tArgModes   []string\n}\n\nfunc (p *Proc) ReturnTypeName() string {\n\treturn clean(p.ReturnType)\n}\n\nfunc (p *Proc) Args() []Arg {\n\tvar args []Arg\n\tdefaults := map[string]bool{}\n\tfor _, name := range p.HasDefault {\n\t\tdefaults[name] = true\n\t}\n\n\tfor i, argType := range p.ArgTypes {\n\t\tmode := \"i\"\n\t\tname := \"\"\n\t\tif i < len(p.ArgModes) {\n\t\t\tmode = p.ArgModes[i]\n\t\t}\n\t\tif i < len(p.ArgNames) {\n\t\t\tname = p.ArgNames[i]\n\t\t}\n\n\t\targs = append(args, Arg{\n\t\t\tName:       name,\n\t\t\tType:       argType,\n\t\t\tMode:       mode,\n\t\t\tHasDefault: defaults[name],\n\t\t})\n\t}\n\n\t// Some manual changes until https://github.com/sqlc-dev/sqlc/pull/1748\n\t// can be completely implmented\n\tif p.Name == \"mode\" {\n\t\treturn nil\n\t}\n\n\tif p.Name == \"percentile_cont\" && len(args) == 2 {\n\t\targs = args[:1]\n\t}\n\n\tif p.Name == \"percentile_disc\" && len(args) == 2 {\n\t\targs = args[:1]\n\t}\n\n\treturn args\n}\n\ntype Arg struct {\n\tName       string\n\tMode       string\n\tType       string\n\tHasDefault bool\n}\n\nfunc (a *Arg) TypeName() string {\n\treturn clean(a.Type)\n}\n\n// GoMode returns Go's representation of the arguemnt's mode\nfunc (a *Arg) GoMode() string {\n\tswitch a.Mode {\n\tcase \"\", \"i\":\n\t\treturn \"ast.FuncParamIn\"\n\tcase \"o\":\n\t\treturn \"ast.FuncParamOut\"\n\tcase \"b\":\n\t\treturn \"ast.FuncParamInOut\"\n\tcase \"v\":\n\t\treturn \"ast.FuncParamVariadic\"\n\tcase \"t\":\n\t\treturn \"ast.FuncParamTable\"\n\t}\n\n\treturn \"\"\n}\n\nfunc scanProcs(rows pgx.Rows) ([]Proc, error) {\n\tdefer rows.Close()\n\t// Iterate through the result set\n\tvar procs []Proc\n\tfor rows.Next() {\n\t\tvar p Proc\n\t\terr := rows.Scan(\n\t\t\t&p.Name,\n\t\t\t&p.ReturnType,\n\t\t\t&p.ArgTypes,\n\t\t\t&p.ArgNames,\n\t\t\t&p.HasDefault,\n\t\t\t&p.ArgModes,\n\t\t)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\t// TODO: Filter these out in SQL\n\t\tif strings.HasPrefix(p.ReturnType, \"SETOF\") {\n\t\t\tcontinue\n\t\t}\n\n\t\t// The internal pseudo-type is used to declare functions that are meant\n\t\t// only to be called internally by the database system, and not by\n\t\t// direct invocation in an SQL query. If a function has at least one\n\t\t// internal-type argument then it cannot be called from SQL. To\n\t\t// preserve the type safety of this restriction it is important to\n\t\t// follow this coding rule: do not create any function that is declared\n\t\t// to return internal unless it has at least one internal argument\n\t\t//\n\t\t// https://www.postgresql.org/docs/current/datatype-pseudo.html\n\t\tvar skip bool\n\t\tfor i := range p.ArgTypes {\n\t\t\tif p.ArgTypes[i] == \"internal\" {\n\t\t\t\tskip = true\n\t\t\t}\n\t\t}\n\t\tif skip {\n\t\t\tcontinue\n\t\t}\n\t\tif p.ReturnType == \"internal\" {\n\t\t\tcontinue\n\t\t}\n\n\t\tprocs = append(procs, p)\n\t}\n\treturn procs, rows.Err()\n}\n\nfunc readProcs(ctx context.Context, conn *pgx.Conn, schemaName string) ([]Proc, error) {\n\trows, err := conn.Query(ctx, catalogFuncs, schemaName)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn scanProcs(rows)\n}\n"
  },
  {
    "path": "internal/tools/sqlc-pg-gen/relation.go",
    "content": "package main\n\nimport (\n\t\"context\"\n\n\tpgx \"github.com/jackc/pgx/v4\"\n)\n\n// Relations are the relations available in pg_tables and pg_views\n// such as pg_catalog.pg_timezone_names\nconst relationQuery = `\nwith relations as (\n\tselect schemaname, tablename as name from pg_catalog.pg_tables\n\tUNION ALL\n\tselect schemaname, viewname as name from pg_catalog.pg_views\n)\nselect\n\trelations.schemaname,\n\trelations.name as tablename,\n\tpg_attribute.attname as column_name,\n\tattnotnull as column_notnull,\n\tcolumn_type.typname as column_type,\n\tnullif(column_type.typlen, -1) as column_length,\n\tcolumn_type.typcategory = 'A' as column_isarray\nfrom relations\ninner join pg_catalog.pg_class on pg_class.relname = relations.name\nleft join pg_catalog.pg_attribute on pg_attribute.attrelid = pg_class.oid\ninner join pg_catalog.pg_type column_type on pg_attribute.atttypid = column_type.oid\nwhere relations.schemaname = $1\n-- Make sure these columns are always generated in the same order\n-- so that the output is stable\norder by\n relations.schemaname ASC,\n relations.name ASC,\n pg_attribute.attnum ASC\n`\n\ntype Relation struct {\n\tCatalog    string\n\tSchemaName string\n\tName       string\n\tColumns    []RelationColumn\n}\n\ntype RelationColumn struct {\n\tName      string\n\tType      string\n\tIsNotNull bool\n\tIsArray   bool\n\tLength    *int\n}\n\nfunc scanRelations(rows pgx.Rows) ([]Relation, error) {\n\tdefer rows.Close()\n\t// Iterate through the result set\n\tvar relations []Relation\n\tvar prevRel *Relation\n\n\tfor rows.Next() {\n\t\tvar schemaName string\n\t\tvar tableName string\n\t\tvar columnName string\n\t\tvar columnNotNull bool\n\t\tvar columnType string\n\t\tvar columnLength *int\n\t\tvar columnIsArray bool\n\t\terr := rows.Scan(\n\t\t\t&schemaName,\n\t\t\t&tableName,\n\t\t\t&columnName,\n\t\t\t&columnNotNull,\n\t\t\t&columnType,\n\t\t\t&columnLength,\n\t\t\t&columnIsArray,\n\t\t)\n\t\tif err != nil {\n\t\t\treturn nil, err\n\t\t}\n\n\t\tif prevRel == nil || tableName != prevRel.Name {\n\t\t\t// We are on the same table, just keep adding columns\n\t\t\tr := Relation{\n\t\t\t\tCatalog:    \"pg_catalog\",\n\t\t\t\tSchemaName: schemaName,\n\t\t\t\tName:       tableName,\n\t\t\t}\n\n\t\t\trelations = append(relations, r)\n\t\t\tprevRel = &relations[len(relations)-1]\n\t\t}\n\n\t\tprevRel.Columns = append(prevRel.Columns, RelationColumn{\n\t\t\tName:      columnName,\n\t\t\tType:      columnType,\n\t\t\tIsNotNull: columnNotNull,\n\t\t\tIsArray:   columnIsArray,\n\t\t\tLength:    columnLength,\n\t\t})\n\t}\n\n\treturn relations, rows.Err()\n}\n\nfunc readRelations(ctx context.Context, conn *pgx.Conn, schemaName string) ([]Relation, error) {\n\trows, err := conn.Query(ctx, relationQuery, schemaName)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn scanRelations(rows)\n}\n"
  },
  {
    "path": "internal/tracer/trace.go",
    "content": "package tracer\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"os\"\n\t\"runtime/trace\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/debug\"\n)\n\n// Start starts Go's runtime tracing facility.\n// Traces will be written to the file named by [debug.Debug.Trace].\n// It also starts a new [*trace.Task] that will be stopped when the cleanup is called.\nfunc Start(base context.Context) (_ context.Context, cleanup func(), _ error) {\n\tf, err := os.Create(debug.Debug.Trace)\n\tif err != nil {\n\t\treturn base, cleanup, fmt.Errorf(\"failed to create trace output file: %v\", err)\n\t}\n\n\tif err := trace.Start(f); err != nil {\n\t\treturn base, cleanup, fmt.Errorf(\"failed to start trace: %v\", err)\n\t}\n\n\tctx, task := trace.NewTask(base, \"sqlc\")\n\n\treturn ctx, func() {\n\t\tdefer f.Close()\n\t\tdefer trace.Stop()\n\t\tdefer task.End()\n\t}, nil\n}\n"
  },
  {
    "path": "internal/vet/vet.pb.go",
    "content": "// Code generated by protoc-gen-go. DO NOT EDIT.\n// versions:\n// \tprotoc-gen-go v1.30.0\n// \tprotoc        (unknown)\n// source: vet/vet.proto\n\npackage vet\n\nimport (\n\tprotoreflect \"google.golang.org/protobuf/reflect/protoreflect\"\n\tprotoimpl \"google.golang.org/protobuf/runtime/protoimpl\"\n\treflect \"reflect\"\n\tsync \"sync\"\n)\n\nconst (\n\t// Verify that this generated code is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)\n\t// Verify that runtime/protoimpl is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)\n)\n\ntype Parameter struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tNumber int32 `protobuf:\"varint,1,opt,name=number,proto3\" json:\"number,omitempty\"`\n}\n\nfunc (x *Parameter) Reset() {\n\t*x = Parameter{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_vet_vet_proto_msgTypes[0]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Parameter) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Parameter) ProtoMessage() {}\n\nfunc (x *Parameter) ProtoReflect() protoreflect.Message {\n\tmi := &file_vet_vet_proto_msgTypes[0]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Parameter.ProtoReflect.Descriptor instead.\nfunc (*Parameter) Descriptor() ([]byte, []int) {\n\treturn file_vet_vet_proto_rawDescGZIP(), []int{0}\n}\n\nfunc (x *Parameter) GetNumber() int32 {\n\tif x != nil {\n\t\treturn x.Number\n\t}\n\treturn 0\n}\n\ntype Config struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tVersion string   `protobuf:\"bytes,1,opt,name=version,proto3\" json:\"version,omitempty\"`\n\tEngine  string   `protobuf:\"bytes,2,opt,name=engine,proto3\" json:\"engine,omitempty\"`\n\tSchema  []string `protobuf:\"bytes,3,rep,name=schema,proto3\" json:\"schema,omitempty\"`\n\tQueries []string `protobuf:\"bytes,4,rep,name=queries,proto3\" json:\"queries,omitempty\"`\n}\n\nfunc (x *Config) Reset() {\n\t*x = Config{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_vet_vet_proto_msgTypes[1]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Config) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Config) ProtoMessage() {}\n\nfunc (x *Config) ProtoReflect() protoreflect.Message {\n\tmi := &file_vet_vet_proto_msgTypes[1]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Config.ProtoReflect.Descriptor instead.\nfunc (*Config) Descriptor() ([]byte, []int) {\n\treturn file_vet_vet_proto_rawDescGZIP(), []int{1}\n}\n\nfunc (x *Config) GetVersion() string {\n\tif x != nil {\n\t\treturn x.Version\n\t}\n\treturn \"\"\n}\n\nfunc (x *Config) GetEngine() string {\n\tif x != nil {\n\t\treturn x.Engine\n\t}\n\treturn \"\"\n}\n\nfunc (x *Config) GetSchema() []string {\n\tif x != nil {\n\t\treturn x.Schema\n\t}\n\treturn nil\n}\n\nfunc (x *Config) GetQueries() []string {\n\tif x != nil {\n\t\treturn x.Queries\n\t}\n\treturn nil\n}\n\ntype Query struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tSql    string       `protobuf:\"bytes,1,opt,name=sql,proto3\" json:\"sql,omitempty\"`\n\tName   string       `protobuf:\"bytes,2,opt,name=name,proto3\" json:\"name,omitempty\"`\n\tCmd    string       `protobuf:\"bytes,3,opt,name=cmd,proto3\" json:\"cmd,omitempty\"`\n\tParams []*Parameter `protobuf:\"bytes,4,rep,name=params,json=parameters,proto3\" json:\"params,omitempty\"`\n}\n\nfunc (x *Query) Reset() {\n\t*x = Query{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_vet_vet_proto_msgTypes[2]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *Query) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*Query) ProtoMessage() {}\n\nfunc (x *Query) ProtoReflect() protoreflect.Message {\n\tmi := &file_vet_vet_proto_msgTypes[2]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use Query.ProtoReflect.Descriptor instead.\nfunc (*Query) Descriptor() ([]byte, []int) {\n\treturn file_vet_vet_proto_rawDescGZIP(), []int{2}\n}\n\nfunc (x *Query) GetSql() string {\n\tif x != nil {\n\t\treturn x.Sql\n\t}\n\treturn \"\"\n}\n\nfunc (x *Query) GetName() string {\n\tif x != nil {\n\t\treturn x.Name\n\t}\n\treturn \"\"\n}\n\nfunc (x *Query) GetCmd() string {\n\tif x != nil {\n\t\treturn x.Cmd\n\t}\n\treturn \"\"\n}\n\nfunc (x *Query) GetParams() []*Parameter {\n\tif x != nil {\n\t\treturn x.Params\n\t}\n\treturn nil\n}\n\ntype PostgreSQL struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tExplain *PostgreSQLExplain `protobuf:\"bytes,1,opt,name=explain,proto3\" json:\"explain,omitempty\"`\n}\n\nfunc (x *PostgreSQL) Reset() {\n\t*x = PostgreSQL{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_vet_vet_proto_msgTypes[3]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PostgreSQL) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PostgreSQL) ProtoMessage() {}\n\nfunc (x *PostgreSQL) ProtoReflect() protoreflect.Message {\n\tmi := &file_vet_vet_proto_msgTypes[3]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PostgreSQL.ProtoReflect.Descriptor instead.\nfunc (*PostgreSQL) Descriptor() ([]byte, []int) {\n\treturn file_vet_vet_proto_rawDescGZIP(), []int{3}\n}\n\nfunc (x *PostgreSQL) GetExplain() *PostgreSQLExplain {\n\tif x != nil {\n\t\treturn x.Explain\n\t}\n\treturn nil\n}\n\ntype PostgreSQLExplain struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tPlan     *PostgreSQLExplain_Plan     `protobuf:\"bytes,1,opt,name=plan,json=Plan,proto3\" json:\"plan,omitempty\"`\n\tSettings map[string]string           `protobuf:\"bytes,2,rep,name=settings,json=Settings,proto3\" json:\"settings,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"bytes,2,opt,name=value,proto3\"`\n\tPlanning *PostgreSQLExplain_Planning `protobuf:\"bytes,3,opt,name=planning,json=Planning,proto3\" json:\"planning,omitempty\"`\n}\n\nfunc (x *PostgreSQLExplain) Reset() {\n\t*x = PostgreSQLExplain{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_vet_vet_proto_msgTypes[4]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PostgreSQLExplain) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PostgreSQLExplain) ProtoMessage() {}\n\nfunc (x *PostgreSQLExplain) ProtoReflect() protoreflect.Message {\n\tmi := &file_vet_vet_proto_msgTypes[4]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PostgreSQLExplain.ProtoReflect.Descriptor instead.\nfunc (*PostgreSQLExplain) Descriptor() ([]byte, []int) {\n\treturn file_vet_vet_proto_rawDescGZIP(), []int{4}\n}\n\nfunc (x *PostgreSQLExplain) GetPlan() *PostgreSQLExplain_Plan {\n\tif x != nil {\n\t\treturn x.Plan\n\t}\n\treturn nil\n}\n\nfunc (x *PostgreSQLExplain) GetSettings() map[string]string {\n\tif x != nil {\n\t\treturn x.Settings\n\t}\n\treturn nil\n}\n\nfunc (x *PostgreSQLExplain) GetPlanning() *PostgreSQLExplain_Planning {\n\tif x != nil {\n\t\treturn x.Planning\n\t}\n\treturn nil\n}\n\ntype MySQL struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tExplain *MySQLExplain `protobuf:\"bytes,1,opt,name=explain,proto3\" json:\"explain,omitempty\"`\n}\n\nfunc (x *MySQL) Reset() {\n\t*x = MySQL{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_vet_vet_proto_msgTypes[5]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *MySQL) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*MySQL) ProtoMessage() {}\n\nfunc (x *MySQL) ProtoReflect() protoreflect.Message {\n\tmi := &file_vet_vet_proto_msgTypes[5]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use MySQL.ProtoReflect.Descriptor instead.\nfunc (*MySQL) Descriptor() ([]byte, []int) {\n\treturn file_vet_vet_proto_rawDescGZIP(), []int{5}\n}\n\nfunc (x *MySQL) GetExplain() *MySQLExplain {\n\tif x != nil {\n\t\treturn x.Explain\n\t}\n\treturn nil\n}\n\ntype MySQLExplain struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tQueryBlock *MySQLExplain_QueryBlock `protobuf:\"bytes,1,opt,name=query_block,json=queryBlock,proto3\" json:\"query_block,omitempty\"`\n}\n\nfunc (x *MySQLExplain) Reset() {\n\t*x = MySQLExplain{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_vet_vet_proto_msgTypes[6]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *MySQLExplain) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*MySQLExplain) ProtoMessage() {}\n\nfunc (x *MySQLExplain) ProtoReflect() protoreflect.Message {\n\tmi := &file_vet_vet_proto_msgTypes[6]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use MySQLExplain.ProtoReflect.Descriptor instead.\nfunc (*MySQLExplain) Descriptor() ([]byte, []int) {\n\treturn file_vet_vet_proto_rawDescGZIP(), []int{6}\n}\n\nfunc (x *MySQLExplain) GetQueryBlock() *MySQLExplain_QueryBlock {\n\tif x != nil {\n\t\treturn x.QueryBlock\n\t}\n\treturn nil\n}\n\ntype PostgreSQLExplain_Plan struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tNodeType           string                    `protobuf:\"bytes,1,opt,name=node_type,json=Node Type,proto3\" json:\"node_type,omitempty\"`\n\tParentRelationship string                    `protobuf:\"bytes,2,opt,name=parent_relationship,json=Parent Relationship,proto3\" json:\"parent_relationship,omitempty\"`\n\tRelationName       string                    `protobuf:\"bytes,3,opt,name=relation_name,json=Relation Name,proto3\" json:\"relation_name,omitempty\"`\n\tSchema             string                    `protobuf:\"bytes,4,opt,name=schema,json=Schema,proto3\" json:\"schema,omitempty\"`\n\tAlias              string                    `protobuf:\"bytes,5,opt,name=alias,json=Alias,proto3\" json:\"alias,omitempty\"`\n\tParallelAware      bool                      `protobuf:\"varint,6,opt,name=parallel_aware,json=Parallel Aware,proto3\" json:\"parallel_aware,omitempty\"`\n\tAsyncCapable       bool                      `protobuf:\"varint,7,opt,name=async_capable,json=Async Capable,proto3\" json:\"async_capable,omitempty\"`\n\tStartupCost        float32                   `protobuf:\"fixed32,8,opt,name=startup_cost,json=Startup Cost,proto3\" json:\"startup_cost,omitempty\"`\n\tTotalCost          float32                   `protobuf:\"fixed32,9,opt,name=total_cost,json=Total Cost,proto3\" json:\"total_cost,omitempty\"`\n\tPlanRows           uint64                    `protobuf:\"varint,10,opt,name=plan_rows,json=Plan Rows,proto3\" json:\"plan_rows,omitempty\"`\n\tPlanWidth          uint64                    `protobuf:\"varint,11,opt,name=plan_width,json=Plan Width,proto3\" json:\"plan_width,omitempty\"`\n\tOutput             []string                  `protobuf:\"bytes,12,rep,name=output,json=Output,proto3\" json:\"output,omitempty\"`\n\tPlans              []*PostgreSQLExplain_Plan `protobuf:\"bytes,13,rep,name=plans,json=Plans,proto3\" json:\"plans,omitempty\"`\n\t// Embedded \"Blocks\" fields\n\tSharedHitBlocks     uint64 `protobuf:\"varint,14,opt,name=shared_hit_blocks,json=Shared Hit Blocks,proto3\" json:\"shared_hit_blocks,omitempty\"`\n\tSharedReadBlocks    uint64 `protobuf:\"varint,15,opt,name=shared_read_blocks,json=Shared Read Blocks,proto3\" json:\"shared_read_blocks,omitempty\"`\n\tSharedDirtiedBlocks uint64 `protobuf:\"varint,16,opt,name=shared_dirtied_blocks,json=Shared Dirtied Blocks,proto3\" json:\"shared_dirtied_blocks,omitempty\"`\n\tSharedWrittenBlocks uint64 `protobuf:\"varint,17,opt,name=shared_written_blocks,json=Shared Written Blocks,proto3\" json:\"shared_written_blocks,omitempty\"`\n\tLocalHitBlocks      uint64 `protobuf:\"varint,18,opt,name=local_hit_blocks,json=Local Hit Blocks,proto3\" json:\"local_hit_blocks,omitempty\"`\n\tLocalReadBlocks     uint64 `protobuf:\"varint,19,opt,name=local_read_blocks,json=Local Read Blocks,proto3\" json:\"local_read_blocks,omitempty\"`\n\tLocalDirtiedBlocks  uint64 `protobuf:\"varint,20,opt,name=local_dirtied_blocks,json=Local Dirtied Blocks,proto3\" json:\"local_dirtied_blocks,omitempty\"`\n\tLocalWrittenBlocks  uint64 `protobuf:\"varint,21,opt,name=local_written_blocks,json=Local Written Blocks,proto3\" json:\"local_written_blocks,omitempty\"`\n\tTempReadBlocks      uint64 `protobuf:\"varint,22,opt,name=temp_read_blocks,json=Temp Read Blocks,proto3\" json:\"temp_read_blocks,omitempty\"`\n\tTempWrittenBlocks   uint64 `protobuf:\"varint,23,opt,name=temp_written_blocks,json=Temp Written Blocks,proto3\" json:\"temp_written_blocks,omitempty\"`\n\t// \"Node Type\": \"Sort\" fields\n\tSortKey []string `protobuf:\"bytes,24,rep,name=sort_key,json=Sort Key,proto3\" json:\"sort_key,omitempty\"`\n\t// \"Node Type\": \"Hash Join\" fields\n\tJoinType    string `protobuf:\"bytes,25,opt,name=join_type,json=Join Type,proto3\" json:\"join_type,omitempty\"`\n\tInnerUnique bool   `protobuf:\"varint,26,opt,name=inner_unique,json=Inner Unique,proto3\" json:\"inner_unique,omitempty\"`\n\tHashCond    string `protobuf:\"bytes,27,opt,name=hash_cond,json=Hash Cond,proto3\" json:\"hash_cond,omitempty\"`\n\t// \"Node Type\": \"Index Scan\" fields\n\tIndexName     string `protobuf:\"bytes,28,opt,name=index_name,json=Index Name,proto3\" json:\"index_name,omitempty\"`\n\tScanDirection string `protobuf:\"bytes,29,opt,name=scan_direction,json=Scan Direction,proto3\" json:\"scan_direction,omitempty\"`\n\tIndexCond     string `protobuf:\"bytes,30,opt,name=index_cond,json=Index Cond,proto3\" json:\"index_cond,omitempty\"`\n}\n\nfunc (x *PostgreSQLExplain_Plan) Reset() {\n\t*x = PostgreSQLExplain_Plan{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_vet_vet_proto_msgTypes[8]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PostgreSQLExplain_Plan) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PostgreSQLExplain_Plan) ProtoMessage() {}\n\nfunc (x *PostgreSQLExplain_Plan) ProtoReflect() protoreflect.Message {\n\tmi := &file_vet_vet_proto_msgTypes[8]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PostgreSQLExplain_Plan.ProtoReflect.Descriptor instead.\nfunc (*PostgreSQLExplain_Plan) Descriptor() ([]byte, []int) {\n\treturn file_vet_vet_proto_rawDescGZIP(), []int{4, 1}\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetNodeType() string {\n\tif x != nil {\n\t\treturn x.NodeType\n\t}\n\treturn \"\"\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetParentRelationship() string {\n\tif x != nil {\n\t\treturn x.ParentRelationship\n\t}\n\treturn \"\"\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetRelationName() string {\n\tif x != nil {\n\t\treturn x.RelationName\n\t}\n\treturn \"\"\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetSchema() string {\n\tif x != nil {\n\t\treturn x.Schema\n\t}\n\treturn \"\"\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetAlias() string {\n\tif x != nil {\n\t\treturn x.Alias\n\t}\n\treturn \"\"\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetParallelAware() bool {\n\tif x != nil {\n\t\treturn x.ParallelAware\n\t}\n\treturn false\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetAsyncCapable() bool {\n\tif x != nil {\n\t\treturn x.AsyncCapable\n\t}\n\treturn false\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetStartupCost() float32 {\n\tif x != nil {\n\t\treturn x.StartupCost\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetTotalCost() float32 {\n\tif x != nil {\n\t\treturn x.TotalCost\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetPlanRows() uint64 {\n\tif x != nil {\n\t\treturn x.PlanRows\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetPlanWidth() uint64 {\n\tif x != nil {\n\t\treturn x.PlanWidth\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetOutput() []string {\n\tif x != nil {\n\t\treturn x.Output\n\t}\n\treturn nil\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetPlans() []*PostgreSQLExplain_Plan {\n\tif x != nil {\n\t\treturn x.Plans\n\t}\n\treturn nil\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetSharedHitBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.SharedHitBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetSharedReadBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.SharedReadBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetSharedDirtiedBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.SharedDirtiedBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetSharedWrittenBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.SharedWrittenBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetLocalHitBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.LocalHitBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetLocalReadBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.LocalReadBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetLocalDirtiedBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.LocalDirtiedBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetLocalWrittenBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.LocalWrittenBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetTempReadBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.TempReadBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetTempWrittenBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.TempWrittenBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetSortKey() []string {\n\tif x != nil {\n\t\treturn x.SortKey\n\t}\n\treturn nil\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetJoinType() string {\n\tif x != nil {\n\t\treturn x.JoinType\n\t}\n\treturn \"\"\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetInnerUnique() bool {\n\tif x != nil {\n\t\treturn x.InnerUnique\n\t}\n\treturn false\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetHashCond() string {\n\tif x != nil {\n\t\treturn x.HashCond\n\t}\n\treturn \"\"\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetIndexName() string {\n\tif x != nil {\n\t\treturn x.IndexName\n\t}\n\treturn \"\"\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetScanDirection() string {\n\tif x != nil {\n\t\treturn x.ScanDirection\n\t}\n\treturn \"\"\n}\n\nfunc (x *PostgreSQLExplain_Plan) GetIndexCond() string {\n\tif x != nil {\n\t\treturn x.IndexCond\n\t}\n\treturn \"\"\n}\n\ntype PostgreSQLExplain_Planning struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tSharedHitBlocks     uint64 `protobuf:\"varint,1,opt,name=shared_hit_blocks,json=Shared Hit Blocks,proto3\" json:\"shared_hit_blocks,omitempty\"`\n\tSharedReadBlocks    uint64 `protobuf:\"varint,2,opt,name=shared_read_blocks,json=Shared Read Blocks,proto3\" json:\"shared_read_blocks,omitempty\"`\n\tSharedDirtiedBlocks uint64 `protobuf:\"varint,3,opt,name=shared_dirtied_blocks,json=Shared Dirtied Blocks,proto3\" json:\"shared_dirtied_blocks,omitempty\"`\n\tSharedWrittenBlocks uint64 `protobuf:\"varint,4,opt,name=shared_written_blocks,json=Shared Written Blocks,proto3\" json:\"shared_written_blocks,omitempty\"`\n\tLocalHitBlocks      uint64 `protobuf:\"varint,5,opt,name=local_hit_blocks,json=Local Hit Blocks,proto3\" json:\"local_hit_blocks,omitempty\"`\n\tLocalReadBlocks     uint64 `protobuf:\"varint,6,opt,name=local_read_blocks,json=Local Read Blocks,proto3\" json:\"local_read_blocks,omitempty\"`\n\tLocalDirtiedBlocks  uint64 `protobuf:\"varint,7,opt,name=local_dirtied_blocks,json=Local Dirtied Blocks,proto3\" json:\"local_dirtied_blocks,omitempty\"`\n\tLocalWrittenBlocks  uint64 `protobuf:\"varint,8,opt,name=local_written_blocks,json=Local Written Blocks,proto3\" json:\"local_written_blocks,omitempty\"`\n\tTempReadBlocks      uint64 `protobuf:\"varint,9,opt,name=temp_read_blocks,json=Temp Read Blocks,proto3\" json:\"temp_read_blocks,omitempty\"`\n\tTempWrittenBlocks   uint64 `protobuf:\"varint,10,opt,name=temp_written_blocks,json=Temp Written Blocks,proto3\" json:\"temp_written_blocks,omitempty\"`\n}\n\nfunc (x *PostgreSQLExplain_Planning) Reset() {\n\t*x = PostgreSQLExplain_Planning{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_vet_vet_proto_msgTypes[9]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *PostgreSQLExplain_Planning) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*PostgreSQLExplain_Planning) ProtoMessage() {}\n\nfunc (x *PostgreSQLExplain_Planning) ProtoReflect() protoreflect.Message {\n\tmi := &file_vet_vet_proto_msgTypes[9]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use PostgreSQLExplain_Planning.ProtoReflect.Descriptor instead.\nfunc (*PostgreSQLExplain_Planning) Descriptor() ([]byte, []int) {\n\treturn file_vet_vet_proto_rawDescGZIP(), []int{4, 2}\n}\n\nfunc (x *PostgreSQLExplain_Planning) GetSharedHitBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.SharedHitBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Planning) GetSharedReadBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.SharedReadBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Planning) GetSharedDirtiedBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.SharedDirtiedBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Planning) GetSharedWrittenBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.SharedWrittenBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Planning) GetLocalHitBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.LocalHitBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Planning) GetLocalReadBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.LocalReadBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Planning) GetLocalDirtiedBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.LocalDirtiedBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Planning) GetLocalWrittenBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.LocalWrittenBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Planning) GetTempReadBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.TempReadBlocks\n\t}\n\treturn 0\n}\n\nfunc (x *PostgreSQLExplain_Planning) GetTempWrittenBlocks() uint64 {\n\tif x != nil {\n\t\treturn x.TempWrittenBlocks\n\t}\n\treturn 0\n}\n\ntype MySQLExplain_QueryBlock struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tSelectId          uint64                          `protobuf:\"varint,1,opt,name=select_id,json=selectId,proto3\" json:\"select_id,omitempty\"`\n\tMessage           string                          `protobuf:\"bytes,2,opt,name=message,proto3\" json:\"message,omitempty\"`\n\tCostInfo          map[string]string               `protobuf:\"bytes,3,rep,name=cost_info,json=costInfo,proto3\" json:\"cost_info,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"bytes,2,opt,name=value,proto3\"`\n\tTable             *MySQLExplain_Table             `protobuf:\"bytes,4,opt,name=table,proto3\" json:\"table,omitempty\"`\n\tOrderingOperation *MySQLExplain_OrderingOperation `protobuf:\"bytes,5,opt,name=ordering_operation,json=orderingOperation,proto3\" json:\"ordering_operation,omitempty\"`\n\tNestedLoop        []*MySQLExplain_NestedLoopObj   `protobuf:\"bytes,6,rep,name=nested_loop,json=nestedLoop,proto3\" json:\"nested_loop,omitempty\"`\n}\n\nfunc (x *MySQLExplain_QueryBlock) Reset() {\n\t*x = MySQLExplain_QueryBlock{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_vet_vet_proto_msgTypes[10]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *MySQLExplain_QueryBlock) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*MySQLExplain_QueryBlock) ProtoMessage() {}\n\nfunc (x *MySQLExplain_QueryBlock) ProtoReflect() protoreflect.Message {\n\tmi := &file_vet_vet_proto_msgTypes[10]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use MySQLExplain_QueryBlock.ProtoReflect.Descriptor instead.\nfunc (*MySQLExplain_QueryBlock) Descriptor() ([]byte, []int) {\n\treturn file_vet_vet_proto_rawDescGZIP(), []int{6, 0}\n}\n\nfunc (x *MySQLExplain_QueryBlock) GetSelectId() uint64 {\n\tif x != nil {\n\t\treturn x.SelectId\n\t}\n\treturn 0\n}\n\nfunc (x *MySQLExplain_QueryBlock) GetMessage() string {\n\tif x != nil {\n\t\treturn x.Message\n\t}\n\treturn \"\"\n}\n\nfunc (x *MySQLExplain_QueryBlock) GetCostInfo() map[string]string {\n\tif x != nil {\n\t\treturn x.CostInfo\n\t}\n\treturn nil\n}\n\nfunc (x *MySQLExplain_QueryBlock) GetTable() *MySQLExplain_Table {\n\tif x != nil {\n\t\treturn x.Table\n\t}\n\treturn nil\n}\n\nfunc (x *MySQLExplain_QueryBlock) GetOrderingOperation() *MySQLExplain_OrderingOperation {\n\tif x != nil {\n\t\treturn x.OrderingOperation\n\t}\n\treturn nil\n}\n\nfunc (x *MySQLExplain_QueryBlock) GetNestedLoop() []*MySQLExplain_NestedLoopObj {\n\tif x != nil {\n\t\treturn x.NestedLoop\n\t}\n\treturn nil\n}\n\ntype MySQLExplain_Table struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tTableName           string            `protobuf:\"bytes,1,opt,name=table_name,json=tableName,proto3\" json:\"table_name,omitempty\"`\n\tAccessType          string            `protobuf:\"bytes,2,opt,name=access_type,json=accessType,proto3\" json:\"access_type,omitempty\"`\n\tRowsExaminedPerScan uint64            `protobuf:\"varint,3,opt,name=rows_examined_per_scan,json=rowsExaminedPerScan,proto3\" json:\"rows_examined_per_scan,omitempty\"`\n\tRowsProducedPerJoin uint64            `protobuf:\"varint,4,opt,name=rows_produced_per_join,json=rowsProducedPerJoin,proto3\" json:\"rows_produced_per_join,omitempty\"`\n\tFiltered            string            `protobuf:\"bytes,5,opt,name=filtered,proto3\" json:\"filtered,omitempty\"`\n\tCostInfo            map[string]string `protobuf:\"bytes,6,rep,name=cost_info,json=costInfo,proto3\" json:\"cost_info,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"bytes,2,opt,name=value,proto3\"`\n\tUsedColumns         []string          `protobuf:\"bytes,7,rep,name=used_columns,json=usedColumns,proto3\" json:\"used_columns,omitempty\"`\n\tInsert              bool              `protobuf:\"varint,8,opt,name=insert,proto3\" json:\"insert,omitempty\"`\n\tPossibleKeys        []string          `protobuf:\"bytes,9,rep,name=possible_keys,json=possibleKeys,proto3\" json:\"possible_keys,omitempty\"`\n\tKey                 string            `protobuf:\"bytes,10,opt,name=key,proto3\" json:\"key,omitempty\"`\n\tUsedKeyParts        []string          `protobuf:\"bytes,11,rep,name=used_key_parts,json=usedKeyParts,proto3\" json:\"used_key_parts,omitempty\"`\n\tKeyLength           string            `protobuf:\"bytes,12,opt,name=key_length,json=keyLength,proto3\" json:\"key_length,omitempty\"`\n\tRef                 []string          `protobuf:\"bytes,13,rep,name=ref,proto3\" json:\"ref,omitempty\"`\n}\n\nfunc (x *MySQLExplain_Table) Reset() {\n\t*x = MySQLExplain_Table{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_vet_vet_proto_msgTypes[11]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *MySQLExplain_Table) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*MySQLExplain_Table) ProtoMessage() {}\n\nfunc (x *MySQLExplain_Table) ProtoReflect() protoreflect.Message {\n\tmi := &file_vet_vet_proto_msgTypes[11]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use MySQLExplain_Table.ProtoReflect.Descriptor instead.\nfunc (*MySQLExplain_Table) Descriptor() ([]byte, []int) {\n\treturn file_vet_vet_proto_rawDescGZIP(), []int{6, 1}\n}\n\nfunc (x *MySQLExplain_Table) GetTableName() string {\n\tif x != nil {\n\t\treturn x.TableName\n\t}\n\treturn \"\"\n}\n\nfunc (x *MySQLExplain_Table) GetAccessType() string {\n\tif x != nil {\n\t\treturn x.AccessType\n\t}\n\treturn \"\"\n}\n\nfunc (x *MySQLExplain_Table) GetRowsExaminedPerScan() uint64 {\n\tif x != nil {\n\t\treturn x.RowsExaminedPerScan\n\t}\n\treturn 0\n}\n\nfunc (x *MySQLExplain_Table) GetRowsProducedPerJoin() uint64 {\n\tif x != nil {\n\t\treturn x.RowsProducedPerJoin\n\t}\n\treturn 0\n}\n\nfunc (x *MySQLExplain_Table) GetFiltered() string {\n\tif x != nil {\n\t\treturn x.Filtered\n\t}\n\treturn \"\"\n}\n\nfunc (x *MySQLExplain_Table) GetCostInfo() map[string]string {\n\tif x != nil {\n\t\treturn x.CostInfo\n\t}\n\treturn nil\n}\n\nfunc (x *MySQLExplain_Table) GetUsedColumns() []string {\n\tif x != nil {\n\t\treturn x.UsedColumns\n\t}\n\treturn nil\n}\n\nfunc (x *MySQLExplain_Table) GetInsert() bool {\n\tif x != nil {\n\t\treturn x.Insert\n\t}\n\treturn false\n}\n\nfunc (x *MySQLExplain_Table) GetPossibleKeys() []string {\n\tif x != nil {\n\t\treturn x.PossibleKeys\n\t}\n\treturn nil\n}\n\nfunc (x *MySQLExplain_Table) GetKey() string {\n\tif x != nil {\n\t\treturn x.Key\n\t}\n\treturn \"\"\n}\n\nfunc (x *MySQLExplain_Table) GetUsedKeyParts() []string {\n\tif x != nil {\n\t\treturn x.UsedKeyParts\n\t}\n\treturn nil\n}\n\nfunc (x *MySQLExplain_Table) GetKeyLength() string {\n\tif x != nil {\n\t\treturn x.KeyLength\n\t}\n\treturn \"\"\n}\n\nfunc (x *MySQLExplain_Table) GetRef() []string {\n\tif x != nil {\n\t\treturn x.Ref\n\t}\n\treturn nil\n}\n\ntype MySQLExplain_NestedLoopObj struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tTable *MySQLExplain_Table `protobuf:\"bytes,1,opt,name=table,proto3\" json:\"table,omitempty\"`\n}\n\nfunc (x *MySQLExplain_NestedLoopObj) Reset() {\n\t*x = MySQLExplain_NestedLoopObj{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_vet_vet_proto_msgTypes[12]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *MySQLExplain_NestedLoopObj) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*MySQLExplain_NestedLoopObj) ProtoMessage() {}\n\nfunc (x *MySQLExplain_NestedLoopObj) ProtoReflect() protoreflect.Message {\n\tmi := &file_vet_vet_proto_msgTypes[12]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use MySQLExplain_NestedLoopObj.ProtoReflect.Descriptor instead.\nfunc (*MySQLExplain_NestedLoopObj) Descriptor() ([]byte, []int) {\n\treturn file_vet_vet_proto_rawDescGZIP(), []int{6, 2}\n}\n\nfunc (x *MySQLExplain_NestedLoopObj) GetTable() *MySQLExplain_Table {\n\tif x != nil {\n\t\treturn x.Table\n\t}\n\treturn nil\n}\n\ntype MySQLExplain_OrderingOperation struct {\n\tstate         protoimpl.MessageState\n\tsizeCache     protoimpl.SizeCache\n\tunknownFields protoimpl.UnknownFields\n\n\tUsingFilesort bool                          `protobuf:\"varint,1,opt,name=using_filesort,json=usingFilesort,proto3\" json:\"using_filesort,omitempty\"`\n\tCostInfo      map[string]string             `protobuf:\"bytes,2,rep,name=cost_info,json=costInfo,proto3\" json:\"cost_info,omitempty\" protobuf_key:\"bytes,1,opt,name=key,proto3\" protobuf_val:\"bytes,2,opt,name=value,proto3\"`\n\tTable         *MySQLExplain_Table           `protobuf:\"bytes,3,opt,name=table,proto3\" json:\"table,omitempty\"`\n\tNestedLoop    []*MySQLExplain_NestedLoopObj `protobuf:\"bytes,4,rep,name=nested_loop,json=nestedLoop,proto3\" json:\"nested_loop,omitempty\"`\n}\n\nfunc (x *MySQLExplain_OrderingOperation) Reset() {\n\t*x = MySQLExplain_OrderingOperation{}\n\tif protoimpl.UnsafeEnabled {\n\t\tmi := &file_vet_vet_proto_msgTypes[13]\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tms.StoreMessageInfo(mi)\n\t}\n}\n\nfunc (x *MySQLExplain_OrderingOperation) String() string {\n\treturn protoimpl.X.MessageStringOf(x)\n}\n\nfunc (*MySQLExplain_OrderingOperation) ProtoMessage() {}\n\nfunc (x *MySQLExplain_OrderingOperation) ProtoReflect() protoreflect.Message {\n\tmi := &file_vet_vet_proto_msgTypes[13]\n\tif protoimpl.UnsafeEnabled && x != nil {\n\t\tms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))\n\t\tif ms.LoadMessageInfo() == nil {\n\t\t\tms.StoreMessageInfo(mi)\n\t\t}\n\t\treturn ms\n\t}\n\treturn mi.MessageOf(x)\n}\n\n// Deprecated: Use MySQLExplain_OrderingOperation.ProtoReflect.Descriptor instead.\nfunc (*MySQLExplain_OrderingOperation) Descriptor() ([]byte, []int) {\n\treturn file_vet_vet_proto_rawDescGZIP(), []int{6, 3}\n}\n\nfunc (x *MySQLExplain_OrderingOperation) GetUsingFilesort() bool {\n\tif x != nil {\n\t\treturn x.UsingFilesort\n\t}\n\treturn false\n}\n\nfunc (x *MySQLExplain_OrderingOperation) GetCostInfo() map[string]string {\n\tif x != nil {\n\t\treturn x.CostInfo\n\t}\n\treturn nil\n}\n\nfunc (x *MySQLExplain_OrderingOperation) GetTable() *MySQLExplain_Table {\n\tif x != nil {\n\t\treturn x.Table\n\t}\n\treturn nil\n}\n\nfunc (x *MySQLExplain_OrderingOperation) GetNestedLoop() []*MySQLExplain_NestedLoopObj {\n\tif x != nil {\n\t\treturn x.NestedLoop\n\t}\n\treturn nil\n}\n\nvar File_vet_vet_proto protoreflect.FileDescriptor\n\nvar file_vet_vet_proto_rawDesc = []byte{\n\t0x0a, 0x0d, 0x76, 0x65, 0x74, 0x2f, 0x76, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,\n\t0x03, 0x76, 0x65, 0x74, 0x22, 0x23, 0x0a, 0x09, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65,\n\t0x72, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,\n\t0x05, 0x52, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x6c, 0x0a, 0x06, 0x43, 0x6f, 0x6e,\n\t0x66, 0x69, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01,\n\t0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a,\n\t0x06, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65,\n\t0x6e, 0x67, 0x69, 0x6e, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x18,\n\t0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x18, 0x0a,\n\t0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07,\n\t0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0x6b, 0x0a, 0x05, 0x51, 0x75, 0x65, 0x72, 0x79,\n\t0x12, 0x10, 0x0a, 0x03, 0x73, 0x71, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73,\n\t0x71, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x63, 0x6d, 0x64, 0x18, 0x03, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x03, 0x63, 0x6d, 0x64, 0x12, 0x2a, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61,\n\t0x6d, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x76, 0x65, 0x74, 0x2e, 0x50,\n\t0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65,\n\t0x74, 0x65, 0x72, 0x73, 0x22, 0x3e, 0x0a, 0x0a, 0x50, 0x6f, 0x73, 0x74, 0x67, 0x72, 0x65, 0x53,\n\t0x51, 0x4c, 0x12, 0x30, 0x0a, 0x07, 0x65, 0x78, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x18, 0x01, 0x20,\n\t0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x76, 0x65, 0x74, 0x2e, 0x50, 0x6f, 0x73, 0x74, 0x67, 0x72,\n\t0x65, 0x53, 0x51, 0x4c, 0x45, 0x78, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x52, 0x07, 0x65, 0x78, 0x70,\n\t0x6c, 0x61, 0x69, 0x6e, 0x22, 0x8d, 0x0f, 0x0a, 0x11, 0x50, 0x6f, 0x73, 0x74, 0x67, 0x72, 0x65,\n\t0x53, 0x51, 0x4c, 0x45, 0x78, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x12, 0x2f, 0x0a, 0x04, 0x70, 0x6c,\n\t0x61, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x76, 0x65, 0x74, 0x2e, 0x50,\n\t0x6f, 0x73, 0x74, 0x67, 0x72, 0x65, 0x53, 0x51, 0x4c, 0x45, 0x78, 0x70, 0x6c, 0x61, 0x69, 0x6e,\n\t0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x52, 0x04, 0x50, 0x6c, 0x61, 0x6e, 0x12, 0x40, 0x0a, 0x08, 0x73,\n\t0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e,\n\t0x76, 0x65, 0x74, 0x2e, 0x50, 0x6f, 0x73, 0x74, 0x67, 0x72, 0x65, 0x53, 0x51, 0x4c, 0x45, 0x78,\n\t0x70, 0x6c, 0x61, 0x69, 0x6e, 0x2e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x45, 0x6e,\n\t0x74, 0x72, 0x79, 0x52, 0x08, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3b, 0x0a,\n\t0x08, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,\n\t0x1f, 0x2e, 0x76, 0x65, 0x74, 0x2e, 0x50, 0x6f, 0x73, 0x74, 0x67, 0x72, 0x65, 0x53, 0x51, 0x4c,\n\t0x45, 0x78, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67,\n\t0x52, 0x08, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x1a, 0x3b, 0x0a, 0x0d, 0x53, 0x65,\n\t0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,\n\t0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a,\n\t0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61,\n\t0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x93, 0x09, 0x0a, 0x04, 0x50, 0x6c, 0x61, 0x6e,\n\t0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x6f, 0x64, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20,\n\t0x01, 0x28, 0x09, 0x52, 0x09, 0x4e, 0x6f, 0x64, 0x65, 0x20, 0x54, 0x79, 0x70, 0x65, 0x12, 0x30,\n\t0x0a, 0x13, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,\n\t0x6e, 0x73, 0x68, 0x69, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x13, 0x50, 0x61, 0x72,\n\t0x65, 0x6e, 0x74, 0x20, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70,\n\t0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d,\n\t0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,\n\t0x6e, 0x20, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61,\n\t0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x12, 0x14,\n\t0x0a, 0x05, 0x61, 0x6c, 0x69, 0x61, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x41,\n\t0x6c, 0x69, 0x61, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x70, 0x61, 0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c,\n\t0x5f, 0x61, 0x77, 0x61, 0x72, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x50, 0x61,\n\t0x72, 0x61, 0x6c, 0x6c, 0x65, 0x6c, 0x20, 0x41, 0x77, 0x61, 0x72, 0x65, 0x12, 0x24, 0x0a, 0x0d,\n\t0x61, 0x73, 0x79, 0x6e, 0x63, 0x5f, 0x63, 0x61, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x07, 0x20,\n\t0x01, 0x28, 0x08, 0x52, 0x0d, 0x41, 0x73, 0x79, 0x6e, 0x63, 0x20, 0x43, 0x61, 0x70, 0x61, 0x62,\n\t0x6c, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x74, 0x61, 0x72, 0x74, 0x75, 0x70, 0x5f, 0x63, 0x6f,\n\t0x73, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0c, 0x53, 0x74, 0x61, 0x72, 0x74, 0x75,\n\t0x70, 0x20, 0x43, 0x6f, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f,\n\t0x63, 0x6f, 0x73, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0a, 0x54, 0x6f, 0x74, 0x61,\n\t0x6c, 0x20, 0x43, 0x6f, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x72,\n\t0x6f, 0x77, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x50, 0x6c, 0x61, 0x6e, 0x20,\n\t0x52, 0x6f, 0x77, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x77, 0x69, 0x64,\n\t0x74, 0x68, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x50, 0x6c, 0x61, 0x6e, 0x20, 0x57,\n\t0x69, 0x64, 0x74, 0x68, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x18, 0x0c,\n\t0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x4f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x12, 0x31, 0x0a, 0x05,\n\t0x70, 0x6c, 0x61, 0x6e, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x76, 0x65,\n\t0x74, 0x2e, 0x50, 0x6f, 0x73, 0x74, 0x67, 0x72, 0x65, 0x53, 0x51, 0x4c, 0x45, 0x78, 0x70, 0x6c,\n\t0x61, 0x69, 0x6e, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x52, 0x05, 0x50, 0x6c, 0x61, 0x6e, 0x73, 0x12,\n\t0x2c, 0x0a, 0x11, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x68, 0x69, 0x74, 0x5f, 0x62, 0x6c,\n\t0x6f, 0x63, 0x6b, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x53, 0x68, 0x61, 0x72,\n\t0x65, 0x64, 0x20, 0x48, 0x69, 0x74, 0x20, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x12, 0x2e, 0x0a,\n\t0x12, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x62, 0x6c, 0x6f,\n\t0x63, 0x6b, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x04, 0x52, 0x12, 0x53, 0x68, 0x61, 0x72, 0x65,\n\t0x64, 0x20, 0x52, 0x65, 0x61, 0x64, 0x20, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x12, 0x34, 0x0a,\n\t0x15, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x64, 0x69, 0x72, 0x74, 0x69, 0x65, 0x64, 0x5f,\n\t0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15, 0x53, 0x68,\n\t0x61, 0x72, 0x65, 0x64, 0x20, 0x44, 0x69, 0x72, 0x74, 0x69, 0x65, 0x64, 0x20, 0x42, 0x6c, 0x6f,\n\t0x63, 0x6b, 0x73, 0x12, 0x34, 0x0a, 0x15, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x77, 0x72,\n\t0x69, 0x74, 0x74, 0x65, 0x6e, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x11, 0x20, 0x01,\n\t0x28, 0x04, 0x52, 0x15, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x20, 0x57, 0x72, 0x69, 0x74, 0x74,\n\t0x65, 0x6e, 0x20, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x12, 0x2a, 0x0a, 0x10, 0x6c, 0x6f, 0x63,\n\t0x61, 0x6c, 0x5f, 0x68, 0x69, 0x74, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x12, 0x20,\n\t0x01, 0x28, 0x04, 0x52, 0x10, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x48, 0x69, 0x74, 0x20, 0x42,\n\t0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x12, 0x2c, 0x0a, 0x11, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x72,\n\t0x65, 0x61, 0x64, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x13, 0x20, 0x01, 0x28, 0x04,\n\t0x52, 0x11, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x52, 0x65, 0x61, 0x64, 0x20, 0x42, 0x6c, 0x6f,\n\t0x63, 0x6b, 0x73, 0x12, 0x32, 0x0a, 0x14, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x69, 0x72,\n\t0x74, 0x69, 0x65, 0x64, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x14, 0x20, 0x01, 0x28,\n\t0x04, 0x52, 0x14, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x44, 0x69, 0x72, 0x74, 0x69, 0x65, 0x64,\n\t0x20, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x12, 0x32, 0x0a, 0x14, 0x6c, 0x6f, 0x63, 0x61, 0x6c,\n\t0x5f, 0x77, 0x72, 0x69, 0x74, 0x74, 0x65, 0x6e, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18,\n\t0x15, 0x20, 0x01, 0x28, 0x04, 0x52, 0x14, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x57, 0x72, 0x69,\n\t0x74, 0x74, 0x65, 0x6e, 0x20, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x12, 0x2a, 0x0a, 0x10, 0x74,\n\t0x65, 0x6d, 0x70, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18,\n\t0x16, 0x20, 0x01, 0x28, 0x04, 0x52, 0x10, 0x54, 0x65, 0x6d, 0x70, 0x20, 0x52, 0x65, 0x61, 0x64,\n\t0x20, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x12, 0x30, 0x0a, 0x13, 0x74, 0x65, 0x6d, 0x70, 0x5f,\n\t0x77, 0x72, 0x69, 0x74, 0x74, 0x65, 0x6e, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x17,\n\t0x20, 0x01, 0x28, 0x04, 0x52, 0x13, 0x54, 0x65, 0x6d, 0x70, 0x20, 0x57, 0x72, 0x69, 0x74, 0x74,\n\t0x65, 0x6e, 0x20, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x6f, 0x72,\n\t0x74, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x18, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x53, 0x6f, 0x72,\n\t0x74, 0x20, 0x4b, 0x65, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x6a, 0x6f, 0x69, 0x6e, 0x5f, 0x74, 0x79,\n\t0x70, 0x65, 0x18, 0x19, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x4a, 0x6f, 0x69, 0x6e, 0x20, 0x54,\n\t0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x5f, 0x75, 0x6e, 0x69,\n\t0x71, 0x75, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x49, 0x6e, 0x6e, 0x65, 0x72,\n\t0x20, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x68, 0x61, 0x73, 0x68, 0x5f,\n\t0x63, 0x6f, 0x6e, 0x64, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x48, 0x61, 0x73, 0x68,\n\t0x20, 0x43, 0x6f, 0x6e, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x5f, 0x6e,\n\t0x61, 0x6d, 0x65, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x49, 0x6e, 0x64, 0x65, 0x78,\n\t0x20, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x64, 0x69,\n\t0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x53,\n\t0x63, 0x61, 0x6e, 0x20, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a,\n\t0x0a, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x18, 0x1e, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x0a, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x20, 0x43, 0x6f, 0x6e, 0x64, 0x1a, 0xf4, 0x03,\n\t0x0a, 0x08, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x12, 0x2c, 0x0a, 0x11, 0x73, 0x68,\n\t0x61, 0x72, 0x65, 0x64, 0x5f, 0x68, 0x69, 0x74, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18,\n\t0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x20, 0x48, 0x69,\n\t0x74, 0x20, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x12, 0x2e, 0x0a, 0x12, 0x73, 0x68, 0x61, 0x72,\n\t0x65, 0x64, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x02,\n\t0x20, 0x01, 0x28, 0x04, 0x52, 0x12, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x20, 0x52, 0x65, 0x61,\n\t0x64, 0x20, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x12, 0x34, 0x0a, 0x15, 0x73, 0x68, 0x61, 0x72,\n\t0x65, 0x64, 0x5f, 0x64, 0x69, 0x72, 0x74, 0x69, 0x65, 0x64, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b,\n\t0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x20,\n\t0x44, 0x69, 0x72, 0x74, 0x69, 0x65, 0x64, 0x20, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x12, 0x34,\n\t0x0a, 0x15, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x77, 0x72, 0x69, 0x74, 0x74, 0x65, 0x6e,\n\t0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x15, 0x53,\n\t0x68, 0x61, 0x72, 0x65, 0x64, 0x20, 0x57, 0x72, 0x69, 0x74, 0x74, 0x65, 0x6e, 0x20, 0x42, 0x6c,\n\t0x6f, 0x63, 0x6b, 0x73, 0x12, 0x2a, 0x0a, 0x10, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x68, 0x69,\n\t0x74, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x10,\n\t0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x48, 0x69, 0x74, 0x20, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73,\n\t0x12, 0x2c, 0x0a, 0x11, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x62,\n\t0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x4c, 0x6f, 0x63,\n\t0x61, 0x6c, 0x20, 0x52, 0x65, 0x61, 0x64, 0x20, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x12, 0x32,\n\t0x0a, 0x14, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x64, 0x69, 0x72, 0x74, 0x69, 0x65, 0x64, 0x5f,\n\t0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x14, 0x4c, 0x6f,\n\t0x63, 0x61, 0x6c, 0x20, 0x44, 0x69, 0x72, 0x74, 0x69, 0x65, 0x64, 0x20, 0x42, 0x6c, 0x6f, 0x63,\n\t0x6b, 0x73, 0x12, 0x32, 0x0a, 0x14, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x77, 0x72, 0x69, 0x74,\n\t0x74, 0x65, 0x6e, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04,\n\t0x52, 0x14, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x20, 0x57, 0x72, 0x69, 0x74, 0x74, 0x65, 0x6e, 0x20,\n\t0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x12, 0x2a, 0x0a, 0x10, 0x74, 0x65, 0x6d, 0x70, 0x5f, 0x72,\n\t0x65, 0x61, 0x64, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04,\n\t0x52, 0x10, 0x54, 0x65, 0x6d, 0x70, 0x20, 0x52, 0x65, 0x61, 0x64, 0x20, 0x42, 0x6c, 0x6f, 0x63,\n\t0x6b, 0x73, 0x12, 0x30, 0x0a, 0x13, 0x74, 0x65, 0x6d, 0x70, 0x5f, 0x77, 0x72, 0x69, 0x74, 0x74,\n\t0x65, 0x6e, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x04, 0x52,\n\t0x13, 0x54, 0x65, 0x6d, 0x70, 0x20, 0x57, 0x72, 0x69, 0x74, 0x74, 0x65, 0x6e, 0x20, 0x42, 0x6c,\n\t0x6f, 0x63, 0x6b, 0x73, 0x22, 0x34, 0x0a, 0x05, 0x4d, 0x79, 0x53, 0x51, 0x4c, 0x12, 0x2b, 0x0a,\n\t0x07, 0x65, 0x78, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11,\n\t0x2e, 0x76, 0x65, 0x74, 0x2e, 0x4d, 0x79, 0x53, 0x51, 0x4c, 0x45, 0x78, 0x70, 0x6c, 0x61, 0x69,\n\t0x6e, 0x52, 0x07, 0x65, 0x78, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x22, 0xf3, 0x0a, 0x0a, 0x0c, 0x4d,\n\t0x79, 0x53, 0x51, 0x4c, 0x45, 0x78, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x12, 0x3d, 0x0a, 0x0b, 0x71,\n\t0x75, 0x65, 0x72, 0x79, 0x5f, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,\n\t0x32, 0x1c, 0x2e, 0x76, 0x65, 0x74, 0x2e, 0x4d, 0x79, 0x53, 0x51, 0x4c, 0x45, 0x78, 0x70, 0x6c,\n\t0x61, 0x69, 0x6e, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x52, 0x0a,\n\t0x71, 0x75, 0x65, 0x72, 0x79, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x1a, 0x8e, 0x03, 0x0a, 0x0a, 0x51,\n\t0x75, 0x65, 0x72, 0x79, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x65, 0x6c,\n\t0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65,\n\t0x6c, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,\n\t0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,\n\t0x12, 0x47, 0x0a, 0x09, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20,\n\t0x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x76, 0x65, 0x74, 0x2e, 0x4d, 0x79, 0x53, 0x51, 0x4c, 0x45,\n\t0x78, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x6c, 0x6f, 0x63,\n\t0x6b, 0x2e, 0x43, 0x6f, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,\n\t0x08, 0x63, 0x6f, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2d, 0x0a, 0x05, 0x74, 0x61, 0x62,\n\t0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x76, 0x65, 0x74, 0x2e, 0x4d,\n\t0x79, 0x53, 0x51, 0x4c, 0x45, 0x78, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x2e, 0x54, 0x61, 0x62, 0x6c,\n\t0x65, 0x52, 0x05, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x52, 0x0a, 0x12, 0x6f, 0x72, 0x64, 0x65,\n\t0x72, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05,\n\t0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x76, 0x65, 0x74, 0x2e, 0x4d, 0x79, 0x53, 0x51, 0x4c,\n\t0x45, 0x78, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67,\n\t0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x6f, 0x72, 0x64, 0x65, 0x72,\n\t0x69, 0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x40, 0x0a, 0x0b,\n\t0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6c, 0x6f, 0x6f, 0x70, 0x18, 0x06, 0x20, 0x03, 0x28,\n\t0x0b, 0x32, 0x1f, 0x2e, 0x76, 0x65, 0x74, 0x2e, 0x4d, 0x79, 0x53, 0x51, 0x4c, 0x45, 0x78, 0x70,\n\t0x6c, 0x61, 0x69, 0x6e, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4c, 0x6f, 0x6f, 0x70, 0x4f,\n\t0x62, 0x6a, 0x52, 0x0a, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4c, 0x6f, 0x6f, 0x70, 0x1a, 0x3b,\n\t0x0a, 0x0d, 0x43, 0x6f, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,\n\t0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,\n\t0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,\n\t0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x97, 0x04, 0x0a, 0x05,\n\t0x54, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6e,\n\t0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x74, 0x61, 0x62, 0x6c, 0x65,\n\t0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x74,\n\t0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x63, 0x63, 0x65, 0x73,\n\t0x73, 0x54, 0x79, 0x70, 0x65, 0x12, 0x33, 0x0a, 0x16, 0x72, 0x6f, 0x77, 0x73, 0x5f, 0x65, 0x78,\n\t0x61, 0x6d, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x18,\n\t0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x13, 0x72, 0x6f, 0x77, 0x73, 0x45, 0x78, 0x61, 0x6d, 0x69,\n\t0x6e, 0x65, 0x64, 0x50, 0x65, 0x72, 0x53, 0x63, 0x61, 0x6e, 0x12, 0x33, 0x0a, 0x16, 0x72, 0x6f,\n\t0x77, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x64, 0x5f, 0x70, 0x65, 0x72, 0x5f,\n\t0x6a, 0x6f, 0x69, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x13, 0x72, 0x6f, 0x77, 0x73,\n\t0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x64, 0x50, 0x65, 0x72, 0x4a, 0x6f, 0x69, 0x6e, 0x12,\n\t0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x65, 0x64, 0x12, 0x42, 0x0a, 0x09, 0x63,\n\t0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25,\n\t0x2e, 0x76, 0x65, 0x74, 0x2e, 0x4d, 0x79, 0x53, 0x51, 0x4c, 0x45, 0x78, 0x70, 0x6c, 0x61, 0x69,\n\t0x6e, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f,\n\t0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x08, 0x63, 0x6f, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12,\n\t0x21, 0x0a, 0x0c, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x73, 0x18,\n\t0x07, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0b, 0x75, 0x73, 0x65, 0x64, 0x43, 0x6f, 0x6c, 0x75, 0x6d,\n\t0x6e, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x18, 0x08, 0x20, 0x01,\n\t0x28, 0x08, 0x52, 0x06, 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x12, 0x23, 0x0a, 0x0d, 0x70, 0x6f,\n\t0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x09, 0x20, 0x03, 0x28,\n\t0x09, 0x52, 0x0c, 0x70, 0x6f, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x12,\n\t0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,\n\t0x79, 0x12, 0x24, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x70, 0x61,\n\t0x72, 0x74, 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x64, 0x4b,\n\t0x65, 0x79, 0x50, 0x61, 0x72, 0x74, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x6b, 0x65, 0x79, 0x5f, 0x6c,\n\t0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6b, 0x65, 0x79,\n\t0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65, 0x66, 0x18, 0x0d, 0x20,\n\t0x03, 0x28, 0x09, 0x52, 0x03, 0x72, 0x65, 0x66, 0x1a, 0x3b, 0x0a, 0x0d, 0x43, 0x6f, 0x73, 0x74,\n\t0x49, 0x6e, 0x66, 0x6f, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,\n\t0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76,\n\t0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,\n\t0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x3e, 0x0a, 0x0d, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4c,\n\t0x6f, 0x6f, 0x70, 0x4f, 0x62, 0x6a, 0x12, 0x2d, 0x0a, 0x05, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18,\n\t0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x76, 0x65, 0x74, 0x2e, 0x4d, 0x79, 0x53, 0x51,\n\t0x4c, 0x45, 0x78, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x05,\n\t0x74, 0x61, 0x62, 0x6c, 0x65, 0x1a, 0xb8, 0x02, 0x0a, 0x11, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69,\n\t0x6e, 0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x75,\n\t0x73, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x73, 0x6f, 0x72, 0x74, 0x18, 0x01, 0x20,\n\t0x01, 0x28, 0x08, 0x52, 0x0d, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x6c, 0x65, 0x73, 0x6f,\n\t0x72, 0x74, 0x12, 0x4e, 0x0a, 0x09, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18,\n\t0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x76, 0x65, 0x74, 0x2e, 0x4d, 0x79, 0x53, 0x51,\n\t0x4c, 0x45, 0x78, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x2e, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e,\n\t0x67, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x73, 0x74, 0x49,\n\t0x6e, 0x66, 0x6f, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x08, 0x63, 0x6f, 0x73, 0x74, 0x49, 0x6e,\n\t0x66, 0x6f, 0x12, 0x2d, 0x0a, 0x05, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,\n\t0x0b, 0x32, 0x17, 0x2e, 0x76, 0x65, 0x74, 0x2e, 0x4d, 0x79, 0x53, 0x51, 0x4c, 0x45, 0x78, 0x70,\n\t0x6c, 0x61, 0x69, 0x6e, 0x2e, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x52, 0x05, 0x74, 0x61, 0x62, 0x6c,\n\t0x65, 0x12, 0x40, 0x0a, 0x0b, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6c, 0x6f, 0x6f, 0x70,\n\t0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x76, 0x65, 0x74, 0x2e, 0x4d, 0x79, 0x53,\n\t0x51, 0x4c, 0x45, 0x78, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64,\n\t0x4c, 0x6f, 0x6f, 0x70, 0x4f, 0x62, 0x6a, 0x52, 0x0a, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4c,\n\t0x6f, 0x6f, 0x70, 0x1a, 0x3b, 0x0a, 0x0d, 0x43, 0x6f, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x45,\n\t0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,\n\t0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,\n\t0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,\n\t0x42, 0x66, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x2e, 0x76, 0x65, 0x74, 0x42, 0x08, 0x56, 0x65, 0x74,\n\t0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x25, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e,\n\t0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x71, 0x6c, 0x63, 0x2d, 0x64, 0x65, 0x76, 0x2f, 0x73, 0x71, 0x6c,\n\t0x63, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x76, 0x65, 0x74, 0xa2, 0x02,\n\t0x03, 0x56, 0x58, 0x58, 0xaa, 0x02, 0x03, 0x56, 0x65, 0x74, 0xca, 0x02, 0x03, 0x56, 0x65, 0x74,\n\t0xe2, 0x02, 0x0f, 0x56, 0x65, 0x74, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61,\n\t0x74, 0x61, 0xea, 0x02, 0x03, 0x56, 0x65, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,\n}\n\nvar (\n\tfile_vet_vet_proto_rawDescOnce sync.Once\n\tfile_vet_vet_proto_rawDescData = file_vet_vet_proto_rawDesc\n)\n\nfunc file_vet_vet_proto_rawDescGZIP() []byte {\n\tfile_vet_vet_proto_rawDescOnce.Do(func() {\n\t\tfile_vet_vet_proto_rawDescData = protoimpl.X.CompressGZIP(file_vet_vet_proto_rawDescData)\n\t})\n\treturn file_vet_vet_proto_rawDescData\n}\n\nvar file_vet_vet_proto_msgTypes = make([]protoimpl.MessageInfo, 17)\nvar file_vet_vet_proto_goTypes = []interface{}{\n\t(*Parameter)(nil),                      // 0: vet.Parameter\n\t(*Config)(nil),                         // 1: vet.Config\n\t(*Query)(nil),                          // 2: vet.Query\n\t(*PostgreSQL)(nil),                     // 3: vet.PostgreSQL\n\t(*PostgreSQLExplain)(nil),              // 4: vet.PostgreSQLExplain\n\t(*MySQL)(nil),                          // 5: vet.MySQL\n\t(*MySQLExplain)(nil),                   // 6: vet.MySQLExplain\n\tnil,                                    // 7: vet.PostgreSQLExplain.SettingsEntry\n\t(*PostgreSQLExplain_Plan)(nil),         // 8: vet.PostgreSQLExplain.Plan\n\t(*PostgreSQLExplain_Planning)(nil),     // 9: vet.PostgreSQLExplain.Planning\n\t(*MySQLExplain_QueryBlock)(nil),        // 10: vet.MySQLExplain.QueryBlock\n\t(*MySQLExplain_Table)(nil),             // 11: vet.MySQLExplain.Table\n\t(*MySQLExplain_NestedLoopObj)(nil),     // 12: vet.MySQLExplain.NestedLoopObj\n\t(*MySQLExplain_OrderingOperation)(nil), // 13: vet.MySQLExplain.OrderingOperation\n\tnil,                                    // 14: vet.MySQLExplain.QueryBlock.CostInfoEntry\n\tnil,                                    // 15: vet.MySQLExplain.Table.CostInfoEntry\n\tnil,                                    // 16: vet.MySQLExplain.OrderingOperation.CostInfoEntry\n}\nvar file_vet_vet_proto_depIdxs = []int32{\n\t0,  // 0: vet.Query.params:type_name -> vet.Parameter\n\t4,  // 1: vet.PostgreSQL.explain:type_name -> vet.PostgreSQLExplain\n\t8,  // 2: vet.PostgreSQLExplain.plan:type_name -> vet.PostgreSQLExplain.Plan\n\t7,  // 3: vet.PostgreSQLExplain.settings:type_name -> vet.PostgreSQLExplain.SettingsEntry\n\t9,  // 4: vet.PostgreSQLExplain.planning:type_name -> vet.PostgreSQLExplain.Planning\n\t6,  // 5: vet.MySQL.explain:type_name -> vet.MySQLExplain\n\t10, // 6: vet.MySQLExplain.query_block:type_name -> vet.MySQLExplain.QueryBlock\n\t8,  // 7: vet.PostgreSQLExplain.Plan.plans:type_name -> vet.PostgreSQLExplain.Plan\n\t14, // 8: vet.MySQLExplain.QueryBlock.cost_info:type_name -> vet.MySQLExplain.QueryBlock.CostInfoEntry\n\t11, // 9: vet.MySQLExplain.QueryBlock.table:type_name -> vet.MySQLExplain.Table\n\t13, // 10: vet.MySQLExplain.QueryBlock.ordering_operation:type_name -> vet.MySQLExplain.OrderingOperation\n\t12, // 11: vet.MySQLExplain.QueryBlock.nested_loop:type_name -> vet.MySQLExplain.NestedLoopObj\n\t15, // 12: vet.MySQLExplain.Table.cost_info:type_name -> vet.MySQLExplain.Table.CostInfoEntry\n\t11, // 13: vet.MySQLExplain.NestedLoopObj.table:type_name -> vet.MySQLExplain.Table\n\t16, // 14: vet.MySQLExplain.OrderingOperation.cost_info:type_name -> vet.MySQLExplain.OrderingOperation.CostInfoEntry\n\t11, // 15: vet.MySQLExplain.OrderingOperation.table:type_name -> vet.MySQLExplain.Table\n\t12, // 16: vet.MySQLExplain.OrderingOperation.nested_loop:type_name -> vet.MySQLExplain.NestedLoopObj\n\t17, // [17:17] is the sub-list for method output_type\n\t17, // [17:17] is the sub-list for method input_type\n\t17, // [17:17] is the sub-list for extension type_name\n\t17, // [17:17] is the sub-list for extension extendee\n\t0,  // [0:17] is the sub-list for field type_name\n}\n\nfunc init() { file_vet_vet_proto_init() }\nfunc file_vet_vet_proto_init() {\n\tif File_vet_vet_proto != nil {\n\t\treturn\n\t}\n\tif !protoimpl.UnsafeEnabled {\n\t\tfile_vet_vet_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Parameter); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_vet_vet_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Config); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_vet_vet_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*Query); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_vet_vet_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PostgreSQL); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_vet_vet_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PostgreSQLExplain); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_vet_vet_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*MySQL); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_vet_vet_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*MySQLExplain); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_vet_vet_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PostgreSQLExplain_Plan); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_vet_vet_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*PostgreSQLExplain_Planning); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_vet_vet_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*MySQLExplain_QueryBlock); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_vet_vet_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*MySQLExplain_Table); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_vet_vet_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*MySQLExplain_NestedLoopObj); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t\tfile_vet_vet_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {\n\t\t\tswitch v := v.(*MySQLExplain_OrderingOperation); i {\n\t\t\tcase 0:\n\t\t\t\treturn &v.state\n\t\t\tcase 1:\n\t\t\t\treturn &v.sizeCache\n\t\t\tcase 2:\n\t\t\t\treturn &v.unknownFields\n\t\t\tdefault:\n\t\t\t\treturn nil\n\t\t\t}\n\t\t}\n\t}\n\ttype x struct{}\n\tout := protoimpl.TypeBuilder{\n\t\tFile: protoimpl.DescBuilder{\n\t\t\tGoPackagePath: reflect.TypeOf(x{}).PkgPath(),\n\t\t\tRawDescriptor: file_vet_vet_proto_rawDesc,\n\t\t\tNumEnums:      0,\n\t\t\tNumMessages:   17,\n\t\t\tNumExtensions: 0,\n\t\t\tNumServices:   0,\n\t\t},\n\t\tGoTypes:           file_vet_vet_proto_goTypes,\n\t\tDependencyIndexes: file_vet_vet_proto_depIdxs,\n\t\tMessageInfos:      file_vet_vet_proto_msgTypes,\n\t}.Build()\n\tFile_vet_vet_proto = out.File\n\tfile_vet_vet_proto_rawDesc = nil\n\tfile_vet_vet_proto_goTypes = nil\n\tfile_vet_vet_proto_depIdxs = nil\n}\n"
  },
  {
    "path": "internal/vet/vet_vtproto.pb.go",
    "content": "// Code generated by protoc-gen-go-vtproto. DO NOT EDIT.\n// protoc-gen-go-vtproto version: v0.4.0\n// source: vet/vet.proto\n\npackage vet\n\nimport (\n\tbinary \"encoding/binary\"\n\tfmt \"fmt\"\n\tproto \"google.golang.org/protobuf/proto\"\n\tprotoimpl \"google.golang.org/protobuf/runtime/protoimpl\"\n\tio \"io\"\n\tmath \"math\"\n\tbits \"math/bits\"\n)\n\nconst (\n\t// Verify that this generated code is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)\n\t// Verify that runtime/protoimpl is sufficiently up-to-date.\n\t_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)\n)\n\nfunc (m *Parameter) CloneVT() *Parameter {\n\tif m == nil {\n\t\treturn (*Parameter)(nil)\n\t}\n\tr := &Parameter{\n\t\tNumber: m.Number,\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *Parameter) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (m *Config) CloneVT() *Config {\n\tif m == nil {\n\t\treturn (*Config)(nil)\n\t}\n\tr := &Config{\n\t\tVersion: m.Version,\n\t\tEngine:  m.Engine,\n\t}\n\tif rhs := m.Schema; rhs != nil {\n\t\ttmpContainer := make([]string, len(rhs))\n\t\tcopy(tmpContainer, rhs)\n\t\tr.Schema = tmpContainer\n\t}\n\tif rhs := m.Queries; rhs != nil {\n\t\ttmpContainer := make([]string, len(rhs))\n\t\tcopy(tmpContainer, rhs)\n\t\tr.Queries = tmpContainer\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *Config) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (m *Query) CloneVT() *Query {\n\tif m == nil {\n\t\treturn (*Query)(nil)\n\t}\n\tr := &Query{\n\t\tSql:  m.Sql,\n\t\tName: m.Name,\n\t\tCmd:  m.Cmd,\n\t}\n\tif rhs := m.Params; rhs != nil {\n\t\ttmpContainer := make([]*Parameter, len(rhs))\n\t\tfor k, v := range rhs {\n\t\t\ttmpContainer[k] = v.CloneVT()\n\t\t}\n\t\tr.Params = tmpContainer\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *Query) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (m *PostgreSQL) CloneVT() *PostgreSQL {\n\tif m == nil {\n\t\treturn (*PostgreSQL)(nil)\n\t}\n\tr := &PostgreSQL{\n\t\tExplain: m.Explain.CloneVT(),\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *PostgreSQL) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (m *PostgreSQLExplain_Plan) CloneVT() *PostgreSQLExplain_Plan {\n\tif m == nil {\n\t\treturn (*PostgreSQLExplain_Plan)(nil)\n\t}\n\tr := &PostgreSQLExplain_Plan{\n\t\tNodeType:            m.NodeType,\n\t\tParentRelationship:  m.ParentRelationship,\n\t\tRelationName:        m.RelationName,\n\t\tSchema:              m.Schema,\n\t\tAlias:               m.Alias,\n\t\tParallelAware:       m.ParallelAware,\n\t\tAsyncCapable:        m.AsyncCapable,\n\t\tStartupCost:         m.StartupCost,\n\t\tTotalCost:           m.TotalCost,\n\t\tPlanRows:            m.PlanRows,\n\t\tPlanWidth:           m.PlanWidth,\n\t\tSharedHitBlocks:     m.SharedHitBlocks,\n\t\tSharedReadBlocks:    m.SharedReadBlocks,\n\t\tSharedDirtiedBlocks: m.SharedDirtiedBlocks,\n\t\tSharedWrittenBlocks: m.SharedWrittenBlocks,\n\t\tLocalHitBlocks:      m.LocalHitBlocks,\n\t\tLocalReadBlocks:     m.LocalReadBlocks,\n\t\tLocalDirtiedBlocks:  m.LocalDirtiedBlocks,\n\t\tLocalWrittenBlocks:  m.LocalWrittenBlocks,\n\t\tTempReadBlocks:      m.TempReadBlocks,\n\t\tTempWrittenBlocks:   m.TempWrittenBlocks,\n\t\tJoinType:            m.JoinType,\n\t\tInnerUnique:         m.InnerUnique,\n\t\tHashCond:            m.HashCond,\n\t\tIndexName:           m.IndexName,\n\t\tScanDirection:       m.ScanDirection,\n\t\tIndexCond:           m.IndexCond,\n\t}\n\tif rhs := m.Output; rhs != nil {\n\t\ttmpContainer := make([]string, len(rhs))\n\t\tcopy(tmpContainer, rhs)\n\t\tr.Output = tmpContainer\n\t}\n\tif rhs := m.Plans; rhs != nil {\n\t\ttmpContainer := make([]*PostgreSQLExplain_Plan, len(rhs))\n\t\tfor k, v := range rhs {\n\t\t\ttmpContainer[k] = v.CloneVT()\n\t\t}\n\t\tr.Plans = tmpContainer\n\t}\n\tif rhs := m.SortKey; rhs != nil {\n\t\ttmpContainer := make([]string, len(rhs))\n\t\tcopy(tmpContainer, rhs)\n\t\tr.SortKey = tmpContainer\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *PostgreSQLExplain_Plan) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (m *PostgreSQLExplain_Planning) CloneVT() *PostgreSQLExplain_Planning {\n\tif m == nil {\n\t\treturn (*PostgreSQLExplain_Planning)(nil)\n\t}\n\tr := &PostgreSQLExplain_Planning{\n\t\tSharedHitBlocks:     m.SharedHitBlocks,\n\t\tSharedReadBlocks:    m.SharedReadBlocks,\n\t\tSharedDirtiedBlocks: m.SharedDirtiedBlocks,\n\t\tSharedWrittenBlocks: m.SharedWrittenBlocks,\n\t\tLocalHitBlocks:      m.LocalHitBlocks,\n\t\tLocalReadBlocks:     m.LocalReadBlocks,\n\t\tLocalDirtiedBlocks:  m.LocalDirtiedBlocks,\n\t\tLocalWrittenBlocks:  m.LocalWrittenBlocks,\n\t\tTempReadBlocks:      m.TempReadBlocks,\n\t\tTempWrittenBlocks:   m.TempWrittenBlocks,\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *PostgreSQLExplain_Planning) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (m *PostgreSQLExplain) CloneVT() *PostgreSQLExplain {\n\tif m == nil {\n\t\treturn (*PostgreSQLExplain)(nil)\n\t}\n\tr := &PostgreSQLExplain{\n\t\tPlan:     m.Plan.CloneVT(),\n\t\tPlanning: m.Planning.CloneVT(),\n\t}\n\tif rhs := m.Settings; rhs != nil {\n\t\ttmpContainer := make(map[string]string, len(rhs))\n\t\tfor k, v := range rhs {\n\t\t\ttmpContainer[k] = v\n\t\t}\n\t\tr.Settings = tmpContainer\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *PostgreSQLExplain) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (m *MySQL) CloneVT() *MySQL {\n\tif m == nil {\n\t\treturn (*MySQL)(nil)\n\t}\n\tr := &MySQL{\n\t\tExplain: m.Explain.CloneVT(),\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *MySQL) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (m *MySQLExplain_QueryBlock) CloneVT() *MySQLExplain_QueryBlock {\n\tif m == nil {\n\t\treturn (*MySQLExplain_QueryBlock)(nil)\n\t}\n\tr := &MySQLExplain_QueryBlock{\n\t\tSelectId:          m.SelectId,\n\t\tMessage:           m.Message,\n\t\tTable:             m.Table.CloneVT(),\n\t\tOrderingOperation: m.OrderingOperation.CloneVT(),\n\t}\n\tif rhs := m.CostInfo; rhs != nil {\n\t\ttmpContainer := make(map[string]string, len(rhs))\n\t\tfor k, v := range rhs {\n\t\t\ttmpContainer[k] = v\n\t\t}\n\t\tr.CostInfo = tmpContainer\n\t}\n\tif rhs := m.NestedLoop; rhs != nil {\n\t\ttmpContainer := make([]*MySQLExplain_NestedLoopObj, len(rhs))\n\t\tfor k, v := range rhs {\n\t\t\ttmpContainer[k] = v.CloneVT()\n\t\t}\n\t\tr.NestedLoop = tmpContainer\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *MySQLExplain_QueryBlock) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (m *MySQLExplain_Table) CloneVT() *MySQLExplain_Table {\n\tif m == nil {\n\t\treturn (*MySQLExplain_Table)(nil)\n\t}\n\tr := &MySQLExplain_Table{\n\t\tTableName:           m.TableName,\n\t\tAccessType:          m.AccessType,\n\t\tRowsExaminedPerScan: m.RowsExaminedPerScan,\n\t\tRowsProducedPerJoin: m.RowsProducedPerJoin,\n\t\tFiltered:            m.Filtered,\n\t\tInsert:              m.Insert,\n\t\tKey:                 m.Key,\n\t\tKeyLength:           m.KeyLength,\n\t}\n\tif rhs := m.CostInfo; rhs != nil {\n\t\ttmpContainer := make(map[string]string, len(rhs))\n\t\tfor k, v := range rhs {\n\t\t\ttmpContainer[k] = v\n\t\t}\n\t\tr.CostInfo = tmpContainer\n\t}\n\tif rhs := m.UsedColumns; rhs != nil {\n\t\ttmpContainer := make([]string, len(rhs))\n\t\tcopy(tmpContainer, rhs)\n\t\tr.UsedColumns = tmpContainer\n\t}\n\tif rhs := m.PossibleKeys; rhs != nil {\n\t\ttmpContainer := make([]string, len(rhs))\n\t\tcopy(tmpContainer, rhs)\n\t\tr.PossibleKeys = tmpContainer\n\t}\n\tif rhs := m.UsedKeyParts; rhs != nil {\n\t\ttmpContainer := make([]string, len(rhs))\n\t\tcopy(tmpContainer, rhs)\n\t\tr.UsedKeyParts = tmpContainer\n\t}\n\tif rhs := m.Ref; rhs != nil {\n\t\ttmpContainer := make([]string, len(rhs))\n\t\tcopy(tmpContainer, rhs)\n\t\tr.Ref = tmpContainer\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *MySQLExplain_Table) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (m *MySQLExplain_NestedLoopObj) CloneVT() *MySQLExplain_NestedLoopObj {\n\tif m == nil {\n\t\treturn (*MySQLExplain_NestedLoopObj)(nil)\n\t}\n\tr := &MySQLExplain_NestedLoopObj{\n\t\tTable: m.Table.CloneVT(),\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *MySQLExplain_NestedLoopObj) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (m *MySQLExplain_OrderingOperation) CloneVT() *MySQLExplain_OrderingOperation {\n\tif m == nil {\n\t\treturn (*MySQLExplain_OrderingOperation)(nil)\n\t}\n\tr := &MySQLExplain_OrderingOperation{\n\t\tUsingFilesort: m.UsingFilesort,\n\t\tTable:         m.Table.CloneVT(),\n\t}\n\tif rhs := m.CostInfo; rhs != nil {\n\t\ttmpContainer := make(map[string]string, len(rhs))\n\t\tfor k, v := range rhs {\n\t\t\ttmpContainer[k] = v\n\t\t}\n\t\tr.CostInfo = tmpContainer\n\t}\n\tif rhs := m.NestedLoop; rhs != nil {\n\t\ttmpContainer := make([]*MySQLExplain_NestedLoopObj, len(rhs))\n\t\tfor k, v := range rhs {\n\t\t\ttmpContainer[k] = v.CloneVT()\n\t\t}\n\t\tr.NestedLoop = tmpContainer\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *MySQLExplain_OrderingOperation) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (m *MySQLExplain) CloneVT() *MySQLExplain {\n\tif m == nil {\n\t\treturn (*MySQLExplain)(nil)\n\t}\n\tr := &MySQLExplain{\n\t\tQueryBlock: m.QueryBlock.CloneVT(),\n\t}\n\tif len(m.unknownFields) > 0 {\n\t\tr.unknownFields = make([]byte, len(m.unknownFields))\n\t\tcopy(r.unknownFields, m.unknownFields)\n\t}\n\treturn r\n}\n\nfunc (m *MySQLExplain) CloneMessageVT() proto.Message {\n\treturn m.CloneVT()\n}\n\nfunc (this *Parameter) EqualVT(that *Parameter) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif this.Number != that.Number {\n\t\treturn false\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *Parameter) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*Parameter)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (this *Config) EqualVT(that *Config) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif this.Version != that.Version {\n\t\treturn false\n\t}\n\tif this.Engine != that.Engine {\n\t\treturn false\n\t}\n\tif len(this.Schema) != len(that.Schema) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.Schema {\n\t\tvy := that.Schema[i]\n\t\tif vx != vy {\n\t\t\treturn false\n\t\t}\n\t}\n\tif len(this.Queries) != len(that.Queries) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.Queries {\n\t\tvy := that.Queries[i]\n\t\tif vx != vy {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *Config) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*Config)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (this *Query) EqualVT(that *Query) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif this.Sql != that.Sql {\n\t\treturn false\n\t}\n\tif this.Name != that.Name {\n\t\treturn false\n\t}\n\tif this.Cmd != that.Cmd {\n\t\treturn false\n\t}\n\tif len(this.Params) != len(that.Params) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.Params {\n\t\tvy := that.Params[i]\n\t\tif p, q := vx, vy; p != q {\n\t\t\tif p == nil {\n\t\t\t\tp = &Parameter{}\n\t\t\t}\n\t\t\tif q == nil {\n\t\t\t\tq = &Parameter{}\n\t\t\t}\n\t\t\tif !p.EqualVT(q) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *Query) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*Query)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (this *PostgreSQL) EqualVT(that *PostgreSQL) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif !this.Explain.EqualVT(that.Explain) {\n\t\treturn false\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *PostgreSQL) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*PostgreSQL)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (this *PostgreSQLExplain_Plan) EqualVT(that *PostgreSQLExplain_Plan) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif this.NodeType != that.NodeType {\n\t\treturn false\n\t}\n\tif this.ParentRelationship != that.ParentRelationship {\n\t\treturn false\n\t}\n\tif this.RelationName != that.RelationName {\n\t\treturn false\n\t}\n\tif this.Schema != that.Schema {\n\t\treturn false\n\t}\n\tif this.Alias != that.Alias {\n\t\treturn false\n\t}\n\tif this.ParallelAware != that.ParallelAware {\n\t\treturn false\n\t}\n\tif this.AsyncCapable != that.AsyncCapable {\n\t\treturn false\n\t}\n\tif this.StartupCost != that.StartupCost {\n\t\treturn false\n\t}\n\tif this.TotalCost != that.TotalCost {\n\t\treturn false\n\t}\n\tif this.PlanRows != that.PlanRows {\n\t\treturn false\n\t}\n\tif this.PlanWidth != that.PlanWidth {\n\t\treturn false\n\t}\n\tif len(this.Output) != len(that.Output) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.Output {\n\t\tvy := that.Output[i]\n\t\tif vx != vy {\n\t\t\treturn false\n\t\t}\n\t}\n\tif len(this.Plans) != len(that.Plans) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.Plans {\n\t\tvy := that.Plans[i]\n\t\tif p, q := vx, vy; p != q {\n\t\t\tif p == nil {\n\t\t\t\tp = &PostgreSQLExplain_Plan{}\n\t\t\t}\n\t\t\tif q == nil {\n\t\t\t\tq = &PostgreSQLExplain_Plan{}\n\t\t\t}\n\t\t\tif !p.EqualVT(q) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t}\n\tif this.SharedHitBlocks != that.SharedHitBlocks {\n\t\treturn false\n\t}\n\tif this.SharedReadBlocks != that.SharedReadBlocks {\n\t\treturn false\n\t}\n\tif this.SharedDirtiedBlocks != that.SharedDirtiedBlocks {\n\t\treturn false\n\t}\n\tif this.SharedWrittenBlocks != that.SharedWrittenBlocks {\n\t\treturn false\n\t}\n\tif this.LocalHitBlocks != that.LocalHitBlocks {\n\t\treturn false\n\t}\n\tif this.LocalReadBlocks != that.LocalReadBlocks {\n\t\treturn false\n\t}\n\tif this.LocalDirtiedBlocks != that.LocalDirtiedBlocks {\n\t\treturn false\n\t}\n\tif this.LocalWrittenBlocks != that.LocalWrittenBlocks {\n\t\treturn false\n\t}\n\tif this.TempReadBlocks != that.TempReadBlocks {\n\t\treturn false\n\t}\n\tif this.TempWrittenBlocks != that.TempWrittenBlocks {\n\t\treturn false\n\t}\n\tif len(this.SortKey) != len(that.SortKey) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.SortKey {\n\t\tvy := that.SortKey[i]\n\t\tif vx != vy {\n\t\t\treturn false\n\t\t}\n\t}\n\tif this.JoinType != that.JoinType {\n\t\treturn false\n\t}\n\tif this.InnerUnique != that.InnerUnique {\n\t\treturn false\n\t}\n\tif this.HashCond != that.HashCond {\n\t\treturn false\n\t}\n\tif this.IndexName != that.IndexName {\n\t\treturn false\n\t}\n\tif this.ScanDirection != that.ScanDirection {\n\t\treturn false\n\t}\n\tif this.IndexCond != that.IndexCond {\n\t\treturn false\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *PostgreSQLExplain_Plan) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*PostgreSQLExplain_Plan)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (this *PostgreSQLExplain_Planning) EqualVT(that *PostgreSQLExplain_Planning) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif this.SharedHitBlocks != that.SharedHitBlocks {\n\t\treturn false\n\t}\n\tif this.SharedReadBlocks != that.SharedReadBlocks {\n\t\treturn false\n\t}\n\tif this.SharedDirtiedBlocks != that.SharedDirtiedBlocks {\n\t\treturn false\n\t}\n\tif this.SharedWrittenBlocks != that.SharedWrittenBlocks {\n\t\treturn false\n\t}\n\tif this.LocalHitBlocks != that.LocalHitBlocks {\n\t\treturn false\n\t}\n\tif this.LocalReadBlocks != that.LocalReadBlocks {\n\t\treturn false\n\t}\n\tif this.LocalDirtiedBlocks != that.LocalDirtiedBlocks {\n\t\treturn false\n\t}\n\tif this.LocalWrittenBlocks != that.LocalWrittenBlocks {\n\t\treturn false\n\t}\n\tif this.TempReadBlocks != that.TempReadBlocks {\n\t\treturn false\n\t}\n\tif this.TempWrittenBlocks != that.TempWrittenBlocks {\n\t\treturn false\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *PostgreSQLExplain_Planning) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*PostgreSQLExplain_Planning)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (this *PostgreSQLExplain) EqualVT(that *PostgreSQLExplain) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif !this.Plan.EqualVT(that.Plan) {\n\t\treturn false\n\t}\n\tif len(this.Settings) != len(that.Settings) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.Settings {\n\t\tvy, ok := that.Settings[i]\n\t\tif !ok {\n\t\t\treturn false\n\t\t}\n\t\tif vx != vy {\n\t\t\treturn false\n\t\t}\n\t}\n\tif !this.Planning.EqualVT(that.Planning) {\n\t\treturn false\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *PostgreSQLExplain) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*PostgreSQLExplain)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (this *MySQL) EqualVT(that *MySQL) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif !this.Explain.EqualVT(that.Explain) {\n\t\treturn false\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *MySQL) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*MySQL)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (this *MySQLExplain_QueryBlock) EqualVT(that *MySQLExplain_QueryBlock) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif this.SelectId != that.SelectId {\n\t\treturn false\n\t}\n\tif this.Message != that.Message {\n\t\treturn false\n\t}\n\tif len(this.CostInfo) != len(that.CostInfo) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.CostInfo {\n\t\tvy, ok := that.CostInfo[i]\n\t\tif !ok {\n\t\t\treturn false\n\t\t}\n\t\tif vx != vy {\n\t\t\treturn false\n\t\t}\n\t}\n\tif !this.Table.EqualVT(that.Table) {\n\t\treturn false\n\t}\n\tif !this.OrderingOperation.EqualVT(that.OrderingOperation) {\n\t\treturn false\n\t}\n\tif len(this.NestedLoop) != len(that.NestedLoop) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.NestedLoop {\n\t\tvy := that.NestedLoop[i]\n\t\tif p, q := vx, vy; p != q {\n\t\t\tif p == nil {\n\t\t\t\tp = &MySQLExplain_NestedLoopObj{}\n\t\t\t}\n\t\t\tif q == nil {\n\t\t\t\tq = &MySQLExplain_NestedLoopObj{}\n\t\t\t}\n\t\t\tif !p.EqualVT(q) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *MySQLExplain_QueryBlock) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*MySQLExplain_QueryBlock)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (this *MySQLExplain_Table) EqualVT(that *MySQLExplain_Table) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif this.TableName != that.TableName {\n\t\treturn false\n\t}\n\tif this.AccessType != that.AccessType {\n\t\treturn false\n\t}\n\tif this.RowsExaminedPerScan != that.RowsExaminedPerScan {\n\t\treturn false\n\t}\n\tif this.RowsProducedPerJoin != that.RowsProducedPerJoin {\n\t\treturn false\n\t}\n\tif this.Filtered != that.Filtered {\n\t\treturn false\n\t}\n\tif len(this.CostInfo) != len(that.CostInfo) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.CostInfo {\n\t\tvy, ok := that.CostInfo[i]\n\t\tif !ok {\n\t\t\treturn false\n\t\t}\n\t\tif vx != vy {\n\t\t\treturn false\n\t\t}\n\t}\n\tif len(this.UsedColumns) != len(that.UsedColumns) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.UsedColumns {\n\t\tvy := that.UsedColumns[i]\n\t\tif vx != vy {\n\t\t\treturn false\n\t\t}\n\t}\n\tif this.Insert != that.Insert {\n\t\treturn false\n\t}\n\tif len(this.PossibleKeys) != len(that.PossibleKeys) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.PossibleKeys {\n\t\tvy := that.PossibleKeys[i]\n\t\tif vx != vy {\n\t\t\treturn false\n\t\t}\n\t}\n\tif this.Key != that.Key {\n\t\treturn false\n\t}\n\tif len(this.UsedKeyParts) != len(that.UsedKeyParts) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.UsedKeyParts {\n\t\tvy := that.UsedKeyParts[i]\n\t\tif vx != vy {\n\t\t\treturn false\n\t\t}\n\t}\n\tif this.KeyLength != that.KeyLength {\n\t\treturn false\n\t}\n\tif len(this.Ref) != len(that.Ref) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.Ref {\n\t\tvy := that.Ref[i]\n\t\tif vx != vy {\n\t\t\treturn false\n\t\t}\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *MySQLExplain_Table) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*MySQLExplain_Table)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (this *MySQLExplain_NestedLoopObj) EqualVT(that *MySQLExplain_NestedLoopObj) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif !this.Table.EqualVT(that.Table) {\n\t\treturn false\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *MySQLExplain_NestedLoopObj) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*MySQLExplain_NestedLoopObj)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (this *MySQLExplain_OrderingOperation) EqualVT(that *MySQLExplain_OrderingOperation) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif this.UsingFilesort != that.UsingFilesort {\n\t\treturn false\n\t}\n\tif len(this.CostInfo) != len(that.CostInfo) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.CostInfo {\n\t\tvy, ok := that.CostInfo[i]\n\t\tif !ok {\n\t\t\treturn false\n\t\t}\n\t\tif vx != vy {\n\t\t\treturn false\n\t\t}\n\t}\n\tif !this.Table.EqualVT(that.Table) {\n\t\treturn false\n\t}\n\tif len(this.NestedLoop) != len(that.NestedLoop) {\n\t\treturn false\n\t}\n\tfor i, vx := range this.NestedLoop {\n\t\tvy := that.NestedLoop[i]\n\t\tif p, q := vx, vy; p != q {\n\t\t\tif p == nil {\n\t\t\t\tp = &MySQLExplain_NestedLoopObj{}\n\t\t\t}\n\t\t\tif q == nil {\n\t\t\t\tq = &MySQLExplain_NestedLoopObj{}\n\t\t\t}\n\t\t\tif !p.EqualVT(q) {\n\t\t\t\treturn false\n\t\t\t}\n\t\t}\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *MySQLExplain_OrderingOperation) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*MySQLExplain_OrderingOperation)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (this *MySQLExplain) EqualVT(that *MySQLExplain) bool {\n\tif this == that {\n\t\treturn true\n\t} else if this == nil || that == nil {\n\t\treturn false\n\t}\n\tif !this.QueryBlock.EqualVT(that.QueryBlock) {\n\t\treturn false\n\t}\n\treturn string(this.unknownFields) == string(that.unknownFields)\n}\n\nfunc (this *MySQLExplain) EqualMessageVT(thatMsg proto.Message) bool {\n\tthat, ok := thatMsg.(*MySQLExplain)\n\tif !ok {\n\t\treturn false\n\t}\n\treturn this.EqualVT(that)\n}\nfunc (m *Parameter) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *Parameter) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *Parameter) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.Number != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.Number))\n\t\ti--\n\t\tdAtA[i] = 0x8\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *Config) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *Config) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *Config) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.Queries) > 0 {\n\t\tfor iNdEx := len(m.Queries) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.Queries[iNdEx])\n\t\t\tcopy(dAtA[i:], m.Queries[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.Queries[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x22\n\t\t}\n\t}\n\tif len(m.Schema) > 0 {\n\t\tfor iNdEx := len(m.Schema) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.Schema[iNdEx])\n\t\t\tcopy(dAtA[i:], m.Schema[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.Schema[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x1a\n\t\t}\n\t}\n\tif len(m.Engine) > 0 {\n\t\ti -= len(m.Engine)\n\t\tcopy(dAtA[i:], m.Engine)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Engine)))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif len(m.Version) > 0 {\n\t\ti -= len(m.Version)\n\t\tcopy(dAtA[i:], m.Version)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Version)))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *Query) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *Query) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *Query) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.Params) > 0 {\n\t\tfor iNdEx := len(m.Params) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\tsize, err := m.Params[iNdEx].MarshalToSizedBufferVT(dAtA[:i])\n\t\t\tif err != nil {\n\t\t\t\treturn 0, err\n\t\t\t}\n\t\t\ti -= size\n\t\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x22\n\t\t}\n\t}\n\tif len(m.Cmd) > 0 {\n\t\ti -= len(m.Cmd)\n\t\tcopy(dAtA[i:], m.Cmd)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Cmd)))\n\t\ti--\n\t\tdAtA[i] = 0x1a\n\t}\n\tif len(m.Name) > 0 {\n\t\ti -= len(m.Name)\n\t\tcopy(dAtA[i:], m.Name)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Name)))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif len(m.Sql) > 0 {\n\t\ti -= len(m.Sql)\n\t\tcopy(dAtA[i:], m.Sql)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Sql)))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *PostgreSQL) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *PostgreSQL) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *PostgreSQL) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.Explain != nil {\n\t\tsize, err := m.Explain.MarshalToSizedBufferVT(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *PostgreSQLExplain_Plan) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *PostgreSQLExplain_Plan) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *PostgreSQLExplain_Plan) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.IndexCond) > 0 {\n\t\ti -= len(m.IndexCond)\n\t\tcopy(dAtA[i:], m.IndexCond)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.IndexCond)))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xf2\n\t}\n\tif len(m.ScanDirection) > 0 {\n\t\ti -= len(m.ScanDirection)\n\t\tcopy(dAtA[i:], m.ScanDirection)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.ScanDirection)))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xea\n\t}\n\tif len(m.IndexName) > 0 {\n\t\ti -= len(m.IndexName)\n\t\tcopy(dAtA[i:], m.IndexName)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.IndexName)))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xe2\n\t}\n\tif len(m.HashCond) > 0 {\n\t\ti -= len(m.HashCond)\n\t\tcopy(dAtA[i:], m.HashCond)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.HashCond)))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xda\n\t}\n\tif m.InnerUnique {\n\t\ti--\n\t\tif m.InnerUnique {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xd0\n\t}\n\tif len(m.JoinType) > 0 {\n\t\ti -= len(m.JoinType)\n\t\tcopy(dAtA[i:], m.JoinType)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.JoinType)))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xca\n\t}\n\tif len(m.SortKey) > 0 {\n\t\tfor iNdEx := len(m.SortKey) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.SortKey[iNdEx])\n\t\t\tcopy(dAtA[i:], m.SortKey[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.SortKey[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x1\n\t\t\ti--\n\t\t\tdAtA[i] = 0xc2\n\t\t}\n\t}\n\tif m.TempWrittenBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.TempWrittenBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xb8\n\t}\n\tif m.TempReadBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.TempReadBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xb0\n\t}\n\tif m.LocalWrittenBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalWrittenBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xa8\n\t}\n\tif m.LocalDirtiedBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalDirtiedBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xa0\n\t}\n\tif m.LocalReadBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalReadBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0x98\n\t}\n\tif m.LocalHitBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalHitBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0x90\n\t}\n\tif m.SharedWrittenBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedWrittenBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0x88\n\t}\n\tif m.SharedDirtiedBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedDirtiedBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0x80\n\t}\n\tif m.SharedReadBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedReadBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x78\n\t}\n\tif m.SharedHitBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedHitBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x70\n\t}\n\tif len(m.Plans) > 0 {\n\t\tfor iNdEx := len(m.Plans) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\tsize, err := m.Plans[iNdEx].MarshalToSizedBufferVT(dAtA[:i])\n\t\t\tif err != nil {\n\t\t\t\treturn 0, err\n\t\t\t}\n\t\t\ti -= size\n\t\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x6a\n\t\t}\n\t}\n\tif len(m.Output) > 0 {\n\t\tfor iNdEx := len(m.Output) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.Output[iNdEx])\n\t\t\tcopy(dAtA[i:], m.Output[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.Output[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x62\n\t\t}\n\t}\n\tif m.PlanWidth != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.PlanWidth))\n\t\ti--\n\t\tdAtA[i] = 0x58\n\t}\n\tif m.PlanRows != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.PlanRows))\n\t\ti--\n\t\tdAtA[i] = 0x50\n\t}\n\tif m.TotalCost != 0 {\n\t\ti -= 4\n\t\tbinary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.TotalCost))))\n\t\ti--\n\t\tdAtA[i] = 0x4d\n\t}\n\tif m.StartupCost != 0 {\n\t\ti -= 4\n\t\tbinary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.StartupCost))))\n\t\ti--\n\t\tdAtA[i] = 0x45\n\t}\n\tif m.AsyncCapable {\n\t\ti--\n\t\tif m.AsyncCapable {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x38\n\t}\n\tif m.ParallelAware {\n\t\ti--\n\t\tif m.ParallelAware {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x30\n\t}\n\tif len(m.Alias) > 0 {\n\t\ti -= len(m.Alias)\n\t\tcopy(dAtA[i:], m.Alias)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Alias)))\n\t\ti--\n\t\tdAtA[i] = 0x2a\n\t}\n\tif len(m.Schema) > 0 {\n\t\ti -= len(m.Schema)\n\t\tcopy(dAtA[i:], m.Schema)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Schema)))\n\t\ti--\n\t\tdAtA[i] = 0x22\n\t}\n\tif len(m.RelationName) > 0 {\n\t\ti -= len(m.RelationName)\n\t\tcopy(dAtA[i:], m.RelationName)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.RelationName)))\n\t\ti--\n\t\tdAtA[i] = 0x1a\n\t}\n\tif len(m.ParentRelationship) > 0 {\n\t\ti -= len(m.ParentRelationship)\n\t\tcopy(dAtA[i:], m.ParentRelationship)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.ParentRelationship)))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif len(m.NodeType) > 0 {\n\t\ti -= len(m.NodeType)\n\t\tcopy(dAtA[i:], m.NodeType)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.NodeType)))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *PostgreSQLExplain_Planning) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *PostgreSQLExplain_Planning) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *PostgreSQLExplain_Planning) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.TempWrittenBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.TempWrittenBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x50\n\t}\n\tif m.TempReadBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.TempReadBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x48\n\t}\n\tif m.LocalWrittenBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalWrittenBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x40\n\t}\n\tif m.LocalDirtiedBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalDirtiedBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x38\n\t}\n\tif m.LocalReadBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalReadBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x30\n\t}\n\tif m.LocalHitBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalHitBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x28\n\t}\n\tif m.SharedWrittenBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedWrittenBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x20\n\t}\n\tif m.SharedDirtiedBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedDirtiedBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x18\n\t}\n\tif m.SharedReadBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedReadBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x10\n\t}\n\tif m.SharedHitBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedHitBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x8\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *PostgreSQLExplain) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *PostgreSQLExplain) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *PostgreSQLExplain) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.Planning != nil {\n\t\tsize, err := m.Planning.MarshalToSizedBufferVT(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x1a\n\t}\n\tif len(m.Settings) > 0 {\n\t\tfor k := range m.Settings {\n\t\t\tv := m.Settings[k]\n\t\t\tbaseI := i\n\t\t\ti -= len(v)\n\t\t\tcopy(dAtA[i:], v)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(v)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x12\n\t\t\ti -= len(k)\n\t\t\tcopy(dAtA[i:], k)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(k)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0xa\n\t\t\ti = encodeVarint(dAtA, i, uint64(baseI-i))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x12\n\t\t}\n\t}\n\tif m.Plan != nil {\n\t\tsize, err := m.Plan.MarshalToSizedBufferVT(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *MySQL) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *MySQL) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *MySQL) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.Explain != nil {\n\t\tsize, err := m.Explain.MarshalToSizedBufferVT(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *MySQLExplain_QueryBlock) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *MySQLExplain_QueryBlock) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *MySQLExplain_QueryBlock) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.NestedLoop) > 0 {\n\t\tfor iNdEx := len(m.NestedLoop) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\tsize, err := m.NestedLoop[iNdEx].MarshalToSizedBufferVT(dAtA[:i])\n\t\t\tif err != nil {\n\t\t\t\treturn 0, err\n\t\t\t}\n\t\t\ti -= size\n\t\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x32\n\t\t}\n\t}\n\tif m.OrderingOperation != nil {\n\t\tsize, err := m.OrderingOperation.MarshalToSizedBufferVT(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x2a\n\t}\n\tif m.Table != nil {\n\t\tsize, err := m.Table.MarshalToSizedBufferVT(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x22\n\t}\n\tif len(m.CostInfo) > 0 {\n\t\tfor k := range m.CostInfo {\n\t\t\tv := m.CostInfo[k]\n\t\t\tbaseI := i\n\t\t\ti -= len(v)\n\t\t\tcopy(dAtA[i:], v)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(v)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x12\n\t\t\ti -= len(k)\n\t\t\tcopy(dAtA[i:], k)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(k)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0xa\n\t\t\ti = encodeVarint(dAtA, i, uint64(baseI-i))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x1a\n\t\t}\n\t}\n\tif len(m.Message) > 0 {\n\t\ti -= len(m.Message)\n\t\tcopy(dAtA[i:], m.Message)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Message)))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif m.SelectId != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SelectId))\n\t\ti--\n\t\tdAtA[i] = 0x8\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *MySQLExplain_Table) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *MySQLExplain_Table) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *MySQLExplain_Table) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.Ref) > 0 {\n\t\tfor iNdEx := len(m.Ref) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.Ref[iNdEx])\n\t\t\tcopy(dAtA[i:], m.Ref[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.Ref[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x6a\n\t\t}\n\t}\n\tif len(m.KeyLength) > 0 {\n\t\ti -= len(m.KeyLength)\n\t\tcopy(dAtA[i:], m.KeyLength)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.KeyLength)))\n\t\ti--\n\t\tdAtA[i] = 0x62\n\t}\n\tif len(m.UsedKeyParts) > 0 {\n\t\tfor iNdEx := len(m.UsedKeyParts) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.UsedKeyParts[iNdEx])\n\t\t\tcopy(dAtA[i:], m.UsedKeyParts[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.UsedKeyParts[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x5a\n\t\t}\n\t}\n\tif len(m.Key) > 0 {\n\t\ti -= len(m.Key)\n\t\tcopy(dAtA[i:], m.Key)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Key)))\n\t\ti--\n\t\tdAtA[i] = 0x52\n\t}\n\tif len(m.PossibleKeys) > 0 {\n\t\tfor iNdEx := len(m.PossibleKeys) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.PossibleKeys[iNdEx])\n\t\t\tcopy(dAtA[i:], m.PossibleKeys[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.PossibleKeys[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x4a\n\t\t}\n\t}\n\tif m.Insert {\n\t\ti--\n\t\tif m.Insert {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x40\n\t}\n\tif len(m.UsedColumns) > 0 {\n\t\tfor iNdEx := len(m.UsedColumns) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.UsedColumns[iNdEx])\n\t\t\tcopy(dAtA[i:], m.UsedColumns[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.UsedColumns[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x3a\n\t\t}\n\t}\n\tif len(m.CostInfo) > 0 {\n\t\tfor k := range m.CostInfo {\n\t\t\tv := m.CostInfo[k]\n\t\t\tbaseI := i\n\t\t\ti -= len(v)\n\t\t\tcopy(dAtA[i:], v)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(v)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x12\n\t\t\ti -= len(k)\n\t\t\tcopy(dAtA[i:], k)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(k)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0xa\n\t\t\ti = encodeVarint(dAtA, i, uint64(baseI-i))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x32\n\t\t}\n\t}\n\tif len(m.Filtered) > 0 {\n\t\ti -= len(m.Filtered)\n\t\tcopy(dAtA[i:], m.Filtered)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Filtered)))\n\t\ti--\n\t\tdAtA[i] = 0x2a\n\t}\n\tif m.RowsProducedPerJoin != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.RowsProducedPerJoin))\n\t\ti--\n\t\tdAtA[i] = 0x20\n\t}\n\tif m.RowsExaminedPerScan != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.RowsExaminedPerScan))\n\t\ti--\n\t\tdAtA[i] = 0x18\n\t}\n\tif len(m.AccessType) > 0 {\n\t\ti -= len(m.AccessType)\n\t\tcopy(dAtA[i:], m.AccessType)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.AccessType)))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif len(m.TableName) > 0 {\n\t\ti -= len(m.TableName)\n\t\tcopy(dAtA[i:], m.TableName)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.TableName)))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *MySQLExplain_NestedLoopObj) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *MySQLExplain_NestedLoopObj) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *MySQLExplain_NestedLoopObj) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.Table != nil {\n\t\tsize, err := m.Table.MarshalToSizedBufferVT(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *MySQLExplain_OrderingOperation) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *MySQLExplain_OrderingOperation) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *MySQLExplain_OrderingOperation) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.NestedLoop) > 0 {\n\t\tfor iNdEx := len(m.NestedLoop) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\tsize, err := m.NestedLoop[iNdEx].MarshalToSizedBufferVT(dAtA[:i])\n\t\t\tif err != nil {\n\t\t\t\treturn 0, err\n\t\t\t}\n\t\t\ti -= size\n\t\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x22\n\t\t}\n\t}\n\tif m.Table != nil {\n\t\tsize, err := m.Table.MarshalToSizedBufferVT(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x1a\n\t}\n\tif len(m.CostInfo) > 0 {\n\t\tfor k := range m.CostInfo {\n\t\t\tv := m.CostInfo[k]\n\t\t\tbaseI := i\n\t\t\ti -= len(v)\n\t\t\tcopy(dAtA[i:], v)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(v)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x12\n\t\t\ti -= len(k)\n\t\t\tcopy(dAtA[i:], k)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(k)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0xa\n\t\t\ti = encodeVarint(dAtA, i, uint64(baseI-i))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x12\n\t\t}\n\t}\n\tif m.UsingFilesort {\n\t\ti--\n\t\tif m.UsingFilesort {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x8\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *MySQLExplain) MarshalVT() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVT(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *MySQLExplain) MarshalToVT(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVT(dAtA[:size])\n}\n\nfunc (m *MySQLExplain) MarshalToSizedBufferVT(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.QueryBlock != nil {\n\t\tsize, err := m.QueryBlock.MarshalToSizedBufferVT(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc encodeVarint(dAtA []byte, offset int, v uint64) int {\n\toffset -= sov(v)\n\tbase := offset\n\tfor v >= 1<<7 {\n\t\tdAtA[offset] = uint8(v&0x7f | 0x80)\n\t\tv >>= 7\n\t\toffset++\n\t}\n\tdAtA[offset] = uint8(v)\n\treturn base\n}\nfunc (m *Parameter) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *Parameter) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *Parameter) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.Number != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.Number))\n\t\ti--\n\t\tdAtA[i] = 0x8\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *Config) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *Config) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *Config) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.Queries) > 0 {\n\t\tfor iNdEx := len(m.Queries) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.Queries[iNdEx])\n\t\t\tcopy(dAtA[i:], m.Queries[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.Queries[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x22\n\t\t}\n\t}\n\tif len(m.Schema) > 0 {\n\t\tfor iNdEx := len(m.Schema) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.Schema[iNdEx])\n\t\t\tcopy(dAtA[i:], m.Schema[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.Schema[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x1a\n\t\t}\n\t}\n\tif len(m.Engine) > 0 {\n\t\ti -= len(m.Engine)\n\t\tcopy(dAtA[i:], m.Engine)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Engine)))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif len(m.Version) > 0 {\n\t\ti -= len(m.Version)\n\t\tcopy(dAtA[i:], m.Version)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Version)))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *Query) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *Query) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *Query) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.Params) > 0 {\n\t\tfor iNdEx := len(m.Params) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\tsize, err := m.Params[iNdEx].MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\t\tif err != nil {\n\t\t\t\treturn 0, err\n\t\t\t}\n\t\t\ti -= size\n\t\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x22\n\t\t}\n\t}\n\tif len(m.Cmd) > 0 {\n\t\ti -= len(m.Cmd)\n\t\tcopy(dAtA[i:], m.Cmd)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Cmd)))\n\t\ti--\n\t\tdAtA[i] = 0x1a\n\t}\n\tif len(m.Name) > 0 {\n\t\ti -= len(m.Name)\n\t\tcopy(dAtA[i:], m.Name)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Name)))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif len(m.Sql) > 0 {\n\t\ti -= len(m.Sql)\n\t\tcopy(dAtA[i:], m.Sql)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Sql)))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *PostgreSQL) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *PostgreSQL) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *PostgreSQL) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.Explain != nil {\n\t\tsize, err := m.Explain.MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *PostgreSQLExplain_Plan) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *PostgreSQLExplain_Plan) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *PostgreSQLExplain_Plan) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.IndexCond) > 0 {\n\t\ti -= len(m.IndexCond)\n\t\tcopy(dAtA[i:], m.IndexCond)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.IndexCond)))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xf2\n\t}\n\tif len(m.ScanDirection) > 0 {\n\t\ti -= len(m.ScanDirection)\n\t\tcopy(dAtA[i:], m.ScanDirection)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.ScanDirection)))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xea\n\t}\n\tif len(m.IndexName) > 0 {\n\t\ti -= len(m.IndexName)\n\t\tcopy(dAtA[i:], m.IndexName)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.IndexName)))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xe2\n\t}\n\tif len(m.HashCond) > 0 {\n\t\ti -= len(m.HashCond)\n\t\tcopy(dAtA[i:], m.HashCond)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.HashCond)))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xda\n\t}\n\tif m.InnerUnique {\n\t\ti--\n\t\tif m.InnerUnique {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xd0\n\t}\n\tif len(m.JoinType) > 0 {\n\t\ti -= len(m.JoinType)\n\t\tcopy(dAtA[i:], m.JoinType)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.JoinType)))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xca\n\t}\n\tif len(m.SortKey) > 0 {\n\t\tfor iNdEx := len(m.SortKey) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.SortKey[iNdEx])\n\t\t\tcopy(dAtA[i:], m.SortKey[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.SortKey[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x1\n\t\t\ti--\n\t\t\tdAtA[i] = 0xc2\n\t\t}\n\t}\n\tif m.TempWrittenBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.TempWrittenBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xb8\n\t}\n\tif m.TempReadBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.TempReadBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xb0\n\t}\n\tif m.LocalWrittenBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalWrittenBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xa8\n\t}\n\tif m.LocalDirtiedBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalDirtiedBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0xa0\n\t}\n\tif m.LocalReadBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalReadBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0x98\n\t}\n\tif m.LocalHitBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalHitBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0x90\n\t}\n\tif m.SharedWrittenBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedWrittenBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0x88\n\t}\n\tif m.SharedDirtiedBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedDirtiedBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x1\n\t\ti--\n\t\tdAtA[i] = 0x80\n\t}\n\tif m.SharedReadBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedReadBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x78\n\t}\n\tif m.SharedHitBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedHitBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x70\n\t}\n\tif len(m.Plans) > 0 {\n\t\tfor iNdEx := len(m.Plans) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\tsize, err := m.Plans[iNdEx].MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\t\tif err != nil {\n\t\t\t\treturn 0, err\n\t\t\t}\n\t\t\ti -= size\n\t\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x6a\n\t\t}\n\t}\n\tif len(m.Output) > 0 {\n\t\tfor iNdEx := len(m.Output) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.Output[iNdEx])\n\t\t\tcopy(dAtA[i:], m.Output[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.Output[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x62\n\t\t}\n\t}\n\tif m.PlanWidth != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.PlanWidth))\n\t\ti--\n\t\tdAtA[i] = 0x58\n\t}\n\tif m.PlanRows != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.PlanRows))\n\t\ti--\n\t\tdAtA[i] = 0x50\n\t}\n\tif m.TotalCost != 0 {\n\t\ti -= 4\n\t\tbinary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.TotalCost))))\n\t\ti--\n\t\tdAtA[i] = 0x4d\n\t}\n\tif m.StartupCost != 0 {\n\t\ti -= 4\n\t\tbinary.LittleEndian.PutUint32(dAtA[i:], uint32(math.Float32bits(float32(m.StartupCost))))\n\t\ti--\n\t\tdAtA[i] = 0x45\n\t}\n\tif m.AsyncCapable {\n\t\ti--\n\t\tif m.AsyncCapable {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x38\n\t}\n\tif m.ParallelAware {\n\t\ti--\n\t\tif m.ParallelAware {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x30\n\t}\n\tif len(m.Alias) > 0 {\n\t\ti -= len(m.Alias)\n\t\tcopy(dAtA[i:], m.Alias)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Alias)))\n\t\ti--\n\t\tdAtA[i] = 0x2a\n\t}\n\tif len(m.Schema) > 0 {\n\t\ti -= len(m.Schema)\n\t\tcopy(dAtA[i:], m.Schema)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Schema)))\n\t\ti--\n\t\tdAtA[i] = 0x22\n\t}\n\tif len(m.RelationName) > 0 {\n\t\ti -= len(m.RelationName)\n\t\tcopy(dAtA[i:], m.RelationName)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.RelationName)))\n\t\ti--\n\t\tdAtA[i] = 0x1a\n\t}\n\tif len(m.ParentRelationship) > 0 {\n\t\ti -= len(m.ParentRelationship)\n\t\tcopy(dAtA[i:], m.ParentRelationship)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.ParentRelationship)))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif len(m.NodeType) > 0 {\n\t\ti -= len(m.NodeType)\n\t\tcopy(dAtA[i:], m.NodeType)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.NodeType)))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *PostgreSQLExplain_Planning) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *PostgreSQLExplain_Planning) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *PostgreSQLExplain_Planning) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.TempWrittenBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.TempWrittenBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x50\n\t}\n\tif m.TempReadBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.TempReadBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x48\n\t}\n\tif m.LocalWrittenBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalWrittenBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x40\n\t}\n\tif m.LocalDirtiedBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalDirtiedBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x38\n\t}\n\tif m.LocalReadBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalReadBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x30\n\t}\n\tif m.LocalHitBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.LocalHitBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x28\n\t}\n\tif m.SharedWrittenBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedWrittenBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x20\n\t}\n\tif m.SharedDirtiedBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedDirtiedBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x18\n\t}\n\tif m.SharedReadBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedReadBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x10\n\t}\n\tif m.SharedHitBlocks != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SharedHitBlocks))\n\t\ti--\n\t\tdAtA[i] = 0x8\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *PostgreSQLExplain) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *PostgreSQLExplain) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *PostgreSQLExplain) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.Planning != nil {\n\t\tsize, err := m.Planning.MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x1a\n\t}\n\tif len(m.Settings) > 0 {\n\t\tfor k := range m.Settings {\n\t\t\tv := m.Settings[k]\n\t\t\tbaseI := i\n\t\t\ti -= len(v)\n\t\t\tcopy(dAtA[i:], v)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(v)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x12\n\t\t\ti -= len(k)\n\t\t\tcopy(dAtA[i:], k)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(k)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0xa\n\t\t\ti = encodeVarint(dAtA, i, uint64(baseI-i))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x12\n\t\t}\n\t}\n\tif m.Plan != nil {\n\t\tsize, err := m.Plan.MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *MySQL) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *MySQL) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *MySQL) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.Explain != nil {\n\t\tsize, err := m.Explain.MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *MySQLExplain_QueryBlock) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *MySQLExplain_QueryBlock) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *MySQLExplain_QueryBlock) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.NestedLoop) > 0 {\n\t\tfor iNdEx := len(m.NestedLoop) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\tsize, err := m.NestedLoop[iNdEx].MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\t\tif err != nil {\n\t\t\t\treturn 0, err\n\t\t\t}\n\t\t\ti -= size\n\t\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x32\n\t\t}\n\t}\n\tif m.OrderingOperation != nil {\n\t\tsize, err := m.OrderingOperation.MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x2a\n\t}\n\tif m.Table != nil {\n\t\tsize, err := m.Table.MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x22\n\t}\n\tif len(m.CostInfo) > 0 {\n\t\tfor k := range m.CostInfo {\n\t\t\tv := m.CostInfo[k]\n\t\t\tbaseI := i\n\t\t\ti -= len(v)\n\t\t\tcopy(dAtA[i:], v)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(v)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x12\n\t\t\ti -= len(k)\n\t\t\tcopy(dAtA[i:], k)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(k)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0xa\n\t\t\ti = encodeVarint(dAtA, i, uint64(baseI-i))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x1a\n\t\t}\n\t}\n\tif len(m.Message) > 0 {\n\t\ti -= len(m.Message)\n\t\tcopy(dAtA[i:], m.Message)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Message)))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif m.SelectId != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.SelectId))\n\t\ti--\n\t\tdAtA[i] = 0x8\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *MySQLExplain_Table) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *MySQLExplain_Table) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *MySQLExplain_Table) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.Ref) > 0 {\n\t\tfor iNdEx := len(m.Ref) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.Ref[iNdEx])\n\t\t\tcopy(dAtA[i:], m.Ref[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.Ref[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x6a\n\t\t}\n\t}\n\tif len(m.KeyLength) > 0 {\n\t\ti -= len(m.KeyLength)\n\t\tcopy(dAtA[i:], m.KeyLength)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.KeyLength)))\n\t\ti--\n\t\tdAtA[i] = 0x62\n\t}\n\tif len(m.UsedKeyParts) > 0 {\n\t\tfor iNdEx := len(m.UsedKeyParts) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.UsedKeyParts[iNdEx])\n\t\t\tcopy(dAtA[i:], m.UsedKeyParts[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.UsedKeyParts[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x5a\n\t\t}\n\t}\n\tif len(m.Key) > 0 {\n\t\ti -= len(m.Key)\n\t\tcopy(dAtA[i:], m.Key)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Key)))\n\t\ti--\n\t\tdAtA[i] = 0x52\n\t}\n\tif len(m.PossibleKeys) > 0 {\n\t\tfor iNdEx := len(m.PossibleKeys) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.PossibleKeys[iNdEx])\n\t\t\tcopy(dAtA[i:], m.PossibleKeys[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.PossibleKeys[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x4a\n\t\t}\n\t}\n\tif m.Insert {\n\t\ti--\n\t\tif m.Insert {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x40\n\t}\n\tif len(m.UsedColumns) > 0 {\n\t\tfor iNdEx := len(m.UsedColumns) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\ti -= len(m.UsedColumns[iNdEx])\n\t\t\tcopy(dAtA[i:], m.UsedColumns[iNdEx])\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(m.UsedColumns[iNdEx])))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x3a\n\t\t}\n\t}\n\tif len(m.CostInfo) > 0 {\n\t\tfor k := range m.CostInfo {\n\t\t\tv := m.CostInfo[k]\n\t\t\tbaseI := i\n\t\t\ti -= len(v)\n\t\t\tcopy(dAtA[i:], v)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(v)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x12\n\t\t\ti -= len(k)\n\t\t\tcopy(dAtA[i:], k)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(k)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0xa\n\t\t\ti = encodeVarint(dAtA, i, uint64(baseI-i))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x32\n\t\t}\n\t}\n\tif len(m.Filtered) > 0 {\n\t\ti -= len(m.Filtered)\n\t\tcopy(dAtA[i:], m.Filtered)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.Filtered)))\n\t\ti--\n\t\tdAtA[i] = 0x2a\n\t}\n\tif m.RowsProducedPerJoin != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.RowsProducedPerJoin))\n\t\ti--\n\t\tdAtA[i] = 0x20\n\t}\n\tif m.RowsExaminedPerScan != 0 {\n\t\ti = encodeVarint(dAtA, i, uint64(m.RowsExaminedPerScan))\n\t\ti--\n\t\tdAtA[i] = 0x18\n\t}\n\tif len(m.AccessType) > 0 {\n\t\ti -= len(m.AccessType)\n\t\tcopy(dAtA[i:], m.AccessType)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.AccessType)))\n\t\ti--\n\t\tdAtA[i] = 0x12\n\t}\n\tif len(m.TableName) > 0 {\n\t\ti -= len(m.TableName)\n\t\tcopy(dAtA[i:], m.TableName)\n\t\ti = encodeVarint(dAtA, i, uint64(len(m.TableName)))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *MySQLExplain_NestedLoopObj) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *MySQLExplain_NestedLoopObj) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *MySQLExplain_NestedLoopObj) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.Table != nil {\n\t\tsize, err := m.Table.MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *MySQLExplain_OrderingOperation) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *MySQLExplain_OrderingOperation) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *MySQLExplain_OrderingOperation) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif len(m.NestedLoop) > 0 {\n\t\tfor iNdEx := len(m.NestedLoop) - 1; iNdEx >= 0; iNdEx-- {\n\t\t\tsize, err := m.NestedLoop[iNdEx].MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\t\tif err != nil {\n\t\t\t\treturn 0, err\n\t\t\t}\n\t\t\ti -= size\n\t\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x22\n\t\t}\n\t}\n\tif m.Table != nil {\n\t\tsize, err := m.Table.MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0x1a\n\t}\n\tif len(m.CostInfo) > 0 {\n\t\tfor k := range m.CostInfo {\n\t\t\tv := m.CostInfo[k]\n\t\t\tbaseI := i\n\t\t\ti -= len(v)\n\t\t\tcopy(dAtA[i:], v)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(v)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x12\n\t\t\ti -= len(k)\n\t\t\tcopy(dAtA[i:], k)\n\t\t\ti = encodeVarint(dAtA, i, uint64(len(k)))\n\t\t\ti--\n\t\t\tdAtA[i] = 0xa\n\t\t\ti = encodeVarint(dAtA, i, uint64(baseI-i))\n\t\t\ti--\n\t\t\tdAtA[i] = 0x12\n\t\t}\n\t}\n\tif m.UsingFilesort {\n\t\ti--\n\t\tif m.UsingFilesort {\n\t\t\tdAtA[i] = 1\n\t\t} else {\n\t\t\tdAtA[i] = 0\n\t\t}\n\t\ti--\n\t\tdAtA[i] = 0x8\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *MySQLExplain) MarshalVTStrict() (dAtA []byte, err error) {\n\tif m == nil {\n\t\treturn nil, nil\n\t}\n\tsize := m.SizeVT()\n\tdAtA = make([]byte, size)\n\tn, err := m.MarshalToSizedBufferVTStrict(dAtA[:size])\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\treturn dAtA[:n], nil\n}\n\nfunc (m *MySQLExplain) MarshalToVTStrict(dAtA []byte) (int, error) {\n\tsize := m.SizeVT()\n\treturn m.MarshalToSizedBufferVTStrict(dAtA[:size])\n}\n\nfunc (m *MySQLExplain) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error) {\n\tif m == nil {\n\t\treturn 0, nil\n\t}\n\ti := len(dAtA)\n\t_ = i\n\tvar l int\n\t_ = l\n\tif m.unknownFields != nil {\n\t\ti -= len(m.unknownFields)\n\t\tcopy(dAtA[i:], m.unknownFields)\n\t}\n\tif m.QueryBlock != nil {\n\t\tsize, err := m.QueryBlock.MarshalToSizedBufferVTStrict(dAtA[:i])\n\t\tif err != nil {\n\t\t\treturn 0, err\n\t\t}\n\t\ti -= size\n\t\ti = encodeVarint(dAtA, i, uint64(size))\n\t\ti--\n\t\tdAtA[i] = 0xa\n\t}\n\treturn len(dAtA) - i, nil\n}\n\nfunc (m *Parameter) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tif m.Number != 0 {\n\t\tn += 1 + sov(uint64(m.Number))\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc (m *Config) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tl = len(m.Version)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tl = len(m.Engine)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif len(m.Schema) > 0 {\n\t\tfor _, s := range m.Schema {\n\t\t\tl = len(s)\n\t\t\tn += 1 + l + sov(uint64(l))\n\t\t}\n\t}\n\tif len(m.Queries) > 0 {\n\t\tfor _, s := range m.Queries {\n\t\t\tl = len(s)\n\t\t\tn += 1 + l + sov(uint64(l))\n\t\t}\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc (m *Query) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tl = len(m.Sql)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tl = len(m.Name)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tl = len(m.Cmd)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif len(m.Params) > 0 {\n\t\tfor _, e := range m.Params {\n\t\t\tl = e.SizeVT()\n\t\t\tn += 1 + l + sov(uint64(l))\n\t\t}\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc (m *PostgreSQL) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tif m.Explain != nil {\n\t\tl = m.Explain.SizeVT()\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc (m *PostgreSQLExplain_Plan) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tl = len(m.NodeType)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tl = len(m.ParentRelationship)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tl = len(m.RelationName)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tl = len(m.Schema)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tl = len(m.Alias)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif m.ParallelAware {\n\t\tn += 2\n\t}\n\tif m.AsyncCapable {\n\t\tn += 2\n\t}\n\tif m.StartupCost != 0 {\n\t\tn += 5\n\t}\n\tif m.TotalCost != 0 {\n\t\tn += 5\n\t}\n\tif m.PlanRows != 0 {\n\t\tn += 1 + sov(uint64(m.PlanRows))\n\t}\n\tif m.PlanWidth != 0 {\n\t\tn += 1 + sov(uint64(m.PlanWidth))\n\t}\n\tif len(m.Output) > 0 {\n\t\tfor _, s := range m.Output {\n\t\t\tl = len(s)\n\t\t\tn += 1 + l + sov(uint64(l))\n\t\t}\n\t}\n\tif len(m.Plans) > 0 {\n\t\tfor _, e := range m.Plans {\n\t\t\tl = e.SizeVT()\n\t\t\tn += 1 + l + sov(uint64(l))\n\t\t}\n\t}\n\tif m.SharedHitBlocks != 0 {\n\t\tn += 1 + sov(uint64(m.SharedHitBlocks))\n\t}\n\tif m.SharedReadBlocks != 0 {\n\t\tn += 1 + sov(uint64(m.SharedReadBlocks))\n\t}\n\tif m.SharedDirtiedBlocks != 0 {\n\t\tn += 2 + sov(uint64(m.SharedDirtiedBlocks))\n\t}\n\tif m.SharedWrittenBlocks != 0 {\n\t\tn += 2 + sov(uint64(m.SharedWrittenBlocks))\n\t}\n\tif m.LocalHitBlocks != 0 {\n\t\tn += 2 + sov(uint64(m.LocalHitBlocks))\n\t}\n\tif m.LocalReadBlocks != 0 {\n\t\tn += 2 + sov(uint64(m.LocalReadBlocks))\n\t}\n\tif m.LocalDirtiedBlocks != 0 {\n\t\tn += 2 + sov(uint64(m.LocalDirtiedBlocks))\n\t}\n\tif m.LocalWrittenBlocks != 0 {\n\t\tn += 2 + sov(uint64(m.LocalWrittenBlocks))\n\t}\n\tif m.TempReadBlocks != 0 {\n\t\tn += 2 + sov(uint64(m.TempReadBlocks))\n\t}\n\tif m.TempWrittenBlocks != 0 {\n\t\tn += 2 + sov(uint64(m.TempWrittenBlocks))\n\t}\n\tif len(m.SortKey) > 0 {\n\t\tfor _, s := range m.SortKey {\n\t\t\tl = len(s)\n\t\t\tn += 2 + l + sov(uint64(l))\n\t\t}\n\t}\n\tl = len(m.JoinType)\n\tif l > 0 {\n\t\tn += 2 + l + sov(uint64(l))\n\t}\n\tif m.InnerUnique {\n\t\tn += 3\n\t}\n\tl = len(m.HashCond)\n\tif l > 0 {\n\t\tn += 2 + l + sov(uint64(l))\n\t}\n\tl = len(m.IndexName)\n\tif l > 0 {\n\t\tn += 2 + l + sov(uint64(l))\n\t}\n\tl = len(m.ScanDirection)\n\tif l > 0 {\n\t\tn += 2 + l + sov(uint64(l))\n\t}\n\tl = len(m.IndexCond)\n\tif l > 0 {\n\t\tn += 2 + l + sov(uint64(l))\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc (m *PostgreSQLExplain_Planning) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tif m.SharedHitBlocks != 0 {\n\t\tn += 1 + sov(uint64(m.SharedHitBlocks))\n\t}\n\tif m.SharedReadBlocks != 0 {\n\t\tn += 1 + sov(uint64(m.SharedReadBlocks))\n\t}\n\tif m.SharedDirtiedBlocks != 0 {\n\t\tn += 1 + sov(uint64(m.SharedDirtiedBlocks))\n\t}\n\tif m.SharedWrittenBlocks != 0 {\n\t\tn += 1 + sov(uint64(m.SharedWrittenBlocks))\n\t}\n\tif m.LocalHitBlocks != 0 {\n\t\tn += 1 + sov(uint64(m.LocalHitBlocks))\n\t}\n\tif m.LocalReadBlocks != 0 {\n\t\tn += 1 + sov(uint64(m.LocalReadBlocks))\n\t}\n\tif m.LocalDirtiedBlocks != 0 {\n\t\tn += 1 + sov(uint64(m.LocalDirtiedBlocks))\n\t}\n\tif m.LocalWrittenBlocks != 0 {\n\t\tn += 1 + sov(uint64(m.LocalWrittenBlocks))\n\t}\n\tif m.TempReadBlocks != 0 {\n\t\tn += 1 + sov(uint64(m.TempReadBlocks))\n\t}\n\tif m.TempWrittenBlocks != 0 {\n\t\tn += 1 + sov(uint64(m.TempWrittenBlocks))\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc (m *PostgreSQLExplain) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tif m.Plan != nil {\n\t\tl = m.Plan.SizeVT()\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif len(m.Settings) > 0 {\n\t\tfor k, v := range m.Settings {\n\t\t\t_ = k\n\t\t\t_ = v\n\t\t\tmapEntrySize := 1 + len(k) + sov(uint64(len(k))) + 1 + len(v) + sov(uint64(len(v)))\n\t\t\tn += mapEntrySize + 1 + sov(uint64(mapEntrySize))\n\t\t}\n\t}\n\tif m.Planning != nil {\n\t\tl = m.Planning.SizeVT()\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc (m *MySQL) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tif m.Explain != nil {\n\t\tl = m.Explain.SizeVT()\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc (m *MySQLExplain_QueryBlock) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tif m.SelectId != 0 {\n\t\tn += 1 + sov(uint64(m.SelectId))\n\t}\n\tl = len(m.Message)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif len(m.CostInfo) > 0 {\n\t\tfor k, v := range m.CostInfo {\n\t\t\t_ = k\n\t\t\t_ = v\n\t\t\tmapEntrySize := 1 + len(k) + sov(uint64(len(k))) + 1 + len(v) + sov(uint64(len(v)))\n\t\t\tn += mapEntrySize + 1 + sov(uint64(mapEntrySize))\n\t\t}\n\t}\n\tif m.Table != nil {\n\t\tl = m.Table.SizeVT()\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif m.OrderingOperation != nil {\n\t\tl = m.OrderingOperation.SizeVT()\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif len(m.NestedLoop) > 0 {\n\t\tfor _, e := range m.NestedLoop {\n\t\t\tl = e.SizeVT()\n\t\t\tn += 1 + l + sov(uint64(l))\n\t\t}\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc (m *MySQLExplain_Table) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tl = len(m.TableName)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tl = len(m.AccessType)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif m.RowsExaminedPerScan != 0 {\n\t\tn += 1 + sov(uint64(m.RowsExaminedPerScan))\n\t}\n\tif m.RowsProducedPerJoin != 0 {\n\t\tn += 1 + sov(uint64(m.RowsProducedPerJoin))\n\t}\n\tl = len(m.Filtered)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif len(m.CostInfo) > 0 {\n\t\tfor k, v := range m.CostInfo {\n\t\t\t_ = k\n\t\t\t_ = v\n\t\t\tmapEntrySize := 1 + len(k) + sov(uint64(len(k))) + 1 + len(v) + sov(uint64(len(v)))\n\t\t\tn += mapEntrySize + 1 + sov(uint64(mapEntrySize))\n\t\t}\n\t}\n\tif len(m.UsedColumns) > 0 {\n\t\tfor _, s := range m.UsedColumns {\n\t\t\tl = len(s)\n\t\t\tn += 1 + l + sov(uint64(l))\n\t\t}\n\t}\n\tif m.Insert {\n\t\tn += 2\n\t}\n\tif len(m.PossibleKeys) > 0 {\n\t\tfor _, s := range m.PossibleKeys {\n\t\t\tl = len(s)\n\t\t\tn += 1 + l + sov(uint64(l))\n\t\t}\n\t}\n\tl = len(m.Key)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif len(m.UsedKeyParts) > 0 {\n\t\tfor _, s := range m.UsedKeyParts {\n\t\t\tl = len(s)\n\t\t\tn += 1 + l + sov(uint64(l))\n\t\t}\n\t}\n\tl = len(m.KeyLength)\n\tif l > 0 {\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif len(m.Ref) > 0 {\n\t\tfor _, s := range m.Ref {\n\t\t\tl = len(s)\n\t\t\tn += 1 + l + sov(uint64(l))\n\t\t}\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc (m *MySQLExplain_NestedLoopObj) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tif m.Table != nil {\n\t\tl = m.Table.SizeVT()\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc (m *MySQLExplain_OrderingOperation) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tif m.UsingFilesort {\n\t\tn += 2\n\t}\n\tif len(m.CostInfo) > 0 {\n\t\tfor k, v := range m.CostInfo {\n\t\t\t_ = k\n\t\t\t_ = v\n\t\t\tmapEntrySize := 1 + len(k) + sov(uint64(len(k))) + 1 + len(v) + sov(uint64(len(v)))\n\t\t\tn += mapEntrySize + 1 + sov(uint64(mapEntrySize))\n\t\t}\n\t}\n\tif m.Table != nil {\n\t\tl = m.Table.SizeVT()\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tif len(m.NestedLoop) > 0 {\n\t\tfor _, e := range m.NestedLoop {\n\t\t\tl = e.SizeVT()\n\t\t\tn += 1 + l + sov(uint64(l))\n\t\t}\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc (m *MySQLExplain) SizeVT() (n int) {\n\tif m == nil {\n\t\treturn 0\n\t}\n\tvar l int\n\t_ = l\n\tif m.QueryBlock != nil {\n\t\tl = m.QueryBlock.SizeVT()\n\t\tn += 1 + l + sov(uint64(l))\n\t}\n\tn += len(m.unknownFields)\n\treturn n\n}\n\nfunc sov(x uint64) (n int) {\n\treturn (bits.Len64(x|1) + 6) / 7\n}\nfunc soz(x uint64) (n int) {\n\treturn sov(uint64((x << 1) ^ uint64((int64(x) >> 63))))\n}\nfunc (m *Parameter) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: Parameter: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: Parameter: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Number\", wireType)\n\t\t\t}\n\t\t\tm.Number = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.Number |= int32(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\nfunc (m *Config) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: Config: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: Config: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Version\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Version = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 2:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Engine\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Engine = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 3:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Schema\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Schema = append(m.Schema, string(dAtA[iNdEx:postIndex]))\n\t\t\tiNdEx = postIndex\n\t\tcase 4:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Queries\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Queries = append(m.Queries, string(dAtA[iNdEx:postIndex]))\n\t\t\tiNdEx = postIndex\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\nfunc (m *Query) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: Query: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: Query: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Sql\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Sql = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 2:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Name\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Name = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 3:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Cmd\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Cmd = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 4:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Params\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Params = append(m.Params, &Parameter{})\n\t\t\tif err := m.Params[len(m.Params)-1].UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\nfunc (m *PostgreSQL) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: PostgreSQL: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: PostgreSQL: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Explain\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.Explain == nil {\n\t\t\t\tm.Explain = &PostgreSQLExplain{}\n\t\t\t}\n\t\t\tif err := m.Explain.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\nfunc (m *PostgreSQLExplain_Plan) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: PostgreSQLExplain_Plan: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: PostgreSQLExplain_Plan: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field NodeType\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.NodeType = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 2:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field ParentRelationship\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.ParentRelationship = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 3:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field RelationName\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.RelationName = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 4:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Schema\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Schema = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 5:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Alias\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Alias = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 6:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field ParallelAware\", wireType)\n\t\t\t}\n\t\t\tvar v int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tv |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tm.ParallelAware = bool(v != 0)\n\t\tcase 7:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field AsyncCapable\", wireType)\n\t\t\t}\n\t\t\tvar v int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tv |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tm.AsyncCapable = bool(v != 0)\n\t\tcase 8:\n\t\t\tif wireType != 5 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field StartupCost\", wireType)\n\t\t\t}\n\t\t\tvar v uint32\n\t\t\tif (iNdEx + 4) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tv = uint32(binary.LittleEndian.Uint32(dAtA[iNdEx:]))\n\t\t\tiNdEx += 4\n\t\t\tm.StartupCost = float32(math.Float32frombits(v))\n\t\tcase 9:\n\t\t\tif wireType != 5 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field TotalCost\", wireType)\n\t\t\t}\n\t\t\tvar v uint32\n\t\t\tif (iNdEx + 4) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tv = uint32(binary.LittleEndian.Uint32(dAtA[iNdEx:]))\n\t\t\tiNdEx += 4\n\t\t\tm.TotalCost = float32(math.Float32frombits(v))\n\t\tcase 10:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field PlanRows\", wireType)\n\t\t\t}\n\t\t\tm.PlanRows = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.PlanRows |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 11:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field PlanWidth\", wireType)\n\t\t\t}\n\t\t\tm.PlanWidth = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.PlanWidth |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 12:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Output\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Output = append(m.Output, string(dAtA[iNdEx:postIndex]))\n\t\t\tiNdEx = postIndex\n\t\tcase 13:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Plans\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Plans = append(m.Plans, &PostgreSQLExplain_Plan{})\n\t\t\tif err := m.Plans[len(m.Plans)-1].UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tcase 14:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field SharedHitBlocks\", wireType)\n\t\t\t}\n\t\t\tm.SharedHitBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.SharedHitBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 15:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field SharedReadBlocks\", wireType)\n\t\t\t}\n\t\t\tm.SharedReadBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.SharedReadBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 16:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field SharedDirtiedBlocks\", wireType)\n\t\t\t}\n\t\t\tm.SharedDirtiedBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.SharedDirtiedBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 17:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field SharedWrittenBlocks\", wireType)\n\t\t\t}\n\t\t\tm.SharedWrittenBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.SharedWrittenBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 18:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field LocalHitBlocks\", wireType)\n\t\t\t}\n\t\t\tm.LocalHitBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.LocalHitBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 19:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field LocalReadBlocks\", wireType)\n\t\t\t}\n\t\t\tm.LocalReadBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.LocalReadBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 20:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field LocalDirtiedBlocks\", wireType)\n\t\t\t}\n\t\t\tm.LocalDirtiedBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.LocalDirtiedBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 21:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field LocalWrittenBlocks\", wireType)\n\t\t\t}\n\t\t\tm.LocalWrittenBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.LocalWrittenBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 22:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field TempReadBlocks\", wireType)\n\t\t\t}\n\t\t\tm.TempReadBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.TempReadBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 23:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field TempWrittenBlocks\", wireType)\n\t\t\t}\n\t\t\tm.TempWrittenBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.TempWrittenBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 24:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field SortKey\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.SortKey = append(m.SortKey, string(dAtA[iNdEx:postIndex]))\n\t\t\tiNdEx = postIndex\n\t\tcase 25:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field JoinType\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.JoinType = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 26:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field InnerUnique\", wireType)\n\t\t\t}\n\t\t\tvar v int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tv |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tm.InnerUnique = bool(v != 0)\n\t\tcase 27:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field HashCond\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.HashCond = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 28:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field IndexName\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.IndexName = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 29:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field ScanDirection\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.ScanDirection = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 30:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field IndexCond\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.IndexCond = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\nfunc (m *PostgreSQLExplain_Planning) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: PostgreSQLExplain_Planning: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: PostgreSQLExplain_Planning: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field SharedHitBlocks\", wireType)\n\t\t\t}\n\t\t\tm.SharedHitBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.SharedHitBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 2:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field SharedReadBlocks\", wireType)\n\t\t\t}\n\t\t\tm.SharedReadBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.SharedReadBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 3:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field SharedDirtiedBlocks\", wireType)\n\t\t\t}\n\t\t\tm.SharedDirtiedBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.SharedDirtiedBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 4:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field SharedWrittenBlocks\", wireType)\n\t\t\t}\n\t\t\tm.SharedWrittenBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.SharedWrittenBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 5:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field LocalHitBlocks\", wireType)\n\t\t\t}\n\t\t\tm.LocalHitBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.LocalHitBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 6:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field LocalReadBlocks\", wireType)\n\t\t\t}\n\t\t\tm.LocalReadBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.LocalReadBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 7:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field LocalDirtiedBlocks\", wireType)\n\t\t\t}\n\t\t\tm.LocalDirtiedBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.LocalDirtiedBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 8:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field LocalWrittenBlocks\", wireType)\n\t\t\t}\n\t\t\tm.LocalWrittenBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.LocalWrittenBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 9:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field TempReadBlocks\", wireType)\n\t\t\t}\n\t\t\tm.TempReadBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.TempReadBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 10:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field TempWrittenBlocks\", wireType)\n\t\t\t}\n\t\t\tm.TempWrittenBlocks = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.TempWrittenBlocks |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\nfunc (m *PostgreSQLExplain) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: PostgreSQLExplain: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: PostgreSQLExplain: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Plan\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.Plan == nil {\n\t\t\t\tm.Plan = &PostgreSQLExplain_Plan{}\n\t\t\t}\n\t\t\tif err := m.Plan.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tcase 2:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Settings\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.Settings == nil {\n\t\t\t\tm.Settings = make(map[string]string)\n\t\t\t}\n\t\t\tvar mapkey string\n\t\t\tvar mapvalue string\n\t\t\tfor iNdEx < postIndex {\n\t\t\t\tentryPreIndex := iNdEx\n\t\t\t\tvar wire uint64\n\t\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\t\tif shift >= 64 {\n\t\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t\t}\n\t\t\t\t\tif iNdEx >= l {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\t\tiNdEx++\n\t\t\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\t\t\tif b < 0x80 {\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tfieldNum := int32(wire >> 3)\n\t\t\t\tif fieldNum == 1 {\n\t\t\t\t\tvar stringLenmapkey uint64\n\t\t\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\t\t\tif shift >= 64 {\n\t\t\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif iNdEx >= l {\n\t\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t\t}\n\t\t\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\t\t\tiNdEx++\n\t\t\t\t\t\tstringLenmapkey |= uint64(b&0x7F) << shift\n\t\t\t\t\t\tif b < 0x80 {\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tintStringLenmapkey := int(stringLenmapkey)\n\t\t\t\t\tif intStringLenmapkey < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tpostStringIndexmapkey := iNdEx + intStringLenmapkey\n\t\t\t\t\tif postStringIndexmapkey < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tif postStringIndexmapkey > l {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tmapkey = string(dAtA[iNdEx:postStringIndexmapkey])\n\t\t\t\t\tiNdEx = postStringIndexmapkey\n\t\t\t\t} else if fieldNum == 2 {\n\t\t\t\t\tvar stringLenmapvalue uint64\n\t\t\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\t\t\tif shift >= 64 {\n\t\t\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif iNdEx >= l {\n\t\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t\t}\n\t\t\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\t\t\tiNdEx++\n\t\t\t\t\t\tstringLenmapvalue |= uint64(b&0x7F) << shift\n\t\t\t\t\t\tif b < 0x80 {\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tintStringLenmapvalue := int(stringLenmapvalue)\n\t\t\t\t\tif intStringLenmapvalue < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tpostStringIndexmapvalue := iNdEx + intStringLenmapvalue\n\t\t\t\t\tif postStringIndexmapvalue < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tif postStringIndexmapvalue > l {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tmapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])\n\t\t\t\t\tiNdEx = postStringIndexmapvalue\n\t\t\t\t} else {\n\t\t\t\t\tiNdEx = entryPreIndex\n\t\t\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn err\n\t\t\t\t\t}\n\t\t\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tif (iNdEx + skippy) > postIndex {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tiNdEx += skippy\n\t\t\t\t}\n\t\t\t}\n\t\t\tm.Settings[mapkey] = mapvalue\n\t\t\tiNdEx = postIndex\n\t\tcase 3:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Planning\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.Planning == nil {\n\t\t\t\tm.Planning = &PostgreSQLExplain_Planning{}\n\t\t\t}\n\t\t\tif err := m.Planning.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\nfunc (m *MySQL) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: MySQL: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: MySQL: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Explain\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.Explain == nil {\n\t\t\t\tm.Explain = &MySQLExplain{}\n\t\t\t}\n\t\t\tif err := m.Explain.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\nfunc (m *MySQLExplain_QueryBlock) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: MySQLExplain_QueryBlock: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: MySQLExplain_QueryBlock: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field SelectId\", wireType)\n\t\t\t}\n\t\t\tm.SelectId = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.SelectId |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 2:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Message\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Message = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 3:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field CostInfo\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.CostInfo == nil {\n\t\t\t\tm.CostInfo = make(map[string]string)\n\t\t\t}\n\t\t\tvar mapkey string\n\t\t\tvar mapvalue string\n\t\t\tfor iNdEx < postIndex {\n\t\t\t\tentryPreIndex := iNdEx\n\t\t\t\tvar wire uint64\n\t\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\t\tif shift >= 64 {\n\t\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t\t}\n\t\t\t\t\tif iNdEx >= l {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\t\tiNdEx++\n\t\t\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\t\t\tif b < 0x80 {\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tfieldNum := int32(wire >> 3)\n\t\t\t\tif fieldNum == 1 {\n\t\t\t\t\tvar stringLenmapkey uint64\n\t\t\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\t\t\tif shift >= 64 {\n\t\t\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif iNdEx >= l {\n\t\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t\t}\n\t\t\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\t\t\tiNdEx++\n\t\t\t\t\t\tstringLenmapkey |= uint64(b&0x7F) << shift\n\t\t\t\t\t\tif b < 0x80 {\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tintStringLenmapkey := int(stringLenmapkey)\n\t\t\t\t\tif intStringLenmapkey < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tpostStringIndexmapkey := iNdEx + intStringLenmapkey\n\t\t\t\t\tif postStringIndexmapkey < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tif postStringIndexmapkey > l {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tmapkey = string(dAtA[iNdEx:postStringIndexmapkey])\n\t\t\t\t\tiNdEx = postStringIndexmapkey\n\t\t\t\t} else if fieldNum == 2 {\n\t\t\t\t\tvar stringLenmapvalue uint64\n\t\t\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\t\t\tif shift >= 64 {\n\t\t\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif iNdEx >= l {\n\t\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t\t}\n\t\t\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\t\t\tiNdEx++\n\t\t\t\t\t\tstringLenmapvalue |= uint64(b&0x7F) << shift\n\t\t\t\t\t\tif b < 0x80 {\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tintStringLenmapvalue := int(stringLenmapvalue)\n\t\t\t\t\tif intStringLenmapvalue < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tpostStringIndexmapvalue := iNdEx + intStringLenmapvalue\n\t\t\t\t\tif postStringIndexmapvalue < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tif postStringIndexmapvalue > l {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tmapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])\n\t\t\t\t\tiNdEx = postStringIndexmapvalue\n\t\t\t\t} else {\n\t\t\t\t\tiNdEx = entryPreIndex\n\t\t\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn err\n\t\t\t\t\t}\n\t\t\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tif (iNdEx + skippy) > postIndex {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tiNdEx += skippy\n\t\t\t\t}\n\t\t\t}\n\t\t\tm.CostInfo[mapkey] = mapvalue\n\t\t\tiNdEx = postIndex\n\t\tcase 4:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Table\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.Table == nil {\n\t\t\t\tm.Table = &MySQLExplain_Table{}\n\t\t\t}\n\t\t\tif err := m.Table.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tcase 5:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field OrderingOperation\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.OrderingOperation == nil {\n\t\t\t\tm.OrderingOperation = &MySQLExplain_OrderingOperation{}\n\t\t\t}\n\t\t\tif err := m.OrderingOperation.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tcase 6:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field NestedLoop\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.NestedLoop = append(m.NestedLoop, &MySQLExplain_NestedLoopObj{})\n\t\t\tif err := m.NestedLoop[len(m.NestedLoop)-1].UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\nfunc (m *MySQLExplain_Table) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: MySQLExplain_Table: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: MySQLExplain_Table: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field TableName\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.TableName = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 2:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field AccessType\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.AccessType = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 3:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field RowsExaminedPerScan\", wireType)\n\t\t\t}\n\t\t\tm.RowsExaminedPerScan = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.RowsExaminedPerScan |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 4:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field RowsProducedPerJoin\", wireType)\n\t\t\t}\n\t\t\tm.RowsProducedPerJoin = 0\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tm.RowsProducedPerJoin |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 5:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Filtered\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Filtered = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 6:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field CostInfo\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.CostInfo == nil {\n\t\t\t\tm.CostInfo = make(map[string]string)\n\t\t\t}\n\t\t\tvar mapkey string\n\t\t\tvar mapvalue string\n\t\t\tfor iNdEx < postIndex {\n\t\t\t\tentryPreIndex := iNdEx\n\t\t\t\tvar wire uint64\n\t\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\t\tif shift >= 64 {\n\t\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t\t}\n\t\t\t\t\tif iNdEx >= l {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\t\tiNdEx++\n\t\t\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\t\t\tif b < 0x80 {\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tfieldNum := int32(wire >> 3)\n\t\t\t\tif fieldNum == 1 {\n\t\t\t\t\tvar stringLenmapkey uint64\n\t\t\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\t\t\tif shift >= 64 {\n\t\t\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif iNdEx >= l {\n\t\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t\t}\n\t\t\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\t\t\tiNdEx++\n\t\t\t\t\t\tstringLenmapkey |= uint64(b&0x7F) << shift\n\t\t\t\t\t\tif b < 0x80 {\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tintStringLenmapkey := int(stringLenmapkey)\n\t\t\t\t\tif intStringLenmapkey < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tpostStringIndexmapkey := iNdEx + intStringLenmapkey\n\t\t\t\t\tif postStringIndexmapkey < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tif postStringIndexmapkey > l {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tmapkey = string(dAtA[iNdEx:postStringIndexmapkey])\n\t\t\t\t\tiNdEx = postStringIndexmapkey\n\t\t\t\t} else if fieldNum == 2 {\n\t\t\t\t\tvar stringLenmapvalue uint64\n\t\t\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\t\t\tif shift >= 64 {\n\t\t\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif iNdEx >= l {\n\t\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t\t}\n\t\t\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\t\t\tiNdEx++\n\t\t\t\t\t\tstringLenmapvalue |= uint64(b&0x7F) << shift\n\t\t\t\t\t\tif b < 0x80 {\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tintStringLenmapvalue := int(stringLenmapvalue)\n\t\t\t\t\tif intStringLenmapvalue < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tpostStringIndexmapvalue := iNdEx + intStringLenmapvalue\n\t\t\t\t\tif postStringIndexmapvalue < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tif postStringIndexmapvalue > l {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tmapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])\n\t\t\t\t\tiNdEx = postStringIndexmapvalue\n\t\t\t\t} else {\n\t\t\t\t\tiNdEx = entryPreIndex\n\t\t\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn err\n\t\t\t\t\t}\n\t\t\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tif (iNdEx + skippy) > postIndex {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tiNdEx += skippy\n\t\t\t\t}\n\t\t\t}\n\t\t\tm.CostInfo[mapkey] = mapvalue\n\t\t\tiNdEx = postIndex\n\t\tcase 7:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field UsedColumns\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.UsedColumns = append(m.UsedColumns, string(dAtA[iNdEx:postIndex]))\n\t\t\tiNdEx = postIndex\n\t\tcase 8:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Insert\", wireType)\n\t\t\t}\n\t\t\tvar v int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tv |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tm.Insert = bool(v != 0)\n\t\tcase 9:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field PossibleKeys\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.PossibleKeys = append(m.PossibleKeys, string(dAtA[iNdEx:postIndex]))\n\t\t\tiNdEx = postIndex\n\t\tcase 10:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Key\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Key = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 11:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field UsedKeyParts\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.UsedKeyParts = append(m.UsedKeyParts, string(dAtA[iNdEx:postIndex]))\n\t\t\tiNdEx = postIndex\n\t\tcase 12:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field KeyLength\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.KeyLength = string(dAtA[iNdEx:postIndex])\n\t\t\tiNdEx = postIndex\n\t\tcase 13:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Ref\", wireType)\n\t\t\t}\n\t\t\tvar stringLen uint64\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tstringLen |= uint64(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tintStringLen := int(stringLen)\n\t\t\tif intStringLen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + intStringLen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.Ref = append(m.Ref, string(dAtA[iNdEx:postIndex]))\n\t\t\tiNdEx = postIndex\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\nfunc (m *MySQLExplain_NestedLoopObj) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: MySQLExplain_NestedLoopObj: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: MySQLExplain_NestedLoopObj: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Table\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.Table == nil {\n\t\t\t\tm.Table = &MySQLExplain_Table{}\n\t\t\t}\n\t\t\tif err := m.Table.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\nfunc (m *MySQLExplain_OrderingOperation) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: MySQLExplain_OrderingOperation: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: MySQLExplain_OrderingOperation: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 0 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field UsingFilesort\", wireType)\n\t\t\t}\n\t\t\tvar v int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tv |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tm.UsingFilesort = bool(v != 0)\n\t\tcase 2:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field CostInfo\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.CostInfo == nil {\n\t\t\t\tm.CostInfo = make(map[string]string)\n\t\t\t}\n\t\t\tvar mapkey string\n\t\t\tvar mapvalue string\n\t\t\tfor iNdEx < postIndex {\n\t\t\t\tentryPreIndex := iNdEx\n\t\t\t\tvar wire uint64\n\t\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\t\tif shift >= 64 {\n\t\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t\t}\n\t\t\t\t\tif iNdEx >= l {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\t\tiNdEx++\n\t\t\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\t\t\tif b < 0x80 {\n\t\t\t\t\t\tbreak\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tfieldNum := int32(wire >> 3)\n\t\t\t\tif fieldNum == 1 {\n\t\t\t\t\tvar stringLenmapkey uint64\n\t\t\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\t\t\tif shift >= 64 {\n\t\t\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif iNdEx >= l {\n\t\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t\t}\n\t\t\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\t\t\tiNdEx++\n\t\t\t\t\t\tstringLenmapkey |= uint64(b&0x7F) << shift\n\t\t\t\t\t\tif b < 0x80 {\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tintStringLenmapkey := int(stringLenmapkey)\n\t\t\t\t\tif intStringLenmapkey < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tpostStringIndexmapkey := iNdEx + intStringLenmapkey\n\t\t\t\t\tif postStringIndexmapkey < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tif postStringIndexmapkey > l {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tmapkey = string(dAtA[iNdEx:postStringIndexmapkey])\n\t\t\t\t\tiNdEx = postStringIndexmapkey\n\t\t\t\t} else if fieldNum == 2 {\n\t\t\t\t\tvar stringLenmapvalue uint64\n\t\t\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\t\t\tif shift >= 64 {\n\t\t\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif iNdEx >= l {\n\t\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t\t}\n\t\t\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\t\t\tiNdEx++\n\t\t\t\t\t\tstringLenmapvalue |= uint64(b&0x7F) << shift\n\t\t\t\t\t\tif b < 0x80 {\n\t\t\t\t\t\t\tbreak\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tintStringLenmapvalue := int(stringLenmapvalue)\n\t\t\t\t\tif intStringLenmapvalue < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tpostStringIndexmapvalue := iNdEx + intStringLenmapvalue\n\t\t\t\t\tif postStringIndexmapvalue < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tif postStringIndexmapvalue > l {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tmapvalue = string(dAtA[iNdEx:postStringIndexmapvalue])\n\t\t\t\t\tiNdEx = postStringIndexmapvalue\n\t\t\t\t} else {\n\t\t\t\t\tiNdEx = entryPreIndex\n\t\t\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\t\t\tif err != nil {\n\t\t\t\t\t\treturn err\n\t\t\t\t\t}\n\t\t\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\t\t\treturn ErrInvalidLength\n\t\t\t\t\t}\n\t\t\t\t\tif (iNdEx + skippy) > postIndex {\n\t\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t\t}\n\t\t\t\t\tiNdEx += skippy\n\t\t\t\t}\n\t\t\t}\n\t\t\tm.CostInfo[mapkey] = mapvalue\n\t\t\tiNdEx = postIndex\n\t\tcase 3:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field Table\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.Table == nil {\n\t\t\t\tm.Table = &MySQLExplain_Table{}\n\t\t\t}\n\t\t\tif err := m.Table.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tcase 4:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field NestedLoop\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.NestedLoop = append(m.NestedLoop, &MySQLExplain_NestedLoopObj{})\n\t\t\tif err := m.NestedLoop[len(m.NestedLoop)-1].UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\nfunc (m *MySQLExplain) UnmarshalVT(dAtA []byte) error {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tfor iNdEx < l {\n\t\tpreIndex := iNdEx\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= uint64(b&0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tfieldNum := int32(wire >> 3)\n\t\twireType := int(wire & 0x7)\n\t\tif wireType == 4 {\n\t\t\treturn fmt.Errorf(\"proto: MySQLExplain: wiretype end group for non-group\")\n\t\t}\n\t\tif fieldNum <= 0 {\n\t\t\treturn fmt.Errorf(\"proto: MySQLExplain: illegal tag %d (wire type %d)\", fieldNum, wire)\n\t\t}\n\t\tswitch fieldNum {\n\t\tcase 1:\n\t\t\tif wireType != 2 {\n\t\t\t\treturn fmt.Errorf(\"proto: wrong wireType = %d for field QueryBlock\", wireType)\n\t\t\t}\n\t\t\tvar msglen int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tmsglen |= int(b&0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif msglen < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tpostIndex := iNdEx + msglen\n\t\t\tif postIndex < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif postIndex > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tif m.QueryBlock == nil {\n\t\t\t\tm.QueryBlock = &MySQLExplain_QueryBlock{}\n\t\t\t}\n\t\t\tif err := m.QueryBlock.UnmarshalVT(dAtA[iNdEx:postIndex]); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tiNdEx = postIndex\n\t\tdefault:\n\t\t\tiNdEx = preIndex\n\t\t\tskippy, err := skip(dAtA[iNdEx:])\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\tif (skippy < 0) || (iNdEx+skippy) < 0 {\n\t\t\t\treturn ErrInvalidLength\n\t\t\t}\n\t\t\tif (iNdEx + skippy) > l {\n\t\t\t\treturn io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tm.unknownFields = append(m.unknownFields, dAtA[iNdEx:iNdEx+skippy]...)\n\t\t\tiNdEx += skippy\n\t\t}\n\t}\n\n\tif iNdEx > l {\n\t\treturn io.ErrUnexpectedEOF\n\t}\n\treturn nil\n}\n\nfunc skip(dAtA []byte) (n int, err error) {\n\tl := len(dAtA)\n\tiNdEx := 0\n\tdepth := 0\n\tfor iNdEx < l {\n\t\tvar wire uint64\n\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\tif shift >= 64 {\n\t\t\t\treturn 0, ErrIntOverflow\n\t\t\t}\n\t\t\tif iNdEx >= l {\n\t\t\t\treturn 0, io.ErrUnexpectedEOF\n\t\t\t}\n\t\t\tb := dAtA[iNdEx]\n\t\t\tiNdEx++\n\t\t\twire |= (uint64(b) & 0x7F) << shift\n\t\t\tif b < 0x80 {\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\twireType := int(wire & 0x7)\n\t\tswitch wireType {\n\t\tcase 0:\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn 0, ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn 0, io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tiNdEx++\n\t\t\t\tif dAtA[iNdEx-1] < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\tcase 1:\n\t\t\tiNdEx += 8\n\t\tcase 2:\n\t\t\tvar length int\n\t\t\tfor shift := uint(0); ; shift += 7 {\n\t\t\t\tif shift >= 64 {\n\t\t\t\t\treturn 0, ErrIntOverflow\n\t\t\t\t}\n\t\t\t\tif iNdEx >= l {\n\t\t\t\t\treturn 0, io.ErrUnexpectedEOF\n\t\t\t\t}\n\t\t\t\tb := dAtA[iNdEx]\n\t\t\t\tiNdEx++\n\t\t\t\tlength |= (int(b) & 0x7F) << shift\n\t\t\t\tif b < 0x80 {\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t\tif length < 0 {\n\t\t\t\treturn 0, ErrInvalidLength\n\t\t\t}\n\t\t\tiNdEx += length\n\t\tcase 3:\n\t\t\tdepth++\n\t\tcase 4:\n\t\t\tif depth == 0 {\n\t\t\t\treturn 0, ErrUnexpectedEndOfGroup\n\t\t\t}\n\t\t\tdepth--\n\t\tcase 5:\n\t\t\tiNdEx += 4\n\t\tdefault:\n\t\t\treturn 0, fmt.Errorf(\"proto: illegal wireType %d\", wireType)\n\t\t}\n\t\tif iNdEx < 0 {\n\t\t\treturn 0, ErrInvalidLength\n\t\t}\n\t\tif depth == 0 {\n\t\t\treturn iNdEx, nil\n\t\t}\n\t}\n\treturn 0, io.ErrUnexpectedEOF\n}\n\nvar (\n\tErrInvalidLength        = fmt.Errorf(\"proto: negative length found during unmarshaling\")\n\tErrIntOverflow          = fmt.Errorf(\"proto: integer overflow\")\n\tErrUnexpectedEndOfGroup = fmt.Errorf(\"proto: unexpected end of group\")\n)\n"
  },
  {
    "path": "internal/x/expander/expander.go",
    "content": "package expander\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"io\"\n\t\"strings\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/sql/ast\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/astutils\"\n\t\"github.com/sqlc-dev/sqlc/internal/sql/format\"\n)\n\n// Parser is an interface for SQL parsers that can parse SQL into AST statements.\ntype Parser interface {\n\tParse(r io.Reader) ([]ast.Statement, error)\n}\n\n// ColumnGetter retrieves column names for a query by preparing it against a database.\ntype ColumnGetter interface {\n\tGetColumnNames(ctx context.Context, query string) ([]string, error)\n}\n\n// Expander expands SELECT * and RETURNING * queries by replacing * with explicit column names\n// obtained from preparing the query against a database.\ntype Expander struct {\n\tcolGetter ColumnGetter\n\tparser    Parser\n\tdialect   format.Dialect\n}\n\n// New creates a new Expander with the given column getter, parser, and dialect.\nfunc New(colGetter ColumnGetter, parser Parser, dialect format.Dialect) *Expander {\n\treturn &Expander{\n\t\tcolGetter: colGetter,\n\t\tparser:    parser,\n\t\tdialect:   dialect,\n\t}\n}\n\n// Expand takes a SQL query, and if it contains * in SELECT or RETURNING clause,\n// expands it to use explicit column names. Returns the expanded query string.\nfunc (e *Expander) Expand(ctx context.Context, query string) (string, error) {\n\t// Parse the query\n\tstmts, err := e.parser.Parse(strings.NewReader(query))\n\tif err != nil {\n\t\treturn \"\", fmt.Errorf(\"failed to parse query: %w\", err)\n\t}\n\n\tif len(stmts) == 0 {\n\t\treturn query, nil\n\t}\n\n\tstmt := stmts[0].Raw.Stmt\n\n\t// Check if there's any star in the statement (including CTEs, subqueries, etc.)\n\tif !hasStarAnywhere(stmt) {\n\t\treturn query, nil\n\t}\n\n\t// Expand all stars in the statement recursively\n\tif err := e.expandNode(ctx, stmt); err != nil {\n\t\treturn \"\", err\n\t}\n\n\t// Format the modified AST back to SQL\n\texpanded := ast.Format(stmts[0].Raw, e.dialect)\n\n\treturn expanded, nil\n}\n\n// expandNode recursively expands * in all parts of the statement\nfunc (e *Expander) expandNode(ctx context.Context, node ast.Node) error {\n\tif node == nil {\n\t\treturn nil\n\t}\n\n\tswitch n := node.(type) {\n\tcase *ast.SelectStmt:\n\t\treturn e.expandSelectStmt(ctx, n)\n\tcase *ast.InsertStmt:\n\t\treturn e.expandInsertStmt(ctx, n)\n\tcase *ast.UpdateStmt:\n\t\treturn e.expandUpdateStmt(ctx, n)\n\tcase *ast.DeleteStmt:\n\t\treturn e.expandDeleteStmt(ctx, n)\n\tcase *ast.CommonTableExpr:\n\t\treturn e.expandNode(ctx, n.Ctequery)\n\t}\n\treturn nil\n}\n\n// expandSelectStmt expands * in a SELECT statement including CTEs and subqueries\nfunc (e *Expander) expandSelectStmt(ctx context.Context, stmt *ast.SelectStmt) error {\n\t// First expand any CTEs - must be done in order since later CTEs may depend on earlier ones\n\tif stmt.WithClause != nil && stmt.WithClause.Ctes != nil {\n\t\tfor _, cteNode := range stmt.WithClause.Ctes.Items {\n\t\t\tcte, ok := cteNode.(*ast.CommonTableExpr)\n\t\t\tif !ok {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tcteSelect, ok := cte.Ctequery.(*ast.SelectStmt)\n\t\t\tif !ok {\n\t\t\t\tcontinue\n\t\t\t}\n\t\t\tif hasStarInList(cteSelect.TargetList) {\n\t\t\t\t// Get column names for this CTE\n\t\t\t\tcolumns, err := e.getCTEColumnNames(ctx, stmt, cte)\n\t\t\t\tif err != nil {\n\t\t\t\t\treturn err\n\t\t\t\t}\n\t\t\t\tcteSelect.TargetList = rewriteTargetList(cteSelect.TargetList, columns)\n\t\t\t}\n\t\t\t// Recursively handle nested CTEs/subqueries in this CTE\n\t\t\tif err := e.expandSelectStmtInner(ctx, cteSelect); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\n\t// Expand subqueries in FROM clause\n\tif stmt.FromClause != nil {\n\t\tfor _, fromItem := range stmt.FromClause.Items {\n\t\t\tif err := e.expandFromClause(ctx, fromItem); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\n\t// Expand the target list if it has stars\n\tif hasStarInList(stmt.TargetList) {\n\t\t// Format the current state to get columns\n\t\ttempRaw := &ast.RawStmt{Stmt: stmt}\n\t\ttempQuery := ast.Format(tempRaw, e.dialect)\n\t\tcolumns, err := e.getColumnNames(ctx, tempQuery)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"failed to get column names: %w\", err)\n\t\t}\n\t\tstmt.TargetList = rewriteTargetList(stmt.TargetList, columns)\n\t}\n\n\treturn nil\n}\n\n// expandSelectStmtInner expands nested structures without re-processing the target list\nfunc (e *Expander) expandSelectStmtInner(ctx context.Context, stmt *ast.SelectStmt) error {\n\t// Expand subqueries in FROM clause\n\tif stmt.FromClause != nil {\n\t\tfor _, fromItem := range stmt.FromClause.Items {\n\t\t\tif err := e.expandFromClause(ctx, fromItem); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\treturn nil\n}\n\n// getCTEColumnNames gets the column names for a CTE by constructing a query with proper context\nfunc (e *Expander) getCTEColumnNames(ctx context.Context, stmt *ast.SelectStmt, targetCTE *ast.CommonTableExpr) ([]string, error) {\n\t// Build a temporary query: WITH <all CTEs up to and including target> SELECT * FROM <targetCTE>\n\tvar ctesToInclude []ast.Node\n\tfor _, cteNode := range stmt.WithClause.Ctes.Items {\n\t\tctesToInclude = append(ctesToInclude, cteNode)\n\t\tcte, ok := cteNode.(*ast.CommonTableExpr)\n\t\tif ok && cte.Ctename != nil && targetCTE.Ctename != nil && *cte.Ctename == *targetCTE.Ctename {\n\t\t\tbreak\n\t\t}\n\t}\n\n\t// Create a SELECT * FROM <ctename> with the relevant CTEs\n\tcteName := \"\"\n\tif targetCTE.Ctename != nil {\n\t\tcteName = *targetCTE.Ctename\n\t}\n\n\ttempStmt := &ast.SelectStmt{\n\t\tWithClause: &ast.WithClause{\n\t\t\tCtes:      &ast.List{Items: ctesToInclude},\n\t\t\tRecursive: stmt.WithClause.Recursive,\n\t\t},\n\t\tTargetList: &ast.List{\n\t\t\tItems: []ast.Node{\n\t\t\t\t&ast.ResTarget{\n\t\t\t\t\tVal: &ast.ColumnRef{\n\t\t\t\t\t\tFields: &ast.List{\n\t\t\t\t\t\t\tItems: []ast.Node{&ast.A_Star{}},\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t\tFromClause: &ast.List{\n\t\t\tItems: []ast.Node{\n\t\t\t\t&ast.RangeVar{\n\t\t\t\t\tRelname: &cteName,\n\t\t\t\t},\n\t\t\t},\n\t\t},\n\t}\n\n\ttempRaw := &ast.RawStmt{Stmt: tempStmt}\n\ttempQuery := ast.Format(tempRaw, e.dialect)\n\n\treturn e.getColumnNames(ctx, tempQuery)\n}\n\n// expandInsertStmt expands * in an INSERT statement's RETURNING clause\nfunc (e *Expander) expandInsertStmt(ctx context.Context, stmt *ast.InsertStmt) error {\n\t// Expand CTEs first\n\tif stmt.WithClause != nil && stmt.WithClause.Ctes != nil {\n\t\tfor _, cte := range stmt.WithClause.Ctes.Items {\n\t\t\tif err := e.expandNode(ctx, cte); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\n\t// Expand the SELECT part if present\n\tif stmt.SelectStmt != nil {\n\t\tif err := e.expandNode(ctx, stmt.SelectStmt); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\t// Expand RETURNING clause\n\tif hasStarInList(stmt.ReturningList) {\n\t\ttempRaw := &ast.RawStmt{Stmt: stmt}\n\t\ttempQuery := ast.Format(tempRaw, e.dialect)\n\t\tcolumns, err := e.getColumnNames(ctx, tempQuery)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"failed to get column names: %w\", err)\n\t\t}\n\t\tstmt.ReturningList = rewriteTargetList(stmt.ReturningList, columns)\n\t}\n\n\treturn nil\n}\n\n// expandUpdateStmt expands * in an UPDATE statement's RETURNING clause\nfunc (e *Expander) expandUpdateStmt(ctx context.Context, stmt *ast.UpdateStmt) error {\n\t// Expand CTEs first\n\tif stmt.WithClause != nil && stmt.WithClause.Ctes != nil {\n\t\tfor _, cte := range stmt.WithClause.Ctes.Items {\n\t\t\tif err := e.expandNode(ctx, cte); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\n\t// Expand RETURNING clause\n\tif hasStarInList(stmt.ReturningList) {\n\t\ttempRaw := &ast.RawStmt{Stmt: stmt}\n\t\ttempQuery := ast.Format(tempRaw, e.dialect)\n\t\tcolumns, err := e.getColumnNames(ctx, tempQuery)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"failed to get column names: %w\", err)\n\t\t}\n\t\tstmt.ReturningList = rewriteTargetList(stmt.ReturningList, columns)\n\t}\n\n\treturn nil\n}\n\n// expandDeleteStmt expands * in a DELETE statement's RETURNING clause\nfunc (e *Expander) expandDeleteStmt(ctx context.Context, stmt *ast.DeleteStmt) error {\n\t// Expand CTEs first\n\tif stmt.WithClause != nil && stmt.WithClause.Ctes != nil {\n\t\tfor _, cte := range stmt.WithClause.Ctes.Items {\n\t\t\tif err := e.expandNode(ctx, cte); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\n\t// Expand RETURNING clause\n\tif hasStarInList(stmt.ReturningList) {\n\t\ttempRaw := &ast.RawStmt{Stmt: stmt}\n\t\ttempQuery := ast.Format(tempRaw, e.dialect)\n\t\tcolumns, err := e.getColumnNames(ctx, tempQuery)\n\t\tif err != nil {\n\t\t\treturn fmt.Errorf(\"failed to get column names: %w\", err)\n\t\t}\n\t\tstmt.ReturningList = rewriteTargetList(stmt.ReturningList, columns)\n\t}\n\n\treturn nil\n}\n\n// expandFromClause expands * in subqueries within FROM clause\nfunc (e *Expander) expandFromClause(ctx context.Context, node ast.Node) error {\n\tif node == nil {\n\t\treturn nil\n\t}\n\n\tswitch n := node.(type) {\n\tcase *ast.RangeSubselect:\n\t\tif n.Subquery != nil {\n\t\t\treturn e.expandNode(ctx, n.Subquery)\n\t\t}\n\tcase *ast.JoinExpr:\n\t\tif err := e.expandFromClause(ctx, n.Larg); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif err := e.expandFromClause(ctx, n.Rarg); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\treturn nil\n}\n\n// hasStarAnywhere checks if there's a * anywhere in the statement using astutils.Search\nfunc hasStarAnywhere(node ast.Node) bool {\n\tif node == nil {\n\t\treturn false\n\t}\n\t// Use astutils.Search to find any A_Star node in the AST\n\tstars := astutils.Search(node, func(n ast.Node) bool {\n\t\t_, ok := n.(*ast.A_Star)\n\t\treturn ok\n\t})\n\treturn len(stars.Items) > 0\n}\n\n// hasStarInList checks if a target list contains a * expression using astutils.Search\nfunc hasStarInList(targets *ast.List) bool {\n\tif targets == nil {\n\t\treturn false\n\t}\n\t// Use astutils.Search to find any A_Star node in the target list\n\tstars := astutils.Search(targets, func(n ast.Node) bool {\n\t\t_, ok := n.(*ast.A_Star)\n\t\treturn ok\n\t})\n\treturn len(stars.Items) > 0\n}\n\n// getColumnNames prepares the query and returns the column names from the result\nfunc (e *Expander) getColumnNames(ctx context.Context, query string) ([]string, error) {\n\treturn e.colGetter.GetColumnNames(ctx, query)\n}\n\n// countStarsInList counts the number of * expressions in a target list\nfunc countStarsInList(targets *ast.List) int {\n\tif targets == nil {\n\t\treturn 0\n\t}\n\tcount := 0\n\tfor _, target := range targets.Items {\n\t\tresTarget, ok := target.(*ast.ResTarget)\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\t\tif resTarget.Val == nil {\n\t\t\tcontinue\n\t\t}\n\t\tcolRef, ok := resTarget.Val.(*ast.ColumnRef)\n\t\tif !ok {\n\t\t\tcontinue\n\t\t}\n\t\tif colRef.Fields == nil {\n\t\t\tcontinue\n\t\t}\n\t\tfor _, field := range colRef.Fields.Items {\n\t\t\tif _, ok := field.(*ast.A_Star); ok {\n\t\t\t\tcount++\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t}\n\treturn count\n}\n\n// countNonStarsInList counts the number of non-* expressions in a target list\nfunc countNonStarsInList(targets *ast.List) int {\n\tif targets == nil {\n\t\treturn 0\n\t}\n\tcount := 0\n\tfor _, target := range targets.Items {\n\t\tresTarget, ok := target.(*ast.ResTarget)\n\t\tif !ok {\n\t\t\tcount++\n\t\t\tcontinue\n\t\t}\n\t\tif resTarget.Val == nil {\n\t\t\tcount++\n\t\t\tcontinue\n\t\t}\n\t\tcolRef, ok := resTarget.Val.(*ast.ColumnRef)\n\t\tif !ok {\n\t\t\tcount++\n\t\t\tcontinue\n\t\t}\n\t\tif colRef.Fields == nil {\n\t\t\tcount++\n\t\t\tcontinue\n\t\t}\n\t\tisStar := false\n\t\tfor _, field := range colRef.Fields.Items {\n\t\t\tif _, ok := field.(*ast.A_Star); ok {\n\t\t\t\tisStar = true\n\t\t\t\tbreak\n\t\t\t}\n\t\t}\n\t\tif !isStar {\n\t\t\tcount++\n\t\t}\n\t}\n\treturn count\n}\n\n// rewriteTargetList replaces * in a target list with explicit column references\nfunc rewriteTargetList(targets *ast.List, columns []string) *ast.List {\n\tif targets == nil {\n\t\treturn nil\n\t}\n\n\tstarCount := countStarsInList(targets)\n\tnonStarCount := countNonStarsInList(targets)\n\n\t// Calculate how many columns each * expands to\n\t// Total columns = (columns per star * number of stars) + non-star columns\n\t// So: columns per star = (total - non-star) / stars\n\tcolumnsPerStar := 0\n\tif starCount > 0 {\n\t\tcolumnsPerStar = (len(columns) - nonStarCount) / starCount\n\t}\n\n\tnewItems := make([]ast.Node, 0, len(columns))\n\tcolIndex := 0\n\n\tfor _, target := range targets.Items {\n\t\tresTarget, ok := target.(*ast.ResTarget)\n\t\tif !ok {\n\t\t\tnewItems = append(newItems, target)\n\t\t\tcolIndex++\n\t\t\tcontinue\n\t\t}\n\n\t\tif resTarget.Val == nil {\n\t\t\tnewItems = append(newItems, target)\n\t\t\tcolIndex++\n\t\t\tcontinue\n\t\t}\n\n\t\tcolRef, ok := resTarget.Val.(*ast.ColumnRef)\n\t\tif !ok {\n\t\t\tnewItems = append(newItems, target)\n\t\t\tcolIndex++\n\t\t\tcontinue\n\t\t}\n\n\t\tif colRef.Fields == nil {\n\t\t\tnewItems = append(newItems, target)\n\t\t\tcolIndex++\n\t\t\tcontinue\n\t\t}\n\n\t\t// Check if this is a * (with or without table qualifier)\n\t\t// and extract any table prefix\n\t\tisStar := false\n\t\tvar tablePrefix []string\n\t\tfor _, field := range colRef.Fields.Items {\n\t\t\tif _, ok := field.(*ast.A_Star); ok {\n\t\t\t\tisStar = true\n\t\t\t\tbreak\n\t\t\t}\n\t\t\t// Collect prefix parts (schema, table name)\n\t\t\tif str, ok := field.(*ast.String); ok {\n\t\t\t\ttablePrefix = append(tablePrefix, str.Str)\n\t\t\t}\n\t\t}\n\n\t\tif !isStar {\n\t\t\tnewItems = append(newItems, target)\n\t\t\tcolIndex++\n\t\t\tcontinue\n\t\t}\n\n\t\t// Replace * with explicit column references\n\t\tfor i := 0; i < columnsPerStar && colIndex < len(columns); i++ {\n\t\t\tnewItems = append(newItems, makeColumnTargetWithPrefix(columns[colIndex], tablePrefix))\n\t\t\tcolIndex++\n\t\t}\n\t}\n\n\treturn &ast.List{Items: newItems}\n}\n\n// makeColumnTargetWithPrefix creates a ResTarget node for a column reference with optional table prefix\nfunc makeColumnTargetWithPrefix(colName string, prefix []string) ast.Node {\n\tfields := make([]ast.Node, 0, len(prefix)+1)\n\n\t// Add prefix parts (schema, table name)\n\tfor _, p := range prefix {\n\t\tfields = append(fields, &ast.String{Str: p})\n\t}\n\n\t// Add column name\n\tfields = append(fields, &ast.String{Str: colName})\n\n\treturn &ast.ResTarget{\n\t\tVal: &ast.ColumnRef{\n\t\t\tFields: &ast.List{Items: fields},\n\t\t},\n\t}\n}\n"
  },
  {
    "path": "internal/x/expander/expander_test.go",
    "content": "package expander\n\nimport (\n\t\"context\"\n\t\"database/sql\"\n\t\"database/sql/driver\"\n\t\"fmt\"\n\t\"os\"\n\t\"testing\"\n\n\t\"github.com/go-sql-driver/mysql\"\n\t\"github.com/jackc/pgx/v5/pgxpool\"\n\t\"github.com/ncruces/go-sqlite3\"\n\t_ \"github.com/ncruces/go-sqlite3/embed\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/engine/dolphin\"\n\t\"github.com/sqlc-dev/sqlc/internal/engine/postgresql\"\n\t\"github.com/sqlc-dev/sqlc/internal/engine/sqlite\"\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/docker\"\n\t\"github.com/sqlc-dev/sqlc/internal/sqltest/native\"\n)\n\n// PostgreSQLColumnGetter implements ColumnGetter for PostgreSQL using pgxpool.\ntype PostgreSQLColumnGetter struct {\n\tpool *pgxpool.Pool\n}\n\nfunc (g *PostgreSQLColumnGetter) GetColumnNames(ctx context.Context, query string) ([]string, error) {\n\tconn, err := g.pool.Acquire(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer conn.Release()\n\n\tdesc, err := conn.Conn().Prepare(ctx, \"\", query)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tcolumns := make([]string, len(desc.Fields))\n\tfor i, field := range desc.Fields {\n\t\tcolumns[i] = field.Name\n\t}\n\n\treturn columns, nil\n}\n\n// MySQLColumnGetter implements ColumnGetter for MySQL using the forked driver's StmtMetadata.\ntype MySQLColumnGetter struct {\n\tdb *sql.DB\n}\n\nfunc (g *MySQLColumnGetter) GetColumnNames(ctx context.Context, query string) ([]string, error) {\n\tconn, err := g.db.Conn(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer conn.Close()\n\n\tvar columns []string\n\terr = conn.Raw(func(driverConn any) error {\n\t\tpreparer, ok := driverConn.(driver.ConnPrepareContext)\n\t\tif !ok {\n\t\t\treturn fmt.Errorf(\"driver connection does not support PrepareContext\")\n\t\t}\n\n\t\tstmt, err := preparer.PrepareContext(ctx, query)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tdefer stmt.Close()\n\n\t\tmeta, ok := stmt.(mysql.StmtMetadata)\n\t\tif !ok {\n\t\t\treturn fmt.Errorf(\"prepared statement does not implement StmtMetadata\")\n\t\t}\n\n\t\tfor _, col := range meta.ColumnMetadata() {\n\t\t\tcolumns = append(columns, col.Name)\n\t\t}\n\t\treturn nil\n\t})\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\treturn columns, nil\n}\n\n// SQLiteColumnGetter implements ColumnGetter for SQLite using the native ncruces/go-sqlite3 API.\ntype SQLiteColumnGetter struct {\n\tconn *sqlite3.Conn\n}\n\nfunc (g *SQLiteColumnGetter) GetColumnNames(ctx context.Context, query string) ([]string, error) {\n\t// Prepare the statement - this gives us column metadata without executing\n\tstmt, _, err := g.conn.Prepare(query)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\tdefer stmt.Close()\n\n\t// Get column names from the prepared statement\n\tcount := stmt.ColumnCount()\n\tcolumns := make([]string, count)\n\tfor i := 0; i < count; i++ {\n\t\tcolumns[i] = stmt.ColumnName(i)\n\t}\n\n\treturn columns, nil\n}\n\nfunc TestExpandPostgreSQL(t *testing.T) {\n\tctx := context.Background()\n\n\turi := os.Getenv(\"POSTGRESQL_SERVER_URI\")\n\tif uri == \"\" {\n\t\tif err := docker.Installed(); err == nil {\n\t\t\tu, err := docker.StartPostgreSQLServer(ctx)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\turi = u\n\t\t} else if err := native.Supported(); err == nil {\n\t\t\tu, err := native.StartPostgreSQLServer(ctx)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\turi = u\n\t\t} else {\n\t\t\tt.Skip(\"POSTGRESQL_SERVER_URI is empty and neither Docker nor native installation is available\")\n\t\t}\n\t}\n\n\tpool, err := pgxpool.New(ctx, uri)\n\tif err != nil {\n\t\tt.Skipf(\"could not connect to database: %v\", err)\n\t}\n\tdefer pool.Close()\n\n\t// Create a test table\n\t_, err = pool.Exec(ctx, `\n\t\tDROP TABLE IF EXISTS authors;\n\t\tCREATE TABLE authors (\n\t\t\tid SERIAL PRIMARY KEY,\n\t\t\tname TEXT NOT NULL,\n\t\t\tbio TEXT\n\t\t);\n\t`)\n\tif err != nil {\n\t\tt.Fatalf(\"failed to create test table: %v\", err)\n\t}\n\tdefer pool.Exec(ctx, \"DROP TABLE IF EXISTS authors\")\n\n\t// Create the parser which also implements format.Dialect\n\tparser := postgresql.NewParser()\n\n\t// Create the expander\n\tcolGetter := &PostgreSQLColumnGetter{pool: pool}\n\texp := New(colGetter, parser, parser)\n\n\ttests := []struct {\n\t\tname     string\n\t\tquery    string\n\t\texpected string\n\t}{\n\t\t{\n\t\t\tname:     \"simple select star\",\n\t\t\tquery:    \"SELECT * FROM authors\",\n\t\t\texpected: \"SELECT id, name, bio FROM authors;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"select with no star\",\n\t\t\tquery:    \"SELECT id, name FROM authors\",\n\t\t\texpected: \"SELECT id, name FROM authors\", // No change, returns original\n\t\t},\n\t\t{\n\t\t\tname:     \"select star with where clause\",\n\t\t\tquery:    \"SELECT * FROM authors WHERE id = 1\",\n\t\t\texpected: \"SELECT id, name, bio FROM authors WHERE id = 1;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"double star\",\n\t\t\tquery:    \"SELECT *, * FROM authors\",\n\t\t\texpected: \"SELECT id, name, bio, id, name, bio FROM authors;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"table qualified star\",\n\t\t\tquery:    \"SELECT authors.* FROM authors\",\n\t\t\texpected: \"SELECT authors.id, authors.name, authors.bio FROM authors;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"star in middle of columns\",\n\t\t\tquery:    \"SELECT id, *, name FROM authors\",\n\t\t\texpected: \"SELECT id, id, name, bio, name FROM authors;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"insert returning star\",\n\t\t\tquery:    \"INSERT INTO authors (name, bio) VALUES ('John', 'A writer') RETURNING *\",\n\t\t\texpected: \"INSERT INTO authors (name, bio) VALUES ('John', 'A writer') RETURNING id, name, bio;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"insert returning mixed\",\n\t\t\tquery:    \"INSERT INTO authors (name, bio) VALUES ('John', 'A writer') RETURNING id, *\",\n\t\t\texpected: \"INSERT INTO authors (name, bio) VALUES ('John', 'A writer') RETURNING id, id, name, bio;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"update returning star\",\n\t\t\tquery:    \"UPDATE authors SET name = 'Jane' WHERE id = 1 RETURNING *\",\n\t\t\texpected: \"UPDATE authors SET name = 'Jane' WHERE id = 1 RETURNING id, name, bio;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"delete returning star\",\n\t\t\tquery:    \"DELETE FROM authors WHERE id = 1 RETURNING *\",\n\t\t\texpected: \"DELETE FROM authors WHERE id = 1 RETURNING id, name, bio;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"cte with select star\",\n\t\t\tquery:    \"WITH a AS (SELECT * FROM authors) SELECT * FROM a\",\n\t\t\texpected: \"WITH a AS (SELECT id, name, bio FROM authors) SELECT id, name, bio FROM a;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"multiple ctes with dependency\",\n\t\t\tquery:    \"WITH a AS (SELECT * FROM authors), b AS (SELECT * FROM a) SELECT * FROM b\",\n\t\t\texpected: \"WITH a AS (SELECT id, name, bio FROM authors), b AS (SELECT id, name, bio FROM a) SELECT id, name, bio FROM b;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"count star not expanded\",\n\t\t\tquery:    \"SELECT COUNT(*) FROM authors\",\n\t\t\texpected: \"SELECT COUNT(*) FROM authors\", // No change - COUNT(*) should not be expanded\n\t\t},\n\t\t{\n\t\t\tname:     \"count star with other columns\",\n\t\t\tquery:    \"SELECT COUNT(*), name FROM authors GROUP BY name\",\n\t\t\texpected: \"SELECT COUNT(*), name FROM authors GROUP BY name\", // No change\n\t\t},\n\t}\n\n\tfor _, tc := range tests {\n\t\tt.Run(tc.name, func(t *testing.T) {\n\t\t\tresult, err := exp.Expand(ctx, tc.query)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatalf(\"Expand failed: %v\", err)\n\t\t\t}\n\t\t\tif result != tc.expected {\n\t\t\t\tt.Errorf(\"expected %q, got %q\", tc.expected, result)\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc TestExpandMySQL(t *testing.T) {\n\tctx := context.Background()\n\n\tsource := os.Getenv(\"MYSQL_SERVER_URI\")\n\tif source == \"\" {\n\t\tif err := docker.Installed(); err == nil {\n\t\t\tu, err := docker.StartMySQLServer(ctx)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\tsource = u\n\t\t} else if err := native.Supported(); err == nil {\n\t\t\tu, err := native.StartMySQLServer(ctx)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatal(err)\n\t\t\t}\n\t\t\tsource = u\n\t\t} else {\n\t\t\tt.Skip(\"MYSQL_SERVER_URI is empty and neither Docker nor native installation is available\")\n\t\t}\n\t}\n\n\tdb, err := sql.Open(\"mysql\", source)\n\tif err != nil {\n\t\tt.Skipf(\"could not connect to MySQL: %v\", err)\n\t}\n\tdefer db.Close()\n\n\t// Verify connection\n\tif err := db.Ping(); err != nil {\n\t\tt.Skipf(\"could not ping MySQL: %v\", err)\n\t}\n\n\t// Create a test table\n\t_, err = db.ExecContext(ctx, `DROP TABLE IF EXISTS authors`)\n\tif err != nil {\n\t\tt.Fatalf(\"failed to drop test table: %v\", err)\n\t}\n\t_, err = db.ExecContext(ctx, `\n\t\tCREATE TABLE authors (\n\t\t\tid INT AUTO_INCREMENT PRIMARY KEY,\n\t\t\tname VARCHAR(255) NOT NULL,\n\t\t\tbio TEXT\n\t\t)\n\t`)\n\tif err != nil {\n\t\tt.Fatalf(\"failed to create test table: %v\", err)\n\t}\n\tdefer db.ExecContext(ctx, \"DROP TABLE IF EXISTS authors\")\n\n\t// Create the parser which also implements format.Dialect\n\tparser := dolphin.NewParser()\n\n\t// Create the expander\n\tcolGetter := &MySQLColumnGetter{db: db}\n\texp := New(colGetter, parser, parser)\n\n\ttests := []struct {\n\t\tname     string\n\t\tquery    string\n\t\texpected string\n\t}{\n\t\t{\n\t\t\tname:     \"simple select star\",\n\t\t\tquery:    \"SELECT * FROM authors\",\n\t\t\texpected: \"SELECT id, name, bio FROM authors;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"select with no star\",\n\t\t\tquery:    \"SELECT id, name FROM authors\",\n\t\t\texpected: \"SELECT id, name FROM authors\", // No change, returns original\n\t\t},\n\t\t{\n\t\t\tname:     \"select star with where clause\",\n\t\t\tquery:    \"SELECT * FROM authors WHERE id = 1\",\n\t\t\texpected: \"SELECT id, name, bio FROM authors WHERE id = 1;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"table qualified star\",\n\t\t\tquery:    \"SELECT authors.* FROM authors\",\n\t\t\texpected: \"SELECT authors.id, authors.name, authors.bio FROM authors;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"double table qualified star\",\n\t\t\tquery:    \"SELECT authors.*, authors.* FROM authors\",\n\t\t\texpected: \"SELECT authors.id, authors.name, authors.bio, authors.id, authors.name, authors.bio FROM authors;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"star in middle of columns table qualified\",\n\t\t\tquery:    \"SELECT id, authors.*, name FROM authors\",\n\t\t\texpected: \"SELECT id, authors.id, authors.name, authors.bio, name FROM authors;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"count star not expanded\",\n\t\t\tquery:    \"SELECT COUNT(*) FROM authors\",\n\t\t\texpected: \"SELECT COUNT(*) FROM authors\", // No change - COUNT(*) should not be expanded\n\t\t},\n\t\t{\n\t\t\tname:     \"count star with other columns\",\n\t\t\tquery:    \"SELECT COUNT(*), name FROM authors GROUP BY name\",\n\t\t\texpected: \"SELECT COUNT(*), name FROM authors GROUP BY name\", // No change\n\t\t},\n\t}\n\n\tfor _, tc := range tests {\n\t\tt.Run(tc.name, func(t *testing.T) {\n\t\t\tresult, err := exp.Expand(ctx, tc.query)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatalf(\"Expand failed: %v\", err)\n\t\t\t}\n\t\t\tif result != tc.expected {\n\t\t\t\tt.Errorf(\"expected %q, got %q\", tc.expected, result)\n\t\t\t}\n\t\t})\n\t}\n}\n\nfunc TestExpandSQLite(t *testing.T) {\n\tctx := context.Background()\n\n\t// Create an in-memory SQLite database using native API\n\tconn, err := sqlite3.Open(\":memory:\")\n\tif err != nil {\n\t\tt.Fatalf(\"could not open SQLite: %v\", err)\n\t}\n\tdefer conn.Close()\n\n\t// Create a test table\n\terr = conn.Exec(`\n\t\tCREATE TABLE authors (\n\t\t\tid INTEGER PRIMARY KEY AUTOINCREMENT,\n\t\t\tname TEXT NOT NULL,\n\t\t\tbio TEXT\n\t\t)\n\t`)\n\tif err != nil {\n\t\tt.Fatalf(\"failed to create test table: %v\", err)\n\t}\n\n\t// Create the parser which also implements format.Dialect\n\tparser := sqlite.NewParser()\n\n\t// Create the expander using native SQLite column getter\n\tcolGetter := &SQLiteColumnGetter{conn: conn}\n\texp := New(colGetter, parser, parser)\n\n\ttests := []struct {\n\t\tname     string\n\t\tquery    string\n\t\texpected string\n\t}{\n\t\t{\n\t\t\tname:     \"simple select star\",\n\t\t\tquery:    \"SELECT * FROM authors\",\n\t\t\texpected: \"SELECT id, name, bio FROM authors;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"select with no star\",\n\t\t\tquery:    \"SELECT id, name FROM authors\",\n\t\t\texpected: \"SELECT id, name FROM authors\", // No change, returns original\n\t\t},\n\t\t{\n\t\t\tname:     \"select star with where clause\",\n\t\t\tquery:    \"SELECT * FROM authors WHERE id = 1\",\n\t\t\texpected: \"SELECT id, name, bio FROM authors WHERE id = 1;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"double star\",\n\t\t\tquery:    \"SELECT *, * FROM authors\",\n\t\t\texpected: \"SELECT id, name, bio, id, name, bio FROM authors;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"table qualified star\",\n\t\t\tquery:    \"SELECT authors.* FROM authors\",\n\t\t\texpected: \"SELECT authors.id, authors.name, authors.bio FROM authors;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"star in middle of columns\",\n\t\t\tquery:    \"SELECT id, *, name FROM authors\",\n\t\t\texpected: \"SELECT id, id, name, bio, name FROM authors;\",\n\t\t},\n\t\t{\n\t\t\tname:     \"count star not expanded\",\n\t\t\tquery:    \"SELECT COUNT(*) FROM authors\",\n\t\t\texpected: \"SELECT COUNT(*) FROM authors\", // No change - COUNT(*) should not be expanded\n\t\t},\n\t\t{\n\t\t\tname:     \"count star with other columns\",\n\t\t\tquery:    \"SELECT COUNT(*), name FROM authors GROUP BY name\",\n\t\t\texpected: \"SELECT COUNT(*), name FROM authors GROUP BY name\", // No change\n\t\t},\n\t}\n\n\tfor _, tc := range tests {\n\t\tt.Run(tc.name, func(t *testing.T) {\n\t\t\tresult, err := exp.Expand(ctx, tc.query)\n\t\t\tif err != nil {\n\t\t\t\tt.Fatalf(\"Expand failed: %v\", err)\n\t\t\t}\n\t\t\tif result != tc.expected {\n\t\t\t\tt.Errorf(\"expected %q, got %q\", tc.expected, result)\n\t\t\t}\n\t\t})\n\t}\n}\n"
  },
  {
    "path": "pkg/cli/cli.go",
    "content": "// package cli exposes the command-line interface for sqlc. It can be used to\n// run sqlc from Go without the overhead of creating a child process.\n//\n// Example usage:\n//\n//\tpackage main\n//\n//\timport (\n//\t    \"os\"\n//\n//\t    sqlc \"github.com/sqlc-dev/sqlc/pkg/cli\"\n//\t)\n//\n//\tfunc main() {\n//\t    os.Exit(sqlc.Run(os.Args[1:]))\n//\t}\npackage cli\n\nimport (\n\t\"os\"\n\n\t\"github.com/sqlc-dev/sqlc/internal/cmd\"\n)\n\n// Run the sqlc CLI. It takes an array of command-line arguments\n// (excluding the executable argument itself) and returns an exit\n// code.\nfunc Run(args []string) int {\n\treturn cmd.Do(args, os.Stdin, os.Stdout, os.Stderr)\n}\n"
  },
  {
    "path": "placeholder.go",
    "content": "package sqlc\n\n// This is a dummy file that allows SQLC to be \"installed\" as a module and locked using\n// go.mod and then run using \"go run github.com/sqlc-dev/sqlc\"\n\ntype Placeholder struct{}\n"
  },
  {
    "path": "protos/analysis/analysis.proto",
    "content": "syntax = \"proto3\";\n\npackage analysis;\n\nmessage Identifier {\n\tstring catalog = 1;\n\tstring schema = 2;\n\tstring name = 3;\n}\n\nmessage Column {\n\tstring name = 1;\n\tstring original_name = 2;\n\tstring data_type = 3;\n\tbool not_null = 4;\n\tbool unsigned = 5;\n\tbool is_array = 6;\n\tint32 array_dims = 7;\n\tstring comment = 8;\n\tint32 length = 9; // *int\n\tbool is_named_param = 10;\n\tbool is_func_call = 11;\n\tstring scope = 12;\n\tIdentifier table = 13;\n\tstring table_alias = 14;\n\tIdentifier type = 15;\n\tIdentifier embed_table = 16;\n\tbool is_sqlc_slice = 17;\n}\n\nmessage Parameter {\n\tint32 number = 1;\n\tColumn column = 2;\n}\n\nmessage Analysis {\n\trepeated Column columns = 1;\n\trepeated Parameter params = 2;\n}\n"
  },
  {
    "path": "protos/buf.yaml",
    "content": "version: v1\nname: buf.build/sqlc/sqlc\nbreaking:\nlint:\n  use:\n    - DEFAULT\n  except:\n    - PACKAGE_VERSION_SUFFIX\n"
  },
  {
    "path": "protos/plugin/codegen.proto",
    "content": "syntax = \"proto3\";\n\npackage plugin;\n\nservice CodegenService {\n  rpc Generate (GenerateRequest) returns (GenerateResponse);\n}\n\nmessage File {\n  string name = 1 [json_name = \"name\"];\n  bytes contents = 2 [json_name = \"contents\"];\n}\n\nmessage Settings {\n  // Rename message was field 5\n  // Overides message was field 6\n  // PythonCode message was field 8\n  // KotlinCode message was field 9\n  // GoCode message was field 10;\n  // JSONCode message was field 11;\n  reserved 5, 8, 9, 10, 11;\n\n  string version = 1 [json_name = \"version\"];\n  string engine = 2 [json_name = \"engine\"];\n  repeated string schema = 3 [json_name = \"schema\"];\n  repeated string queries = 4 [json_name = \"queries\"];\n  Codegen codegen = 12 [json_name = \"codegen\"];\n}\n\nmessage Codegen {\n  message Process {\n    string cmd = 1;\n  }\n  message WASM {\n    string url = 1;\n    string sha256 = 2;\n  }\n  string out = 1 [json_name = \"out\"];\n  string plugin = 2 [json_name = \"plugin\"];\n  bytes options = 3 [json_name = \"options\"];\n  repeated string env = 4 [json_name = \"env\"];\n  Process process = 5 [json_name = \"process\"];\n  WASM wasm = 6 [json_name = \"wasm\"];\n}\n\nmessage Catalog {\n  string comment = 1;\n  string default_schema = 2;\n  string name = 3;\n  repeated Schema schemas = 4;\n}\n\nmessage Schema {\n  string comment = 1;\n  string name = 2;\n  repeated Table tables = 3;\n  repeated Enum enums = 4;\n  repeated CompositeType composite_types = 5;\n}\n\nmessage CompositeType {\n  string name = 1;\n  string comment = 2;\n}\n\nmessage Enum {\n  string name = 1;\n  repeated string vals = 2;\n  string comment = 3;\n}\n\nmessage Table {\n  Identifier rel = 1;\n  repeated Column columns = 2;\n  string comment = 3;\n}\n\nmessage Identifier {\n  string catalog = 1;\n  string schema = 2;\n  string name = 3;\n}\n\nmessage Column {\n  string name = 1;\n  bool not_null = 3;\n  bool is_array = 4;\n  string comment = 5;\n  int32 length = 6;\n  bool is_named_param = 7;\n  bool is_func_call = 8;\n\n  // XXX: Figure out what PostgreSQL calls `foo.id`\n  string scope = 9;\n  Identifier table = 10;\n  string table_alias = 11;\n  Identifier type = 12;\n  bool is_sqlc_slice = 13;\n  Identifier embed_table = 14;\n  string original_name = 15;\n  bool unsigned = 16;\n  int32 array_dims = 17;\n}\n\nmessage Query {\n  string text = 1 [json_name = \"text\"];\n  string name = 2 [json_name = \"name\"];\n  string cmd = 3 [json_name = \"cmd\"];\n  repeated Column columns = 4 [json_name = \"columns\"];\n  repeated Parameter params = 5 [json_name = \"parameters\"];\n  repeated string comments = 6 [json_name = \"comments\"];\n  string filename = 7 [json_name = \"filename\"];\n  Identifier insert_into_table = 8 [json_name = \"insert_into_table\"];\n}\n\nmessage Parameter {\n  int32 number = 1 [json_name = \"number\"];\n  Column column = 2 [json_name = \"column\"];\n}\n\nmessage GenerateRequest {\n  Settings settings = 1 [json_name = \"settings\"];\n  Catalog catalog = 2 [json_name = \"catalog\"];\n  repeated Query queries = 3 [json_name = \"queries\"];\n  string sqlc_version = 4 [json_name = \"sqlc_version\"];\n  bytes plugin_options = 5 [json_name = \"plugin_options\"];\n  bytes global_options = 6 [json_name = \"global_options\"];\n}\n\nmessage GenerateResponse {\n  repeated File files = 1 [json_name = \"files\"];\n}\n"
  },
  {
    "path": "protos/vet/vet.proto",
    "content": "syntax = \"proto3\";\n\npackage vet;\n\nmessage Parameter {\n  int32 number = 1 [json_name = \"number\"];\n}\n\nmessage Config {\n  string version = 1 [json_name = \"version\"];\n  string engine = 2 [json_name = \"engine\"];\n  repeated string schema = 3 [json_name = \"schema\"];\n  repeated string queries = 4 [json_name = \"queries\"];\n}\n\nmessage Query {\n  string sql = 1 [json_name = \"sql\"];\n  string name = 2 [json_name = \"name\"];\n  string cmd = 3 [json_name = \"cmd\"];\n  repeated Parameter params = 4 [json_name = \"parameters\"];\n}\n\nmessage PostgreSQL {\n  PostgreSQLExplain explain = 1;\n}\n\nmessage PostgreSQLExplain {\n  Plan plan = 1 [json_name = \"Plan\"];\n  map<string, string> settings = 2 [json_name = \"Settings\"];\n  Planning planning = 3 [json_name = \"Planning\"];\n\n  message Plan {\n    string node_type = 1 [json_name = \"Node Type\"];\n    string parent_relationship = 2 [json_name = \"Parent Relationship\"];\n    string relation_name = 3 [json_name = \"Relation Name\"];\n    string schema = 4 [json_name = \"Schema\"];\n    string alias = 5 [json_name = \"Alias\"];\n    bool parallel_aware = 6 [json_name = \"Parallel Aware\"];\n    bool async_capable = 7 [json_name = \"Async Capable\"];\n    float startup_cost = 8 [json_name = \"Startup Cost\"];\n    float total_cost = 9 [json_name = \"Total Cost\"];\n    uint64 plan_rows = 10 [json_name = \"Plan Rows\"];\n    uint64 plan_width = 11 [json_name = \"Plan Width\"];\n    repeated string output = 12 [json_name = \"Output\"];\n    repeated Plan plans = 13 [json_name = \"Plans\"];\n\n    // Embedded \"Blocks\" fields\n    uint64 shared_hit_blocks = 14 [json_name = \"Shared Hit Blocks\"];\n    uint64 shared_read_blocks = 15 [json_name = \"Shared Read Blocks\"];\n    uint64 shared_dirtied_blocks = 16 [json_name = \"Shared Dirtied Blocks\"];\n    uint64 shared_written_blocks = 17 [json_name = \"Shared Written Blocks\"];\n    uint64 local_hit_blocks = 18 [json_name = \"Local Hit Blocks\"];\n    uint64 local_read_blocks = 19 [json_name = \"Local Read Blocks\"];\n    uint64 local_dirtied_blocks = 20 [json_name = \"Local Dirtied Blocks\"];\n    uint64 local_written_blocks = 21 [json_name = \"Local Written Blocks\"];\n    uint64 temp_read_blocks = 22 [json_name = \"Temp Read Blocks\"];\n    uint64 temp_written_blocks = 23 [json_name = \"Temp Written Blocks\"];\n\n    // \"Node Type\": \"Sort\" fields\n    repeated string sort_key = 24 [json_name = \"Sort Key\"];\n\n    // \"Node Type\": \"Hash Join\" fields\n    string join_type = 25 [json_name = \"Join Type\"];\n    bool inner_unique = 26 [json_name = \"Inner Unique\"];\n    string hash_cond = 27 [json_name = \"Hash Cond\"];\n\n    // \"Node Type\": \"Index Scan\" fields\n    string index_name = 28 [json_name = \"Index Name\"];\n    string scan_direction = 29 [json_name = \"Scan Direction\"];\n    string index_cond = 30 [json_name = \"Index Cond\"];\n  }\n\n  message Planning {\n    uint64 shared_hit_blocks = 1 [json_name = \"Shared Hit Blocks\"];\n    uint64 shared_read_blocks = 2 [json_name = \"Shared Read Blocks\"];\n    uint64 shared_dirtied_blocks = 3 [json_name = \"Shared Dirtied Blocks\"];\n    uint64 shared_written_blocks = 4 [json_name = \"Shared Written Blocks\"];\n    uint64 local_hit_blocks = 5 [json_name = \"Local Hit Blocks\"];\n    uint64 local_read_blocks = 6 [json_name = \"Local Read Blocks\"];\n    uint64 local_dirtied_blocks = 7 [json_name = \"Local Dirtied Blocks\"];\n    uint64 local_written_blocks = 8 [json_name = \"Local Written Blocks\"];\n    uint64 temp_read_blocks = 9 [json_name = \"Temp Read Blocks\"];\n    uint64 temp_written_blocks = 10 [json_name = \"Temp Written Blocks\"];\n  }\n}\n\nmessage MySQL {\n  MySQLExplain explain = 1;\n}\n\nmessage MySQLExplain {\n  QueryBlock query_block = 1;\n\n  message QueryBlock {\n    uint64 select_id = 1;\n    string message = 2;\n    map<string, string> cost_info = 3;\n    Table table = 4;\n    OrderingOperation ordering_operation = 5;\n    repeated NestedLoopObj nested_loop = 6;\n  }\n\n  message Table {\n    string table_name = 1;\n    string access_type = 2;\n    uint64 rows_examined_per_scan = 3;\n    uint64 rows_produced_per_join = 4;\n    string filtered = 5;\n    map<string, string> cost_info = 6;\n    repeated string used_columns = 7;\n    bool insert = 8;\n    repeated string possible_keys = 9;\n    string key = 10;\n    repeated string used_key_parts = 11;\n    string key_length = 12;\n    repeated string ref = 13;\n  }\n\n  message NestedLoopObj {\n    Table table = 1;\n  }\n\n  message OrderingOperation {\n    bool using_filesort = 1;\n    map<string, string> cost_info = 2;\n    Table table = 3;\n    repeated NestedLoopObj nested_loop = 4;\n  }\n}\n"
  },
  {
    "path": "scripts/build/main.go",
    "content": "package main\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\t\"os\"\n\t\"os/exec\"\n\t\"strings\"\n)\n\nfunc main() {\n\tversion := os.Getenv(\"VERSION\")\n\tsha := os.Getenv(\"GITHUB_SHA\")\n\n\tif version == \"\" {\n\t\tcmd := exec.Command(\"git\", \"show\", \"--no-patch\", \"--no-notes\", \"--pretty=%ci\", sha)\n\t\tout, err := cmd.CombinedOutput()\n\t\tif err != nil {\n\t\t\tlog.Println(strings.TrimSpace(string(out)))\n\t\t\tlog.Fatal(err)\n\t\t}\n\t\tvar date string\n\t\tparts := strings.Split(string(out), \" \")\n\t\tdate = strings.Replace(parts[0]+parts[1], \"-\", \"\", -1)\n\t\tdate = strings.Replace(date, \":\", \"\", -1)\n\t\tversion = fmt.Sprintf(\"v0.0.0-%s-%s\", date, sha[:12])\n\t}\n\n\tfmt.Printf(\"::set-output name=version::%s\\n\", version)\n\n\tx := \"-X github.com/sqlc-dev/sqlc/internal/cmd.version=\" + version\n\targs := []string{\n\t\t\"build\",\n\t\t\"-ldflags\", x,\n\t\t\"-o\", \"./sqlc\",\n\t\t\"./cmd/sqlc\",\n\t}\n\tcmd := exec.Command(\"go\", args...)\n\tcmd.Env = os.Environ()\n\tout, err := cmd.CombinedOutput()\n\tif err != nil {\n\t\tlog.Println(strings.TrimSpace(string(out)))\n\t\tlog.Fatal(err)\n\t}\n}\n"
  },
  {
    "path": "scripts/bump-version/main.go",
    "content": "package main\n\nimport (\n\t\"flag\"\n\t\"fmt\"\n\t\"io/fs\"\n\t\"log\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n\n\t\"github.com/google/go-cmp/cmp\"\n)\n\nfunc main() {\n\tcurr := flag.String(\"c\", \"\", \"current version\")\n\tnext := flag.String(\"n\", \"\", \"next version\")\n\twrite := flag.Bool(\"w\", false, \"write out changes\")\n\tflag.Parse()\n\tif err := run(*curr, *next, *write); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n\nfunc run(current, next string, realmode bool) error {\n\twrite := func(path, old, new string) error {\n\t\tif realmode {\n\t\t\tif err := os.WriteFile(path, []byte(new), 0644); err != nil {\n\t\t\t\treturn fmt.Errorf(\"write error: %s: %w\", path, err)\n\t\t\t}\n\t\t} else {\n\t\t\tif diff := cmp.Diff(old, new); diff != \"\" {\n\t\t\t\tlog.Printf(\"%s: %s\\n\", path, diff)\n\t\t\t}\n\t\t}\n\t\treturn nil\n\t}\n\n\t{\n\t\tpath := filepath.Join(\".github\", \"ISSUE_TEMPLATE\", \"BUG_REPORT.yml\")\n\t\tc, err := os.ReadFile(path)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\told := string(c)\n\t\tif !strings.Contains(old, \"- \"+next) {\n\t\t\titem := \"- \" + current\n\t\t\tnew := strings.ReplaceAll(old, item, \"- \"+next+\"\\n        \"+item)\n\t\t\tif err := write(path, old, new); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t}\n\t}\n\n\t{\n\t\tpath := filepath.Join(\"docs\", \"overview\", \"install.md\")\n\t\tc, err := os.ReadFile(path)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\told := string(c)\n\t\tnew := strings.ReplaceAll(old, \"v\"+current, \"v\"+next)\n\t\tnew = strings.ReplaceAll(new, \"sqlc_\"+current, \"sqlc_\"+next)\n\t\tif err := write(path, old, new); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\t{\n\t\tpath := filepath.Join(\"internal\", \"info\", \"facts.go\")\n\t\tc, err := os.ReadFile(path)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\told := string(c)\n\t\tnew := strings.ReplaceAll(old, \"v\"+current, \"v\"+next)\n\t\tif err := write(path, old, new); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\t{\n\t\tpath := filepath.Join(\"docs\", \"conf.py\")\n\t\tc, err := os.ReadFile(path)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\told := string(c)\n\t\tnew := strings.ReplaceAll(old, \"release = '\"+current, \"release = '\"+next)\n\t\tif err := write(path, old, new); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\twalker := func(path string, info fs.FileInfo, err error) error {\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif info.IsDir() {\n\t\t\treturn nil\n\t\t}\n\t\tswitch filepath.Ext(path) {\n\t\tcase \".go\", \".kt\", \".py\", \".json\", \".md\":\n\t\t\tc, err := os.ReadFile(path)\n\t\t\tif err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\t\told := string(c)\n\t\t\tnew := strings.ReplaceAll(old,\n\t\t\t\t`\"sqlc_version\": \"v`+current,\n\t\t\t\t`\"sqlc_version\": \"v`+next)\n\t\t\tnew = strings.ReplaceAll(new,\n\t\t\t\t`sqlc-version: \"`+current,\n\t\t\t\t`sqlc-version: \"`+next)\n\t\t\tnew = strings.ReplaceAll(new,\n\t\t\t\t`sqlc-version: '`+current,\n\t\t\t\t`sqlc-version: '`+next)\n\t\t\tnew = strings.ReplaceAll(new, \"sqlc v\"+current, \"sqlc v\"+next)\n\t\t\tnew = strings.ReplaceAll(new, \"SQLC_VERSION=v\"+current, \"SQLC_VERSION=v\"+next)\n\t\t\tif err := write(path, old, new); err != nil {\n\t\t\t\treturn err\n\t\t\t}\n\t\tdefault:\n\t\t}\n\t\treturn nil\n\t}\n\n\t{\n\t\tp := filepath.Join(\"internal\", \"endtoend\", \"testdata\")\n\t\tif err := filepath.Walk(p, walker); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\t{\n\t\tp := filepath.Join(\"examples\")\n\t\tif err := filepath.Walk(p, walker); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\t{\n\t\tp := filepath.Join(\"docs\")\n\t\tif err := filepath.Walk(p, walker); err != nil {\n\t\t\treturn err\n\t\t}\n\t}\n\n\treturn nil\n}\n"
  },
  {
    "path": "scripts/cleanup-test-dbs/main.go",
    "content": "package main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\t\"log\"\n\t\"os\"\n\n\t\"github.com/jackc/pgx/v5\"\n\t\"github.com/jackc/pgx/v5/pgxpool\"\n)\n\nfunc main() {\n\tif err := run(); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n\nconst query = `\nSELECT datname\nFROM pg_database\nWHERE datname LIKE 'sqlc_test_%'\n`\n\nfunc run() error {\n\tctx := context.Background()\n\tdburi := os.Getenv(\"POSTGRESQL_SERVER_URI\")\n\tif dburi == \"\" {\n\t\treturn fmt.Errorf(\"POSTGRESQL_SERVER_URI is empty\")\n\t}\n\tpool, err := pgxpool.New(ctx, dburi)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\trows, err := pool.Query(ctx, query)\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tnames, err := pgx.CollectRows(rows, pgx.RowTo[string])\n\tif err != nil {\n\t\treturn err\n\t}\n\n\tfor _, name := range names {\n\t\tdrop := fmt.Sprintf(`DROP DATABASE IF EXISTS \"%s\" WITH (FORCE)`, name)\n\t\tif _, err := pool.Exec(ctx, drop); err != nil {\n\t\t\treturn err\n\t\t}\n\t\tlog.Println(\"dropping database\", name)\n\t}\n\n\treturn nil\n}\n"
  },
  {
    "path": "scripts/mirror-go-plugin/main.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"flag\"\n\t\"fmt\"\n\t\"io/fs\"\n\t\"log\"\n\t\"os\"\n\t\"path/filepath\"\n\t\"strings\"\n)\n\nfunc main() {\n\tflag.Parse()\n\t// Assume it exists\n\tloc := flag.Arg(0)\n\n\tdir := filepath.Join(\"internal\", \"codegen\", \"golang\")\n\terr := filepath.Walk(dir, func(path string, info fs.FileInfo, err error) error {\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\t\tif info.IsDir() {\n\t\t\treturn nil\n\t\t}\n\t\tcontents, err := os.ReadFile(path)\n\t\tif err != nil {\n\t\t\treturn err\n\t\t}\n\n\t\tnewdir := filepath.Join(loc, \"internal\")\n\t\tnewpath := strings.Replace(path, dir, newdir, 1)\n\n\t\tos.MkdirAll(filepath.Dir(newpath), 0755)\n\n\t\tcontents = bytes.ReplaceAll(contents,\n\t\t\t[]byte(`\"github.com/sqlc-dev/sqlc/internal/codegen/golang/opts\"`),\n\t\t\t[]byte(`\"github.com/sqlc-dev/sqlc-gen-go/internal/opts\"`))\n\n\t\tcontents = bytes.ReplaceAll(contents,\n\t\t\t[]byte(`\"github.com/sqlc-dev/sqlc/internal/plugin\"`),\n\t\t\t[]byte(`\"github.com/sqlc-dev/plugin-sdk-go/plugin\"`))\n\n\t\tcontents = bytes.ReplaceAll(contents,\n\t\t\t[]byte(`\"github.com/sqlc-dev/sqlc/internal/codegen/sdk\"`),\n\t\t\t[]byte(`\"github.com/sqlc-dev/plugin-sdk-go/sdk\"`))\n\n\t\tcontents = bytes.ReplaceAll(contents,\n\t\t\t[]byte(`\"github.com/sqlc-dev/sqlc/internal/metadata\"`),\n\t\t\t[]byte(`\"github.com/sqlc-dev/plugin-sdk-go/metadata\"`))\n\n\t\tcontents = bytes.ReplaceAll(contents,\n\t\t\t[]byte(`\"github.com/sqlc-dev/sqlc/internal/pattern\"`),\n\t\t\t[]byte(`\"github.com/sqlc-dev/plugin-sdk-go/pattern\"`))\n\n\t\tcontents = bytes.ReplaceAll(contents,\n\t\t\t[]byte(`\"github.com/sqlc-dev/sqlc/internal/debug\"`),\n\t\t\t[]byte(`\"github.com/sqlc-dev/sqlc-gen-go/internal/debug\"`))\n\n\t\tcontents = bytes.ReplaceAll(contents,\n\t\t\t[]byte(`\"github.com/sqlc-dev/sqlc/internal/inflection\"`),\n\t\t\t[]byte(`\"github.com/sqlc-dev/sqlc-gen-go/internal/inflection\"`))\n\n\t\tif err := os.WriteFile(newpath, contents, 0644); err != nil {\n\t\t\treturn err\n\t\t}\n\t\treturn nil\n\t})\n\n\tif err != nil {\n\t\tfmt.Printf(\"error walking the path: %v\\n\", err)\n\t\treturn\n\t}\n\n\t{\n\t\tpath := filepath.Join(\"internal\", \"inflection\", \"singular.go\")\n\t\tcontents, err := os.ReadFile(path)\n\t\tif err != nil {\n\t\t\tlog.Fatal(err)\n\t\t}\n\t\tnewpath := filepath.Join(loc, \"internal\", \"inflection\", \"singular.go\")\n\t\tif err := os.WriteFile(newpath, contents, 0644); err != nil {\n\t\t\tlog.Fatal(err)\n\t\t}\n\t}\n\n}\n"
  },
  {
    "path": "scripts/release.go",
    "content": "package main\n\nimport (\n\t\"flag\"\n\t\"fmt\"\n\t\"log\"\n\t\"os\"\n\t\"os/exec\"\n\t\"strings\"\n)\n\nfunc main() {\n\tdocker := flag.Bool(\"docker\", false, \"create a docker release\")\n\tflag.Parse()\n\n\tversion := os.Getenv(\"VERSION\")\n\tsha := os.Getenv(\"GITHUB_SHA\")\n\n\tif version == \"\" {\n\t\tcmd := exec.Command(\"git\", \"show\", \"--no-patch\", \"--no-notes\", \"--pretty=%ci\", sha)\n\t\tout, err := cmd.CombinedOutput()\n\t\tif err != nil {\n\t\t\tlog.Println(strings.TrimSpace(string(out)))\n\t\t\tlog.Fatal(err)\n\t\t}\n\n\t\tvar date string\n\t\tparts := strings.Split(string(out), \" \")\n\t\tdate = strings.Replace(parts[0]+parts[1], \"-\", \"\", -1)\n\t\tdate = strings.Replace(date, \":\", \"\", -1)\n\t\tversion = fmt.Sprintf(\"v0.0.0-%s-%s\", date, sha[:12])\n\t}\n\n\tif *docker {\n\t\tx := \"-extldflags \\\"-static\\\" -X github.com/sqlc-dev/sqlc/internal/cmd.version=\" + version\n\t\targs := []string{\n\t\t\t\"build\",\n\t\t\t\"-a\",\n\t\t\t\"-ldflags\", x,\n\t\t\t\"-o\", \"/workspace/sqlc\",\n\t\t\t\"./cmd/sqlc\",\n\t\t}\n\t\tcmd := exec.Command(\"go\", args...)\n\t\tcmd.Env = os.Environ()\n\t\tout, err := cmd.CombinedOutput()\n\t\tif err != nil {\n\t\t\tlog.Println(strings.TrimSpace(string(out)))\n\t\t\tlog.Fatal(err)\n\t\t}\n\t\treturn\n\t}\n\n\tarch := flag.Arg(0)\n\tif arch == \"\" {\n\t\tlog.Fatalf(\"missing platform_arch argument\")\n\t}\n\n\tlog.Fatal(\"publishing to Equinox has been disabled\")\n}\n"
  },
  {
    "path": "scripts/report.sh",
    "content": "#!/usr/bin/env bash\n\ncurl \\\n  -X POST \\\n  --fail-with-body \\\n  -H \"Authorization: Token token=\\\"$BUILDKITE_ANALYTICS_TOKEN\\\"\" \\\n  -F \"data=@junit.xml\" \\\n  -F \"format=junit\" \\\n  -F \"run_env[CI]=buildkite\" \\\n  -F \"run_env[key]=$GITHUB_RUN_ID\" \\\n  -F \"run_env[number]=$GITHUB_RUN_NUMBER-$GITHUB_RUN_ATTEMPT\" \\\n  -F \"run_env[job_id]=$GITHUB_RUN_ID\" \\\n  -F \"run_env[branch]=$GITHUB_REF\" \\\n  -F \"run_env[commit_sha]=$GITHUB_SHA\" \\\n  -F \"run_env[message]=Foo\" \\\n  -F \"run_env[url]=$GITHUB_SERVER_URL\" \\\n  https://analytics-api.buildkite.com/v1/uploads\n"
  },
  {
    "path": "scripts/test-json-process-plugin/main.go",
    "content": "package main\n\nimport (\n\t\"bytes\"\n\t\"encoding/json\"\n\t\"fmt\"\n\t\"os\"\n)\n\ntype Out struct {\n\tFiles []File `json:\"files\"`\n}\n\ntype File struct {\n\tName     string `json:\"name\"`\n\tContents []byte `json:\"contents\"`\n}\n\nfunc main() {\n\tin := make(map[string]interface{})\n\tdecoder := json.NewDecoder(os.Stdin)\n\terr := decoder.Decode(&in)\n\tif err != nil {\n\t\tfmt.Fprintf(os.Stderr, \"error generating JSON: %s\", err)\n\t\tos.Exit(2)\n\t}\n\n\tbuf := bytes.NewBuffer(nil)\n\tqueries := in[\"queries\"].([]interface{})\n\tfor _, q := range queries {\n\t\ttext := q.(map[string]interface{})[\"text\"].(string)\n\t\tbuf.WriteString(text)\n\t\tbuf.WriteString(\"\\n\")\n\t}\n\n\te := json.NewEncoder(os.Stdout)\n\te.SetIndent(\"\", \"  \")\n\te.Encode(&Out{Files: []File{{Name: \"hello.txt\", Contents: buf.Bytes()}}})\n}\n"
  }
]